/*
* Mixin for easy media queries
* @include bp(tablet-only) { SCSS here };
* Default css is for mobile screens
*/

@font-face {
  font-family: "Aeonik";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/aeonik/Aeonik-Regular.eot");
  src: url("../fonts/aeonik/Aeonik-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/aeonik/Aeonik-Regular.woff") format("woff"), url("../fonts/aeonik/Aeonik-Regular.ttf") format("truetype"), url("../fonts/aeonik/Aeonik-Regular.svg#Aeonik") format("svg");
}

@font-face {
  font-family: "Aeonik";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/aeonik/Aeonik-RegularItalic.eot");
  src: url("../fonts/aeonik/Aeonik-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/aeonik/Aeonik-RegularItalic.woff") format("woff"), url("../fonts/aeonik/Aeonik-RegularItalic.ttf") format("truetype"), url("../fonts/aeonik/Aeonik-RegularItalic.svg#Aeonik") format("svg");
}

@font-face {
  font-family: "Aeonik";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/aeonik/Aeonik-Medium.eot");
  src: url("../fonts/aeonik/Aeonik-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/aeonik/Aeonik-Medium.woff") format("woff"), url("../fonts/aeonik/Aeonik-Medium.ttf") format("truetype"), url("../fonts/aeonik/Aeonik-Medium.svg#Aeonik") format("svg");
}

@font-face {
  font-family: "Aeonik";
  font-weight: 500;
  font-style: italic;
  src: url("../fonts/aeonik/Aeonik-MediumItalic.eot");
  src: url("../fonts/aeonik/Aeonik-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/aeonik/Aeonik-MediumItalic.woff") format("woff"), url("../fonts/aeonik/Aeonik-MediumItalic.ttf") format("truetype"), url("../fonts/aeonik/Aeonik-MediumItalic.svg#Aeonik") format("svg");
}

@font-face {
  font-family: "Aeonik";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/aeonik/Aeonik-Bold.eot");
  src: url("../fonts/aeonik/Aeonik-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/aeonik/Aeonik-Bold.woff") format("woff"), url("../fonts/aeonik/Aeonik-Bold.ttf") format("truetype"), url("../fonts/aeonik/Aeonik-Bold.svg#Aeonik") format("svg");
}

@font-face {
  font-family: "icomoon";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/icomoon/icomoon.eot");
  src: url("../fonts/icomoon/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.woff") format("woff"), url("../fonts/icomoon/icomoon.ttf") format("truetype"), url("../fonts/icomoon/icomoon.svg#icomoon") format("svg");
}

/*Sass Variables---------------------------------------------------------------------------*/

/*=Global
---------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal;
  color: #102446;
  font-family: "Aeonik", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 1rem;
  position: relative;
}

@-ms-viewport {
  width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  line-height: 1;
  font-weight: bold;
  color: #0B182F;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #00E583;
}

h1 a:not(:hover),
h2 a:not(:hover),
h3 a:not(:hover),
h4 a:not(:hover),
h5 a:not(:hover),
h6 a:not(:hover) {
  color: inherit;
}

h1 {
  font-size: 4.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

h1 strong {
  font-weight: inherit;
}

h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

h2 strong {
  font-weight: inherit;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 2.4rem 0;
}

b,
strong {
  font-weight: bold;
}

ul {
  padding: 0 0 0 17px;
  margin: 0 0 2.4rem;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: rgba(16, 36, 70, 0.5);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(16, 36, 70, 0.5);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(16, 36, 70, 0.5);
}

:-ms-input-placeholder {
  color: rgba(16, 36, 70, 0.5);
}

input:focus {
  outline: none;
}

label {
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 0.2rem;
}

.form-control {
  width: 100%;
  height: 4.8rem;
  background-color: #ffffff;
  border: 1px solid #eff4f7;
  color: #102446;
  font-size: 1.6rem;
  letter-spacing: 0.15px;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
}

.form-control:focus {
  border-color: #00E583;
  box-shadow: none;
}

textarea.form-control {
  height: 10rem;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  resize: none;
}

select.form-control {
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}

.form-group {
  margin-bottom: 3rem;
}

.form-group label {
  margin-left: 2rem;
}

.required {
  color: #0B182F;
}

a {
  -webkit-transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, border 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, transform 0.4s ease-in-out, border 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, transform 0.4s ease-in-out, border 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  color: #0B182F;
  text-decoration: none;
}

a:focus,
a:hover {
  outline: 0;
  text-decoration: none;
}

.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn {
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-transform: capitalize;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding: 0.3rem 0.3rem 0.3rem 2.6rem;
}

.btn:after {
  background: -webkit-linear-gradient(top, #FFF 41.25%, #D3D3D3 100%);
  background: linear-gradient(180deg, #FFF 41.25%, #D3D3D3 100%);
  box-shadow: 0px 0px 3px 0px #FFF inset;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 3.8rem;
  width: 3.8rem;
  border-radius: 50%;
  content: "\e903";
  font-family: "icomoon", sans-serif;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.2rem;
  font-size: 0.8em;
}

.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark {
  border: none;
  border-radius: 10rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-primary span,
.btn-secondary span,
.btn-success span,
.btn-danger span,
.btn-warning span,
.btn-info span,
.btn-light span,
.btn-dark span {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}

.btn-primary:hover span,
.btn-secondary:hover span,
.btn-success:hover span,
.btn-danger:hover span,
.btn-warning:hover span,
.btn-info:hover span,
.btn-light:hover span,
.btn-dark:hover span {
  -webkit-transform: translateX(0.6rem);
      -ms-transform: translateX(0.6rem);
          transform: translateX(0.6rem);
}

.btn-success {
  background-color: #00E583;
  color: #0B182F;
}

.btn-success:hover {
  background-color: #ffffff;
  color: #0B182F;
}

.btn-success:hover:after {
  background: #00E583;
  color: #0B182F;
  box-shadow: none;
}

.gutters-20 {
  --bs-gutter-x: 2rem;
}

.menu-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
}

.menu-wrapper__inner {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  border-radius: 2.7rem;
  overflow: hidden;
  padding-bottom: 2rem;
  overflow-y: auto;
}

.menu-wrapper__inner .bgImg {
  z-index: -2;
}

.menu-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-wrapper a {
  color: #ffffff;
}

.menu-wrapper a:hover {
  color: rgba(255, 255, 255, 0.35);
}

.menu-wrapper .menu-header {
  padding: 2rem 0;
  padding-top: 3rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.menu-wrapper .menu-header .site-logo {
  display: block;
  width: 19.8rem;
}

.menu-wrapper .menu-header .menu-close-btn {
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  position: relative;
}

.menu-wrapper .menu-header .menu-close-btn span {
  display: block;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}

.menu-wrapper .menu-header .menu-close-btn span:not(:last-child) {
  margin-bottom: 0.6rem;
}

.menu-wrapper .menu-header .menu-close-btn span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.menu-wrapper .menu-header .menu-close-btn span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translateY(-50%);
      -ms-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.menu-wrapper .menu-body {
  overflow: auto;
}

.menu-wrapper .main-nav .nav {
  display: block;
}

.menu-wrapper .main-nav .nav .menu-item:not(:last-child) {
  margin-bottom: 2.7rem;
}

.menu-wrapper .main-nav .nav .menu-item.current-menu-item > a {
  padding-left: 2rem;
  color: #00E583;
}

.menu-wrapper .main-nav .nav .menu-item a {
  font-size: 4rem;
  line-height: 1;
  text-transform: capitalize;
  -webkit-transition: padding 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: padding 0.4s ease-in-out, color 0.4s ease-in-out;
}

.menu-wrapper .main-nav .nav .menu-item a:hover {
  padding-left: 2rem;
  color: #00E583;
}

.menu-wrapper .site-contact-info {
  font-size: 1.6rem;
}

.menu-wrapper .site-contact-info ul li .label {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.3rem;
}

.menu-wrapper .site-contact-info ul li .label-value {
  color: inherit;
}

.menu-wrapper .columns-menu-small .nav {
  display: block;
  font-size: 2.4rem;
  line-height: 1.4;
}

.menu-wrapper .columns-menu-small .nav .menu-item:not(:last-child) {
  margin-bottom: 1rem;
}

.menu-wrapper .columns-menu-small .nav .menu-item.current-menu-item > a {
  margin-left: 2rem;
  color: #00E583;
}

.menu-wrapper .columns-menu-small .nav .menu-item.current-menu-item > a:before {
  opacity: 1;
}

.menu-wrapper .columns-menu-small .nav .menu-item a {
  position: relative;
  -webkit-transition: margin 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: margin 0.4s ease-in-out, color 0.4s ease-in-out;
  display: block;
}

.menu-wrapper .columns-menu-small .nav .menu-item a:hover {
  margin-left: 2rem;
  color: #00E583;
}

.menu-wrapper .columns-menu-small .nav .menu-item a:hover:before {
  opacity: 1;
}

.menu-wrapper .columns-menu-small .nav .menu-item a:before {
  content: "\e903";
  font-family: "icomoon", sans-serif;
  height: 2.3rem;
  width: 2.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0B182F;
  border-radius: 50%;
  background-color: #00E583;
  font-size: 0.35em;
  position: absolute;
  top: 57%;
  left: -1rem;
  -webkit-transform: translate(-100%, -50%);
      -ms-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}

.site-header {
  padding: 2rem 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}

.site-header .site-logo {
  display: block;
  width: 19.8rem;
}

.site-header .btn-getintouch {
  font-weight: 500;
  text-transform: capitalize;
  color: #ffffff;
  margin-right: 3rem;
}

.site-header .btn-getintouch:after {
  font-family: "icomoon", sans-serif;
  content: "\e903";
  color: #00E583;
  font-size: 0.7em;
  margin-left: 1rem;
}

.site-header .btn-getintouch:hover {
  color: rgba(255, 255, 255, 0.5);
}

.site-header .burger-btn {
  cursor: pointer;
  padding: 0.5rem 0;
}

.site-header .burger-btn span {
  display: block;
  width: 3.2rem;
  height: 2px;
  background-color: #ffffff;
}

.site-header .burger-btn span:not(:last-child) {
  margin-bottom: 0.6rem;
}

.bgImg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.openingTiltAnimJs {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

p a.reviveorg {
    color: #ffffff; /* Make the rest of the text white */
    text-decoration: none; /* Remove underline if necessary */
}

p a.reviveorg strong {
    color: #00E583; /* Make the strong text green */
    font-weight: bold;
}

/* Add hover effect */
p a.reviveorg:hover {
    color: #e0f2f1; /* Change the rest of the text to a light green on hover */
}

p a.reviveorg:hover strong {
    color: #66ff99; /* Change the strong text to a lighter green on hover */
}


.hero-banner {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.hero-banner .bgImg {
  background-position: bottom center;
  border-radius: 2.5rem;
}

.hero-banner img.bgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero-banner canvas {
  outline: none;
  display: block;
  background-color: transparent;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  min-height: 81rem;
  padding: 12.5rem 0 3.5rem;
}

.hero-banner__inner .scroll-down-btn-wrapper {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-banner__inner .scroll-down-btn-wrapper .scroll-down-btn {
  pointer-events: initial;
}

.hero-banner__inner .scroll-down-btn {
  bottom: -1rem;
  font-size: 1.3rem;
  color: #102446;
  font-weight: 500;
}

.hero-banner .content-holder {
  position: relative;
}

.hero-banner .content-holder h1 {
  color: #00E583;
}

.hero-banner .content-holder p {
  margin-bottom: 2.5rem;
}

.hero-banner .tiltParallaxAnim {
  position: relative;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}

.hero-banner.hero-banner--patient-resources .column-right h4 {
  color: #ffffff;
  max-width: 43rem;
  margin-bottom: 0;
}

.hero-banner.hero-banner--blog {
  margin-bottom: 3rem;
}

.hero-banner.hero-banner--blog .hero-banner__inner .blog-filter-titles {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-banner.hero-banner--blog .hero-banner__inner .blog-filter-titles .label {
  font-size: 1.4rem;
}

.hero-banner.hero-banner--blog .hero-banner__inner .nav {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
}

.hero-banner.hero-banner--blog .hero-banner__inner .nav .nav-item:not(:last-child) {
  margin-right: 4rem;
}

.hero-banner.hero-banner--blog .hero-banner__inner .nav .nav-item.active > a:after {
  opacity: 1;
}

.hero-banner.hero-banner--blog .hero-banner__inner .nav .nav-item a {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  padding: 1.5rem 0;
  position: relative;
}

.hero-banner.hero-banner--blog .hero-banner__inner .nav .nav-item a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #00E583;
  opacity: 0;
}

.hero-banner.hero-banner--blog .hero-banner__inner .nav .nav-item a:hover {
  color: #ffffff;
}

.hero-banner.hero-banner--contact {
  color: #ffffff;
}

.hero-banner.hero-banner--contact a {
  color: inherit;
}

.hero-banner.hero-banner--contact .hero-banner__inner {
  padding: 13rem 0px 18rem;
}

.hero-banner.hero-banner--contact .content-holder__btm {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3.5rem;
  margin-top: 3.5rem;
}

.hero-banner.hero-banner--contact .content-holder__btm h5 {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-banner.hero-banner--contact .content-holder__btm .search-faq-btn {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
}

.hero-banner.hero-banner--contact .content-holder__btm .search-faq-btn [class^="icon-"],
.hero-banner.hero-banner--contact .content-holder__btm .search-faq-btn [class*=" icon-"] {
  color: #00E583;
  margin-left: 0.4rem;
  font-size: 0.75em;
}

.hero-banner.hero-banner--contact .content-holder__btm .search-faq-btn:hover {
  color: #00E583;
}

.hero-banner.hero-banner--contact .site-contact-info {
  font-size: 1.8rem;
}

.hero-banner.hero-banner--contact .site-contact-info ul li:not(:last-child) {
  margin-bottom: 2rem;
}

.hero-banner.hero-banner--contact .site-contact-info ul li .label {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.1rem;
}

.hero-banner.hero-banner--contact .site-contact-info ul li .label-value {
  color: #ffffff;
}

.hero-banner.hero-banner--contact .site-contact-info ul li a:hover {
  color: #00E583;
}

.hero-banner.hero-banner--careers .hero-banner__inner {
  min-height: 55.4rem;
}

.hero-banner.hero-banner--pp,
.hero-banner.hero-banner--not-found {
  color: #ffffff;
}

.hero-banner.hero-banner--pp .hero-banner__inner,
.hero-banner.hero-banner--not-found .hero-banner__inner {
  min-height: 55.4rem;
}

.hero-banner.hero-banner--pp .hero-banner__inner .content-holder,
.hero-banner.hero-banner--not-found .hero-banner__inner .content-holder {
  width: 100%;
}

.hero-banner.hero-banner--pp .hero-banner__inner .content-holder p,
.hero-banner.hero-banner--not-found .hero-banner__inner .content-holder p {
  margin-bottom: 2.5rem;
}

.hero-banner.hero-banner--pp .hero-banner__inner .content-holder a:not(:hover),
.hero-banner.hero-banner--not-found .hero-banner__inner .content-holder a:not(:hover) {
  color: #ffffff;
}

.hero-banner.hero-banner--pp .hero-banner__inner .content-holder a:hover,
.hero-banner.hero-banner--not-found .hero-banner__inner .content-holder a:hover {
  color: #00E583;
}

.hero-banner.hero-banner--not-found {
  text-align: center;
}

.hero-banner.hero-banner--not-found .search-form {
  margin-top: 3rem;
}

.hero-banner.hero-banner--not-found .search-form .search-field {
  height: 4.8rem;
  background-color: #ffffff;
  border: 1px solid #eff4f7;
  color: #102446;
  font-size: 1.6rem;
  letter-spacing: 0.15px;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
}

.hero-banner.hero-banner--not-found .search-form .search-field:focus {
  border-color: #00E583;
  box-shadow: none;
}

.hero-banner.hero-banner--not-found .search-form .search-submit {
  background-color: #00E583;
  color: #0B182F;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-transform: capitalize;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding: 0.3rem 3rem 0.3rem;
  border: none;
  height: 4.8rem;
  border-radius: 3rem;
}

.hero-banner.hero-banner--not-found .search-form .search-submit:hover {
  background-color: #00b266;
  color: #0B182F;
}

.hero-banner.hero-banner--single-page .bgImgWrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-linear-gradient(top, rgba(16, 36, 70, 0.8) 0%, #102446 75.67%);
  background: linear-gradient(180deg, rgba(16, 36, 70, 0.8) 0%, #102446 75.67%);
  border-radius: 2.5rem;
  overflow: hidden;
}

.hero-banner.hero-banner--single-page .bgImgWrapper .bgImg {
  mix-blend-mode: multiply;
}

.gutters-end-0 > *:last-child {
  margin-bottom: 0 !important;
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading > *:last-child {
  margin-bottom: 0;
}

.g-better {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  font-size: 1.8rem;
  margin-bottom: 10rem;
}

.g-better .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.g-better .section-heading .description {
  max-width: 50rem;
  margin: 0 auto;
}

.g-better .columns .column .boxMis {
justify-content: normal !important;
}

.g-better .columns .column .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 36rem;
  padding: 3.5rem;
  border-radius: 2.5rem;
  color: rgba(16, 36, 70, 0.5);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
  border: 1px solid rgba(16, 36, 70, 0.1);
}

.g-better .columns .column .box:hover {
  color: #ffffff;
}

.g-better .columns .column .box:hover .hover-pattern {
  background: #102446;
  -webkit-transform: scaleY(1.1);
      -ms-transform: scaleY(1.1);
          transform: scaleY(1.1);
}

.g-better .columns .column .box:hover .hover-pattern:before {
  opacity: 1;
}

.g-better .columns .column .box:hover .ico-holder img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 1;
}

.g-better .columns .column .box:hover h5 {
  color: inherit;
}

.g-better .columns .column .box .hover-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-radial-gradient(50% 25.97%, 73.89% 73.89%, #FFF 64.06%, #E1E5F2 100%);
  background: radial-gradient(73.89% 73.89% at 50% 25.97%, #FFF 64.06%, #E1E5F2 100%);
  border-radius: 2.5rem;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.g-better .columns .column .box .hover-pattern:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  background: -webkit-linear-gradient(45deg, #102446 57.94%, rgba(16, 36, 70, 0) 93.32%);
  background: linear-gradient(45deg, #102446 57.94%, rgba(16, 36, 70, 0) 93.32%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out 0.1s;
  transition: opacity 0.4s ease-out 0.1s;
}

.g-better .columns .column .ico-holder {
  margin-bottom: 1.5rem;
}

.mission-temp .columns .column .ico-holder img.vissionImg {
  opacity: 1 !important;
  height: 48px !important;
  max-width: 48px !important;
}

.g-better .columns .column .ico-holder img {
  max-width: 100%;
  height: 3.6rem;
  opacity: 0.5;
}

.g-better .columns .column h5.missionHeader {
    max-width: 100% !important;
}

.g-better .columns .column h5 {
  max-width: 12rem;
  margin: 0 auto 1.5rem;
}

.h-together {
  overflow: hidden;
  margin-bottom: 9rem;
}

.h-together .container-fluid .container {
  padding-left: 0;
  padding-right: 0;
}

.h-together .inner-container-fluid {
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
}

.h-together .section-heading {
  margin-bottom: 3rem;
}

.h-together .columns .column {
  position: relative;
}

.h-together .columns .column:not(:last-child):after {
  content: "";
  height: 6rem;
  width: 6rem;
  background-image: url("../images/icon-circle-plus-white.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
}

.h-together .columns .column:nth-child(2n+2) .animVideoWrapper {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.h-together .columns .column .box {
  background-color: #102446;
  color: #ffffff;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6rem 3rem;
  border-radius: 2.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.h-together .columns .column .box:before {
  background: -webkit-linear-gradient(top, rgba(16, 36, 70, 0.8) 0%, #102446 75.67%);
  background: linear-gradient(180deg, rgba(16, 36, 70, 0.8) 0%, #102446 75.67%);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.h-together .columns .column .box:hover .animVideoWrapper {
  opacity: 1;
}

.h-together .columns .column .bgImg {
  z-index: -3;
}

.h-together .columns .column .animVideoWrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.h-together .columns .column .animVideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: lighten;
  width: 100%;
  z-index: 1;
}

.h-together .columns .column .ico-holder {
  margin-bottom: 1rem;
}

.h-together .columns .column .ico-holder img {
  width: 4.8rem;
}

.h-together .columns .column h5 {
  color: inherit;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 1.7rem;
}

.h-together .columns .column p {
  margin-bottom: 2.5rem;
}

.home-about-revive {
  margin-bottom: 31.5rem;
  position: relative;
}

.home-about-revive .floating-pattern {
  position: absolute;
  right: -1rem;
  width: 100vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.home-about-revive .floating-pattern:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: -webkit-linear-gradient(left, #FFF 52.27%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #FFF 52.27%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  width: 52%;
}

.home-about-revive .floating-pattern:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-linear-gradient(top, #FFF 0%, rgba(255, 255, 255, 0) 51.04%, #FFF 100%);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 51.04%, #FFF 100%);
  z-index: 1;
}

.home-about-revive .floating-pattern .svgWrapper {
  position: absolute;
  width: 31.87vw;
  right: 0;
  top: 48%;
  z-index: 1;
  overflow: hidden;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-name: cssLineAnimBg;
          animation-name: cssLineAnimBg;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.home-about-revive .floating-pattern .svgWrapper:before {
  content: "";
  padding-top: 50%;
  display: block;
}

@-webkit-keyframes cssLineAnimBg {
  from {
    width: 0;
  }

  to {
    width: 31.87%;
  }
}

@keyframes cssLineAnimBg {
  from {
    width: 0;
  }

  to {
    width: 31.87%;
  }
}

.home-about-revive .floating-pattern .js-anim-lines {
  position: absolute;
  width: 31.87vw;
  right: 0;
  top: 0;
  z-index: 1;
}

.home-about-revive .inner-container {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

.home-about-revive .inner-container .btn {
  margin-top: 0.5rem;
}

.h-home {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 7rem;
}

.h-home .floating-top-images {
  position: absolute;
  right: -1rem;
  left: -1rem;
  top: -25rem;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.h-home .floating-top-images .image-left {
  width: 15.2rem;
  position: absolute;
  left: 0;
  top: 11rem;
  -webkit-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
}

.h-home .floating-top-images .image-center {
  width: 14rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}

.h-home .floating-top-images .image-right {
  width: 16.3rem;
  position: absolute;
  top: 9.3rem;
  right: 0;
  -webkit-transform: translateX(27%);
      -ms-transform: translateX(27%);
          transform: translateX(27%);
}

.h-home .section-heading {
  text-align: center;
}

.h-home .columns {
  counter-reset: item;
}

.h-home .columns .column {
  counter-increment: item;
  color: rgba(16, 36, 70, 0.5);
}

.h-home .columns .column .box {
  border-left: 1px solid #E1E5F2;
  padding: 0 2rem 0 1rem;
}

.h-home .columns .column .title {
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-home .columns .column .title:before {
  content: "0" counter(item);
  height: 3.6rem;
  width: 3.6rem;
  background-color: #00E583;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1rem;
}

.h-home .columns .column p strong {
  color: #102446;
}

.interactive-text {
  color: #E1E5F2;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  white-space: nowrap;
  font-size: 7rem;
  margin-bottom: 8rem;
}

.interactive-text strong {
  font-weight: inherit;
  color: #00E583;
}

.interactive-text .interactive-text-box {
  position: relative;
  padding: 0 7rem;
}

.interactive-text .interactive-text-box:after {
  content: "\e904";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-40%) translateX(50%);
      -ms-transform: translateY(-40%) translateX(50%);
          transform: translateY(-40%) translateX(50%);
  font-family: "icomoon", sans-serif;
  font-size: 0.6em;
}

.interactive-text span {
  display: inline-block;
}

.testimonials {
  overflow: hidden;
}

.testimonials .inner-container-fluid {
  border-radius: 2.5rem;
  background: -webkit-linear-gradient(top, #F2F4F9 47.35%, rgba(255, 255, 255, 0) 98.48%);
  background: linear-gradient(180deg, #F2F4F9 47.35%, rgba(255, 255, 255, 0) 98.48%);
  padding: 9rem 1rem 9.5rem;
}

.testimonials .section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials .outer-swiper {
  max-width: 62rem;
  margin: 0 auto;
  position: relative;
}

.testimonials .swiper .swiper-slide {
  border-radius: 2.5rem;
  border: 1px solid rgba(16, 36, 70, 0.15);
  background: -webkit-linear-gradient(top, #F2F4F9 47.35%, #ffffff 98.48%);
  background: linear-gradient(180deg, #F2F4F9 47.35%, #ffffff 98.48%);
  box-shadow: 0px 1rem 3rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  height: auto;
}

.testimonials .swiper .swiper-slide .quote-holder {
  margin-bottom: 2rem;
}

.testimonials .swiper .swiper-slide .quote-holder img {
  width: 3rem;
}

.testimonials .swiper .swiper-slide blockquote {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 2rem;
}

.testimonials .swiper .swiper-slide .testimonials-footer .avataar-image {
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 5rem;
  width: 5rem;
  margin-right: 1.5rem;
  background-color: #E1E5F2;
}

.testimonials .swiper .swiper-slide .testimonials-footer .avataar-name {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonials .swiper .swiper-slide .testimonials-footer .avataar-location {
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
}

.swiper-button-next,
.swiper-button-prev {
  height: 4.8rem;
  width: 4.8rem;
  background-color: #ffffff;
  box-shadow: 0 0 0.5rem rgba(16, 36, 70, 0.15);
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #0B182F;
  font-size: 1.2rem;
  font-weight: 500;
}

.swiper-pagination-bullet {
  height: 5px;
  width: 5px;
  background-color: rgba(16, 36, 70, 0.5);
  margin: 0.4rem 0;
  border-radius: 30px;
  -webkit-transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #102446;
  width: 3rem;
}

.trained-specialists {
  margin-bottom: 9.5rem;
}

.trained-specialists .inner-container-fluid {
  border-radius: 2.5rem;
  background-color: #102446;
  color: #ffffff;
  text-align: center;
  padding: 9rem 3rem 9.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trained-specialists .section-heading {
  margin: 0 auto 3.5rem;
}

.trained-specialists .section-heading h2 {
  color: #ffffff;
}

.trained-specialists .columns .column .ico-holder {
  margin-bottom: 2.5rem;
}

.trained-specialists .columns .column .ico-holder img {
  height: 5.2rem;
}

.trained-specialists .columns .column h5 {
  color: #ffffff;
  text-transform: capitalize;
  font-weight: bold;
  max-width: 15rem;
  margin: 0 auto;
}

.our-works {
  margin-bottom: 10rem;
  overflow: hidden;
}

.our-works .section-heading {
  margin: 0 auto 3.5rem;
  text-align: center;
}

.our-works .swiper {
  position: relative;
  margin: -3rem -1rem 0 0;
}

.our-works .swiper .swiper-wrapper {
  padding: 3rem 0;
}

.our-works .swiper .swiper-slide {
  box-shadow: 0px 1rem 3rem rgba(0, 0, 0, 0.1);
  border: 1px solid #E1E5F2;
  border-radius: 2.5rem;
  padding: 3rem;
  border-radius: 2rem;
  height: auto;
}

.our-works .swiper .swiper-slide .ico-holder {
  margin-bottom: 1.5rem;
}

.our-works .swiper .swiper-slide .ico-holder img {
  height: 3.6rem;
  width: 3.6rem;
  display: block;
}

.our-works .swiper .swiper-slide h6 {
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 0;
}

.our-works .btn-wrapper {
  text-align: center;
  margin-top: 4rem;
}

.navigation-with-pagination-wrapper {
  margin-top: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.2rem 5px;
}

.navigation-with-pagination-wrapper .swiper-button-next,
.navigation-with-pagination-wrapper .swiper-button-prev {
  position: static;
  margin: 0;
}

.navigation-with-pagination-wrapper .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 2.5rem;
}

.primary-form .inner-container-fluid {
  border-radius: 2.5rem;
  background: -webkit-linear-gradient(top, #F2F4F9 62.91%, rgba(255, 255, 255, 0) 94.2%);
  background: linear-gradient(180deg, #F2F4F9 62.91%, rgba(255, 255, 255, 0) 94.2%);
  padding: 9.5rem 0 10rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.primary-form .floating-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.primary-form .floating-pattern:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-linear-gradient(top, #F2F4F9 0%, rgba(255, 255, 255, 0) 41.93%);
  background: linear-gradient(180deg, #F2F4F9 0%, rgba(255, 255, 255, 0) 41.93%);
}

.primary-form .section-heading {
  text-align: center;
}

.primary-form .section-heading h2 strong {
  display: block;
}

.primary-form form {
  max-width: 48rem;
  margin: 0 auto;
}

.primary-form form .form-group label {
  display: block;
}

.primary-form form .form-group--info {
  font-size: 1.4rem;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.primary-form form .form-group--info .icon-circle-info {
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(16, 36, 70, 0.5);
  margin-right: 1rem;
}

.primary-form form .form-group.fileUploadWrapper .fileUpload {
  position: relative;
  overflow: hidden;
}

.primary-form form .form-group.fileUploadWrapper .fileUpload .form-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px dashed #E1E5F2;
  text-align: center;
}

.primary-form form .form-group.fileUploadWrapper .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  opacity: 0;
}

.primary-form form .form-group.fileUploadWrapper .f-input {
  padding: 0 2rem;
  margin: 0;
  height: auto;
  border: none;
  background: none;
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.4rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
}

.primary-form.primary-form--contact {
  margin-top: -13rem;
  margin-bottom: 5rem;
}

.site-footer {
  display: block;
  padding-top: 10rem;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: 1.3;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: rgba(16, 36, 70, 0.5);
}

.site-footer .footer-signup {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  -webkit-transform: translateY(-35%);
      -ms-transform: translateY(-35%);
          transform: translateY(-35%);
}

.site-footer .footer-signup .inner-container {
  border: 1px solid #E1E5F2;
  background-color: #ffffff;
  border-radius: 2.5rem;
  padding: 2.5rem 2rem 3rem;
  font-size: 1.6rem;
  line-height: 1.3;
  color: rgba(16, 36, 70, 0.5);
}

.site-footer .footer-signup .label {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.site-footer .footer-signup .subscribe-form {
  position: relative;
}

.site-footer__main {
  background-color: #E1E5F2;
  padding-top: 22rem;
  position: relative;
  z-index: 1;
  border-radius: 2.5rem;
  overflow: hidden;
}

.site-footer__main .floating-pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  overflow: hidden;
}

.site-footer__main .floating-pattern:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-linear-gradient(225deg, #E1E5F2 9.91%, rgba(225, 229, 242, 0) 54.06%);
  background: linear-gradient(225deg, #E1E5F2 9.91%, rgba(225, 229, 242, 0) 54.06%);
}

.site-footer__top {
  padding-bottom: 5.5rem;
  border-bottom: 1px solid rgba(16, 36, 70, 0.1);
}

.site-footer__top .column-logo .site-logo {
  display: block;
  width: 19.8rem;
}

.site-footer__top .column-quick-links .title {
  color: rgba(16, 36, 70, 0.5);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.site-footer__top .column-quick-links ul li:not(:last-child) {
  margin-bottom: 1.8rem;
}

.site-footer__top .column-quick-links ul li a {
  font-weight: 500;
  color: #102446;
  text-transform: capitalize;
}

.site-footer__top .column-quick-links ul li a:hover {
  color: rgba(16, 36, 70, 0.5);
}

.site-footer__btm {
  padding: 3rem 0;
  font-size: 1.4rem;
}

.site-footer__btm .siteby a {
  font-weight: 500;
}

.site-contact-info {
  line-height: 1;
}

.site-contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-contact-info ul li:not(:last-child) {
  margin-bottom: 2.5rem;
}

.site-contact-info ul li .label {
  color: rgba(16, 36, 70, 0.5);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.site-contact-info ul li .label-value {
  color: #102446;
  line-height: 1.3;
}

.site-contact-info ul li.opening-hours {
  font-size: 1.4rem;
}

.about-get-care {
  padding: 9rem 0 4rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
}

.about-get-care .inner-container {
  max-width: 50rem;
  margin: 0 auto;
}

.about-get-care h2 strong {
  display: block;
}

.about-location-map {
  margin-bottom: 4rem;
}

.about-location-map .inner-container-fluid {
  border-radius: 2.5rem;
  overflow: hidden;
}

.rfc {
  margin-bottom: 9rem;
  font-size: 1.8rem;
}

.rfc .section-heading {
  text-align: center;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.rfc .section-heading h2 {
  margin-bottom: 2.5rem;
}

.rfc .main-img {
  border-radius: 2.5rem;
  overflow: hidden;
}

.rfc .main-img img {
  min-height: 48.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.why-us {
  margin-bottom: 8.5rem;
}

.why-us .column-left .section-heading {
  line-height: 1.5;
  font-size: 1.8rem;
}

.why-us .column-left .section-heading h5 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.why-us .column-left .section-heading h6 {
  font-size: 1.6rem;
  line-height: 1.5;
}

.why-us .column-left .section-heading h6 + p {
  margin-top: -1rem;
}

.why-us .column-right .items .item {
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.6rem;
  line-height: 1.3;
}

.why-us .column-right .items .item:not(:last-child) {
  margin-bottom: 2.5rem;
}

.why-us .column-right .items .item > *:last-child {
  margin-bottom: 0;
}

.why-us .column-right .items .item h6 {
  margin-bottom: 1.3rem;
}

.why-us .column-right .items .item p strong {
  font-weight: inherit;
  color: #102446;
}

.why-us .btm-review-box .image-holder {
  width: 19rem;
  max-width: 100%;
  margin-bottom: 3.5rem;
}

.why-us .btm-review-box h3 {
  font-size: 2.8rem;
  font-weight: bold;
}

.why-us .btm-review-box h3.fw-light {
  margin-bottom: 3rem;
}

.d-heal {
  font-size: 1.8rem;
}

.d-heal .inner-container-fluid {
  border-radius: 2.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: -webkit-linear-gradient(top, #F2F4F9 62.91%, rgba(255, 255, 255, 0) 94.2%);
  background: linear-gradient(180deg, #F2F4F9 62.91%, rgba(255, 255, 255, 0) 94.2%);
  padding: 9rem 0;
}

.d-heal .inner-container-fluid .floating-pattern {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.d-heal .inner-container-fluid .floating-pattern:before {
  background: -webkit-linear-gradient(top, #F2F4F9 0%, rgba(255, 255, 255, 0) 41.93%);
  background: linear-gradient(180deg, #F2F4F9 0%, rgba(255, 255, 255, 0) 41.93%);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.d-heal .section-heading {
  margin: 0 auto 3.5rem;
  text-align: center;
}

.d-heal .columns-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.d-heal .columns .column p {
  margin-bottom: 4.8rem;
}

.ndt {
  text-align: center;
  padding-bottom: 10rem;
}

.ndt .section-heading {
  max-width: 55rem;
  margin: 0 auto 15.5rem;
  position: relative;
  font-size: 2rem;
}

.ndt .section-heading:after {
  content: "";
  height: 8rem;
  width: 1px;
  background-color: #E1E5F2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.5rem;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  margin: 0 auto;
}

.ndt .btm-box {
  max-width: 40rem;
  margin: 0 auto;
}

.ndt .btm-box h3 {
  margin-bottom: 3.5rem;
}

.treatment-options {
  padding: 9.5rem 0 10rem;
}

.treatment-options .section-heading {
  margin: 0 auto 3.5rem;
  text-align: center;
}

.treatment-options .columns .column .box {
  min-height: 12rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2.5rem;
  border: 1px solid rgba(16, 36, 70, 0.1);
  background: -webkit-radial-gradient(50% 25.97%, 86.05% 86.05%, #FFF 64.06%, #E1E5F2 100%);
  background: radial-gradient(86.05% 86.05% at 50% 25.97%, #FFF 64.06%, #E1E5F2 100%);
  text-align: center;
  padding: 1rem;
}

.treatment-options .columns .column .ico-holder {
  margin-bottom: 1.5rem;
}

.treatment-options .columns .column .ico-holder img {
  width: 3.6rem;
  -webkit-filter: drop-shadow(0px 0.4rem 0.4rem rgba(0, 229, 131, 0.25));
          filter: drop-shadow(0px 0.4rem 0.4rem rgba(0, 229, 131, 0.25));
}

.treatment-options .columns .column h6 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1;
}

.our-experience {
  margin-bottom: 9rem;
}

.our-experience .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.our-experience .columns {
  counter-reset: item;
}

.our-experience .columns .column {
  counter-increment: item;
}

.our-experience .columns .column .box {
  border-left: 1px solid #E1E5F2;
  padding: 0 0 0 2rem;
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.6rem;
}

.our-experience .columns .column .box .title {
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}

.our-experience .columns .column .box .title:before {
  content: "0" counter(item);
  height: 3.6rem;
  width: 3.6rem;
  background-color: #00E583;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1rem;
}

.our-experience .columns .column .box p {
  margin-bottom: 2.3rem;
}

.our-experience .columns .column .box p strong {
  font-weight: normal;
  color: #102446;
}

.our-experience .btn-wrapper {
  margin-top: 3rem;
  text-align: center;
}

.further-treatments {
  margin-bottom: 10rem;
}

.further-treatments .section-heading {
  margin: 0 auto 5rem;
  text-align: center;
}

.further-treatments .section-heading h2 strong {
  display: block;
}

.further-treatments .ft-swiper-container {
  background-color: #0A1A34;
  color: #ffffff;
  border-radius: 2.5rem;
  overflow: hidden;
}

.further-treatments .ft-swiper-container h1,
.further-treatments .ft-swiper-container h2,
.further-treatments .ft-swiper-container h3,
.further-treatments .ft-swiper-container h4,
.further-treatments .ft-swiper-container h5,
.further-treatments .ft-swiper-container h6 {
  color: inherit;
}

.further-treatments .content-slider-wrapper {
  font-size: 1.6rem;
  padding: 17.5rem 1rem 4rem;
  position: relative;
  z-index: 1;
}

.further-treatments .content-slider-wrapper .floating-bg-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.further-treatments .content-slider-wrapper .floating-bg-image:before {
  background: -webkit-linear-gradient(bottom, #0A1A34 34.52%, rgba(10, 26, 52, 0) 58.33%);
  background: linear-gradient(0deg, #0A1A34 34.52%, rgba(10, 26, 52, 0) 58.33%);
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
}

.further-treatments .content-slider-wrapper .floating-bg-image img {
  width: 100%;
  min-height: 34.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.further-treatments .content-slider-wrapper .swiper .swiper-slide {
  height: auto;
}

.further-treatments .content-slider-wrapper .swiper .swiper-slide > *:last-child {
  margin-bottom: 0;
}

.further-treatments .content-slider-wrapper .swiper .swiper-slide h4 {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.further-treatments .content-slider-wrapper .swiper .swiper-slide .slide-count-numb {
  height: 3.6rem;
  width: 3.6rem;
  background-color: #00E583;
  color: #102446;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.2rem;
  font-weight: 500;
  font-size: 1.4rem;
}

.further-treatments .title-slider-wrapper {
  padding: 3.5rem 2rem 14rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #102446;
}

.further-treatments .title-slider-wrapper .floating-pattern-bg {
  position: absolute;
  left: 0;
  right: 0;
}

.further-treatments .title-slider-wrapper .swiper .swiper-slide {
  cursor: pointer;
}

.further-treatments .title-slider-wrapper .swiper .swiper-slide.swiper-slide-thumb-active .slide-count-numb {
  color: #00E583;
  border-bottom-color: #ffffff;
}

.further-treatments .title-slider-wrapper .swiper .swiper-slide .slide-count-numb {
  color: rgba(255, 255, 255, 0.15);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.7rem;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.07rem;
  display: block;
  -webkit-transition: border 0.4s ease-in-out, color 0.4s ease-in-out;
  transition: border 0.4s ease-in-out, color 0.4s ease-in-out;
}

.further-treatments .title-slider-wrapper .swiper .swiper-slide h6 {
  margin-bottom: 0;
  line-height: 1.2;
}

.further-treatments .btn-wrapper {
  margin-top: 7.5rem;
}

.small-content-section {
  padding-bottom: 13rem;
}

.small-content-section .section-heading {
  text-align: center;
  position: relative;
  max-width: 47rem;
  margin: 0 auto;
  font-size: 1.6rem;
}

.small-content-section .section-heading .vertical-line {
  content: "";
  height: 8rem;
  width: 1px;
  background-color: #E1E5F2;
  margin: 0 auto 3.5rem;
}

.small-content-section .section-heading h3 {
  line-height: 1;
  font-weight: 500;
  padding: 0 1rem;
  max-width: 38.2rem;
  margin: 0 auto 2rem;
}

.small-content-section .section-heading .btn {
  margin-top: .5rem;
}

.service-location {
  padding: 9rem 0;
  text-align: center;
}

.service-location .section-heading {
  font-size: 1.8rem;
}

.service-location .map-holder {
  margin-bottom: 2rem;
}

.service-location .btm-content {
  text-align: center;
  max-width: 52.5rem;
  margin: 0 auto;
  font-size: 1.4rem;
}

.service-location .btm-content .ico-holder {
  margin-bottom: 1rem;
}

.service-location .btm-content .ico-holder img {
  width: 4.8rem;
}

.service-location .btm-content h5 {
  font-weight: 500;
  margin-bottom: 2.2rem;
}

.service-location .btm-content .tel-link-btn {
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-location .btm-content .tel-link-btn:before {
  margin-right: 1rem;
  position: relative;
  font-family: "icomoon", sans-serif;
  content: "\e908";
  color: #00E583;
}

.accept-insurances-wrapper {
  margin-bottom: 10rem;
}

.accept-insurances-wrapper .section-heading {
  text-align: center;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.accept-insurances-wrapper .section-heading h2 {
  line-height: 1.2;
  margin-bottom: 2.1rem;
}

.accept-insurances-wrapper .slider-label {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 47rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}

.accept-insurances-wrapper .slider-label strong {
  color: #00E583;
}

.asa .inner-container-fluid {
  background: -webkit-linear-gradient(top, #F2F4F9 62.91%, rgba(255, 255, 255, 0) 94.2%);
  background: linear-gradient(180deg, #F2F4F9 62.91%, rgba(255, 255, 255, 0) 94.2%);
  border-radius: 2.5rem;
  padding: 9rem 1rem;
}

.asa .section-heading {
  text-align: center;
}

.asa .items {
  max-width: 57rem;
  margin: 0 auto;
  counter-reset: item;
}

.asa .items .item {
  counter-increment: item;
}

.asa .items .item:not(:last-child) {
  margin-bottom: 4rem;
}

.asa .items .item .content-holder {
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.6rem;
  line-height: 1.3;
  padding: 0 1rem;
}

.asa .items .item .content-holder > *:last-child {
  margin-bottom: 0;
}

.asa .items .item .content-holder .title {
  margin-bottom: 2.5rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.asa .items .item .content-holder .title:before {
  content: "0" counter(item);
  height: 3.6rem;
  width: 3.6rem;
  background-color: #00E583;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1rem;
}

.asa .items .item .content-holder p strong {
  color: #102446;
  font-weight: inherit;
}

.our-care-you-wish {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 10rem;
  font-size: 1.8rem;
}

.our-care-you-wish .floating-pattern {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: -1;
}

.our-care-you-wish .floating-pattern:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -webkit-linear-gradient(top, #FFF 0%, rgba(255, 255, 255, 0) 51.04%, #FFF 100%);
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 51.04%, #FFF 100%);
  z-index: 1;
}

.our-care-you-wish .inner-container {
  text-align: center;
  max-width: 62rem;
  margin: 0 auto;
}

.our-care-you-wish .inner-container h5 strong {
  display: block;
}

.our-care-you-wish .inner-container .btn {
  margin-top: 3rem;
}

.faq {
  margin-bottom: 10rem;
}

.faq .section-heading {
  text-align: center;
}

.faq .section-heading h2 strong {
  display: block;
}

.faq .faq-accordion .card {
  border: none;
  background-color: transparent;
  border-radius: 0;
}

.faq .faq-accordion .card:not(:first-child) {
  border-top: 1px solid #E1E5F2;
}

.faq .faq-accordion .card:last-child {
  border-bottom: 1px solid #E1E5F2;
}

.faq .faq-accordion .card.on {
  background-color: #F2F4FA;
  border: 1px solid rgba(16, 36, 70, 0.15);
  border-radius: 2.5rem;
}

.faq .faq-accordion .card.on + .card {
  border-top-color: transparent;
}

.faq .faq-accordion .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

.faq .faq-accordion .card .card-header .link {
  display: block;
  font-weight: 500;
  letter-spacing: 0.015rem;
  padding: 3rem 6rem 3rem 0;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.22;
}

.faq .faq-accordion .card .card-header .link:hover {
  color: rgba(16, 36, 70, 0.5);
}

.faq .faq-accordion .card .card-header .link:after {
  content: "\e906";
  font-family: "icomoon", sans-serif;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.faq .faq-accordion .card .card-header .link:not(.collapsed):after {
  -webkit-transform: translateY(-50%) rotate(135deg);
      -ms-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.faq .faq-accordion .card .card-body {
  padding: 0 2rem 2rem;
  font-size: 1.6rem;
}

.faq .faq-accordion .card .card-body > *:last-child {
  margin-bottom: 0;
}

.mini-post-cat {
  display: inline-block;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  color: rgba(16, 36, 70, 0.5);
  border-radius: 10rem;
  border: 1px solid #E1E5F2;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
}

.most-popular-posts {
  margin-bottom: 5.5rem;
}

.most-popular-posts .inner-container {
  padding-bottom: 3rem;
  border-bottom: 1px solid #E1E5F2;
}

.post-date {
  font-size: 1.4rem;
  line-height: 1.3;
}

.post {
  margin-bottom: 3rem;
}

.post .post-content > *:last-child {
  margin-bottom: 0;
}

.post h5.post-title {
  font-size: 2.4rem;
  line-height: 1.3;
}

.post .post-title a:hover {
  color: rgba(16, 36, 70, 0.5);
}

.post-section-title {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2.5rem;
  text-transform: capitalize;
}

.post-cat-with-post-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}

.post-cat-with-post-date .mini-post-cat {
  margin-bottom: 0;
}

.most-recent-posts {
  margin-bottom: 9rem;
}

.most-recent-posts .post .post-image {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.most-recent-posts .post .post-image__link {
  position: relative;
  z-index: 1;
}

.most-recent-posts .post .post-image__link:before {
  content: "";
  padding-top: 62%;
  display: block;
}

.most-recent-posts .post .post-image__link img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}

.most-recent-posts .post .post-image .post-image-floating-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-color: #ffffff;
  z-index: 1;
  padding: 1.5rem;
  border-radius: 0 2.5rem 2.5rem 0;
  margin: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.most-recent-posts .post .post-image .post-image-floating-content__top {
  text-align: right;
}

.most-recent-posts .post .post-image .post-image-floating-content__top .ico-plus img {
  width: 3.6rem;
}

.most-recent-posts .post .post-image .post-image-floating-content__btm {
  margin-top: auto;
}

.most-recent-posts .post .post-image .post-image-floating-content__btm h5 {
  font-size: 2rem;
  margin-bottom: 0;
}

.most-recent-posts .post .post-image .post-image-floating-content__btm .mini-post-cat {
  margin-bottom: 0;
}

.pagination {
  margin: 1rem -0.5rem 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .page-item {
  padding: 0 0.5rem;
}

.pagination .page-item .page-link {
  font-size: 1.6rem;
  font-weight: normal;
  color: #102446;
  height: 4.8rem;
  width: 4.8rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-bottom: 1px solid transparent;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pagination .page-item .page-link:hover {
  border-bottom-color: rgba(16, 36, 70, 0.15);
}

.pagination .page-item.active .page-link {
  border-bottom-color: #102446;
}

.pagination .page-item--previous .page-link,
.pagination .page-item--next .page-link {
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.4rem rgba(16, 36, 70, 0.1);
  font-size: 1.4rem;
}

.pagination .page-item--previous .page-link:hover,
.pagination .page-item--next .page-link:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.pagination .page-item.page-item--previous {
  margin-right: 2rem;
}

.pagination .page-item.page-item--previous .page-link {
  border: 1px solid rgba(16, 36, 70, 0.15);
}

.pagination .page-item.page-item--next {
  margin-left: 2rem;
}

.pagination .page-item.page-item--next .page-link {
  border-bottom-color: rgba(16, 36, 70, 0.15);
  background-color: #00E583;
  color: #ffffff;
}

.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-links .page-numbers {
  font-size: 1.6rem;
  font-weight: normal;
  color: #102446;
  height: 4.8rem;
  width: 4.8rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  border-bottom: 1px solid transparent;
  margin: 0 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-links .page-numbers:hover {
  border-bottom-color: rgba(16, 36, 70, 0.15);
}

.nav-links .page-numbers.next,
.nav-links .page-numbers.prev {
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.4rem rgba(16, 36, 70, 0.1);
  font-size: 1.4rem;
}

.nav-links .page-numbers.next:hover,
.nav-links .page-numbers.prev:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.nav-links .page-numbers.current {
  border-bottom-color: #102446;
}

.nav-links .page-numbers.prev {
  margin-right: 2rem;
  border: 1px solid rgba(16, 36, 70, 0.15);
}

.nav-links .page-numbers.next {
  margin-left: 2rem;
  border-bottom-color: rgba(16, 36, 70, 0.15);
  background-color: #00E583;
  color: #ffffff;
}

.our-people {
  padding: 9.5rem 0;
}

.our-people .section-heading {
  text-align: center;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.our-people .section-heading h2 strong {
  display: block;
}

.our-people .outer-swiper {
  position: relative;
}

.our-people .swiper .swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.our-people .swiper .swiper-slide img {
  border-radius: 20rem;
}

.why-work-us {
  margin-bottom: 9rem;
}

.why-work-us .section-heading {
  max-width: 47rem;
}

.why-work-us .section-heading h2 strong {
  display: block;
}

.why-work-us .items .item {
  padding: 3.5rem 0;
}

.why-work-us .items .item:not(:last-child) {
  border-bottom: 1px solid #E1E5F2;
}

.why-work-us .items .item:first-child {
  padding-top: 0;
}

.why-work-us .items .item:last-child {
  padding-bottom: 0;
}

.why-work-us .items .item .column-title h6 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.why-work-us .items .item .column-content {
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.6rem;
  line-height: 1.3;
}

.recent-jobs {
  margin-bottom: 9.5rem;
}

.recent-jobs .items .item {
  padding: 3.5rem 0;
}

.recent-jobs .items .item:not(:last-child) {
  border-bottom: 1px solid #E1E5F2;
}

.recent-jobs .items .item:first-child {
  padding-top: 0;
}

.recent-jobs .items .item:last-child {
  padding-bottom: 0;
}

.recent-jobs .items .item .column-left .job-title {
  text-transform: capitalize;
  margin-bottom: 1.4rem;
  font-size: 2rem;
  color: #102446;
}

.recent-jobs .items .item .column-left .job-title a {
  color: inherit;
}

.recent-jobs .items .item .column-left .job-title a:hover {
  color: rgba(16, 36, 70, 0.5);
}

.recent-jobs .items .item .column-left .job-location {
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(16, 36, 70, 0.5);
}

.recent-jobs .items .item .column-right .view-job-detail-btn {
  color: rgba(16, 36, 70, 0.5);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
}

.recent-jobs .items .item .column-right .view-job-detail-btn:after {
  content: "\e903";
  font-family: "icomoon", sans-serif;
  font-size: 0.7em;
  margin-left: 0.5rem;
  color: #102446;
}

.recent-jobs .items .item .column-right .view-job-detail-btn:hover {
  color: #102446;
}

.privacy-policy-section {
  padding: 10rem 0;
}

.privacy-policy-section h1 {
  margin-bottom: 5rem;
}

.privacy-policy-section p + h3 {
  margin-top: 5rem;
}

.privacy-policy-section p {
  margin-bottom: 2rem;
}

.not-found {
  padding: 10rem 0;
}

.not-found p + h3 {
  margin-top: 5rem;
}

.not-found p {
  margin-bottom: 2rem;
}

.not-found .search-form {
  margin: 5rem 0;
}

.not-found .search-form .search-field {
  height: 4.8rem;
  background-color: #ffffff;
  border: 1px solid #eff4f7;
  color: #102446;
  font-size: 1.6rem;
  letter-spacing: 0.15px;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
}

.not-found .search-form .search-field:focus {
  border-color: #00E583;
  box-shadow: none;
}

.not-found .search-form .search-submit {
  background-color: #00E583;
  color: #0B182F;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-transform: capitalize;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding: 0.3rem 3rem 0.3rem;
}

.not-found .search-form .search-submit:hover {
  background-color: #00b266;
  color: #0B182F;
}

.not-found .page-content .widget:not(:last-child) {
  margin-bottom: 6rem;
}

.not-found .page-content .widget h2 {
  margin-bottom: 2rem;
}

.not-found .page-content .widget select {
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
  height: 4.8rem;
  background-color: #ffffff;
  border: 1px solid #eff4f7;
  color: #102446;
  font-size: 1.6rem;
  letter-spacing: 0.15px;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 25rem;
  max-width: 100%;
}

.widget-area {
  padding: 10rem 0 7.5rem;
}

.widget-area .widget:not(:last-child) {
  margin-bottom: 6rem;
}

.widget-area .widget h2 {
  margin-bottom: 2rem;
}

.widget_search {
  margin-bottom: 5rem;
}

.widget_search .wp-block-search__label {
  margin-left: 2rem;
}

.widget_search .wp-block-search__input {
  height: 4.8rem;
  background-color: #ffffff;
  border: 1px solid #eff4f7;
  color: #102446;
  font-size: 1.6rem;
  letter-spacing: 0.15px;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
}

.widget_search .wp-block-search__input:focus {
  border-color: #00E583;
  box-shadow: none;
}

.widget_search .wp-block-search__button {
  background-color: #00E583;
  color: #0B182F;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out, border 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  text-transform: capitalize;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding: 0.3rem 3rem 0.3rem;
  height: 4.8rem;
  border-radius: 3rem;
}

.widget_search .wp-block-search__button:hover {
  background-color: #00b266;
  color: #0B182F;
}

.partners-range {
  padding: 9rem 0 7rem;
}

.partners-range .section-heading {
  text-align: center;
  max-width: 49rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
}

.partners-range .section-heading h2 strong {
  display: block;
}

.partners-range .columns .column {
  font-size: 1.6rem;
  line-height: 1.3;
  color: rgba(16, 36, 70, 0.5);
  margin-bottom: 3rem;
}

.partners-range .columns .column .box {
  border-left: 1px solid #E1E5F2;
  padding-left: 2rem;
  padding-bottom: 2rem;
}

.partners-range .columns .column .box > *:last-child {
  margin-bottom: 0;
}

.partners-range .columns .column .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.partners-range .columns .column .title .ico-holder {
  width: 4.6rem;
  margin-right: 1rem;
}

.partners-range .columns .column .title .ico-holder img {
  width: 100%;
}

.partners-range .columns .column p strong {
  color: #102446;
  font-weight: normal;
}

.our-advantage {
  margin-bottom: 6rem;
}

.our-advantage .inner-container-fluid {
  position: relative;
  z-index: 1;
  border-radius: 2.5rem;
  overflow: hidden;
  padding: 6rem 0 3rem;
}

.our-advantage .section-heading {
  text-align: center;
}

.our-advantage .section-heading h2 strong {
  display: block;
}

.our-advantage .items .item {
  font-size: 1.6rem;
  line-height: 1.3;
}

.our-advantage .items .item:not(:last-child) {
  border-bottom: 1px solid rgba(16, 36, 70, 0.15);
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
}

.our-advantage .items .item .column-title h6 {
  text-transform: uppercase;
  font-size: 1.6rem;
}

.our-advantage .items .item .column-description > *:last-child {
  margin-bottom: 0;
}

span.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin-left: 2rem;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.4rem;
}

.grecaptcha-badge {
  display: none !important;
}

.blog-detail-content {
  padding: 10rem 0;
}

.blog-detail-content > *:last-child {
  margin-bottom: 0;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
  font-weight: bold;
}

.blog-detail-content h1 strong,
.blog-detail-content h2 strong,
.blog-detail-content h3 strong,
.blog-detail-content h4 strong,
.blog-detail-content h5 strong,
.blog-detail-content h6 strong {
  color: inherit;
}

.blog-detail-content p + h2,
.blog-detail-content p + h3,
.blog-detail-content p + h4 {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  
  .break-core {
    margin-top: 50px;
  }

  html {
    font-size: 45%;
  }

  body {
    font-size: 1.8rem;
    margin: 0.5rem;
  }

  h1 {
    font-size: 7rem;
    margin-bottom: 3rem;
  }

  h2 {
    font-size: 5.8rem;
    margin-bottom: 2.6rem;
  }

  h3 {
    font-size: 4rem;
  }

  h4 {
    font-size: 3.2rem;
  }

  h5 {
    font-size: 2.4rem;
  }

  h6 {
    font-size: 1.6rem;
  }

  p {
    margin: 0 0 2.8rem 0;
  }

  ul {
    margin: 0 0 2.8rem;
  }

  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .btn {
    padding: 0.4rem 0.4rem 0.4rem 2.7rem;
  }

  .btn:after {
    height: 4rem;
    width: 4rem;
    margin-left: 2.5rem;
  }

  .gutters-40 {
    --bs-gutter-x: 4rem;
  }

  .gutters-60 {
    --bs-gutter-x: 6rem;
  }

  .gutters-80 {
    --bs-gutter-x: 8rem;
  }

  .gutters-100 {
    --bs-gutter-x: 10rem;
  }

  .gutters-120 {
    --bs-gutter-x: 12rem;
  }

  .menu-wrapper {
    padding: 0.5rem;
  }

  .menu-wrapper__inner {
    padding-bottom: 13vh;
  }

  .menu-wrapper__inner .leftFadeBar {
    background: -webkit-linear-gradient(top, rgba(16, 36, 70, 0) -18.37%, #102446 100%);
    background: linear-gradient(180deg, rgba(16, 36, 70, 0) -18.37%, #102446 100%);
    width: 28.5rem;
    max-width: 20%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }

  .menu-wrapper .column-site-contact-info {
    width: 21rem;
    margin-right: 8rem;
  }

  .menu-wrapper .main-nav .nav .menu-item:not(:last-child) {
    margin-bottom: 3rem;
  }

  .menu-wrapper .main-nav .nav .menu-item a {
    font-size: 3rem;
  }

  .hero-banner {
    font-size: 2rem;
  }

  .hero-banner__inner {
    min-height: 85rem;
    padding: 5rem 0 11rem;
  }

  .hero-banner__inner .scroll-down-btn-wrapper {
    height: 150px;
    bottom: 7rem;
  }

  .hero-banner__inner .scroll-down-btn {
    position: absolute;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: scale(-1, -1);
        -ms-transform: scale(-1, -1);
            transform: scale(-1, -1);
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hero-banner__inner .scroll-down-btn:before {
    height: 1.8rem;
    width: 1.8rem;
    background-color: #102446;
    color: #ffffff;
    border-radius: 50%;
    font-family: "icomoon", sans-serif;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0.9rem;
    font-size: 0.6em;
    content: "\e900";
    line-height: 1.8;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-name: triggerDownArrowMovement;
            animation-name: triggerDownArrowMovement;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }

@-webkit-keyframes triggerDownArrowMovement {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }

    50% {
      -webkit-transform: translateY(5px);
              transform: translateY(5px);
    }

    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}

@keyframes triggerDownArrowMovement {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }

    50% {
      -webkit-transform: translateY(5px);
              transform: translateY(5px);
    }

    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}

  .hero-banner__inner .scroll-down-btn.scroll-down-btn--white {
    color: #ffffff;
  }

  .hero-banner__inner .scroll-down-btn.scroll-down-btn--white:before {
    background-color: #ffffff;
    color: #102446;
  }

  .hero-banner .content-holder {
    width: 40%;
  }

  .hero-banner .content-holder p {
    margin-bottom: 4rem;
  }

  .hero-banner .tiltParallaxAnim {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
  }

  .hero-banner .image-holder .image-wrapper {
    margin-left: -5rem;
    margin-right: -3rem;
    margin-bottom: -29rem;
  }

  .hero-banner.hero-banner--about .content-holder {
    width: 60%;
  }

  .hero-banner.hero-banner--about .content-holder .description {
    max-width: 40rem;
  }

  .hero-banner.hero-banner--services .scroll-down-btn {
    color: #ffffff;
  }

  .hero-banner.hero-banner--services .scroll-down-btn:before {
    background-color: #ffffff;
    color: #102446;
  }

  .hero-banner.hero-banner--services .content-holder {
    width: 46%;
  }

  .hero-banner.hero-banner--services .content-holder .description {
    max-width: 45rem;
  }

  .hero-banner.hero-banner--blog {
    margin-bottom: 7rem;
  }

  .hero-banner.hero-banner--blog .hero-banner__inner {
    min-height: 65rem;
    padding: 10rem 0;
  }

  .hero-banner.hero-banner--blog .hero-banner__inner .blog-filter-titles .label {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.5rem;
  }

  .hero-banner.hero-banner--blog .content-holder {
    width: 52%;
  }

  .hero-banner.hero-banner--contact .hero-banner__inner {
    padding: 5rem 0 14rem;
  }

  .hero-banner.hero-banner--contact .content-holder {
    width: 37%;
  }

  .hero-banner.hero-banner--contact .content-holder .description {
    padding-right: 3rem;
  }

  .hero-banner.hero-banner--contact .site-contact-info ul li:not(:last-child) {
    margin-bottom: 5rem;
  }

  .hero-banner.hero-banner--careers .hero-banner__inner {
    min-height: 65.2rem;
  }

  .hero-banner.hero-banner--partners .content-holder {
    width: 55%;
  }

  .hero-banner.hero-banner--pp .hero-banner__inner,
  .hero-banner.hero-banner--not-found .hero-banner__inner {
    min-height: 65.2rem;
  }

  .hero-banner.hero-banner--not-found .search-form .search-submit {
    padding: 0.4rem 3rem 0.4rem;
  }

  .hero-banner.hero-banner--single-page .content-holder {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 5.5rem;
  }

  .g-better {
    padding-top: 16rem;
    margin-bottom: 19rem;
  }

  .g-better .section-heading {
    max-width: 65rem;
  }

  .g-better .columns .column .box:hover .hover-pattern {
    -webkit-transform: scaleY(1.15);
        -ms-transform: scaleY(1.15);
            transform: scaleY(1.15);
  }

  .g-better .columns .column .ico-holder {
    margin-bottom: 3.5rem;
  }

  .g-better .columns .column h5 {
    margin: 0 auto 3rem;
  }

  .h-together {
    margin-bottom: 15rem;
  }


  .missionTog .section-heading {
    max-width: 100% !important;
  }

  .h-together .section-heading {
    margin-bottom: 5rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }

  .h-together .columns .column:not(:last-child):after {
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    right: 0;
    top: 50%;
  }

  .h-together .columns .column .box {
    padding: 5rem;
    min-height: 60rem;
  }

  .h-together .columns .column .box:hover:before {
    opacity: 0;
  }

  .h-together .columns .column .box:hover .btn {
    max-height: 50px;
    opacity: 1;
  }

  .h-together .columns .column .animVideoWrapper {
    opacity: 0;
  }

  .h-together .columns .column h5 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }

  .h-together .columns .column .btn {
    margin-top: 0.8rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
    transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
  }

  .home-about-revive {
    margin-bottom: 38.5rem;
  }

  .home-about-revive .floating-pattern {
    right: -0.5rem;
  }

  .h-home {
    margin-bottom: 8rem;
    line-height: 1.6;
  }

  .h-home .floating-top-images {
    right: -0.5rem;
    left: -0.5rem;
    top: -26.5rem;
  }

  .h-home .floating-top-images .image-left {
    width: 26.7rem;
    max-width: 19%;
    top: 13rem;
    -webkit-transform: translateX(-10%);
        -ms-transform: translateX(-10%);
            transform: translateX(-10%);
  }

  .h-home .floating-top-images .image-center {
    width: 25.7rem;
    max-width: 18%;
  }

  .h-home .floating-top-images .image-right {
    width: 35rem;
    max-width: 25%;
    -webkit-transform: translateX(7%);
        -ms-transform: translateX(7%);
            transform: translateX(7%);
  }

  .h-home .columns .column .box {
    padding: 0 7.5rem 0 1.5rem;
    height: 100%;
  }

  .interactive-text {
    font-size: 14.5rem;
    margin-bottom: 14rem;
  }

  .testimonials {
    margin-bottom: 12rem;
  }

  .testimonials .inner-container-fluid {
    padding: 11rem;
  }

  .testimonials .section-heading {
    margin-bottom: 6.4rem;
  }

  .testimonials .outer-swiper .navigation-with-pagination-wrapper .swiper-button-prev,
  .testimonials .outer-swiper .navigation-with-pagination-wrapper .swiper-button-next {
    margin-top: -5rem;
  }

  .testimonials .outer-swiper .navigation-with-pagination-wrapper .swiper-button-prev {
    position: absolute;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    left: -9rem;
  }

  .testimonials .outer-swiper .navigation-with-pagination-wrapper .swiper-button-next {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    right: -9rem;
    position: absolute;
  }

  .testimonials .swiper .swiper-slide {
    padding: 5rem;
  }

  .testimonials .swiper .swiper-slide .quote-holder {
    margin-bottom: 2.5rem;
  }

  .testimonials .swiper .swiper-slide blockquote {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }

  .testimonials.testimonials--careers {
    margin-bottom: 6rem;
  }

  .trained-specialists {
    margin-bottom: 16rem;
  }

  .trained-specialists .inner-container-fluid {
    padding: 11.5rem 0 0;
  }

  .trained-specialists .section-heading {
    max-width: 45rem;
    margin: 0 auto 5rem;
  }

  .trained-specialists .columns .column {
    padding: 8.5rem 3rem;
  }

  .trained-specialists .columns .column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .our-works {
    margin-bottom: 16rem;
  }

  .our-works .section-heading {
    max-width: 48rem;
    margin: 0 auto 5.5rem;
  }

  .our-works .swiper {
    margin: -3rem -8rem 0 -3rem;
  }

  .our-works .swiper:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 33rem;
    background: -webkit-linear-gradient(right, #FFF 0%, rgba(255, 255, 255, 0) 89.34%);
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 89.34%);
    z-index: 1;
  }

  .our-works .swiper .swiper-wrapper {
    padding: 3rem;
  }

  .our-works .btn-wrapper {
    margin-top: 6rem;
  }

  .navigation-with-pagination-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .navigation-with-pagination-wrapper .swiper-pagination {
    margin: 0 7.5rem;
  }

  .primary-form .inner-container-fluid {
    padding: 11rem 11rem 12rem;
  }

  .primary-form.primary-form--contact {
    margin-top: -16rem;
    margin-bottom: 6rem;
  }

  .site-footer .footer-signup {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .site-footer .footer-signup .inner-container {
    padding: 5rem;
  }

  .site-footer .footer-signup .label {
    margin-bottom: 2.5rem;
  }

  .site-footer .footer-signup .subscribe-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .site-footer .footer-signup .subscribe-form .btn {
    margin-left: 3rem;
  }

  .site-footer .footer-signup .subscribe-form .wpcf7-response-output {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    margin: 0;
    padding: 0.1em 1em;
  }

  .site-footer__top {
    padding-bottom: 6rem;
  }

  .site-footer__top .column-quick-links ul li:not(:last-child) {
    margin-bottom: 2rem;
  }

  .about-get-care {
    padding: 15rem 0 6rem;
  }

  .about-location-map {
    margin-bottom: 8rem;
  }

  .rfc {
    margin-bottom: 11rem;
  }

  .why-us {
    margin-bottom: 15rem;
  }

  .why-us .column-left {
    width: 58%;
  }

  .why-us .column-left__box {
    max-width: 50rem;
  }

  .why-us .column-left .section-heading {
    margin-bottom: 13rem;
    padding-right: 5rem;
  }

  .why-us .column-left .section-heading h5 {
    margin-bottom: 3.1rem;
  }

  .why-us .column-left .section-heading h6 {
    font-size: 1.8rem;
  }

  .why-us .column-right .items .item:not(:last-child) {
    margin-bottom: 4rem;
  }

  .why-us .btm-review-box h3 {
    font-size: 4rem;
  }

  .why-us .btm-review-box h3.fw-light {
    margin-bottom: 5rem;
  }

  .d-heal .inner-container-fluid {
    padding: 11rem 0 15rem;
  }

  .d-heal .section-heading {
    max-width: 55rem;
    margin: 0 auto 5rem;
  }

  .d-heal .columns-title {
    margin-bottom: 3rem;
  }

  .ndt {
    padding-bottom: 25rem;
  }

  .ndt .section-heading {
    margin: 0 auto 27rem;
  }

  .ndt .section-heading:after {
    height: 16rem;
    bottom: -5.5rem;
  }

  .ndt .section-heading .description {
    padding: 0 6rem;
  }

  .treatment-options {
    padding: 15rem 0;
  }

  .treatment-options .section-heading {
    max-width: 63rem;
    margin: 0 auto 5rem;
  }

  .treatment-options .columns .column .box {
    min-height: 20.8rem;
    padding: 2rem;
  }

  .treatment-options .columns .column .ico-holder {
    margin-bottom: 3rem;
  }

  .our-experience {
    margin-bottom: 15rem;
  }

  .our-experience .columns .column .box {
    padding: 0 3rem 0 2rem;
  }

  .our-experience .btn-wrapper {
    margin-top: 6rem;
  }

  .further-treatments {
    margin-bottom: 16rem;
  }

  .further-treatments .section-heading {
    max-width: 50rem;
    margin: 0 auto 4rem;
  }

  .further-treatments .content-slider-wrapper {
    padding: 7.5rem 0;
  }

  .further-treatments .content-slider-wrapper .floating-bg-image {
    bottom: 0;
  }

  .further-treatments .content-slider-wrapper .floating-bg-image:before {
    background: -webkit-linear-gradient(right, #0A1A34 44.62%, rgba(10, 26, 52, 0) 70.24%);
    background: linear-gradient(270deg, #0A1A34 44.62%, rgba(10, 26, 52, 0) 70.24%);
  }

  .further-treatments .content-slider-wrapper .floating-bg-image img {
    max-width: 100%;
    width: calc(100% - 55rem);
    height: 100%;
  }

  .further-treatments .content-slider-wrapper .column-swiper {
    width: 52rem;
  }

  .further-treatments .content-slider-wrapper .swiper .swiper-slide h4 {
    margin-bottom: 3rem;
  }

  .further-treatments .title-slider-wrapper {
    padding: 6rem 0 16rem;
  }

  .further-treatments .title-slider-wrapper .floating-pattern-bg {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .further-treatments .btn-wrapper {
    margin-top: 9.5rem;
  }

  .small-content-section {
    padding-bottom: 16rem;
  }

  .small-content-section .section-heading .vertical-line {
    height: 16rem;
    margin: 0 auto 5.5rem;
  }

  .small-content-section .section-heading h3 {
    margin: 0 auto 3rem;
  }

  .service-location {
    padding: 15rem 0;
  }

  .service-location .map-holder {
    margin-bottom: 3rem;
  }

  .service-location .btm-content {
    font-size: 1.6rem;
  }

  .service-location .btm-content .tel-link-btn {
    border: 1px solid rgba(16, 36, 70, 0.15);
    padding: 0.8rem 2.4rem;
  }

  .service-location .btm-content .tel-link-btn:before {
    color: #102446;
  }

  .accept-insurances-wrapper {
    margin-bottom: 17rem;
  }

  .accept-insurances-wrapper .slider-label {
    font-size: 2.8rem;
  }

  .asa .inner-container-fluid {
    padding: 15.5rem 0 16.5rem;
  }

  .asa .items .item .image-holder {
    margin-right: 3rem;
  }

  .asa .items .item .content-holder .title {
    margin-bottom: 3.5rem;
  }

  .our-care-you-wish {
    padding-bottom: 16rem;
  }

  .faq {
    margin-bottom: 16rem;
  }

  .faq .faq-accordion .card .card-header .link {
    padding: 3rem 6rem 3rem 2rem;
  }

  .most-popular-posts {
    margin-bottom: 11.5rem;
  }

  .most-popular-posts .inner-container {
    padding-bottom: 7rem;
  }

  .post {
    margin-bottom: 5rem;
  }

  .post-section-title {
    margin-bottom: 5.5rem;
  }

  .most-recent-posts {
    margin-bottom: 16rem;
  }

  .pagination .page-item.page-item--previous {
    margin-right: 3rem;
  }

  .pagination .page-item.page-item--next {
    margin-left: 3rem;
  }

  .nav-links .page-numbers.prev {
    margin-right: 3rem;
  }

  .nav-links .page-numbers.next {
    margin-left: 3rem;
  }

  .our-people {
    padding: 14rem 0 15rem;
  }

  .our-people .outer-swiper:before,
  .our-people .outer-swiper:after {
    width: 17.5rem;
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    z-index: 2;
    pointer-events: none;
  }

  .our-people .outer-swiper:before {
    left: 0;
    background: -webkit-linear-gradient(left, #FFF 23.55%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, #FFF 23.55%, rgba(255, 255, 255, 0) 100%);
  }

  .our-people .outer-swiper:after {
    right: 0;
    background: -webkit-linear-gradient(right, #FFF 23.55%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(-90deg, #FFF 23.55%, rgba(255, 255, 255, 0) 100%);
  }

  .why-work-us {
    margin-bottom: 15.5rem;
  }

  .why-work-us .items .item .column-content {
    width: 36.25%;
  }

  .recent-jobs {
    margin-bottom: 15.5rem;
  }

  .recent-jobs .items .item .column-left .job-title {
    margin-bottom: 1rem;
  }

  .not-found .search-form .search-submit {
    padding: 0.4rem 3rem 0.4rem;
  }

  .widget_search .wp-block-search__button {
    padding: 0.4rem 3rem 0.4rem;
  }

  .partners-range {
    padding: 15rem 0 8rem;
  }

  .partners-range .section-heading {
    font-size: 2rem;
  }

  .partners-range .columns .column {
    margin-bottom: 8rem;
  }

  .partners-range .columns .column .box {
    height: 100%;
    padding-right: 2.5rem;
  }

  .partners-range .columns .column .title .ico-holder {
    width: 4.8rem;
  }

  .our-advantage {
    margin-bottom: 15rem;
  }

  .our-advantage .inner-container-fluid {
    padding: 12rem 0 3.5rem;
  }

  .our-advantage .items .item .column-title {
    width: 64%;
  }

  .our-advantage .items .item .column-title h6 {
    margin-bottom: 0;
  }

  .blog-detail-content {
    padding: 12rem 0;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 0.694vw;
  }

  .hero-banner .image-holder .image-wrapper {
    margin-right: -5rem;
  }

  .g-better .inner-container {
    max-width: 91.85%;
  }

  .h-together .columns .column .box {
    padding: 10rem;
  }

  .why-us .inner-container {
    max-width: 84.13%;
    margin-left: auto;
    margin-right: auto;
  }

  .d-heal .inner-container {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-location .section-heading {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
  }

  .faq .inner-container {
    max-width: 83.2%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-work-us .inner-container {
    max-width: 83%;
    margin-left: auto;
    margin-right: auto;
  }

  .recent-jobs .inner-container {
    max-width: 83%;
    margin-left: auto;
    margin-right: auto;
  }

  .privacy-policy-section .inner-container {
    max-width: 91.85%;
    margin-left: auto;
    margin-right: auto;
  }

  .not-found .inner-container {
    max-width: 91.85%;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-range .inner-container {
    max-width: 95.86%;
    margin-left: auto;
    margin-right: auto;
  }

  .our-advantage .inner-container {
    max-width: 82.78%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 125rem;
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .container-fluid {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .hero-banner .image-holder .image-wrapper {
    margin-right: -8rem;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 62.5%;
  }

  .hero-banner .image-holder .image-wrapper {
    margin-right: -11rem;
  }
}

@media (min-width: 1792px) {
  html {
    font-size: 11px;
  }
}

@media (max-width: 1199px) {
  body.menu-opened {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .menu-wrapper .row {
    --bs-gutter-x: 2rem;
  }

  .menu-wrapper .menu-header {
    margin-bottom: 3rem;
  }

  .menu-wrapper .columns-menu-small {
    margin-top: 6rem;
  }

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

  .hero-banner .js-stretch-right {
    margin: 0 !important;
  }

  .hero-banner__inner .scroll-down-btn:after {
    height: 1.8rem;
    width: 1.8rem;
    background-color: #102446;
    color: #ffffff;
    border-radius: 50%;
    content: "\e901";
    font-family: "icomoon", sans-serif;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.6em;
    margin: 0 auto;
    -webkit-filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.15));
            filter: drop-shadow(0px 6px 6px rgba(0, 0, 0, 0.15));
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-name: triggerDownArrowMovement;
            animation-name: triggerDownArrowMovement;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }

@-webkit-keyframes triggerDownArrowMovement {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }

    50% {
      -webkit-transform: translateY(5px);
              transform: translateY(5px);
    }

    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}

@keyframes triggerDownArrowMovement {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }

    50% {
      -webkit-transform: translateY(5px);
              transform: translateY(5px);
    }

    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
}

  .hero-banner .content-holder h1 {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner .image-holder {
    margin-bottom: -2.5rem;
  }

  .hero-banner.hero-banner--blog .hero-banner__inner .blog-filter-titles {
    text-align: initial;
  }

  .hero-banner.hero-banner--blog .hero-banner__inner .blog-filter-titles .label {
    margin-bottom: 0.5rem;
  }

  .hero-banner.hero-banner--contact .content-holder {
    margin-bottom: 4.5rem;
  }

  .hero-banner.hero-banner--partners .hero-banner__inner {
    padding: 3rem 0;
  }

  .hero-banner.hero-banner--not-found .search-form label {
    width: 100%;
    display: block;
  }

  .hero-banner.hero-banner--not-found .search-form .search-field {
    width: 100%;
  }

  .hero-banner.hero-banner--not-found .search-form .search-submit {
    width: 100%;
  }

  .hero-banner.hero-banner--single-page .hero-banner__inner {
    min-height: 55.4rem;
  }

  .hero-banner.hero-banner--single-page .hero-banner__inner .scroll-down-btn {
    color: #ffffff;
  }

  .hero-banner.hero-banner--single-page .hero-banner__inner .scroll-down-btn:before {
    background-color: #ffffff;
    color: #102446;
  }

  .hero-banner.hero-banner--single-page .content-holder h1 {
    word-wrap: break-word;
    font-size: 4rem;
  }

  .g-better .section-heading h2 {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }

  .g-better .columns .column:not(:last-child) {
    margin-bottom: 2rem;
  }

  .g-better .columns .column .box {
    font-size: 1.6rem;
    min-height: 29.2rem;
    padding: 3.5rem;
  }

  .h-together .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .h-together .columns .column {
    font-size: 1.6rem;
  }

  .h-together .columns .column:not(:last-child) {
    margin-bottom: 2rem;
  }

  .h-together .columns .column:not(:last-child):after {
    left: 0;
    right: 0;
    bottom: -3.3rem;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    margin: 0 auto;
  }

  .h-home .columns .column:not(:last-child) {
    margin-bottom: 3rem;
  }

  .trained-specialists .columns .column:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .our-works .navigation-with-pagination-wrapper {
    margin-top: 1rem;
  }

  .primary-form.primary-form--contact .inner-container-fluid {
    padding-bottom: 6rem;
  }

  .site-footer .footer-signup .subscribe-form {
    margin-top: 2rem;
  }

  .site-footer .footer-signup .subscribe-form .form-control {
    margin-bottom: 1rem;
  }

  .site-footer .footer-signup .subscribe-form .btn {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .site-footer .footer-signup .subscribe-form .btn span {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .site-footer__top .column-logo {
    margin-bottom: 5.5rem;
  }

  .site-footer__top .column-logo .site-logo {
    margin: 0 auto;
  }

  .site-footer__top .column-quick-links {
    margin-bottom: 5.5rem;
  }

  .site-footer__top .column-site-contact-info {
    text-align: center;
  }

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

  .site-footer__btm .siteby {
    margin-top: 2rem;
  }

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

  .why-us .btm-review-box {
    margin-top: 3.5rem;
  }

  .why-us .btm-review-box .image-holder {
    margin: 0 auto 2.5rem;
    width: 13rem;
  }

  .d-heal .inner-container {
    text-align: center;
  }

  .ndt .section-heading h2 strong {
    display: block;
  }

  .treatment-options .columns .column:not(:last-child) {
    margin-bottom: 1rem;
  }

  .our-experience .columns .column:not(:last-child) {
    margin-bottom: 3rem;
  }

  .further-treatments .content-slider-wrapper .swiper .swiper-slide h4 {
    font-size: 2.4rem;
  }

  .further-treatments .title-slider-wrapper .floating-pattern-bg {
    bottom: 0;
  }

  .service-location .btm-content {
    border-radius: 25px;
    background-color: #102446;
    color: rgba(255, 255, 255, 0.5);
    padding: 2.5rem 1.5rem;
  }

  .service-location .btm-content .ico-holder {
    display: none;
  }

  .service-location .btm-content h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .service-location .btm-content .description {
    padding: 0 5rem;
    line-height: 1.14;
  }

  .service-location .btm-content p {
    margin-bottom: 1rem;
  }

  .service-location .btm-content .tel-link-btn {
    color: #ffffff;
  }

  .asa .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

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

  .asa .items .item .image-holder img {
    max-width: 20rem;
    margin-bottom: 2rem;
  }

  .post-cat-with-post-date {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .most-recent-posts .post {
    margin-bottom: 3.5rem;
  }

  .most-recent-posts .post .post-image__link img {
    min-height: 35rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }

  .most-recent-posts .post .post-image .post-image-floating-content {
    width: auto;
    left: 0;
    top: auto;
    bottom: 0;
    min-height: 12.2rem;
    border-radius: 0 0 2.5rem 2.5rem;
    margin: 1rem;
  }

  .why-work-us {
    text-align: center;
  }

  .why-work-us .items .item .column-title {
    margin-bottom: 1.5rem;
  }

  .recent-jobs .section-heading {
    margin-bottom: 4rem;
  }

  .recent-jobs .section-heading h2 {
    font-size: 3rem;
  }

  .recent-jobs .items .item .column-right {
    margin-top: 1rem;
  }

  .our-advantage .inner-container {
    padding: 0 1rem;
    text-align: center;
  }	
}