@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --more-dark-blue: #00345D;
  --dark-blue: #102D49;
  --blue: #105084;
  --little-light-blue: #185D95;
  --light-blue: #1E84AA;
  /* --black-text: #555; */
  --black-text: #83899D;
  --dark-text: #333;
  --grey: #d6d6d6;
  --light-grey: #F6F9FA;

  --top-padding: 9.222rem;
  --top-padding-fixed: 4rem;
}
@media (max-width: 991px) {
  :root {
    --top-padding: 7.333rem;
    --top-padding-fixed: 4.8rem;
  }
}

html, body {
  background: var(--light-grey);
   font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--black-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
}

@media (max-width: 1599px) {
  html, body {
    font-size: 17px;
  }
}
@media (max-width: 1399px) {
  html, body {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  html, body {
    font-size: 15px;
  }
}


@media (min-width: 1500px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1424px;
  }
}
@media (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1544px;
  }
}
@media (min-width: 1700px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1671px;
  }
}

.wrap-inner {
  width: 100%;
  max-width: 1474px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1699px) {
  .wrap-inner {
    padding: 0 2rem;
  }
}
@media (max-width: 1599px) {
  .wrap-inner {
    max-width: 1400px;
  }
}
@media (max-width: 1499px) {
  .wrap-inner {
    max-width: 1340px;
  }
}
@media (max-width: 991px) {
  .wrap-inner {
    padding: 0;
  }
  .wrap-inner-mobile {
    padding: 0 1.75rem;
  }
  .no-bg .wrap-inner-mobile {
    padding: 0 0.5rem;
  }
}

ul, ol {
  padding-left: 1.5rem;
}

a {
  color: var(--dark-blue);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;  
}

a:hover {
  color: var(--blue);
  text-decoration: none;
}
a:focus {
  outline: none;
}
a.white-link {
  color: #fff;
}
a.white-link:hover {
  color: var(--blue);
}

strong, b {
  font-weight: 700;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.h1, h1 {
  font-size: calc(2.5rem + 1.5vw);
}
.h2, h2 {
  font-size: calc(1.85rem + 1.25vw);
}
.h3, h3 {
  font-size: calc(1.3rem + 1vw);
}
.h4, h4 {
  font-size: calc(1.125rem + .75vw);
}
.h5, h5 {
  font-size: 1.25rem;
}
.h6, h6 {
  font-size: 1.125rem;
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 4.444rem;
  }
  h2, .h2 {
    font-size: 3.0555rem;
  }
  h3, .h3 {
    font-size: 2.222rem;
  }
  h4, .h4 {
    font-size: 1.6667rem;
  }
  .h5, h5 {
    font-size: 1.38889rem;
  }
  .h6, h6 {
    font-size: 1.25rem;
  }
}


a:focus, button:focus {
  outline: none;
  box-shadow: none;
}

a.btn, a.wp-block-button__link, .wpcf7-form input[type="submit"] {
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
  height: 2.7778rem;
  line-height: 2.7778rem;
  padding: 0 1.6667rem;
  background: var(--light-blue);
  border: 1px solid var(--light-blue);
  border-radius: 1.38889rem;
  white-space: nowrap;
}
a.btn:hover, a.wp-block-button__link:hover, .wpcf7-form input[type="submit"]:hover {
  background: var(--dark-blue) !important;
  border-color: var(--dark-blue) !important;
  color: #fff !important;
  box-shadow: 1px 1px 5px rgb(130 130 130 / 10%);
}
a.btn:focus, .wpcf7-form input[type="submit"]:focus {
  outline: none;
  box-shadow: none;
}
a.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--dark-blue);
}

.alm-btn-wrap {
  margin-bottom: 0 !important;
  padding: 6.222rem 0 0 !important;
}
.ajax-load-more-wrap.white .alm-load-more-btn {
  background: #fff;
  border-radius: 3rem;
  border-color: #fff !important;
  color: var(--blue);
  font-size: 1rem;
  line-height: 4rem;
  letter-spacing: 0.05rem;
  height: 4rem;
  padding: 0 10rem;
  text-transform: uppercase;
  transition: all 0.3s ease-out !important;
}
.ajax-load-more-wrap.white .alm-load-more-btn:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .ajax-load-more-wrap.white .alm-load-more-btn {
    padding: 0 7rem;
    line-height: 3.333rem;
    height: 3.333rem;
  }
  .alm-btn-wrap {
    padding: 4.6667rem 0 0 !important;
  }
}

@media (max-width: 767px) {
.ajax-load-more-wrap.white .alm-load-more-btn {
    padding: 0 5rem;
    line-height: 2.666rem;
    height: 2.666rem;
  }
  .alm-btn-wrap {
    padding: 4rem 0 0 !important;
  }
}

.text-white {
  color: #fff;
}
.text-dark-blue {
  color: var(--dark-blue);
}
.text-blue {
  color: var(--blue);
}
.text-light-blue {
  color: var(--light-blue);
}
.text-grey {
  color: var(--grey);
}

.text-large {
  font-size: 1.3125rem;
}
.text-medium {
  font-size: 1rem;
}
.text-small {
  font-size: 0.7778rem;
}

.gen-border-radius {
  border-radius: 1.9444rem;
  overflow: hidden;
}
.gen-border-radius-sm {
  border-radius: 1.6667rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .gen-border-radius,
  .gen-border-radius-sm {
    border-radius: 1.333rem;
  }
}
@media (max-width: 767px) {
  .gen-border-radius,
  .gen-border-radius-sm {
    border-radius: 1rem;
  }
}

section.entry-content {
  position: relative;
  background: var(--light-grey);
  margin: 6.6667rem 0;
}
section.entry-content p {
  margin-bottom: 1.5rem;
}
section.entry-content h1, section.entry-content h2, section.entry-content h3, section.entry-content h4, section.entry-content h5, section.entry-content h6 {
  margin-bottom: 1rem;
}
/*section.entry-content h2 {
  margin-bottom: 3rem;
}*/
section.section {
  margin: 6.6667rem 0;
}
.section-padding {
  padding-bottom: 6.6667rem;
  padding-top: 6.6667rem;
}
.section-padding-lg {
  padding-bottom: 10.555rem;
  padding-top: 10.555rem;
}
@media (max-width: 1199px) {
  section.entry-content,
  section.section {
    margin: 5.625rem 0;
  }
  .section-padding {
    padding-bottom: 5.625rem;
    padding-top: 5.625rem;
  }
}
@media (max-width: 991px) {
  section.entry-content,
  section.section {
    margin: 5.333rem 0;
  }
  .section-padding {
    padding-bottom: 5.333rem;
    padding-top: 5.333rem;
  }
  .section-padding-lg {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
  section.entry-content h2 {
    margin-bottom: 2.666rem;
  }
}
@media (max-width: 767px) {
  section.entry-content,
  section.section {
    margin: 4rem 0;
  }
  .section-padding {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  .section-padding-lg {
    padding-bottom: 6.6667rem;
    padding-top: 6.6667rem;
  }
  section.entry-content h2 {
    margin-bottom: 2rem;
  }
}

.gap-wrapper {
  padding-left: 0.36111rem;
  padding-right: 0.36111rem;
}
.gaps-wrapper {
  margin-left: -0.36111rem;
  margin-right: -0.36111rem;
}
@media (max-width: 991px) {
  .gap-wrapper {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .gaps-wrapper {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
}


.section-heading {
  margin-bottom: 3.6667rem;
  font-size: 1.25rem;
}
.section-heading h2 {
  margin-bottom: 1rem;
}
.section-heading h2 span {
  color: var(--light-blue);
}

@media (max-width: 991px) {
  .section-heading {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 2.666rem;
  }
}


.wp-block-embed {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wp-block-embed-youtube .wp-block-embed__wrapper, .wp-block-embed-vimeo .wp-block-embed__wrapper {
   position: relative;
   padding-bottom: 56.25%;
   padding-top: 30px;
   height: 0;
   overflow: hidden; 
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe, .wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-quote {
  border: none !important;
  background: url(../images/quote.svg) no-repeat;
  padding-left: 30px;
  padding-top: 45px;
  color: var(--black);
  font-size: 1.125rem;
}
.wp-block-quote > * {
  margin: initial !important;
}
.wp-block-quote cite {
  font-size: 1rem;
  text-transform: uppercase;
  padding-top: 1rem;
  display: block;
}

.wp-block-separator {
  border-width: 2px;
  border-color: var(--light-grey);
}

.wp-block-image {
  position: relative;
}
.wp-block-image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(19 30 37 / 80%);
  margin: 0;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #fff;
  border-top-right-radius: 2.5rem;
}

.wp-block-gallery, .wp-block-image {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.wp-block-gallery .wp-block-image {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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


ul.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.444rem;
  display: flex;
}
ul.social-links li {
  margin: 0 0.5rem;
}
ul.social-links li:first-of-type {
  margin-left: 0;
}
ul.social-links li:last-of-type {
  margin-right: 0;
}
ul.social-links li a {
  color: #fff;
}
ul.social-links li a:hover {
  color: var(--light-blue);
}



/* hero banner */
.hero-banner {
  position: relative;
  overflow: hidden;
  /*height: 50.222rem;
  height: calc(100vh - var(--top-padding));*/
  background: #333;
  height: 40rem;
}
.hero-banner:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0 0 0 / 20%);
}
.hero-banner video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-image {
  height: 100%;
}
.hero-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  font-size: 1rem;
  color: #fff;
  padding: 4rem 3.333rem 2.7778rem;
}
.hero-banner-content-inner {
  max-width: 40rem;
}
@media (max-width: 1199px) {
  .hero-banner-content-inner {
    max-width: 36rem;
  }
}
@media (max-width: 991px) {
  .hero-banner {
    height: 35rem;
  }
  .hero-banner-content {
    padding: 3.333rem 2.666rem;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    height: 31.7333rem;
  }
  .hero-banner-content-inner {
    text-align: center;
    margin: 0 auto;
  }
  .hero-banner-content {
    padding: 2.666rem 2rem;
  }
}
@media (max-width: 575px) {
  .hero-banner-content {
    padding: 2.666rem 1.333rem;
  }
}


/* Sliding Banner */
.banner-slider-wrapper {
  margin-bottom: 2.222rem;
}
.banner-slider {
  -webkit-mask-image: radial-gradient(#fff, #000);/* To make border radius overflow hidden in Safari */
  mask-image: radial-gradient(#fff, #000);/* To make border radius overflow hidden in Safari */
  overflow: hidden;
}
.hero-banner-content-inner {
  max-width: 40rem;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-banner-content-inner .title {
  margin-bottom: 1rem;
  /*font-size: 5.5556rem;*/
  color: #fff;
  letter-spacing: -0.08333rem;
  line-height: 1;
}
.hero-banner-content-inner .title span {
  color: #5AA5C1;
}
.hero-banner-content-text {
  max-width: 17rem;
}
.hero-banner-content-inner p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
}
.hero-banner-content-inner a.btn {
  margin-top: 1.5rem;
}
.hero-banner-bottom {
  position: absolute;
  left: 0;
  right: 1.875rem;
  bottom: 8.375rem;
  z-index: 1;
}
.hero-banner-bottom .container-xxl {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-banner-bottom .caption-text {
  margin-bottom: 0;
  margin-right: 0.875rem;
}
.hero-banner-slider-nav {
  text-align: right;
}
.hero-banner-slider-nav a.slick-arrow {
  margin-left: 0.4rem;
}
a.slick-arrow {
  display: inline-block;
  width: 2.7778rem;
  height: 2.7778rem;
  line-height: 2.875rem;
  text-align: center;
  color: var(--dark-blue);
  background: #F3F4F7;
  border: 1px solid #F3F4F7;
  border-radius: 3rem;
  z-index: 1;
}
a.slick-arrow:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: #fff;
}



@media (max-width: 1699px) {
  .hero-banner-content-inner .title {
    font-size: 4.444rem;
  }
  .hero-banner-content-inner {
    max-width: 41rem;
  }
}
@media (max-width: 1280px) {
  .hero-banner-content .container-inner {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .banner-slider-wrapper {
    margin-bottom: 2rem;
  }
  .hero-banner-content-inner .title {
    font-size: 4rem;
  }
  .hero-banner-content-inner a.btn {
    margin-top: 0;
  }
  .hero-banner-content-text {
    max-width: initial;
  }
}
@media (max-width: 767px) {
  .banner-slider-wrapper {
    padding: 0;
    margin-bottom: 1.333rem;
  }
  .hero-banner-content .container-inner {
    padding-left: 0;
  }
  a.slick-arrow {
    width: 2.875rem;
    height: 2.875rem;
  }
  .hero-banner-content-inner .title {
    font-size: 2.333rem;
    letter-spacing: -0.035rem;
    margin-bottom: 1.6rem;
  }
  .hero-banner-content-text p {
    display: none;
  }
  .hero-banner-content-inner {
    justify-content: flex-end;
  }
}
@media (max-width: 575px) {
  .hero-banner-content-inner a.btn {
      margin-top: 0.5rem;
  }
  .hero-banner-content-inner .title {
    margin-bottom: 0.5rem;
  }
}


ul.slick-dots {
  /* display: flex;
  justify-content: center; */
  position: absolute;
  top: 4rem;
  right: 3.333rem;
  margin: 0;
}
ul.slick-dots li {
  position: relative;
  padding: 0;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  margin: 0 0 1.111rem;
  background: transparent;
}
ul.slick-dots li.slick-active {
  background: #fff;
}
ul.slick-dots li {
  border-color: #fff;
}
ul.slick-dots li:before {
  display: none;
}
ul.slick-dots li button {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  visibility: hidden;
  cursor: pointer;
}
@media (max-width: 991px) {
  ul.slick-dots {
    right: 2.666rem;
    top: 3.333rem;
  }
}
@media (max-width: 767px) {
  ul.slick-dots {
    right: 2rem;
    top: 2.666rem;
  }
}
@media (max-width: 575px) {
  ul.slick-dots {
    right: 1.333rem;
  }
}


a#down-arrow {
  position: absolute;
  bottom: 2.7778rem;
  right: 3.333rem;
}
a#down-arrow svg {
  width: 2.7778rem;
  height: 2.7778rem;
}
a#down-arrow:hover svg path,
a#down-arrow:hover svg rect,
a#down-arrow:hover svg circle {
  transition: all 0.3s ease-out;
}
a#down-arrow:hover svg path,
a#down-arrow:hover svg rect {
  fill: var(--light-blue);
}
a#down-arrow:hover svg circle {
  stroke: var(--light-blue);
}
}
@media (max-width: 991px) {
  a#down-arrow {
    right: 2.666rem;
    bottom: 3.333rem;
  }
}
@media (max-width: 767px) {
  a#down-arrow {
    right: 2rem;
    bottom: 2.666rem;
  }
}
@media (max-width: 575px) {
  a#down-arrow {
    right: 1.333rem;
  }
}





.footer-body {
  background: var(--blue);
  color: #fff;
  margin-bottom: 2.222rem;
  padding: 4.333rem 0;
  position: relative;
  overflow: hidden;
}
.footer-body .shape {
  position: absolute;
  right: 0;
  top: -3.5556rem;
  bottom: -3rem;
  height: 100%;
}
.footer-body .shape img {
  width: 30.7222rem;
  height: 56.6111rem;
}
.footer-body a {
  color: #fff;
}
.footer-body a:hover {
  color: var(--grey);
}
a.footer-logo {
  display: inline-block;
}
a.footer-logo img {
  height: 5.222rem;
  width: auto;
  transition: all 0.3s ease-out;
}
a.footer-logo:hover img {
  opacity: 0.8;
}
.footer-slogan {
  font-weight: 300;
  line-height: 1.333;
  max-width: 12.444rem;
}
.footer-slogan>:last-child {
  margin-bottom: 0;
}
.footer-logo-content {
  margin-bottom: 4.444rem;
}
.footer-logo-content .row {
  align-items: flex-end;
}
h5.footer-title {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.0138889rem;
  margin-bottom: 1.5rem;
}
ul.footer-menu {
  padding-left: 0;
}
ul.footer-menu li {
  margin-bottom: 0.7778rem;
  list-style-type: none;
  line-height: 1.2;
  font-weight: 300;
}
.footer-contact-info {
  font-weight: 300;
}
.footer-contact-info p {
  line-height: 1.8;
  margin-bottom: 2.125rem;
}
.footer-body .social-links {
  margin: 3.75rem 0 2.5rem;
}
.bottom-line {
  font-size: 0.7778rem;
  font-weight: 300;
}
.bottom-line p {
  opacity: 0.5;
}
.bottom-line .copyright {
  max-width: 35.333rem;
}
.bottom-line .copyright p {
  margin-bottom: 2.166222rem;
}
.bottom-line .copyright>:last-child {
  margin-bottom: 0;
}
ul.footer-certification-logos {
  margin-left: -1rem;
  padding-left: 0;
  list-style: none;
  display: flex;
}
ul.footer-certification-logos li {
  margin: 0 0.6667rem;
}
ul.footer-certification-logos li a {
  display: inline-block;
}
ul.footer-certification-logos li a img {
  max-width: initial;
  height: 5rem;
  transition: all 0.3s ease-out;
}
ul.footer-certification-logos li a:hover img {
  opacity: 0.8;
}
ul.footer-certification-logos li:first-child {
  margin-left: 0;
}
ul.footer-certification-logos li:last-child {
  margin-right: 0;
}
.footer-body .wrap-inner {
  position: relative;
}

@media (max-width: 1499px) {
  .footer-contact-info p,
  .footer-slogan,
  ul.footer-menu li {
    font-size: 0.875rem;
  }
}
@media (max-width: 1399px) {
  ul.footer-certification-logos {
    margin-left: 0;
  }
  footer.site-footer {
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .footer-body {
    padding: 4rem 0;
    margin-bottom: 2rem;
  }
  .footer-body .shape img {
    width: 18rem;
  }
  a.footer-logo img,
  ul.footer-certification-logos li a img {
    height: 4rem;
  }
  .footer-slogan {
    max-width: initial;
  }
  .footer-logo-content {
    margin-bottom: 4rem;
  }
  .footer-contact-info p, .footer-slogan, ul.footer-menu li {
    font-size: 0.8rem;
  }
  .footer-body .social-links {
    margin: 3.333rem 0 2rem;
  }
}
@media (max-width: 767px) {
  .footer-body {
    padding: 3rem 0;
    margin-bottom: 1.333rem;
  }
  .footer-body .shape {
    display: none;
  }
  .footer-body {
    text-align: center;
    border-radius: 0;
  }
  a.footer-logo {
    margin-bottom: 2rem;
  }
  .footer-contact-info p, .footer-slogan, ul.footer-menu li {
    font-size: 1rem;
  }
  .footer-slogan {
    max-width: 11rem;
    margin: 0 auto;
  }
  .footer-logo-content {
    margin-bottom: 2.666rem;
  }
  h5.footer-title {
    margin-bottom: 1.25rem;
  }
  ul.footer-menu {
    margin-bottom: 2rem;
  }
  .footer-contact-info p {
    margin-bottom: 1.5rem;
  }
  .footer-body .social-links {
    justify-content: center;
    margin: 1rem 0 2.666rem;
  }
  .bottom-line .copyright {
    max-width: 24.26667rem;
    margin:  0 auto 2.666rem;
  }
  .bottom-line .copyright p {
    margin-bottom: 1.333rem;
  }
  ul.footer-certification-logos {
    justify-content: center;
    margin-bottom: 0;
  }
  footer.site-footer .container-xxl,
  footer.site-footer {
    padding: 0;
  }
}

.page-header h1.page-title {
  max-width: 50.7778rem;
}
h1.page-title span {
  color: var(--light-blue);
}

/* Contact styles */
section.contact-page-banner-section {
  margin-bottom: 2.222rem;
}
figure.cp-banner-img img {
  height: 38.3333rem;
  object-fit: cover;
}
.contact-page-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cp-banner-content-wrapper h1.page-title {
  color: #fff;
}
.contact-page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 93, 149, 0.75);
}
.cp-banner-content-wrapper {
  position: absolute;
  bottom: 0;
  height: calc(50% + 2.7778rem);
  width: 31rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cp-banner-content {
  padding-bottom: 4rem;
  line-height: 1.333;
}
.cp-banner-content>:last-child {
  margin-bottom: 0;
}
figure.cp-banner-img {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  figure.cp-banner-img img {
    height: 26.6667rem;
  }
  .cp-banner-content-wrapper {
    height: calc(50% + 2rem);
  }
  .cp-banner-content {
    padding-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  section.contact-page-banner-section {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  section.contact-page-banner-section {
    margin-bottom: 1.333rem;
  }
  figure.cp-banner-img img {
    height: 20rem;
  }
  .cp-banner-content {
    padding-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  figure.cp-banner-img img {
    height: 23rem;
  }
  .cp-banner-content {
    padding-bottom: 1.333rem;
  }
  .cp-banner-content-wrapper {
    width: 100%;
    padding: 0 1.25rem;
  }
}


.contact-form-section {
  margin-bottom: 2.222rem;
}
.contact-form {
  background: #fff;
  padding: 4.333rem 4.6667rem;
  height: 100%;
}
.contact-form .section-heading h2 {
  /*max-width: 28.222rem;*/
  line-height: 1.090901;
}
.contact-form-wrapper .gap-wrapper {
  height: 100%;
}
.contact-info {
  color: var(--dark-blue);
  font-weight: 300;
  margin-bottom: 2rem;
}
figure.contact-form-img,
figure.contact-form-img img {
  width: 100%;
  height: 100%;
}
figure.contact-form-img img {
  object-fit: cover;
}

.contact-form-img-slider, .contact-form-img-slider .slick-list, .contact-form-img-slider .slick-track {
  height: 100%;
}

@media (max-width: 1399px) {
  .contact-form {
    padding: 3.75rem 4rem;
  }
}
@media (max-width: 1199px) {
  .contact-form {
    padding: 3rem 3.333rem;
  }
}
@media (max-width: 991px) {
  .contact-form-section {
    margin-bottom: 2rem;
  }
  .contact-form {
    padding: 1.6rem 2rem;
  }
}
@media (max-width: 767px) {
  .contact-form-section {
    margin-bottom: 1.333rem;
  }
  figure.contact-form-img, figure.contact-form-img img {
    height: auto;
  }
}


.wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
}
.wpcf7-list-item {
  margin: 0;
}
.form-element {
  margin-bottom: 1rem;
}
.form-control {
  height: 3.333rem;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
  border-radius: 0.27778rem;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 300;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--light-grey);
}
.form-element label {
  display: block;
  margin-bottom: 1rem;
  color: var(--dark-text);
  font-weight: 700;
  font-size: 0.875rem;
}
.wpcf7-list-item-label {
  font-weight: 400;
}
.wpcf7-list-item label {
  margin-bottom: 0;
  color: var(--dark-blue);
}
.wpcf7-list-item-label span {
  margin-left: 1.25rem;
}
textarea.form-control {
  height: 5.8889rem;
  padding: 0.75rem 1rem;
}
.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
  border-width: 1px;
  padding: 0.5rem 1rem;
}
.form-element input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  border-radius: 0.25rem;
  border-color: var(--light-grey);
}
.contact-form-wrap-inner .wpcf7-form input[type="submit"] {
  margin-top: 0.8889rem;
}
@media (min-width: 1200px) {
  .form-element input[type="checkbox"] {
    width: 2.5rem;
    height: 2.5rem;
    vertical-align: middle;
  }
}
.wpcf7-list-item-label span a {
  color: var(--dark-blue);
}
.wpcf7-list-item-label span a:hover {
  color: var(--light-blue);
}




/* Bootstrap Material Input like Style */
.form-element.input-material {
  position: relative;
}
.form-element.input-material label {
  color: var(--more-dark-blue);
  font-size: 1rem;
  font-weight: 300;
  position: absolute;
  pointer-events: none;
  left: 1rem;
  top: 0.8889rem;
  bottom: 1px;
  transition: 0.1s ease all;
  -moz-transition: 0.1s ease all;
  -webkit-transition: 0.1s ease all;
}
.form-element.input-material.text-area-form-element span.wpcf7-form-control-wrap ~ label {
  bottom: 90%;
  bottom: calc(100% - 62px);
  background: #fff;
  padding: 4px 6px;
}
.form-element.input-material .form-control:required ~ label::after,
.form-element.input-material .form-select:required ~ label::after {
  content: "*";
  color: var(--more-dark-blue);
  padding-left: 2px;
  font-size: 0.8em;
}
.form-element.input-material .form-control:focus, .form-element.input-material .form-control[value]:not([value=""]),
.form-element.input-material .form-select:focus,
.form-element.input-material .form-select[value]:not([value=""]) {
  color: #212529;
  background: var(--light-grey);
}
.form-element.input-material span.wpcf7-form-control-wrap.is-focused ~ label,
.form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-control[value]:not([value=""]) ~ label,
.form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select:focus ~ label,
.form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select[value]:not([value=""]) ~ label {
  top: unset;
  border-radius: 0.25rem 0.25rem 0 0;
  bottom: 100%;
  bottom: calc(100% - 0.777rem);
  background: var(--light-grey);
  font-size: 0.6667rem;
  color: var(--more-dark-blue);
  font-weight: 400;
  border: 0;
  padding: 4px 6px;
}
.form-element.input-material label {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .form-control {
    height: 2.75rem;
    font-size: 0.875rem;
  }
  .form-element.input-material label {
    top: 0.75rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 575px) {
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused ~ label,
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-control[value]:not([value=""]) ~ label,
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select:focus ~ label,
  .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select[value]:not([value=""]) ~ label {
    padding: 2px 4px;
    bottom: calc(100% - 12px);
  }
}



/* Contact form Section Blue */
section.contact-form-section.blue .contact-form .section-heading h2 {
  color: #fff;
}
section.contact-form-section.blue .contact-form .section-heading h2 span.highlight {
  color: #5AA5C1;
}
section.contact-form-section.blue .contact-info,
section.contact-form-section.blue .contact-info a {
  color: #fff;
}
section.contact-form-section.blue .contact-info a:hover {
  color: var(--light-blue);
}
section.contact-form-section.blue .contact-form {
  background: var(--blue);
  color: #fff;
}
section.contact-form-section.blue .form-control {
  background: var(--little-light-blue);
  border-color: var(--little-light-blue);
}
section.contact-form-section.blue .form-control:focus {
  background: var(--little-light-blue);
}
section.contact-form-section.blue .form-element.input-material .form-control:focus,
section.contact-form-section.blue .form-element.input-material .form-control[value]:not([value=""]),
section.contact-form-section.blue .form-element.input-material .form-select:focus,
section.contact-form-section.blue .form-element.input-material .form-select[value]:not([value=""]) {
  background: var(--little-light-blue);
  color: #fff;
}
section.contact-form-section.blue .form-element.input-material label {
  color: #fff;
}
section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused ~ label,
section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-control[value]:not([value=""]) ~ label,
section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select:focus ~ label,
section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select[value]:not([value=""]) ~ label {
  background: var(--little-light-blue);
  color: #fff;
}

@media (max-width: 767px) {
  section.contact-form-section.blue .contact-form .section-heading {
    color: var(--black-text);
  }
  section.contact-form-section.blue .contact-form .section-heading h2 {
    color: var(--dark-blue);
    margin-left: auto;
    margin-right: auto;
  }
  section.contact-form-section.blue .contact-info, section.contact-form-section.blue .contact-info a {
    color: var(--dark-blue);
  }
  section.contact-form-section.blue .contact-info a:hover {
    color: var(--blue);
  }
  section.contact-form-section.blue .contact-form {
    padding: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  section.contact-form-section.blue .form-control {
    background: #fff;
    border-color: #fff;
  }
  section.contact-form-section.blue .form-control:focus {
    background: #fff;
  }
  section.contact-form-section.blue .form-element.input-material .form-control:focus,
  section.contact-form-section.blue .form-element.input-material .form-control[value]:not([value=""]),
  section.contact-form-section.blue .form-element.input-material .form-select:focus,
  section.contact-form-section.blue .form-element.input-material .form-select[value]:not([value=""]) {
    background: #fff;
    color: var(--dark-blue);
  }
  section.contact-form-section.blue .form-element.input-material label {
    color: var(--dark-blue);
  }
  section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused ~ label,
  section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-control[value]:not([value=""]) ~ label,
  section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select:focus ~ label,
  section.contact-form-section.blue .form-element.input-material span.wpcf7-form-control-wrap.is-focused .form-select[value]:not([value=""]) ~ label {
    background: #fff;
    color: var(--dark-blue);
}
}




/*  Blog  */
.blog-header {
  margin: 2.75rem 0 3.5rem;
}
.blog-header h1.page-title {
  letter-spacing: -0.06667rem;
  line-height: 1.125;
  max-width: 49.888rem;
  text-align: center;
  margin: 0 auto 2rem;
}
.posts-container {
  margin: 3rem 0 5.5556rem;
}

/*.posts-grid {
}
.posts-grid-item {
  margin: 1.5rem 0;
}*/


.post-grid-content h5.h6 {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.posts-grid-item-inner {
  position: relative;
}

.post-grid-image {
  position: relative;
  border-radius: 1.6667rem;
  overflow: hidden;
}

.post-grid-image:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.post-grid-image img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.posts-grid-item-inner:hover .post-grid-image img {
  transform: scale(1.1);
}

.post-cats {
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.post-cats a {
  font-size: 0.875rem;
  background: var(--blue);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.post-cats a:hover {
  background: var(--blue);
}

.post-grid-content {
  position: relative;
  padding-top: 1.25rem;
}

.post-grid-content h5 {
  font-weight: 500;
  letter-spacing: -0.0138889rem;
}

.posts-grid-item-inner:hover a.btn {
  background: var(--blue);
  color: #fff;
}

.posts-grid-item-inner:hover a.btn svg {
  color: #fff;
}

.post-grid-content time.entry-date {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--black-text);
}

.post-grid-content h6.h6 a {
  color: var(--dark-blue);
}

.post-grid-content h6.h6 a:hover {
  color: var(--blue);
}

a.read-more-link {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

a.read-more-link i {
  margin-left: 0.5rem;
}

a.read-more-link:hover {
  color: var(--blue);
}


.post-content {
  margin: 2rem 0 4rem;
  position: relative;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-thumb img {
  border-radius: 8px;
  display: block;
  margin: 0 auto 2rem;
}


a.back-link {
  text-transform: uppercase;
}


h2.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.post-categories h6.filter-heading {
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  margin-bottom: 0;
}
.post-categories {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-categories ul {
  list-style: none;
  margin: 0;
  display: flex;
  margin-left: -0.2222rem;
  margin-right: -0.2222rem;
  padding-left: 2.8889rem;
}
.portfolio-categories ul {
  margin-bottom: 3.25rem;
}
.post-categories ul li {
  margin-bottom: 0.25rem;
  padding: 0.2222rem;
}
.post-categories ul li a {
  background: #fff;
  display: block;
  padding: 1rem 2.111rem;
  color: var(--blue);
  border: 1px solid #fff;
  border-radius: 3rem;
  font-weight: 300;
}
.post-categories ul li a:hover,
.post-categories ul li.active a {
  background: var(--blue);
  color: #fff;
}

@media (max-width: 991px) {
  .posts-container h1.page-title {
    margin-bottom: 4rem;
  }
  .post-categories ul li a {
    padding: 0.5rem 1.5rem;
  }
  .post-categories ul {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .posts-container h1.page-title {
    margin-bottom: 3.333rem;
  }
}
@media (max-width: 575px) {
  .post-categories ul {
    padding-left: 0;
  }
  .post-categories {
    display: block;
    text-align: center;
  }
  .post-categories h6.filter-heading {
    margin-bottom: 1.333rem;
  }
}

/* Blog */


/* Blog Single */

.page-banner {
  background: var(--blue);
  color: #fff;
}
.page-banner h1 {
  color: #fff;
  max-width: 58.7778rem;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.06667rem;
}
.page-banner h1 span {
  color: var(--light-blue);
}
.page-banner-img {
  margin-top: -24rem;
}
.page-banner-img .post-thumbnail {
  position: relative;
  padding-bottom: 56.6%;
}
.page-banner-img .post-thumbnail img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner-with-thumbnail {
  padding-bottom: 27.7778rem;
}

@media (max-width: 1199px) {
  .page-banner-with-thumbnail h1 {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .page-banner-img {
    margin-top: -15rem;
  }
  .page-banner-with-thumbnail {
    padding-bottom: 18rem;
  }
}
@media (max-width: 575px) {
  .page-banner-with-thumbnail h1 {
    padding: 0 1.333rem;
  }
  .page-banner-img {
    margin-top: -7rem;
  }
  .page-banner-with-thumbnail {
    padding-bottom: 10rem;
  }
}




.related-section-heading-wrapper h6 {
  color: var(--light-blue);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.333;
  letter-spacing: 0.05rem;
  margin-bottom: 1rem;
}
.related-section-heading .section-heading>:last-child {
  margin-bottom: 0;
}
.related-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
/* Blog Single */

figure.about-entry-main-img,
figure.about-entry-img {
  position: relative;
  overflow: hidden;
}
figure.about-entry-main-img:before,
figure.about-entry-img:before {
  content: '';
  display: block;
  padding-bottom: 133.73%;
}
figure.about-entry-main-img img,
figure.about-entry-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
figure.about-entry-img {
  max-width: 19.8889rem;
}
figure.about-entry-img:before {
  padding-bottom: 100%;
}
.about-entry-content {
  font-weight: 300;
  line-height: 1.3;
}
.about-entry-content-wrapper {
  max-width: 44.444rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.about-entry-content-wrapper .section-heading {
  max-width: 43.8889rem;
}
.about-entry-content-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.about-entry-content-text-wrapper a.btn {
  align-self: flex-start;
}
@media (max-width: 1499px) {
  figure.about-entry-img {
    max-width: 19rem;
  }
}
@media (max-width: 991px) {
  .about-entry-main-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-entry-content-wrapper {
    text-align: center;
  }
  .about-entry-content-text-wrapper a.btn {
    margin-bottom: 3rem;
    align-self: center;
  }
  figure.about-entry-img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  figure.about-entry-img {
    max-width: initial;
  }
}


.services-entry-wrapper {
  position: relative;
  background: var(--blue);
  overflow: hidden;
}
.services-entry-wrapper .shape {
  position: absolute;
  left: 0;
  top: -3.5556rem;
  bottom: -3rem;
  height: 100%;
}
.services-entry-wrapper .shape img {
  width: 30.7222rem;
  height: 56.6111rem;
}
.section-entry-content {
  max-width: 44.6667rem;
  position: relative;
}
.section-entry-content h2 {
  color: #fff;
}
.section-entry-content h2 span {
  color: #5AA5C1;
}
.section-entry-content .section-heading {
  max-width: 20.5556rem;
}
.services-list-wrapper h4 {
  color: #fff;
}
.services-list-wrapper {
  margin-bottom: 3.5rem;
}
ul.services-list li {
  margin-bottom: 0.5rem;
  min-height: 1.6667rem;
  overflow: hidden;
  font-weight: 300;
}
ul.services-list li a {
  color: #fff;
  position: relative;
  padding-left: 2.444rem;
  display: block;
}
ul.services-list li a:hover,
ul.services-list li a:focus {
  color: var(--grey);
}
ul.services-list li a svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6667rem;
  height: 1.6667rem;
}
ul.services-list li a svg path:first-child {
  transition: all 0.3s ease-out;
}
ul.services-list li a:hover svg path:first-child,
ul.services-list li a:focus svg path:first-child {
  fill: var(--more-dark-blue);
}

@media (max-width: 991px) {
  .services-list-wrapper {
    margin-bottom: 3rem;
  }
  .services-entry-wrapper {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (max-width: 767px) {
  .services-list-wrapper {
    margin-bottom: 2rem;
  }
  .services-entry-wrapper {
    border-radius: 0;
  }
  .services-entry-wrapper .shape {
    left: initial;
    right: 0;
  }
  .services-entry-section .container-xxl,
  .services-entry-section .container-xxl .wrap {
    padding: 0;
  }
  .section-entry-content .section-heading {
    max-width: initial;
  }
}
@media (max-width: 575px) {
  .services-entry-wrapper .shape {
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
  }
  .services-entry-wrapper .shape img {
    width: 100vw;
    height: 100%;
  }
}


.section-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.6667rem;
}
.section-heading-wrapper .section-heading {
  max-width: 27.333rem;
}
.section-heading-wrapper .section-heading h2 {
  margin-bottom: 0;
}
.heading-btns-wrapper {
  display: flex;
  align-items: flex-end;
  position: absolute;
  right: 0;
  top: 4rem;
}
a.slick-arrow.slick-next {
  margin-left: 1rem;
}
.ba-carousel-nav {
  margin-left: 1.6667rem;
}
@media (max-width: 1199px) {
  .heading-btns-wrapper {
    top: 3rem;
  }
}
@media (max-width: 991px) {
  .section-heading-wrapper {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .section-heading-wrapper {
    margin-bottom: 2.666rem;
  }
  .heading-btns-wrapper {
    margin-top: 2rem;
    position: initial;
    justify-content: space-between;
  }
  .section-heading-wrapper .section-heading {
    max-width: initial;
    text-align: center;
  }
}


.team-carouesl-wrapper {
  background: #fff;
}
figure.team-img {
  position: relative;
}
figure.team-img:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
figure.team-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 2.222rem;
}
.team-img-wrapper {
  position: relative;
}
.team-img-wrapper a.plus-btn {
  position: absolute;
  right: 1.333rem;
  top: 1.333rem;
  width: 2.7778rem;
  height: 2.7778rem;
  background: #F3F4F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-img-wrapper a.plus-btn:hover {
  background: var(--dark-blue);
}
.team-img-wrapper a.plus-btn svg path {
  transition: all 0.3s ease-out;
}
.team-img-wrapper a.plus-btn:hover svg path {
  fill: #fff;
}
.team-content {
  font-weight: 300;
}
.team-content h5 {
  margin-bottom: 0;
}
.team-mem-contact-info p {
  margin-bottom: 0;
}
.team-mem-contact-info p a {
  color: var(--black-text);
}
.team-mem-contact-info p a:hover,
.team-mem-contact-info p a:focus {
  color: var(--blue);
}
.team-carousel {
  margin-left: -0.6667rem;
  margin-right: -0.6667rem;
}
.team-carousel .slide {
  padding-left: 0.6667rem;
  padding-right: 0.6667rem;
}
@media (max-width: 1199px) {
  .team-content {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .team-carousel {
    margin-left: 0;
    margin-right: 0;
  }
  .team-carousel .slide {
    padding: 0;
    margin-right: 1.111rem;
    width: 17.333rem;
  }
  .team-carousel .slick-list {
    overflow: visible;
  }
  .team-carousel {
    width: 100vw;
    overflow: hidden;
    z-index: 1;
  }
  .team-carouesl-wrapper {
    border-radius: 0;
  }
  section.team-carousel-section .container-xxl,
  section.team-carousel-section .container-xxl .wrap {
    padding: 0;
  }
}


section.reviews-slider-section .section-heading-wrapper .section-heading {
  max-width: 34rem;
}


/* Modal Popup Styles */
.modal.team-modal .modal-body figure.team-img {
  max-width: 10.7778rem;
  margin-left: auto;
}
.modal-backdrop {
  background: rgba(255, 255, 255, 0.20);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.modal.team-modal .modal-dialog {
  max-width: 46.5556rem;
}
.modal.team-modal .modal-body {
  padding: 3.8889rem;
}
.team-modal button.btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  z-index: 1;
}
.team-modal .modal-content {
  border-color: #C7D9E0;
}
body.modal-open .team-wrapper {
  filter: blur(10px);
}
.team-content-wrapper {
  margin-bottom: 3.111rem;
}
.team-mem-detail {
  font-weight: 300;
}
.team-mem-detail>:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .modal.team-modal .modal-body {
    padding: 2.7778rem;
  }
}
@media (max-width: 767px) {
  .modal.team-modal .modal-body {
    padding: 2.666rem;
  }
  .modal.team-modal .modal-dialog {
    max-width: var(--bs-modal-width);
  }
  .team-content-wrapper{
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .modal.team-modal .modal-body figure.team-img {
    margin-left: initial;
  }
  .modal.team-modal .modal-body {
    padding: 2rem;
  }
  .team-content-wrapper{
    margin-bottom: 1.333rem;
  }
  .modal.team-modal .modal-body figure.team-img {
    max-width: 8rem;
  }
}



.teams-wrapper .team-wrapper {
  margin-bottom: 4.7778rem;
}
.teams-wrapper {
  border-bottom: 1px solid #C7D9E0;
  padding-bottom: 2rem;
  /*border-top: 1px solid #C7D9E0;
  padding-top: 1.111rem;*/
}

@media (max-width: 991px) {
  .teams-wrapper .team-wrapper {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .teams-wrapper .team-wrapper {
    margin-bottom: 2.666rem;
  }
}
@media (max-width: 575px) {
  .teams-wrapper .team-wrapper {
    margin-bottom: 2rem;
  }
}


.cta-content {
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 3.7778rem;
}
@media (max-width: 991px) {
  .cta-content {
    margin-bottom: 2.666rem;
  }
}
@media (max-width: 767px) {
  .cta-content {
    margin-bottom: 2rem;
  }
}


.cta-width-bg-img-wrapper {
  position: relative;
  color: #fff;
  background: var(--blue);
}
.cta-width-bg-img-wrapper .shape {
  position: absolute;
  left: 0;
  top: -3.5556rem;
  bottom: -3rem;
  height: 100%;
}
.cta-width-bg-img-wrapper .shape img {
  width: 30.7222rem;
  height: 56.6111rem;
}
.cta-width-bg-img-wrapper .cta-wrapper {
  position: relative;
}
.cta-width-bg-img-wrapper h2 {
  color: #fff;
}
.sub-heading h6 {
  margin-bottom: 2.444rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
.cta-width-bg-img-wrapper .sub-heading h6 {
  color: #fff;
}
@media (max-width: 991px) {
  .sub-heading h6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .sub-heading h6 {
    margin-bottom: 1.6667rem;
  }
  .cta-width-bg-img-wrapper .shape {
    right: 0;
    left: initial;
  }
  .cta-width-bg-img-wrapper {
    border-radius: 0;
  }
  .cta-width-bg-img-section .container-xxl,
  .cta-width-bg-img-section .container-xxl .wrap {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .cta-width-bg-img-wrapper .shape img {
    width: 100vw;
    height: 100%;
  }
  .cta-width-bg-img-wrapper .shape {
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
  }
}


/* Left Right : Image Text Section */
section.image-text-section {
  margin: 2.222rem 0;
}
.image-text-content {
  color: var(--dark-blue);
  font-weight: 300;
}
.image-content img {
  width: 100%;
  height: 100%;
  min-height: 44.7778rem;
  object-fit: cover;
  overflow: hidden;
}
.image-text-content .image-content {
  max-width: 44.444rem;
  height: 100%;
}
.image-text-content .sub-heading h6 {
  color: var(--light-blue);
}
.image-text-content .text-content {
  background: #fff;
  padding: 5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.image-text-wrapper .gap-wrapper {
  height: 100%;
}
.image-text-content .text-content-content a.btn {
  margin-top: 1.6667rem;
}
.image-text-content .row:not(:last-child) {
  margin-bottom: 2.222rem;
}
.image-text-content.reversed .row {
  flex-direction: row-reverse;
}
.block_bg_light-blue .text-content {
  background: #E4EDF2;
  color: var(--dark-blue);
}
.block_bg_blue .text-content {
  background: var(--light-blue);
  color: #fff;
}
.block_bg_dark-blue .text-content {
  background: var(--blue);
  color: #fff;
}
.block_bg_blue .section-heading h2, .block_bg_dark-blue .section-heading h2 {
  color: #fff;
}
.block_bg_blue .sub-heading h6 {
  color: #fff;
}

@media (max-width: 1199px) {
  .image-text-content .text-content {
    padding: 4rem;
  }
}
@media (max-width: 991px) {
  section.image-text-section {
    margin: 2rem 0;
  }
  .image-text-content {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
  .image-text-content .image-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .text-content {
    margin: 2rem 0 0;
  }
  .image-content img {
    width: 100%;
    height: 26.6667rem;
    min-height: initial;
  }
  .image-text-content .row:not(:last-child) {
    margin-bottom: 2rem;
  }
  .image-text-content .text-content {
    padding: 3rem;
  }
  .image-text-wrapper .gap-wrapper {
    height: initial;
  }
}
@media (max-width: 767px) {
  section.image-text-section {
    margin: 1.333rem 0;
  }
  .image-text-content {
    margin-top: 3rem;
  }
  .image-text-content .text-content {
    padding: 2rem;
  }
  .image-content img {
    height: 24rem;
  }
}
@media (max-width: 575px) {
  .image-content img {
    height: 16rem;
  }
  .image-text-content .text-content {
    padding: 1.333rem;
    margin: 1.333rem 0 0;
  }
}



.faqs-section-heading-wrapper {
  height: 100%;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
  max-width: 24.333rem;
}
.faqs-section-heading-wrapper .section-heading h2 {
  margin-bottom: 8.5rem;
}
.faqs-heading .sub-heading h6 {
  color: var(--light-blue);
}
.faq-heading-content>:last-child {
  margin-bottom: 0;
}
.faq-heading-content {
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.3;
}

.faqs-wrapper {
  max-width: 48.8333rem;
  margin-left: auto;
}
.faqs-wrapper .accordion-block {
  width: 100%;
  max-width: initial;
}
.accordion-item {
  border: 0 !important;
  border-radius: 2.7778rem !important;
  margin: 1.6667rem 0;
  overflow: hidden;
}
.accordion-item:first-child {
  margin-top: 0;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.faqs-wrapper .accordion-block .accordion-item:last-child {
  margin-bottom: 0;
}
.faqs-wrapper .accordion-header a {
  background: #fff;
  /* color: var(--dark-blue) !important; */
  padding: 1.708889rem 2.444rem;
  transition: all 0.5s ease-out;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
}
.faqs-wrapper .accordion-header a:hover {
  background: var(--blue);
  color: #fff;
}
.faqs-wrapper .accordion-button:not(.collapsed) {
  border-radius: 0.625rem 0.625rem 0 0 !important;
  background: #fff;
}
.faqs-wrapper .accordion-body {
  padding: 1rem 2.444rem 2.444rem;
  background: #fff;
  /* border-radius: 0 0 0.625rem 0.625rem;
  overflow: hidden; */
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
}

.accordion-header a.collapsed:after {
  content: '+';
}
.accordion-header a:after,
.accordion-button:not(.collapsed)::after {
  content: '+';
  font-size: 1.5rem;
  text-align: center;
  color: var(--dark-blue);
  width: 2.7778rem;
  height: 2.7778rem;
  line-height: 2.7778rem;
  background: #F3F4F7;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 1.111rem;
  right: 2.444rem;
}
.accordion-header a:hover:after,
.accordion-button:hover:not(.collapsed)::after {
  background: #fff;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  transform-origin: center center;
  top: 1.111rem;
}
section.faqs-section .section-heading-wrapper {
  margin-bottom: 2.5rem;
}
.faqs-wrapper .accordion-body>:last-child {
  margin-bottom: 0;
}

.accordion-body-content>:last-child {
  margin-bottom: 0;
}

@media (max-width: 1499px) {
  .faqs-section-heading-wrapper .section-heading h2 {
    margin-bottom: 5rem;
  }
}
@media (max-width: 1199px) {
  .faqs-section-heading-wrapper .section-heading h2 {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .faqs-wrapper .accordion-header a {
    padding: 1.333rem 2rem;
  }
  .accordion-header a:after, .accordion-button:not(.collapsed)::after {
    right: 2rem;
    top: 0.6667rem;
  }
  .faqs-wrapper .accordion-body {
    padding: 1rem 2rem 2rem;
  }
  .accordion-item {
    border-radius: 2rem !important;
  }
  .faqs-section-heading-wrapper .section-heading h2 {
    margin-bottom: 1rem;
  }
  .faq-heading-content {
    margin-bottom: 2.222rem;
  }
}
@media (max-width: 767px) {
  .faqs-section-heading-wrapper {
    margin-bottom: 2rem;
  }
}


.blog-section-wrrapper {
  background: #fff;
}
.blog-section-wrrapper .sub-heading h6 {
  color: var(--light-blue);
}
.section-heading-wrapper .section-heading {
  max-width: 35.333rem;
}
.blog-section-wrrapper .heading-btns-wrapper {
  top: initial;
  bottom: 0;
}
@media (max-width: 767px) {
  .blog-section-wrrapper .heading-btns-wrapper {
   text-align: center;
   display: block;
   margin-bottom: 2rem;
  }
}


ul.service-list li {
  border-radius: 1.111rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #EBF2F5;
  margin-bottom: 1.7778rem;
  padding: 1.333rem 1.6667rem;
  position: relative;
}
ul.service-list li > a {
  position: absolute;
  top: -10rem;
}
figure.service-list-img {
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
  border-radius: 1.111rem;
  max-width: 11.05556rem;
}
figure.service-list-img:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
figure.service-list-img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.service-list-content .row {
  align-items: center;
}
.service-list-content h4 {
  font-weight: 500;
  letter-spacing: -0.016667rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.service-list-content-content {
  max-width: 33.6667rem;
  font-weight: 300;
}
.service-list-content a.btn {
  width: 100%;
}
@media (max-width: 991px) {
  .service-list-content a.btn {
    width: auto;
  }
}
@media (max-width: 767px) {
  ul.service-list li {
    margin-bottom: 1.333rem;
  }
  .service-list-content-content {
    margin-bottom: 1rem;
  }
  .service-list-content h4 {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 575px) {
  figure.service-list-img {
    max-width: 8rem;
  }
}


.page-banner-wrapper.two-coled .page-banner-img {
  margin-top: 0;
  height: 100%;
}
.page-banner-wrapper.two-coled .page-banner-img .post-thumbnail {
  height: 100%;
}
.page-banner-wrapper.two-coled .page-banner-img .post-thumbnail img {
  min-height: 44.7778rem;
  height: 100%;
}
.page-banner-wrapper.two-coled .page-banner h1 {
  text-align: initial;
  line-height: 1.125;
  max-width: 26.222rem;
  margin: 0 0 4rem;
}
.page-banner-wrapper.two-coled .page-banner {
  padding: 8.333rem 5rem;
  height: 100%;
}
.page-banner h6 {
  color: #5AA5C1;
}
.page-banner-intro-text {
  line-height: 1.3;
}
.page-banner-intro-text>:last-child {
  margin-bottom: 3rem;
}
.page-banner-wrapper.two-coled .gap-wrapper {
  height: 100%;
}

@media (max-width: 1399px) {
  .page-banner-wrapper.two-coled .page-banner {
    padding: 7.5rem 5rem;
  }
}
@media (max-width: 1199px) {
  .page-banner-wrapper.two-coled .page-banner {
    padding: 6.6667rem 5rem;
  }
}
@media (max-width: 991px) {
  .page-banner-wrapper.two-coled .page-banner {
    padding: 6rem 4rem;
  }
  .page-banner-wrapper.two-coled .page-banner h1 {
    margin-bottom: 3rem;
  }
  .page-banner-wrapper.two-coled .gap-wrapper,
  .page-banner-wrapper.two-coled .page-banner-img,
  .page-banner-wrapper.two-coled .page-banner-img .post-thumbnail,
  .page-banner-wrapper.two-coled .page-banner-img .post-thumbnail img {
    height: auto;
  }
  .page-banner-wrapper.two-coled .page-banner-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-banner-wrapper.two-coled .page-banner {
    padding: 5.333rem 3rem;
    height: auto;
  }
  .page-banner-wrapper.two-coled .page-banner h1 {
    margin-bottom: 2.666rem;
  }
}
@media (max-width: 575px) {
  .page-banner-wrapper.two-coled .page-banner {
    padding: 4rem 2rem;
  }
  .page-banner-wrapper.two-coled .page-banner h1 {
    margin-bottom: 2rem;
  }
}


.text-section-wrapper {
  background: #fff;
  margin: 2.222rem 0;
}
.text-section-content-content {
  color: var(--dark-blue);
  font-weight: 300;
  line-height: 1.3;
}
.text-section-wrapper h6 {
  color: var(--light-blue);
}
.text-section-wrapper.light-blue-bg {
  background: var(--light-blue);
  color: #fff;
}
.text-section-wrapper.light-blue-bg h6,
.text-section-wrapper.light-blue-bg h2,
.text-section-wrapper.light-blue-bg .text-section-content-content {
  color: #fff;
}
.text-section-wrapper.block_bg_light-blue {
  background: #E4EDF2;
}
.text-section-wrapper.block_bg_blue {
  background: var(--light-blue);
  color: #fff;
}
.text-section-wrapper.block_bg_dark-blue {
  background: var(--blue);
  color: #fff;
}
.text-section-wrapper.block_bg_blue h6 {
  color: #fff;
}
.text-section-wrapper.block_bg_blue .text-section-content-content,
.text-section-wrapper.block_bg_dark-blue .text-section-content-content {
  color: #fff;
}


@media (max-width: 1239px) {
  .text-section-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 991px) {
  .text-section-wrapper {
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .text-section-wrapper {
    margin: 1.333rem 0;
  }
}
@media (max-width: 575px) {
    .text-section-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


.related-articles-section .sub-heading h6 {
  color: #1E84AA;
}

.related-article-wrap-inner {
  border-radius: 1.111rem;
  background: #fff;
  padding: 1.444rem 1.5556rem;
  border: 1px solid #EBF2F5;
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.related-article-wrap-inner a,
figure.related-article-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.related-article-wrap-inner a {
  z-index: 1;
}
.related-article-img-wrapper {
  display: flex;
  align-items: center;
}
figure.related-article-img {
  width: 11.05556rem;
  margin-right: 2.7778rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.111rem;
  background: var(--light-grey);
}
figure.related-article-img:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
figure.related-article-img img {
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.related-article-wrap-inner svg circle {
  transition: all 0.3s ease-in-out;
}
.related-article-wrap-inner a:hover + .related-article-img-wrapper figure.related-article-img img,
.related-article-wrap-inner a:focus + .related-article-img-wrapper figure.related-article-img img {
  transform: scale(1.1);
}
.related-article-wrap-inner a:hover + .related-article-img-wrapper h4,
.related-article-wrap-inner a:focus + .related-article-img-wrapper h4 {
  color: var(--blue);
}
.related-article-wrap-inner a:hover + .related-article-img-wrapper + svg circle,
.related-article-wrap-inner a:focus + .related-article-img-wrapper + svg circle {
  fill: var(--dark-blue);
}
.related-article-wrap-inner h4 {
  max-width: 15.7778rem;
  margin-right: 1rem;
  font-weight: 500;
  letter-spacing: -0.016667rem;
  line-height: 1.2;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  figure.related-article-img {
    margin-right: 1rem;
    width: 6rem;
    border-radius: 0.5rem;
  }
}
@media (max-width: 575px) {
  .related-article-wrap-inner svg {
    width: 2.666rem;
    height: 2.666rem;
  }
  .related-article-img-wrapper {
    display: block;
  }
}


.review-wrapper {
  background: #fff;
  padding: 2.8889rem 3.333rem;
  border: 1px solid #EBF2F5;
  flex-grow: 1;
}
.review-content {
  font-weight: 300;
  line-height: 1.3;
}
.review-content>:last-child {
  margin-bottom: 0;
}
.review-by {
  font-weight: 300;
  line-height: 1.3;
  font-size: 0.7778rem;
}
.review-stars {
  color: var(--blue);
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 2.75rem;
}
.review-stars i {
  margin-right: 0.25rem;
}
@media (max-width: 991px) {
  .review-stars {
    margin-bottom: 2rem;
  }
  .review-wrapper {
    padding: 1.333rem 2rem;
  }
}
@media (max-width: 767px) {
  .review-wrapper {
    text-align: center;
  }
}

.reviews-slider .slick-track {
  display: flex;
}
.reviews-slider .slide {
  padding: 0 0.75rem;
  height: auto;
  display: flex;
}
.reviews-slider {
  margin: 0 -0.75rem;
}
.reviews-slider-section .heading-btns-wrapper {
  top: 8rem;
}
.reviews-slider-section a.slick-arrow {
  background: #fff;
}
.reviews-slider-section a.slick-arrow:hover {
  background: var(--dark-blue);
}
@media (max-width: 1199px) {
  .reviews-slider-section .heading-btns-wrapper {
    top: 7rem;
  }
}
@media (max-width: 991px) {
  .reviews-slider-section .heading-btns-wrapper {
    top: 6rem;
  }
  .reviews-slider-section .section-heading-wrapper .section-heading {
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .reviews-slider-section .heading-btns-wrapper {
    top: initial;
  }
  .reviews-slider-section .section-heading-wrapper .section-heading {
    padding-right: 0;
  }
  .reviews-slider .slick-track {
    display: block;
  }
  .reviews-slider .slide {
    height: 100%;
    display: block;
  }
}




.map {
  background: var(--blue);
  color: #fff;
  height: 100%;
  margin-bottom: 2.222rem;
}
.map-wrap-inner {
  padding: 4.333rem 4.6667rem 2.444rem;
  font-weight: 300;
}
.map-wrap-inner .section-heading h2 {
  color: #fff;
  max-width: 28.5rem;
}
.map-description {
  max-width: 32.05556rem;
}
.map-description>:last-child {
  margin-bottom: 0;
}
.map-wrap-outer {
  padding: 0 1.6667rem 1.6667rem;
}
.map-wrap-outer iframe {
  width: 100%;
  height: 20.5556rem;
  border-radius: 1.9444rem;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .map-wrap-inner {
    padding: 3.75rem 4rem 1.875rem;
  }
}
@media (max-width: 1199px) {
  .map-wrap-inner {
    padding: 3rem 3.333rem 1.333rem;
  }
}
@media (max-width: 991px) {
  .map {
    margin-bottom: 2rem;
  }
  .map-wrap-inner {
    padding: 1.6rem 2rem 1.333rem;
  }
  .map-wrap-outer {
    padding: 0 1.333rem 1.333rem;
  }
  .map-wrap-outer iframe {
    border-radius: 1.333rem;
  }
  .map-wrap-outer iframe {
    height: 16rem;
  }
}
@media (max-width: 767px) {
  .map {
    margin-bottom: 1.333rem;
  }
  .map-wrap-outer iframe {
    border-radius: 1rem;
  }
}