@charset "UTF-8";
.page-nums, .page-num-container, .article-block, .call-link, .cal-btn-links, .video-slider-buttons, .site-main-nav > ul, .footer-top, ul.table-block li, ul.table-block, .flex, .clearfix, .row {
  display: flex;
  flex-wrap: wrap;
}

.article-block .more-link a, .video-button-next, .video-button-prev, .site-main-nav > ul > li > a:after, .site-main-nav > ul > li > a, .footer-bottom a, .footer-list li a, .footer-list h4 a, .social-icons > a:before, .nav-popup .nav-popup-close, .header .header-content, .header, .btn-form, .btn-primary > a:after, .btn-primary > a span, .btn-primary > a {
  transition: all 0.2s ease-in-out;
}

.services-popup, .info-text-popup {
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 80%;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 15px;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1010;
}
.active.services-popup, .active.info-text-popup {
  opacity: 1;
  visibility: visible;
  z-index: 1010;
  top: 50%;
}
@media (min-width: 768px) {
  .services-popup, .info-text-popup {
    padding: 20px;
    width: 600px;
  }
}
.services-popup .popup-block-inner, .info-text-popup .popup-block-inner {
  max-height: 70vh;
  overflow-y: auto;
  padding: 20px;
  background-color: #fff;
}
.services-popup .popup-block-inner::-webkit-scrollbar, .info-text-popup .popup-block-inner::-webkit-scrollbar {
  width: 5px;
}
.services-popup .popup-block-inner::-webkit-scrollbar-track, .info-text-popup .popup-block-inner::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}
.services-popup .popup-block-inner::-webkit-scrollbar-thumb, .info-text-popup .popup-block-inner::-webkit-scrollbar-thumb {
  background: #363636;
}
.services-popup .popup-block-inner h3, .info-text-popup .popup-block-inner h3 {
  color: #073e60;
}
@media (max-width: 767px) {
  .services-popup .popup-block-inner, .info-text-popup .popup-block-inner {
    font-size: 16px;
    padding: 20px 15px;
  }
  .services-popup .popup-block-inner p:not(:last-child), .info-text-popup .popup-block-inner p:not(:last-child) {
    margin-bottom: 15px;
  }
  .services-popup .popup-block-inner h3, .info-text-popup .popup-block-inner h3 {
    font-size: 22px;
  }
}
.services-popup .popup-block-close, .info-text-popup .popup-block-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: #eb8b25;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.services-popup .popup-block-close:before, .info-text-popup .popup-block-close:before, .services-popup .popup-block-close:after, .info-text-popup .popup-block-close:after {
  content: "";
  width: 17px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}
.services-popup .popup-block-close:before, .info-text-popup .popup-block-close:before {
  transform: rotate(45deg);
}
.services-popup .popup-block-close:after, .info-text-popup .popup-block-close:after {
  transform: rotate(-45deg);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  padding: 0;
  color: #000;
  letter-spacing: -0.025em;
  overflow-x: clip;
}

/** reset **/
a:hover, a:active, a, a:focus, textarea:focus, a[href^=tel] {
  outline: none;
  text-decoration: none;
}

a, a[href^=tel] {
  color: inherit;
}

input, select, textarea, button {
  outline: none;
  border: none;
  font-family: inherit;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input:not([type=checkbox]):not([type=radio]), select, textarea {
  padding: 10px 10px 9px;
  margin-bottom: 0;
  border: 1px solid #363636;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  color: inherit;
  font-family: "Poppins", sans-serif;
  height: 44px;
}
@media (min-width: 641px) {
  input:not([type=checkbox]):not([type=radio]), select, textarea {
    font-size: 18px;
    padding: 10px 15px 9px;
  }
}

input:not([type=checkbox]):not([type=radio]):focus, textarea:focus {
  outline: none;
  border-color: #0c659c;
}

form button {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  cursor: pointer;
}

textarea {
  resize: none;
  overflow: auto; /** remove scroller in IE **/
  min-height: 150px;
}
@media (min-width: 641px) {
  textarea {
    min-height: 200px;
  }
}

select::-ms-expand {
  display: none; /** IE fix **/
}

select {
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right 15px top 17px;
  padding: 10px 45px 9px 15px;
}

::-moz-placeholder {
  color: #4f585d;
}

::placeholder {
  color: #4f585d;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #4f585d;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #4f585d;
}

/** hide placeholder text on focus **/
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: transparent;
}

label {
  display: block;
  color: #4f585d;
  margin-bottom: 7px;
  font-size: 14px;
}

img {
  max-width: 100%;
}

hr {
  border: none;
  border-bottom: 1px solid #efefef;
  margin: 50px 0;
}

:where(ul[class]) {
  list-style-type: none;
}

:where(ul:not(:last-child)) {
  margin-bottom: 40px;
}

ul ul {
  margin-top: 15px;
}
@media (min-width: 641px) {
  ul ul {
    margin-left: 20px;
  }
}
ul ul li {
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 26px;
}
@media (min-width: 641px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

h5 {
  font-size: 15px;
  font-weight: 500;
}

h6 {
  font-size: 13px;
}

@media (max-width: 640px) {
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
}
p:not(:last-child) {
  margin-bottom: 25px;
}

p a, li a {
  color: #128edd;
  word-break: break-word;
  font-weight: 500;
  text-decoration: underline;
}
p a:hover, li a:hover {
  color: #073e60;
  text-decoration: none;
}

@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) { /** IE 9 and above fix **/
  p a {
    word-break: break-all;
    display: inline-block;
  }
}
sup {
  font-size: 65%;
  line-height: 1;
}

strong {
  font-weight: 700;
}

.animated {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

/** video responsive style: Youtube and Vimeo **/
.video-holder {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-holder object,
.video-holder embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/** video responsive style: Youtube and Vimeo: end **/
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  clear: both;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 641px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1360px;
  }
}

@media (max-width: 640px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row .col, .row [class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
    flex-grow: 1;
  }
}
@media (min-width: 641px) {
  .row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row .col, .row [class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
    flex-grow: 1;
  }
}

.inner-space {
  padding-block: 40px;
}
@media (min-width: 821px) {
  .inner-space {
    padding-block: 70px;
  }
}

.inner-space-short {
  padding-block: 10px;
}
@media (min-width: 821px) {
  .inner-space-short {
    padding-block: 30px;
  }
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-3 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

.col-two-third {
  flex: 0 0 66.66666%;
  max-width: 66.66666%;
}

.col-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-30 {
  flex: 0 0 30%;
  max-width: 30%;
}

.col-40 {
  flex: 0 0 40%;
  max-width: 40%;
}

.col-60 {
  flex: 0 0 60%;
  max-width: 60%;
}

.col-70 {
  flex: 0 0 70%;
  max-width: 70%;
}

@media (max-width: 900px) {
  .md-col-full {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .md-col-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .md-col-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (max-width: 640px) {
  .xs-col-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .xs-col-full {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .page-left-content:not(:last-child) {
    margin-bottom: 50px;
  }
}

.clearfix {
  width: 100%;
}

.inline-block {
  display: inline-block;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.color-black {
  color: #000 !important;
}

.color-white {
  color: #fff !important;
}

.color-primary {
  color: #128edd !important;
}

.color-red {
  color: #f00 !important;
}

.text-center {
  text-align: center;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.small-text {
  font-size: 14px;
}

.full-img {
  display: block;
  width: 100%;
}

.w-100 {
  width: 100% !important;
}

.pb-50 {
  padding-bottom: 35px;
}
@media (min-width: 768px) {
  .pb-50 {
    padding-bottom: 50px;
  }
}

.mb-50 {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .mb-50 {
    margin-bottom: 50px;
  }
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.gap-horz-25 {
  gap: 25px 0;
}

.bg-light {
  background-color: #efefef;
}

@media (min-width: 641px) {
  .show-xs {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .hide-xs {
    display: none !important;
  }
}
@media (min-width: 821px) {
  .show-md {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .hide-md {
    display: none !important;
  }
}
ul.table-block li {
  width: 100%;
}
ul.table-block li:not(:last-child) {
  margin-bottom: 15px;
}
ul.table-block li p {
  font-weight: 500;
  margin-bottom: 0;
}
ul.table-block li p:first-child {
  flex: 0 0 200px;
  max-width: 200px;
}
ul.table-block li p:last-child {
  flex: 0 0 200px;
  max-width: 200px;
}

h1.sec-heading {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (min-width: 641px) {
  h1.sec-heading {
    font-size: 36px;
  }
}
@media (min-width: 901px) {
  h1.sec-heading {
    font-size: 42px;
    margin-bottom: 35px;
  }
}

h2.sec-heading {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #073e60;
}
@media (min-width: 641px) {
  h2.sec-heading {
    font-size: 32px;
  }
}
@media (min-width: 901px) {
  h2.sec-heading {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

h3.sec-heading {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
}
@media (min-width: 901px) {
  h3.sec-heading {
    font-size: 28px;
  }
}

.hindi-text {
  font-family: "Baloo 2", serif;
  font-size: 20px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .hindi-text {
    font-size: 25px;
    margin-top: 10px;
  }
}

.heading-group:not(:last-child) {
  margin-bottom: 50px;
}
.heading-group h4 {
  color: #128edd;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  letter-spacing: 1px;
}
.heading-group h4:not(:last-child) {
  margin-bottom: 25px;
}
.heading-group h4:after {
  content: "";
  position: absolute;
  bottom: -10px;
  height: 4px;
  width: 40px;
  background-color: #128edd;
  left: 0;
}
.heading-group.text-center h4:after {
  left: 50%;
  transform: translateX(-50%);
}
.heading-group h2 {
  color: #000;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 200;
  margin-bottom: 15px;
}
.heading-group h2:last-child {
  margin-bottom: 0;
}
.heading-group p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: normal;
  margin-bottom: 35px;
  color: #363636;
}
.heading-group p:last-child {
  margin-bottom: 0;
}
@media (min-width: 641px) {
  .heading-group:not(:last-child) {
    margin-bottom: 70px;
  }
  .heading-group h1 {
    font-size: 48px;
  }
  .heading-group h2 {
    font-size: 40px;
  }
  .heading-group h4 {
    font-size: 20px;
  }
  .heading-group p {
    font-size: 20px;
    line-height: 36px;
  }
}

.btn-primary > a {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background: #128edd;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  overflow: hidden;
  padding: 11px 40px 10px 24px;
  letter-spacing: 0.01em;
}
.btn-primary > a span {
  position: relative;
  display: block;
  left: 0;
}
.btn-primary > a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 16px;
  background: url(../images/btn-arrow.png) no-repeat center center;
}
.btn-primary > a:hover {
  background: #0c659c;
}
.btn-primary > a:hover span {
  left: 9px;
}
.btn-primary > a:hover:after {
  right: -40px;
}

.btn-primary {
  position: relative;
  padding-top: 10px;
}
.btn-form {
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: #128edd;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 15px 35px;
  cursor: pointer;
}
.btn-form:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background-color: #073e60;
  transform-origin: center;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
.btn-form:hover:after {
  transform: scale(1);
}

.fancy-border {
  position: relative;
  z-index: 2;
}
.fancy-border:not(:last-child) {
  margin-bottom: 60px;
}
.fancy-border:before, .fancy-border:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
}
.fancy-border:before {
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 15px solid #073e60;
  border-left: 15px solid #073e60;
}
.fancy-border:after {
  top: 20px;
  right: 10px;
  width: 90%;
  height: 100%;
  border: 15px solid #073e60;
}
.fancy-border > img {
  display: block;
  width: calc(100% - 30px);
}
@media (max-width: 900px) {
  .fancy-border:before {
    border-width: 10px;
  }
  .fancy-border:after {
    border-width: 10px;
  }
}
@media (min-width: 901px) {
  .fancy-border:before {
    top: -30px;
    left: -30px;
  }
  .fancy-border:after {
    top: 30px;
  }
}

ul.num-list {
  counter-reset: my-counter;
}
ul.num-list:not(:last-child) {
  margin-bottom: 35px;
}
@media (min-width: 901px) {
  ul.num-list:not(:last-child) {
    margin-bottom: 50px;
  }
}
ul.num-list li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
ul.num-list li:before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #128edd;
  border-radius: 50%;
}
@media (min-width: 481px) {
  ul.num-list li {
    margin-bottom: 25px;
    padding-left: 40px;
  }
}

ul.bullet-list {
  padding-left: 10px;
}
ul.bullet-list:not(:last-child) {
  margin-bottom: 35px;
}
@media (min-width: 901px) {
  ul.bullet-list:not(:last-child) {
    margin-bottom: 50px;
  }
}
ul.bullet-list li {
  position: relative;
  padding-left: 20px;
  list-style: none;
}
ul.bullet-list li:not(:last-child) {
  margin-bottom: 10px;
}
ul.bullet-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: #0c659c;
}

.title-heading {
  background-color: #073e60;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 28px;
  line-height: 1.3;
  position: relative;
}
.title-heading:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 641px) {
  .title-heading {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .title-heading {
    font-size: 40px;
  }
}

/** scroll top icon style **/
.scroll-top-icon {
  display: none;
  position: fixed;
  z-index: 8000;
  right: 10px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  background: url(../images/arrow-up.png) no-repeat center #4f585d;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 641px) {
  .scroll-top-icon {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 821px) {
  .scroll-top-icon {
    right: 30px;
    bottom: 50px;
  }
}
.scroll-top-icon:hover {
  background-color: #073e60;
  opacity: 1;
}

/** scroll top icon style end **/
.block {
  position: relative;
}
.block .block-icon {
  text-align: center;
  margin-bottom: 10px;
}
.block .block-icon img {
  display: block;
  margin: 0 auto;
}
.block .block-text {
  margin-bottom: 20px;
}
.block h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}
@media (min-width: 901px) {
  .block .block-icon {
    margin-bottom: 20px;
  }
  .block h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media (max-width: 900px) {
  .block .btn-primary {
    padding-top: 0;
  }
}
.block .short-text {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.contact-form {
  position: relative;
}
.contact-form:not(:last-child) {
  margin-bottom: 35px;
}
.contact-form form > div {
  margin-bottom: 20px;
}
@media (min-width: 641px) {
  .contact-form form > div {
    margin-bottom: 30px;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
}
.header.header-scroll .header-content {
  padding: 12px 0;
}
.header.header-scroll .site-main-nav > ul > li > a {
  padding: 14px 20px 12px;
}
.header .header-content {
  padding: 25px 0;
}
.header .header-content .cta-top-link .btn-primary {
  padding-top: 0;
  line-height: 1;
}
.header .header-content .cta-top-link .btn-primary > a {
  line-height: 1.6;
}
.header .header-content .logo {
  display: inline-flex;
}
.header .header-content .logo a {
  display: inline-flex;
}
.header .header-content .logo a img {
  display: block;
}
.header .header-content .contact-info {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.header .header-content .contact-info span {
  text-align: center;
  line-height: 1.2;
}
.header .header-content .contact-info span:nth-child(1) {
  font-weight: 700;
  font-size: 21px;
  color: #0c659c;
}
.header .header-content .contact-info span:nth-child(2) {
  font-size: 16px;
  color: #4f585d;
}
@media (min-width: 821px) {
  .header .header-content .contact-info {
    margin-right: 20px;
  }
}
@media (max-width: 820px) {
  .header .header-content .cta-top-link {
    position: absolute;
    right: 20px;
    bottom: 6px;
    z-index: 10;
  }
  .header .header-content .cta-top-link .btn-primary > a {
    line-height: 1.2;
    font-size: 12px;
    border: 1px solid #fff;
    padding: 10px 40px 9px 24px;
  }
  .header .header-content .cta-top-link .btn-primary > a:after {
    width: 16px;
    background-position: center right 0;
  }
}
@media (max-width: 640px) {
  .header .header-content .logo {
    max-width: 65%;
  }
  .header .header-content .contact-info span:nth-child(1) {
    font-size: 16px;
  }
  .header .header-content .contact-info span:nth-child(2) {
    font-size: 13px;
  }
}
@media (min-width: 1201px) {
  .header .header-content .logo {
    max-width: 400px;
  }
}

/** navigation style **/
@media (min-width: 1201px) {
  .nav-holder {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #fff;
  }
}
@media (max-width: 1200px) {
  .nav-holder > .container {
    display: flex;
    width: 100%;
  }
}

/** navigation style end **/
/** mobile nav-popup style **/
.nav-popup {
  opacity: 0;
  margin: 0 auto;
  position: fixed;
  z-index: -999;
  inset: 0;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  color: #fff;
  width: 0;
}
.nav-popup .nav-popup-close {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 30px;
  top: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-popup .nav-popup-close:before, .nav-popup .nav-popup-close:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 2px;
  background: #fff;
}
.nav-popup .nav-popup-close:before {
  transform: rotate(45deg);
}
.nav-popup .nav-popup-close:after {
  transform: rotate(-45deg);
}
.nav-popup .mob-nav {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
  overflow-y: scroll;
}
.nav-popup .mob-nav .main-nav li {
  font-size: 24px;
  text-align: center;
}
.nav-popup .mob-nav .main-nav li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 24px;
}
.nav-popup .mob-nav .main-nav li + li {
  margin-left: 0;
}

/** mobile nav-popup style end **/
/** footer style **/
.footer {
  color: #fff;
  background: #0c659c;
  padding-top: 20px;
}

.footer-top {
  align-items: center;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px solid #073e60;
  box-shadow: 0 1px 0 #128edd;
}
@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
  }
}
@media (min-width: 641px) {
  .footer-top {
    justify-content: space-between;
  }
}
@media (min-width: 901px) {
  .footer-top {
    padding: 35px 0;
  }
}

.footer-logo a, .footer-logo img {
  display: block;
}
@media (max-width: 767px) {
  .footer-logo {
    max-width: 300px;
  }
}
@media (max-width: 640px) {
  .footer-logo {
    margin-bottom: 15px;
  }
}

.social-icons > a {
  display: block;
  float: left;
  position: relative;
  width: 36px;
  height: 36px;
  overflow: hidden;
}
.social-icons > a + a {
  margin-left: 18px;
}
.social-icons > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.social-icons > a:hover:before {
  background-position: 0 -36px;
}

.facebook-icon:before {
  background: url(../images/facebook-icon.png) no-repeat 0 0;
}

.youtube-icon:before {
  background: url(../images/youtube-icon.png) no-repeat 0 0;
}

.twitter-icon:before {
  background: url(../images/twitter-icon.png) no-repeat 0 0;
}

.instagram-icon:before {
  background: url(../images/instagram-icon.png) no-repeat 0 0;
}

.footer-mid {
  color: #efefef;
  padding: 35px 0;
  width: 100%;
}

.copyright-text {
  font-size: 14px;
}
@media (max-width: 900px) {
  .copyright-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (min-width: 901px) {
  .copyright-text {
    order: 1;
  }
}

@media (max-width: 900px) {
  .footer-list {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-list {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (min-width: 901px) {
  .footer-list {
    order: 2;
  }
}
.footer-list h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-list h4 a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.footer-list h4 + h4 {
  margin-top: 45px;
}
.footer-list ul {
  margin-bottom: 15px;
}
.footer-list ul:last-child {
  margin-bottom: 0;
}
.footer-list li {
  font-size: 15px;
  margin-bottom: 7px;
}
.footer-list li a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
.footer-list li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  background: #073e60;
  text-align: center;
  padding: 18px 0;
}
.footer-bottom a {
  display: inline-block;
  color: #efefef;
  line-height: 1;
}
.footer-bottom a + a {
  border-left: 1px solid #efefef;
  margin-left: 7px;
  padding-left: 10px;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 480px) {
  .footer-bottom a {
    font-size: 16px;
  }
  .footer-bottom a + a {
    margin-left: 5px;
    padding-left: 8px;
  }
}

/** footer style end **/
/********* SLICK CAROUSEL STYLE  **********/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding-inline: 10px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 25px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 11px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 1;
  color: rgba(79, 88, 93, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #0c659c;
}

.slick-slide:focus {
  outline: none;
}

/********* SLICK CAROUSEL STYLE  **********/
/** main site navigation style **/
.site-nav-holder {
  position: relative;
  z-index: 5;
  color: #fff;
  background: #128edd;
}
.site-nav-holder ul, .site-nav-holder li {
  list-style: none;
}

.site-main-nav > ul > li {
  position: relative;
  padding: 0;
}
@media (min-width: 1025px) {
  .site-main-nav > ul > li {
    margin-right: 30px;
  }
}
.site-main-nav > ul > li:last-child {
  margin-right: 0;
}
.site-main-nav > ul > li a {
  text-decoration: none;
}
.site-main-nav > ul > li > a {
  display: block;
  text-transform: uppercase;
  color: inherit;
  padding: 18px 20px 16px;
  position: relative;
  z-index: 2;
  background: transparent;
  font-size: 16px;
}
.site-main-nav > ul > li > a:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  background: linear-gradient(180deg, #073e60 0%, #073e60 8%, #0c659c 8%, #0c659c 100%);
}
.site-main-nav > ul > li.active > a:after, .site-main-nav > ul > li > a:hover:after {
  height: 100%;
}
.site-main-nav > ul > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
@media (min-width: 1025px) {
  .site-main-nav > ul .sub-menu {
    position: absolute;
    top: 40px;
    left: 0;
    margin: 0;
    width: 260px;
    visibility: hidden;
    opacity: 0;
    background-color: #128edd;
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 1024px) {
  .site-main-nav > ul .sub-menu {
    display: none;
    margin: 0 0 0 10px;
    background-color: rgba(7, 62, 96, 0.5);
  }
}
.site-main-nav > ul .sub-menu li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 7px 20px;
  transition: all 0.2s ease-in-out;
  border-left: 3px solid transparent;
}
.site-main-nav > ul .sub-menu li a:hover {
  background-color: #0c659c;
  border-left-color: #073e60;
}

/** main site navigation style end **/
/* sub-menu indicating arrow */
.navlist-arrow {
  width: 50px;
  height: 60px;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1025px) {
  .navlist-arrow {
    display: none;
  }
}
.navlist-arrow:before, .navlist-arrow:after {
  content: "";
  width: 14px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  transition: all 0.2s ease-in-out;
}
.navlist-arrow:after {
  transform: rotate(-90deg);
}
.navlist-arrow.open:after {
  transform: rotate(0deg);
}

/* sub-menu indicating arrow end */
/** navigation trigger style **/
.nav-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 0;
  color: #fff;
}
@media (min-width: 1025px) {
  .nav-trigger {
    display: none;
  }
}
.nav-trigger > div {
  width: 26px;
  margin-right: 10px;
}
.nav-trigger > div > span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
.nav-trigger > div > span:nth-child(1) {
  transform: translateY(-6px);
}
.nav-trigger > div > span:nth-child(3) {
  transform: translateY(6px);
}

/** navigation trigger style end **/
@media (max-width: 1024px) {
  .site-nav-holder .site-main-nav > ul {
    display: none;
  }
  .nav-trigger {
    display: inline-flex;
  }
  .mob-nav .site-main-nav > ul {
    width: 100%;
    flex-direction: column;
  }
  .mob-nav .site-main-nav > ul li {
    list-style: none;
  }
  .mob-nav .site-main-nav > ul li.has-menu > a {
    padding-right: 60px;
  }
}
/** mobile nav-popup style **/
.nav-popup {
  opacity: 0;
  margin: 0 auto;
  position: fixed;
  z-index: -999;
  inset: 0;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  color: #fff;
  width: 0;
  background: url(../images/banner-bg2.jpg) no-repeat top center;
  background-color: #128edd;
  background-size: cover;
}
.nav-popup .nav-popup-close {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 30px;
  top: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-popup .nav-popup-close:before, .nav-popup .nav-popup-close:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 2px;
  background: #fff;
}
.nav-popup .nav-popup-close:before {
  transform: rotate(45deg);
}
.nav-popup .nav-popup-close:after {
  transform: rotate(-45deg);
}
.nav-popup .mob-nav {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
  overflow-y: scroll;
}
.nav-popup .mob-nav .main-nav li {
  font-size: 24px;
  text-align: center;
}
.nav-popup .mob-nav .main-nav li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 24px;
}
.nav-popup .mob-nav .main-nav li + li {
  margin-left: 0;
}

/** mobile nav-popup style end **/
/** banner section style **/
.banner-sec {
  width: 100%;
  overflow: hidden;
  background: url(../images/banner-bg2.jpg) no-repeat top center;
  background-size: cover;
}
.banner-sec > .container, .banner-sec .banner-inner {
  position: relative;
  height: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  .banner-sec .banner-img {
    width: 100%;
    margin: 0 auto;
  }
}
.banner-sec .banner-img img {
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .banner-sec {
    height: 480px;
  }
  .banner-sec .banner-img {
    order: 2;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 450px;
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .banner-sec .banner-img {
    max-width: 50%;
    padding-left: 5%;
  }
}
.banner-sec .banner-content {
  max-width: 50%;
  color: #fff;
  padding: 20px 20px 10px 0;
}
.banner-sec .banner-content h1 {
  line-height: 1;
  font-weight: 500;
  margin-bottom: 5px;
}
.banner-sec .banner-content h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 15px;
}
.banner-sec .banner-content h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
}
.banner-sec .banner-content .btn-primary {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .banner-sec .banner-content {
    max-width: 100%;
    width: 100%;
    padding-bottom: 30px;
  }
  .banner-sec .banner-content h1 {
    font-size: 10vw;
  }
}
@media (min-width: 768px) {
  .banner-sec .banner-content h1 {
    font-size: 52px;
  }
  .banner-sec .banner-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .banner-sec .banner-content h3 {
    font-size: 24px;
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .banner-sec .banner-content h1 {
    font-size: 77px;
  }
  .banner-sec .banner-content h2 {
    margin-bottom: 30px;
  }
  .banner-sec .banner-content h3 {
    font-size: 30px;
    padding-top: 20px;
  }
}

/** banner section style end **/
.advantages-sec .text-style {
  text-align: center;
  font-family: "Playwrite VN", serif;
  color: #f00;
  font-size: 26px;
  font-weight: 700;
  line-height: 2.4;
}
.advantages-sec .advantages-sec-img {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .advantages-sec .text-style {
    font-size: 30px;
    line-height: 2.5;
  }
  .advantages-sec .advantages-sec-img {
    margin-bottom: 25px;
  }
}

.video-sec {
  position: relative;
}

.video-slider-holder {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .video-slider-holder {
    padding-inline: 20px;
  }
}
.video-slider-holder .video-slider {
  z-index: 10;
}
.video-slider-holder .video-slider, .video-slider-holder .video-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.video-slider-holder .video-slider .slick-dots {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  left: auto;
  right: -30px;
  top: 0;
  bottom: 0;
}
.video-slider-holder .video-slider .slick-slide > a {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.video-slider-holder .video-slider .slick-slide > a:before {
  content: "";
  position: absolute;
  width: 77px;
  height: 49px;
  background: url(../images/yt-icon.png);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.video-slider-buttons {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.video-button-next, .video-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 45px;
  border-radius: 5px;
  background-color: #128edd;
  cursor: pointer;
}
@media (min-width: 821px) {
  .video-button-next, .video-button-prev {
    height: 50px;
  }
}
.video-button-next:hover, .video-button-prev:hover {
  background-color: #0c659c;
}
.video-button-next:before, .video-button-prev:before {
  content: "";
  position: absolute;
  width: 21px;
  height: 40px;
  background: url(../images/slide-arrow-right.png) no-repeat center;
}

.video-button-next {
  left: 10px;
}

.video-button-prev {
  right: 10px;
}
.video-button-prev:before {
  transform: rotateY(180deg);
}

@media (min-width: 1201px) {
  .video-button-next {
    left: 30px;
  }
  .video-button-prev {
    right: 30px;
  }
}
.about-page-content {
  position: relative;
}
@media (min-width: 901px) {
  .about-page-content {
    padding-top: 40px;
  }
}
.about-page-content .heading-group {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .profile-pic {
    margin: 0 5% 30px;
  }
}

.services-sec {
  position: relative;
  overflow-x: clip;
}
@media (max-width: 900px) {
  .services-sec {
    padding-block: 20px;
  }
}

.booking-sec {
  border-top: 3px solid #128edd;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: 30px;
}
.booking-sec:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.85);
}

.cards-row {
  gap: 25px 0;
  padding-block: 20px;
}
@media (min-width: 641px) and (max-width: 821px) {
  .cards-row .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 821px) and (max-width: 1200px) {
  .cards-row .col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.card {
  position: relative;
}
.card .card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
.card .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: all 0.2s ease-in-out;
}
.card .card-img .card-hover {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 62, 96, 0.7);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.card .card-img .card-hover h3 {
  position: absolute;
  bottom: -40px;
  left: 0;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  padding: 15px;
  transition: all 0.25s ease-in-out 0s;
}
.card .card-img .card-hover a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .card-img .card-hover a:before, .card .card-img .card-hover a:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 5px;
  background-color: #0c659c;
  display: block;
}
.card .card-img .card-hover a:after {
  transform: rotate(90deg);
}
.card .card-img:hover img {
  transform: scale(1.1);
}
.card .card-img:hover .card-hover {
  opacity: 1;
}
.card .card-img:hover .card-hover h3 {
  bottom: 0;
  transition-delay: 0.2s;
}
.card .card-detail {
  padding-block: 10px;
  background-color: #fff;
}
@media (min-width: 641px) {
  .card .card-detail {
    padding-block: 20px;
  }
}
.card .card-detail h3 {
  color: #073e60;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 22px;
}
.card .card-detail h4 {
  color: #363636;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
.card .card-detail p:not(:last-child) {
  margin-bottom: 15px;
}
.card .card-detail h6 {
  font-weight: 400;
  color: #4f585d;
}
@media (max-width: 640px) {
  .card .card-detail h3 {
    margin-bottom: 2px;
    font-size: 20px;
  }
  .card .card-detail h4 {
    font-size: 16px;
  }
}

.cal-btn-links {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cal-btn-links:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 641px) {
  .cal-btn-links {
    padding-top: 10px;
  }
  .cal-btn-links:not(:last-child) {
    margin-bottom: 20px;
  }
}

.call-link {
  position: relative;
  overflow: hidden;
  align-items: center;
  background-color: #128edd;
  color: #fff;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
}
.call-link figure {
  padding: 10px 12px;
  border-right: 1px solid #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
}
.call-link figure img {
  display: block;
}
.call-link span {
  font-family: Helvetica, sans-serif;
  line-height: 1;
  padding: 12px 20px 9px 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease-in-out;
}
.call-link span:nth-child(2) {
  transform: translateY(0);
}
.call-link span:nth-child(3) {
  position: absolute;
  inset: 0;
  font-weight: 600;
  display: block;
  text-align: center;
  left: 45px;
  transform: translateY(50px);
}
.call-link:hover {
  background-color: #0c659c;
}
.call-link:hover span:nth-child(2) {
  transform: translateY(-50px);
}
.call-link:hover span:nth-child(3) {
  transform: translateY(0);
}

.testimonial-block {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #0c659c;
  background: rgba(239, 239, 239, 0.1);
}
.testimonial-block:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .testimonial-block:not(:last-child) {
    margin-bottom: 50px;
  }
}
.testimonial-block > img {
  float: left;
  margin: 0 20px 20px 0;
}
.testimonial-block h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0c659c;
}

.article-block {
  border: 1px solid #128edd;
  padding: 20px 20px 25px;
  box-shadow: 0 3px 0 #073e60;
  transition: all 0.2s ease-in-out;
}
.article-block:not(:last-child) {
  margin-bottom: 30px;
}
.article-block:hover {
  box-shadow: 0 3px 10px #363636;
}
.article-block > h2 {
  flex: 0 0 100%;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 24px;
}
.article-block > h2 a {
  color: #128edd;
  transition: all 0.2s ease-in-out;
}
.article-block > h2 a:hover {
  color: #073e60;
}
.article-block .more-link a {
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  color: #0c659c;
}
.article-block .more-link a:hover {
  text-decoration: underline;
}

.article-content-short p {
  line-height: 24px;
  margin-bottom: 10px;
}

.blog-info {
  margin-bottom: 10px;
}
.blog-info a {
  font-weight: 500;
}
.blog-info a:hover {
  color: #0c659c;
}

@media (max-width: 640px) {
  .article-content-short p {
    font-size: 17px;
  }
}
@media (min-width: 641px) {
  .article-block {
    padding: 20px 25px 30px;
  }
}
.page-num-container {
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-nums {
  align-items: center;
  justify-content: center;
  border: 1px solid #4f585d;
}
.page-nums li:not(:first-child) {
  border-left: 1px solid #4f585d;
}
.page-nums li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}
@media (max-width: 480px) {
  .page-nums li a {
    font-size: 16px;
    padding: 5px 7px;
  }
}
.page-nums li.disabled a {
  cursor: not-allowed;
}
.page-nums li.disabled a:hover {
  color: #128edd;
}
.page-nums li.active {
  background-color: #073e60;
}
.page-nums li.active a {
  color: #fff;
}

.full-cta {
  position: relative;
  color: #fff;
  background-color: #073e60;
  text-align: center;
}
.full-cta .full-cta-top {
  align-items: center;
  padding-block: 50px 40px;
  gap: 25px 0;
}
.full-cta .full-cta-top h2 {
  font-size: 36px;
}
@media (min-width: 901px) {
  .full-cta .full-cta-top h2 {
    font-size: 42px;
  }
}
.full-cta .full-cta-bottom {
  border-top: 1px solid rgba(239, 239, 239, 0.3);
  padding-block: 20px;
  gap: 15px 0;
}
.full-cta .btn-form {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 45px;
}
.full-cta .btn-form:after {
  background-color: #0c659c;
}

.cta-list-item {
  color: rgba(255, 255, 255, 0.7);
}
.cta-list-item h3 {
  font-weight: 400;
  font-size: 20px;
}
.cta-list-item figure img {
  display: block;
  margin: 0 auto;
  max-width: 30px;
  opacity: 0.7;
}
.popup{
  background-color: #ffffff;
  width: auto;
  padding: 10px 10px;
  position: absolute;
  transform: translate(-50%,-50%);
  left: 50%;
  top: 80%;
  border-radius: 8px;
  font-family: "Poppins",sans-serif;
  display: none;
  text-align: center;
  z-index: 999;
}
.popup button {
  display: block;
  margin:  0 0 0 90%;
  font-size: 20px;
  color: #0f0101;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 2px 2px;
}
.popup a {
  display: block;
  margin:  0 0 0 0;
  background-color: #128edd;
  font-size: 20px;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 2px 2px;
}
.popup p{
  font-size: 14px;
  text-align: justify;
  margin: 20px 0;
  line-height: 25px;
}
.loader-div {
  display: none;
  position: fixed;
  margin: 0px;
  padding: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 30001;
  opacity: 0.8;
}
.loader-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}