@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
  font-family: Recoleta;
  src: url(/fonts/Recoleta-Bold.eot);
  src:
    local("Recoleta Bold"),
    local("Recoleta-Bold"),
    url(/fonts/Recoleta-Bold.eot?#iefix) format("embedded-opentype"),
    url(/fonts/Recoleta-Bold.woff2) format("woff2"),
    url(/fonts/Recoleta-Bold.woff) format("woff"),
    url(/fonts/Recoleta-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Recoleta;
  src: url(/fonts/Recoleta-SemiBold.eot);
  src:
    local("Recoleta SemiBold"),
    local("Recoleta-SemiBold"),
    url(/fonts/Recoleta-SemiBold.eot?#iefix) format("embedded-opentype"),
    url(/fonts/Recoleta-SemiBold.woff2) format("woff2"),
    url(/fonts/Recoleta-SemiBold.woff) format("woff"),
    url(/fonts/Recoleta-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: Recoleta;
  src: url(/fonts/Recoleta-Medium.eot);
  src:
    local("Recoleta Medium"),
    local("Recoleta-Medium"),
    url(/fonts/Recoleta-Medium.eot?#iefix) format("embedded-opentype"),
    url(/fonts/Recoleta-Medium.woff2) format("woff2"),
    url(/fonts/Recoleta-Medium.woff) format("woff"),
    url(/fonts/Recoleta-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Recoleta;
  src: url(/fonts/Recoleta-Regular.eot);
  src:
    local("Recoleta Regular"),
    local("Recoleta-Regular"),
    url(/fonts/Recoleta-Regular.eot?#iefix) format("embedded-opentype"),
    url(/fonts/Recoleta-Regular.woff2) format("woff2"),
    url(/fonts/Recoleta-Regular.woff) format("woff"),
    url(/fonts/Recoleta-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}


/*====================================
Hover Effect CSS
====================================*/

.hover_txt_flip {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.hover_txt_flip:hover {
  color: var(--primary) !important;
}

.hover_txt_flip:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  background: var(--primary);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.hover_txt_flip:hover:before {
  width: 100%;
  -webkit-transition: all .15s cubic-bezier(.4, 0, 1, 1);
  transition: all .15s cubic-bezier(.4, 0, 1, 1);
}

/*====================================
Hover Effect CSS
====================================*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3295B0;
  --primary-dark: #3295B0;
  --dark: #1A1A2E;
  --text: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --light-bg: #F0FAFB;
  --light-gray: #F5F5F5;
  --skin_color: #efe9ce;
  --white: #ffffff;
  --black: #3a3f45;
  --light_bg_color: #f3fdfe;
  --gold_color_filter: brightness(0) saturate(100%) invert(42%) sepia(72%) saturate(2045%) hue-rotate(157deg) brightness(97%) contrast(98%);
  --border: #E0E0E0;
  --recoleta: 'Recoleta', serif;
  --mulish: 'Mulish', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--recoleta);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom_row_main_blk {
  display: flex;
  flex-wrap: wrap;
}

.same_container1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
ul.header__nav-list li a {
  color: #3A3F45;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 40px;
  background: #F3FDFE;
}

.header--outline {
  background: transparent;
  counter-reset: var(--primary);
  border: 2px solid #3295b0 !important;
  border-radius: 30px !important;
  color: #3295b0 !important;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 120px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.3s;
}

.header__nav-link:hover {
  opacity: 0.8;
}

.header_container {
  display: flex;
  max-width: 1600px;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  padding: 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
}

.btn--white:hover {
  background: #f0f0f0;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
}

.btn--dark:hover {
  background: #2a2a4a;
}

.btn--book {
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
  padding: 13px 22px;
  font-size: 16px;
  border: 2px solid #3295b0;
}

a.btn.btn--book:hover {
  background: transparent;
  color: #3295b0;
  border: 2px solid #3295b0;
}

a.btn.header--outline:hover {
  background: #3295b0;
  color: #fff !important;
}

.btn-wrap.justify-content-center.center_blk {
  justify-content: center;
}

.btn--book:hover {
  background: var(--primary-dark);
}

.dafault_btn a:first-child:hover {
  background-color: white;
  color: #3295b0;
  border: 2px solid #fff;
}

/* ===== DESKTOP SERVICES DROPDOWN ===== */
.header__nav-item--has-dropdown {
  position: relative;
}

.header__nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.header__dropdown-caret {
  transition: transform 0.25s;
  flex-shrink: 0;
}

.header__nav-item--has-dropdown:hover .header__dropdown-caret {
  transform: rotate(180deg);
}

.header__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
  list-style: none;
}

.header__dropdown.is-visible {
  display: block;
}

.header__dropdown li a {
  display: block;
  padding: 11px 22px;
  color: #3A3F45;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.header__dropdown li a:hover {
  background: #f0fafd;
  color: var(--primary);
}

/* ===== HAMBURGER TOGGLE ===== */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.header__menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.header__menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

/* Drawer header */
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e8f4f8;
  flex-shrink: 0;
}

.mobile-drawer__logo img {
  height: 100px;
  width: 100%;
}

.mobile-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #3A3F45;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-drawer__close:hover {
  background: #f0fafd;
}

/* Drawer nav */
.mobile-drawer__nav {
  flex: 1;
  padding: 12px 0;
}

.mobile-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-drawer__item {
  border-bottom: 1px solid #e8f4f8;
}

.mobile-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #3A3F45;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}

.mobile-drawer__link:hover {
  color: var(--primary);
  background: #f8fdfe;
}

/* Caret rotation */
.mobile-drawer__caret {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--primary);
}

.mobile-drawer__caret.is-rotated {
  transform: rotate(180deg);
}

/* Sub-menu */
.mobile-drawer__sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f8fdfe;
}

.mobile-drawer__sub.is-open {
  max-height: 500px;
}

.mobile-drawer__sub li a {
  display: block;
  padding: 13px 24px 13px 36px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid #e8f4f8;
  transition: color 0.2s, background 0.2s;
}

.mobile-drawer__sub li:last-child a {
  border-bottom: none;
}

.mobile-drawer__sub li a:hover {
  color: var(--primary);
  background: #edf7fa;
}

/* Drawer footer buttons */
.mobile-drawer__footer {
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #e8f4f8;
  flex-shrink: 0;
}

.mobile-drawer__btn {
  display: block;
  width: 100%;
  text-align: center;
}

.mobile-drawer__footer a.default-btn {
  display: flex;
  justify-content: center;
}

/* ===== HEADER RESPONSIVE ===== */

/* Tablet: hide call button */
@media (max-width: 1100px) {
  .header__nav {
    gap: 20px;
  }

  .header__nav-list {
    gap: 18px;
  }

  /* .header .btn.header--outline {
    display: none;
  } */
}

/* Mobile: show hamburger, hide desktop nav */
@media (max-width: 991px) {
  .header__logo img {
    height: 110px;
  }

  .header__nav {
    gap: 12px;
  }

  .header__nav-list {
    display: none !important;
  }

  .header nav .btn.btn--book,
  .header nav>a.btn,
  .header nav .btn.header--outline,
  .header nav>a.header--outline {
    display: none !important;
  }

  .header__menu-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .header__logo img {
    height: 100px;
  }

  .header {
    padding: 10px 20px;
  }

  .mobile-drawer__footer a.default-btn span {
    display: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #3295B0;
  color: var(--white);
  padding: 50px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
  font-size: 16px;
  color: #F0FCEE;
  line-height: 1.7;
  margin-top: 14px;
}

.footer__brand img {
  height: 150px;
  width: auto;
}

.footer__col h4 {
  font-family: var(--recoleta);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  font-size: 16px;
  color: #fff;
  transition: color 0.3s;
}

.footer__col ul li a:hover {
  color: #ebebeb;
}

.footer__col p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__col.flex_col p {
  display: flex;
}

.footer__col.flex_col span {
  width: auto;
  margin-left: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero__title {
    font-size: 36px;
  }

  .welcome .container,
  .first-visit .container,
  .centralized .container {
    flex-direction: column;
  }

  .welcome__image,
  .welcome__text,
  .first-visit__image,
  .first-visit__text,
  .centralized__text,
  .centralized__images {
    flex: none;
    width: 100%;
  }

  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid--bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer__top {

    grid-template-columns: 0.7fr 1fr 1fr 1fr;

  }

}

@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 10px;
  }

  .section-title {
    font-size: 28px;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .trust__grid--bottom {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .centralized__images {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .insurance__logos {
    gap: 16px;
  }
}

/*====================================
Homepage CSS
====================================*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--mulish);
}

body {
  overflow-x: hidden !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--recoleta);
  color: var(--primary);
}

body p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  padding: 0;
}

body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  font-family: var(--mulish);
  color: var(--black);
}

body a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

p:empty {
  display: none !important;
}

p a {
  color: var(--primary);
  font-weight: 700;
  vertical-align: top;
  display: inline-block;
}

p strong {
  color: var(--primary);
}

a {
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: inherit;
}

section {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

img {
  display: block;
}

label.label1 {
  font-family: var(--mulish) !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  color: red !important;
  margin: 0 !important;
  position: absolute;
  bottom: -18px;
  left: 0;
}

body h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #4c4b4b;
  margin-bottom: 10px;
}

body h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #4c4b4b;
  letter-spacing: 0.68px;
}

body h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #292821;
  margin-bottom: 20px;
  letter-spacing: 0.48px;
}

p:first-letter {
  text-transform: uppercase;
}

.text_blue {
  color: #292821;
}

.light_bg {
  background: var(--light_bg_color);
}

@media only screen and (max-width: 1600px) {
  body h2 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 1024px) {
  body h2 {
    font-size: 46px;
  }
}

@media only screen and (max-width: 991px) {
  body h2 {
    font-size: 40px;
  }

  body h3 {
    font-size: 25px;
  }

  body h4 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  body h2 {
    font-size: 28px;
  }

  body h3 {
    font-size: 22px;
  }

  body h4 {
    font-size: 15px;
  }

  body p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 425px) {
  body h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 375px) {
  body h2 {
    word-wrap: normal;
    font-size: 22px;
  }

  h2 br {
    display: none;
  }
}

@media only screen and (max-width: 991.98px) {
  body .container {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 576px) {

  body .container,
  body .grid-container {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (min-width: 650px) {

  body .container,
  body .grid-container {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {

  body .container,
  body .grid-container {
    max-width: 920px;
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {

  body .container,
  body .grid-container {
    max-width: 960px;
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {

  body .container,
  body .grid-container {
    max-width: 1140px;
    width: 100%;
  }
}

@media only screen and (min-width: 1300px) {

  body .container,
  body .grid-container {
    max-width: 1210px;
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {

  body .container,
  body .grid-container {
    max-width: 1360px;
    width: 100%;
  }
}

@media only screen and (min-width: 1600px) {

  body .container,
  body .grid-container {
    max-width: 1400px;
    width: 100%;
  }
}

@media only screen and (min-width: 1700px) {

  body .container,
  body .grid-container {
    max-width: 1600px;
    width: 100%;
  }
}

.site.grid-container.container {
  padding: 0;
  max-width: 100% !important;
}

.site-content {
  display: inherit;
}

.section_padding {
  padding: 100px 40px;
}
.box_section{
    padding: 100px 0;
}

.section_margin {
  margin: 100px 0;
}
section.hero-banner .same_container1600 {
    padding-left: 40PX;
}

@media only screen and (max-width: 1440px) {
    .section_padding {
      padding: 100px 40px;
    }
}

@media only screen and (max-width: 1200px) {
  .section_padding {
    padding: 80px 40px;
  }
  
  .box_section{
    padding: 80px 0;
}

  .section_margin {
    margin: 80px 0;
  }
}

@media only screen and (max-width: 991.98px) {
  .section_padding {
    padding: 60px 30px;
  }
  .box_section{
    padding: 60px 30px;
}

  .section_margin {
    margin: 60px 0;
  }
  section.hero-banner .same_container1600 {
    padding-left: 30PX;
}
}

@media only screen and (max-width: 767.98px) {
  .section_padding {
    padding: 50px 20px;
  }

.box_section{
    padding:50px 0;
}
  .section_margin {
    margin: 50px 0;
  }
}

@media only screen and (max-width: 575px) {
     .section_padding {
    padding: 50px 0px;
  } 
  .box_section{
    padding:50px 0px;
}
    body .container {
        padding: 0 20px;
    }
    .footer {
        padding: 50px 15px 0;
    }
    
    
}

.default-btn {
  color: var(--white) !important;
  font-size: 18px;
  font-style: normal;
  line-height: 120%;
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--primary);
  margin-top: 32px;
  border: 2px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease 0s;
}

.default-btn:not(.header-btn.default-btn) {
  margin-top: 0px;
}

.default-btn:focus,
.default-btn:hover {
  background-color: transparent;
  color: var(--primary) !important;
}

.white-btn {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary) !important;
}

.white-btn:focus,
.white-btn:hover {
  color: var(--white) !important;
  background-color: transparent;
}

.default-btn.border-btn {
  background: transparent;
  counter-reset: var(--primary);
  border: 2px solid #3295b0 !important;
  border-radius: 30px !important;
  color: #3295b0 !important;
}

.default-btn.border-btn:focus,
.default-btn.border-btn:hover {
  color: var(--white) !important;
  background-color: var(--primary);
}

.banner-btn .default-btn:not(:first-child) {
  color: #fff !important;
  border-color: #fff !important;
}

.banner-btn .default-btn:not(:first-child):hover {
  background-color: #fff !important;
  color: var(--primary) !important;
}

@media only screen and (max-width: 1300.98px) {
  .default-btn {
    padding: 14px 20px;
  }
}

@media only screen and (max-width: 768.5px) {
  .banner-btn .default-btn:first-child {
    border-color: #fff !important;
    background-color: #fff !important;
    color: var(--primary) !important;
  }

  .banner-btn .default-btn:first-child:hover {
    border-color: #fff !important;
    background-color: transparent !important;
    color: #fff !important;
  }
}

@media only screen and (max-width: 576.98px) {
  .default-btn {
    padding: 13px;
    width: 100%;
  }

  body .default-btn span {
    display: none;
  }
}

.content-box h2,
.default-content h2 {
  margin-bottom: 20px;
}

.page-id-3 .content-box h2,
.page-id-612 .content-box h2 {
  text-align: left !important;
}

.content-box:not(:last-child) {
  margin-bottom: 40px;
}

.sub-title {
  font-family: var(--recoleta);
  font-weight: 400;
  font-size: 24px;
  position: relative;
}

.body-big-text p {
  font-size: 24px;
  font-family: var(--recoleta);
  color: #fff;
}

.padding-box-left {
  padding-left: 76px;
}

.default-content p:has(+ ul) {
  padding-bottom: 14px !important;
  margin-bottom: 0;
}

@media only screen and (max-width: 1600px) {
  .body-big-text p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .padding-box-left {
    padding-left: 20px;
  }

  .body-big-text p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991.98px) {
  .padding-box-left {
    padding-left: 0;
  }

  .default-img {
    margin: 0 auto 30px;
  }

  .default-img img {
    width: 100%;
  }
}

@media only screen and (max-width: 767.98px) {
  .sub-title {
    font-size: 20px;
  }
}

.light_bg_color {
  background-color: var(--light_bg_color);
}

.bg_color {
  background-color: var(--primary);
}

.bg_color h2,
.bg_color h3,
.bg_color h4,
.bg_color p,
.bg_color p a,
.meet_hippo_content p {
  color: var(--white);
}

.bg_color p a:hover {
  color: var(--skin_color);
}

.bottom_arrow_sec {
  padding-bottom: 200px;
}

@media only screen and (max-width: 1400px) {
  .bottom_arrow_sec {
    padding-bottom: 180px;
  }
}

@media only screen and (max-width: 1366px) {
  .bottom_arrow_sec {
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 1199px) {
  .bottom_arrow_sec {
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 991.5px) {
  .bottom_arrow_sec_md {
    padding-bottom: 120px;
  }
}

@media only screen and (max-width: 767.98px) {
  .bottom_arrow_sec {
    padding-bottom: 100px;
  }

  .bottom_arrow_sec_md {
    padding-bottom: 120px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.1s ease 0s;
  background-color: var(--light_bg_color);
}

header.site-header {
  padding: 0;
}

@media only screen and (max-width: 991.98px) {
  .inside-header {
    padding: 10px 20px !important;
  }

  .header-btn.call-btn a {
    padding: 13px;
  }
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 36px 0 0;
}

.btn-wrap .default-btn {
  margin-top: 0 !important;
}

.inside-header .btn-wrap {
  flex-wrap: nowrap !important;
  margin-left: 12px;
  gap: 10px;
  margin-top: 0 !important;
}

@media only screen and (max-width: 1300px) {
  .inside-header .btn-wrap {
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .header-btn.call-btn {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .header-btn.call-btn img {
    display: none;
  }
}

@media only screen and (max-width: 991.98px) {
  .header-btn.call-btn a span {
    display: none;
  }

  .header-btn.call-btn img {
    width: 20px;
    filter: invert(46%) sepia(44%) saturate(7285%) hue-rotate(157deg) brightness(96%) contrast(98%);
  }
}

@media only screen and (max-width: 767.98px) {
  .header-btn.appointment-btn {
    display: none;
  }

  .header-btn.call-btn a {
    border-radius: 4px;
    padding: 12px !important;
  }
}

@media only screen and (max-width: 575px) {
  .inside-header .btn-wrap {
    flex-wrap: nowrap !important;
    margin-left: auto;
    max-width: fit-content;
    padding-left: 10px;
  }

  .header-btn.call-btn a {
    border-radius: 4px;
    padding: 8px !important;
  }
}

.site-footer {
  background-color: var(--accent);
}

footer.site-info {
  padding: 0 15px;
}

footer .inside-site-info {
  padding-left: 0;
  padding-right: 0;
}

.site-footer p {
  color: #eef4fc;
  font-size: 16px;
}

.site-footer a:hover {
  color: var(--skin_color);
}

.footer__bottom p {
  color: #fff;
}

@media only screen and (max-width: 767.98px) {
  footer .inside-site-info {
    padding-bottom: 40px;
  }
}

.banner-content h1 {
  font-size: 74px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  width: 100%;
  max-width: 1195px;
}

.banner_img_main img {
  border-radius: 24px;
}

.hero-banner {
  background-color: var(--primary);
  position: relative;
  padding: 0 0;
}

.hero-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.home .hero-banner {
  margin-bottom: 0;
}

@media only screen and (max-width: 1600px) {
  .banner-content h1 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .hero-banner .banner-content h1 {
    font-size: 45px;
  }
  
  .banner-content.default-content {
    max-width: 605px !important;
    width: 100%;
}
}

@media only screen and (max-width: 991.98px) {
  .hero-banner .banner-content h1 {
    font-size: 40px;
  }
   .banner-content.default-content {
    max-width: 540px !important;
    width: 100%;
}
}

@media only screen and (max-width: 768.5px) {
  .hero-banner .container {
    position: unset;
    transform: unset;
  }

  .hero-banner {
    padding-top: 0;
  }

  .banner-content.default-content {
    padding-top: 60px;
  }

  .hero-banner {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767.5px) {
  .banner-content.default-content {
    padding-top: 50px;
  }

  .hero-banner {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 991.98px) {
  .banner_img_main {
    height: inherit;
  }

  @keyframes marquee-horizontal {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }
}

@media only screen and (max-width: 576.98px) {
  .hero-banner .banner-content h1 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 992px) {
  .hero-banner .padding-box-left {
    padding-left: 20%;
  }

  @keyframes marquee-vertical {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(-50%);
    }
  }
}

.call_to_action {
  padding: 50px 0;
}

.cta_content {
  max-width: 960px;
  margin: auto;
}

.plan-img img {
  border-radius: 10px;
  width: 100%;
  max-width: 714px;
  margin: auto;
}

.plan-img {
  margin: 60px 0 15px 0;
}

.title_small_para,
.top_center_title {
    max-width: 1000px;
    margin: auto;
    width: 100%;
}

.top_center_title {
  margin-bottom: 48px;
}

.card_box_wrapper_main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
}

.card_box_wrapper {
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 26px 26px 37px -10px rgba(19, 19, 19, 0.08);
}

.card_icon {
  max-width: 8em !important;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
  height: auto;
  width: 100%;
}

.card_icon img {
  display: block;
  width: 100%;
}

lottie-player::part(path-part) {
  stroke: red;
}

#card_box1 {
  view-timeline: --subjectReveal block;
  animation-timeline: --subjectReveal;
  animation-name: zoombox1;
  animation-range: cover cover;
  animation-fill-mode: both;
  animation-duration: 2s;
  position: sticky;
  top: 150px;
}

@keyframes zoombox1 {
  0% {
    transform: scaleX(1);
  }

  20% {
    transform: scaleX(0.98);
  }

  40% {
    transform: scaleX(0.9);
  }

  100% {
    transform: scaleX(0.89);
    position: sticky;
  }
}

#card_box2 {
  view-timeline: --subjectReveal block;
  animation-timeline: --subjectReveal;
  animation-name: zoombox2;
  animation-range: cover cover;
  animation-fill-mode: both;
  animation-duration: 2s;
  position: sticky;
  top: 195px;
}

@keyframes zoombox2 {
  0% {
    transform: scaleX(1);
  }

  30% {
    transform: scaleX(0.95);
  }

  50% {
    transform: scaleX(0.93);
  }

  100% {
    transform: scaleX(0.91);
    position: sticky;
  }
}

#card_box3 {
  view-timeline: --subjectReveal block;
  animation-timeline: --subjectReveal;
  animation-name: zoombox3;
  animation-range: cover cover;
  animation-fill-mode: both;
  animation-duration: 2s;
  position: sticky;
  top: 250px;
}

@keyframes zoombox3 {
  0% {
    transform: scaleX(1);
  }

  30% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(0.96);
  }

  100% {
    transform: scaleX(0.9);
    position: sticky;
  }
}

#card_box4 {
  view-timeline: --subjectReveal block;
  animation-timeline: --subjectReveal;
  animation-name: zoombox4;
  animation-range: cover cover;
  animation-fill-mode: both;
  animation-duration: 2s;
  position: sticky;
  top: 250px;
}

@keyframes zoombox4 {
  0% {
    transform: scaleX(1);
  }

  30% {
    transform: scaleX(1.05);
  }

  50% {
    transform: scaleX(0.99);
  }

  60% {
    transform: scaleX(0.92);
    position: sticky;
  }

  100% {
    transform: scaleX(1);
    position: sticky;
  }
}

@media only screen and (max-width: 991.98px) {
  .card_box_wrapper_main {
    gap: 40px;
  }

  .top_center_title {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .card_box_main {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    display: flex;
  }
}

@media only screen and (max-width: 767.98px) {
  .card_icon {
    margin: 0 auto 20px auto;
  }

  .card_box_main {
    text-align: center;
  }

  .top_center_title {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 575.98px) {
  .top_center_title {
    margin-bottom: 20px;
  }
}

.image_slider_main img {
  border-radius: 8px;
}

@media only screen and (min-width: 991.99px) {
  body .image_slider_section.bottom_arrow_sec {
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 1201px) {
  body .image_slider_section.bottom_arrow_sec {
    padding-bottom: 100px;
  }
}

.before-after-slider {
  margin-bottom: 0 !important;
}

.handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  border-radius: 100%;
}

.handle:after,
.handle:before {
  content: "";
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.handle:before {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.handle:after {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.more-text {
  display: none;
}

.icon-list-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-list-box .icon-list-img img {
  max-width: 64px;
  height: 64px;
  /*filter: var(--gold_color_filter);*/
}

.icon-list-content p {
  font-size: 18px;
  font-family: var(--recoleta);
  font-weight: 700;
  text-transform: capitalize;
}

.icon-list-wrapper {
  display: grid;
  row-gap: 32px;
  column-gap: 20px;
}

@media only screen and (max-width: 1199px) {
  .icon-list-box .icon-list-img img {
    max-width: 50px;
    width: 100%;
    height: 50px;
  }
}

@media only screen and (min-width: 576px) {
  .icon-list-wrapper {
    row-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .icon-list-wrapper {
    row-gap: 20px;
  }
}

.left-side-img-section .default-content {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.box-text-section .default-content p {
  padding-top: 20px;
}

.box-text-section .default-content p {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.box-text-section .box-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.box-text-section .default-content {
  margin-bottom: 40px;
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100px;
  border: 1px solid var(--primary);
  max-height: 100px;
}

.box-main-container:not(:first-child) {
  margin-top: 20px;
}

.box-content .box-title {
  text-align: left !important;
}

.big_img_box .box-image {
  max-width: 100%;
  max-height: max-content;
}

.big_img_box .box-image img {
  aspect-ratio: 16/9;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  .box-text-section .box-row {
    gap: 32px;
  }

  .box-text-section .default-content {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .box-text-section .box-row {
    gap: 24px;
  }

  .box-text-section .default-content {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  section#big_content_box .box-text-section .box-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }
}

@media only screen and (max-width: 480px) {
  .box-image {
    max-width: 83px;
  }
}

.simple-text-section .top_center_title {
  margin-bottom: 40px;
}

.title_none .top_center_title {
  display: none;
}

@media only screen and (max-width: 991.98px) {
  .simple-text-section .top_center_title {
    margin-bottom: 20px;
  }
}

.box-content-info {
  margin-top: 30px !important;
}

.box-content p {
  margin-bottom: 10px;
}

.box-content p:not(:first-child) {
  margin-bottom: 0;
  padding-top: 15px;
}

.content-box-img .box-main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.content-box-img .box-main-container .box-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.box-content-info {
  margin-top: 30px;
}

@media screen and (max-width: 991px) and (min-width: 576px) {

  .box-content-info:first-child,
  .box-content-info:nth-child(2) {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 576px) {
  .box-content-info:first-child {
    margin-top: 10px !important;
  }
}


.faqs-title {
    margin-bottom: 40px;
    text-align: center;
}

.faqs-title h3 {
  padding-bottom: 40px;
}

.faqs-title h2:last-child {
  margin-bottom: 0;
}

.faq-content p {
  color: #3A3F45;
}

.faq-box:not(:first-of-type) .faq-content {
  display: none;
}

.faq-list {
  margin-bottom: 0;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.faq-box {
  border-bottom: 1px solid var(--primary);
}

.faq-list h4 {
  padding: 15px 15px;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  width: 100%;
  color: #2e373c;
  text-align: left;
  border: none;
  background: #fff;
  position: relative;
  cursor: pointer;
  font-family: var(--recoleta);
  transition: all 0.3s;
}

.faq-list h4:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #2e373c;
  transition: all 0.4s;
  background-image: url(/images/plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
}

.faq-box.active h4:before {
  background-image: url(/images/minus.svg) !important;
  filter: brightness(0) invert(1);
}

.faq-list .faq-content {
  padding: 15px;
}

.faq-padding-top {
  padding-top: 100px !important;
}

.faq-box.active .faq-title {
    background: #3295B0;
    color: #fff;
}

@media only screen and (min-width: 1200px) {
  .faqs-section .container {
    max-width: 1140px;
  }
}

@media only screen and (max-width: 1024px) {
  .faq-list h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-list h4 {
    font-size: 18px;
  }

  .faq-padding-top {
    padding-top: 60px !important;
  }
}

@media only screen and (max-width: 767px) {
  .faq-list h4 {
    padding: 15px 35px 15px 15px;
  }

  .faq-list h4:before {
    right: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .faq-list h4 {
    font-size: 16px;
  }

  .faq-padding-top {
    padding-top: 60px !important;
  }
}

a.portfolio-box-info-content {
  width: 100%;
  padding: 0 10px;
}

.image_slider {
  margin: 0 -10px;
}

.team-col {
  margin-bottom: 24px;
}

.team-box {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  max-width: 546px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.team-content,
.team-img {
  width: 50%;
}

.team-img,
.team-img img {
  height: 100%;
  object-fit: cover;
}

.team-img img {
  width: 100%;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.team-content {
  padding: 20px;
}

.team-content h3 {
  font-weight: 600;
  padding-bottom: 15px;
  color: #373843;
}

.team-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--primary);
}

.team-btn {
  border: none !important;
}

.our-team-section .default-content {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .our-team-section .default-content {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .team-box h4 {
    font-size: 18px;
  }

  .our-team-section .default-content {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .team-box h4 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 475px) {
  .team-box {
    display: block;
    height: auto;
  }

  .team-content,
  .team-img {
    width: 100%;
  }

  .team-img img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 14px;
  }
}

@media only screen and (min-width: 1025px) {
  .team-content h3 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .our-team-section .container {
    max-width: 1140px;
  }
}

.cta-sec {
  background-color: var(--primary);
  text-align: center;
  padding: 50px 0;
}

.cta-content h2,
.cta-content p {
  color: #fff;
}

.title_small_para.cta-content p {
  font-family: var(--recoleta) !important;
  font-size: 28px;
}

.cta-content p {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--mulish);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  padding-top: 12px;
}

@media only screen and (max-width: 1199.98px) {
  .title_small_para.cta-content p {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1024.98px) {
  .title_small_para.cta-content p {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991.98px) {
  .title_small_para.cta-content p {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767.98px) {
  .title_small_para.cta-content p {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 16px !important;
  }
}

.page-id-2826 a:not([href]) {
  text-decoration: none !important;
  cursor: text !important;
}

@media (min-width: 1200px) {
  .page-id-2826 .site.container {
    max-width: 1140px !important;
  }
}

@media (min-width: 992px) {
  .page-id-2826 .site.container {
    max-width: 960px;
  }
}

@media (min-width: 768px) {
  .page-id-2826 .site.container {
    max-width: 720px;
  }
}

@media (min-width: 576px) {
  .page-id-2826 .site.container {
    max-width: 540px;
  }
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 30px;
}

.gallery-col {
  max-width: calc(33.33% - 53.33px);
  width: 100%;
}

@media only screen and (max-width: 1400px) {
  .gallery-col {
    max-width: calc(33.33% - 40px);
  }
}

@media only screen and (max-width: 1199px) {
  .gallery-col {
    max-width: calc(33.33% - 26.66px);
  }
}

@media only screen and (max-width: 991px) {
  .gallery-col {
    max-width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 575px) {
  .gallery-col {
    max-width: 100%;
  }
}

.portfolio-box-info-content,
.portfolio-box-info-content .portfolio-box-info {
  height: 100%;
}

.portfolio-box-info-content .portfolio-box-info img {
  height: inherit;
  width: 100%;
  object-fit: cover;
}

.portfolio-box-info img {
  box-shadow:
    rgba(50, 50, 93, 0.25) 0 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
  border-radius: 5px;
}

.portfolio-box-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media screen and (max-width: 640px) {
  .portfolio-box-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 480.98px) {
  .portfolio-box-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 992px) {
  .big_content .row {
    display: inline-block;
    width: 100%;
    max-width: 100%;
  }

  .big_content .row .col-lg-6 {
    width: 100%;
  }

  .big_content .row .col-lg-6 .default-content {
    max-width: 100%;
  }
}

.all-image {
  column-count: 3;
  gap: 30px;
}

.image-box {
  padding-bottom: 30px;
}

@media only screen and (max-width: 991.98px) {
  .all-image {
    column-count: 2;
  }
}

@media only screen and (max-width: 575.98px) {
  .all-image {
    column-count: 1;
  }

  .all-image .image-box:not(:last-child) {
    padding-bottom: 30px;
  }
}

.text-left {
  text-align: left !important;
}

.page-slider-img div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.services-sec .services-col {
  padding: 0 24px;
}

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

.services-content img {
  width: 100%;
}

.services-content p {
  font-size: 16px;
  max-width: 426px;
  margin: 0 auto;
}

.services-content h3 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services_content h3 img {
  width: 24px;
  aspect-ratio: 1;
  margin-bottom: 0;
  border-radius: 0;
}

.services_content h3 a {
  margin-left: auto;
  order: 2;
}

.services_content h3 a:hover img {
  filter: invert(56%) sepia(31%) saturate(3817%) hue-rotate(25deg) brightness(97%) contrast(105%);
}

.services-content img {
  margin-bottom: 24px;
  border-radius: 16px;
}

.services-content span {
  display: block;
  font-size: 24px;
  font-weight: 300;
  margin-top: 16px;
}

@media only screen and (max-width: 1366px) {
  .services-content span {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1200px) {

  .services-content h3,
  .services-content span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991.5px) {
  .services-content img {
    margin-bottom: 12px;
  }

  .services-sec .services-col {
    padding: 0 14px;
  }
}

@media only screen and (max-width: 767.5px) {
  .services-content span {
    font-size: 16px;
  }

  .services-sec .services-col {
    padding: 0 0;
  }
}

@media only screen and (max-width: 575.5px) {
  .services-col {
    max-width: 100%;
  }

  .services-content img {
    margin-bottom: 15px;
  }
}

@keyframes borderAnimation {
  from {
    background-position:
      0 0,
      -18.82px 0,
      100% -18.82px,
      0 100%;
  }

  to {
    background-position:
      0 -18.82px,
      0 0,
      100% 0,
      -18.82px 100%;
  }
}

.info-content {
  padding: 24px;
}

@media only screen and (max-width: 991px) {
  label.label1 {
    bottom: -15px;
  }
}

@media only screen and (max-width: 575px) {
  .info-content {
    padding: 20px 0 0 0;
  }
}

.content-box-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-content p a {
  color: inherit;
  font-family: inherit;
  font-weight: 100;
}

.meet_hippo_content p {
  font-size: 24px;
}

.meet_hippo_content {
  max-width: 890px;
  padding-left: 70px;
}

@media only screen and (max-width: 1199px) {
  .meet_hippo_content p {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  .meet_hippo_content p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .meet_hippo_content p {
    font-size: 18px;
  }

  .meet_hippo_content {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .meet_hippo_content p {
    font-size: 16px;
  }
}

.home_image_col {
  width: 50%;
}

.home_about_content_div {
  width: 50%;
  padding-right: 110px;
}

.home_image_col img {
  border-radius: 24px;
  width: 100%;
}

.home_about_content_div .banner_btn_div {
  margin-top: 32px;
}

@media only screen and (min-width: 1281px) and (max-width: 1680px) {
  .home_about_content_div {
    padding-right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .home_about_content_div {
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .home_image_col {
    width: 100%;
  }

  .home_about_content_div {
    width: 100%;
    padding-right: 0;
    padding-top: 20px;
  }
}

.sub_home_about_content_div {
  width: 50%;
  padding-left: 110px;
}

@media only screen and (min-width: 1281px) and (max-width: 1680px) {
  .sub_home_about_content_div {
    padding-left: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .sub_home_about_content_div {
    padding-left: 30px;
  }
}

@media (max-width: 991px) {
  .home_image_col {
    width: 100%;
  }

  .sub_home_about_content_div {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}

@media only screen and (max-width: 575.5px) {
  .default-btn:not(.header-btn.default-btn) {
    margin-top: 20px;
  }

  .mobile-drawer__footer {
    gap: 0 !important;
  }
}

.left-side-img-section img {
  border-radius: 24px !important;
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
  .left-side-img-section .default-content {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 1281px) and (max-width: 1680px) {
  .left-side-img-section .default-content {
    padding-left: 50px;
  }
}

@media only screen and (min-width: 1681px) {
  .left-side-img-section .default-content {
    padding-left: 86px;
  }
}

.title_para_section h2 {
  color: #4c4b4b;
  text-align: center;
}

.title_para_section p {
  color: #4c4b4b;
  max-width: 1200px;
  padding-top: 10px;
  text-align: center;
}

.title_para_section.left-side-img-section .title_para_section_content h2,
.title_para_section.left-side-img-section .title_para_section_content p {
  text-align: left;
}

.title_para_section.bg_color h2,
.title_para_section.bg_color p {
  color: #fff;
}

.left-side-img-section .title_para_section_content {
  padding-left: 70px;
}

.left-side-img-section .title_small_para {
    padding-bottom: 50px;
}
 
.title_para_section p a {
  color: #3295B0;
  display: inline;
  font-weight: 700;
}

.title_para_section p a:hover {
  color: #4c4b4b;
}

.image_slider_section_title_link .services-content img {
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
}

.image_slider_section_title_link .services_content h3 a {
  margin-right: auto;
  color: inherit;
  font-family: inherit;
  margin-bottom: 10px;
}

.image_slider_section_title_link .services_content h3 a:hover {
  color: #4c4b4b;
}

.services-sec.image_slider_section_title_link .services-col {
  padding: 0 24px 24px 24px;
}

.family-choose-section {
  background-color: #3295B0;
}

.family-choose-row.d-flex.service-row-slider.justify-content-center.flex-wrap {
  justify-content: center;
}

.family-choose-section .top_center_title h2,
.family-choose-section .top_center_title p {
  color: #fff;
}

.family-choose-section .family-choose-col {
  padding: 0 24px 24px 24px;
}

.family-choose-section .family-choose-col img {
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.family-choose-section .family-choose-col h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.family-choose-section .family-choose-col p {
  color: #fff;
  font-size: 16px;
}

.faqs-section {
  background-color: var(--light_bg_color);
}

.faqs-section.white-faq-section {
  background-color: #fff;
}

.faqs-section .faq-list h4 {
  background: 0 0;
}

.faq-box.font_color.active .faq-title {
  background: #3295B0;
  color: #fff;
}

@media (max-width: 1400px) {
  .left-side-img-section .title_para_section_content {
    padding-left: 50px;
  }

  .left-side-img-section .title_small_para {
    padding-bottom: 40px;
  }
}

@media (max-width: 1200px) {
  .left-side-img-section .title_para_section_content {
    padding-left: 30px;
  }

  .left-side-img-section .title_small_para {
    padding-bottom: 30px;
  }

  .family-choose-section .family-choose-col h3 {
    font-size: 18px;
  }

  .family-choose-section .family-choose-col p,
  .services-content p {
    font-size: 15px;
  }

  .cta-content p,
  .sub-title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .left-side-img-section .title_para_section_content {
    padding-left: 0;
    padding-top: 30px;
  }

  .title_para_section p:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .family-choose-section .family-choose-col,
  .services-sec.image_slider_section_title_link .services-col {
    padding: 0 14px 20px 14px;
  }

  .family-choose-section .family-choose-col img {
    margin-bottom: 12px;
  }

  .cta-content p,
  .sub-title {
    font-size: 20px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {

  .cta-content p,
  .sub-title {
    font-size: 18px;
  }

  .family-choose-section .family-choose-col p,
  .services-content p {
    font-size: 14px;
  }

  .family-choose-section .family-choose-col img,
  .image_slider_section_title_link .services-content img {
    max-width: 280px;
  }
}

.appointment-img img {
  width: 100%;
  height: 100%;
}

.meet_hippo_content span.meet_hippo_sub_title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  font-family: var(--recoleta);
  margin-bottom: 10px;
  display: block;
}

@media only screen and (max-width: 1440.98px) {
  .meet_hippo_content span.meet_hippo_sub_title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 1199.98px) {
  .meet_hippo_content span.meet_hippo_sub_title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1024.98px) {
  .meet_hippo_content span.meet_hippo_sub_title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 991.98px) {
  .meet_hippo_content {
    padding-top: 30px;
  }

  .meet_hippo_content span.meet_hippo_sub_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767.98px) {
  .meet_hippo_content span.meet_hippo_sub_title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 575.98px) {
  .meet_hippo_content span.meet_hippo_sub_title {
    font-size: 20px;
  }
}


/*====================================
Grid System
====================================*/
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

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

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

[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    width: 33.333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333%;
  }

  .col-lg-8 {
    width: 100%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.333%;
  }
}

@media (min-width: 1200px) {
  .col-xl-7 {
    width: 58.333%;
  }
}

.d-flex {
  display: flex;
}

.d-none {
  display: none !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

/*====================================
Banner Hero Additional
====================================*/
.hero-banner .same_container1600 {
  position: relative;
  z-index: 2;
}

.banner-image {
  position: relative;
}

.banner-image img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}

.hero-banner .same_container1600 {
  min-height: 730px;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {
    .hero-banner .same_container1600 {
        min-height: 580px;
    }
}

@media only screen and (min-width: 1141px) and (max-width: 1280px) {
    .hero-banner .same_container1600 {
        min-height: 590px;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1440px) {
    .hero-banner .same_container1600 {
        min-height: 600px;
    }
}

@media only screen and (min-width: 1441px) and (max-width: 1680px) {
    .hero-banner .same_container1600 {
        min-height: 620px;
    }
}

@media only screen and (max-width: 1024px) {
  .hero-banner .same_container1600 {
    min-height: 600px;
    display: flex;
    align-items: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-banner .same_container1600 {
    min-height: 500px;
  }
}

@media (min-width: 769px) {
  .hero-banner .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
  }


}

@media (max-width: 768.5px) {
  .banner-image img {
    min-height: 20vh;
    object-position: right;
  }

  .hero-banner .same_container1600 {
    min-height: 330px;
  }
}

.banner-content h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/*====================================
Image Slider / Gallery Grid
====================================*/
.image_slider {
  display: flex;
  flex-wrap: wrap;
}

.image_slider_main {
  flex: 1;
  min-width: 0;
}

.image_slider_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .image_slider_main {
    flex: 0 0 100%;
    padding: 5px 10px;
  }
}

/*====================================
Appointment Image Section
====================================*/
.appointment-img {
  /* max-width: 500px; */
}

.appointment-img img {
  border-radius: 24px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .appointment-img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/*====================================
Homepage CSS END
====================================*/

/* ============================================================
   LEGAL / DISCLAIMER PAGES
   ============================================================ */
.legal-section {
  padding: 80px 24px 100px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 52px 56px;
  box-shadow: 0 8px 36px rgba(3, 187, 199, .08);
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark-teal);
  margin: 36px 0 12px;
  border-bottom: 2px solid rgba(3, 187, 199, .15);
  padding-bottom: 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .97rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 20px;
}

.legal-content ul li {
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: .95rem;
}

.legal-content strong {
  color: var(--dark);
}

.legal-updated {
  display: inline-block;
  background: rgba(3, 187, 199, .08);
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .legal-content {
    padding: 28px 22px;
  }
}


.inner-hero {
  background: #3295b0;
  padding: 80px 24px 64px;
  color: white;
  text-align: center;
}

.inner-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.inner-hero .service-breadcrumb {
  justify-content: center;
}

.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: white;
  margin-bottom: 28px;
  line-height: 1.2;
}

.inner-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 575px) {
  .inner-hero .container {
    padding: 0 !important;
  }
}

/* ============================================================
   ABOUT PAGE – ALTERNATING IMAGE + TEXT SECTIONS
   ============================================================ */

.sd-sec-down {
  text-align: center;
  margin-top: 20px;
}

.sd-hero-content.fade-in-up.is-visible {
  margin: auto;
}

/* ---------------------------------two-side-------------------------------- */
.simple_full_content_inner_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 15px
}

.simple_full_content_inner_row .simple_full_text_col {
  padding: 80px 40px;
  width: 100%
}

.simple_full_text_module {
  max-width: 650px;
  width: 100%;
  margin: auto
}


.simple_full_content_inner_row .simple_full_text_col:first-child,
.comparison.alt {
  background-color: #f3f3f3
}

.simple_full_content_inner_row .simple_full_text_col:last-child {
  background-color: #d3f5ff
}

.simple_full_content_inner_row .simple_full_text_col .simple_full_text_details h3 {
  margin-bottom: 20px
}

.simple_full_text_details p {
  font-size: 18px;
}

.alt .simple_full_content_inner_row .simple_full_text_col:first-child {
  background-color: #3295b0 !important;
}

.alt .simple_full_content_inner_row .simple_full_text_col:first-child h2,
.alt .simple_full_content_inner_row .simple_full_text_col:first-child p,
.alt .simple_full_content_inner_row .simple_full_text_col:first-child ul li {
  color: #fff !important;
}

.simple_full_text_details.para_txt.htag_h3_font.page-section-inner h2 {

  font-family: var(--recoleta);
  color: #2a2a2a;
  font-size: clamp(24px, 2.8vw, 38px);
  margin-bottom: 20px;
  line-height: 1.25;


}

@media only screen and (max-width: 991px) {
  .simple_full_content_inner_row {
    grid-template-columns: 1fr
  }

  .simple_full_text_module {
    max-width: 100%
  }

  .hero-bg {
    position: unset;
  }

  .hero-content {
    background-color: #000000;
    padding-top: 60px;
  }

  .simple_full_content_inner_row .simple_full_text_col {
    padding: 50px 30px;
  }

  .split-sec {
    padding: 50px 20px;
  }

}

/* ------------------------------------------------------------------- */

/* ============================================================
   SERVICE PAGES – Shared Styles
   (sd-* and pte-* classes used across all service pages)
   ============================================================ */

/* ---- Fade-in scroll animation ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO – full teal gradient, centered
   ============================================================ */
.sd-hero,
.pte-hero {
  background: linear-gradient(135deg, #1f8eaa 0%, var(--primary) 50%, #03bdd6 100%);
  padding: 110px 0 100px;
}

.sd-hero-content,
.pte-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sd-hero-content h1,
.pte-hero-content h1 {
  font-family: var(--recoleta);
  color: #fff;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  margin-bottom: 28px;
  text-align: center;
}

.sd-hero .btn-wrap,
.pte-hero .btn-wrap {
  margin-top: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   TWO-COLUMN SECTIONS – image + text
   ============================================================ */
.sd-img,
.pte-img {
  border-radius: 14px;
  overflow: hidden;
  height: 500px;
  min-height: 100%;
}

.sd-img img,
.pte-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.sd-text-col,
.pte-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sd-text-col h2,
.pte-text-col h2 {
  font-family: var(--recoleta);
  color: #2a2a2a;
  font-size: clamp(24px, 2.8vw, 38px);
  margin-bottom: 20px;
  line-height: 1.25;
}

.sd-text-col p,
.pte-text-col p {
  color: #555;
  margin-bottom: 14px;
  font-size: 18px;
}

@media only screen and (max-width: 991px) {

  .sd-img,
  .pte-img {
    height: 100% !important;
  }
}

/* ============================================================
   SECTION TITLE (centered for card sections)
   ============================================================ */
.sd-sec-title,
.pte-sec-title {
  text-align: center;
  margin-bottom: 40px;
}

.sd-sec-title h2,
.pte-sec-title h2 {
  font-family: var(--recoleta);
  color: #2a2a2a;
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
}

.sd-sec-title p,
.pte-sec-title p {
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}

.bg_color .sd-sec-title h2,
.bg_color .sd-sec-title p,
.bg_color .pte-sec-title h2,
.bg_color .pte-sec-title p {
  color: #fff;
}

/* ============================================================
   PROCESS CARDS – 2×2 teal bg with circular number badge
   ============================================================ */
.sd-process-grid,
.pte-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.sd-process-card,
.pte-process-card {
  background: rgba(255, 255, 255, .13);
  border-radius: 14px;
  padding: 30px 26px 28px;
  text-align: center;
}

.sd-process-num,
.pte-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto 18px;
  font-family: var(--recoleta);
}

.sd-process-card h3,
.pte-process-card h3 {
  color: #fff;
  font-family: var(--recoleta);
  font-size: 24px;
  margin-bottom: 12px;
}

.sd-process-card p,
.pte-process-card p {
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  margin: 0;
}

/* 5th card centered */
.sd-process-grid .sd-process-card:nth-child(5) {
  grid-column: 1 / 3;
  max-width: 50%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {

  .sd-process-grid,
  .pte-process-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {

  .sd-process-grid,
  .pte-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


/* ============================================================
   REASON CARDS – 3-column numbered bordered cards
   ============================================================ */
.sd-cards-grid,
.pte-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 32px;
}

.sd-reason-card,
.pte-reason-card {
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 10px;
  padding: 24px 22px;
  transition: box-shadow .3s, transform .3s;
}

.sd-reason-card:hover,
.pte-reason-card:hover {
  box-shadow: 0 8px 28px rgba(50, 149, 176, .18);
  transform: translateY(-4px);
}

.sd-reason-card h3,
.pte-reason-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sd-reason-card p,
.pte-reason-card p {
  color: #555;
  font-size: 14px;
  margin: 0;
}

/* 5-item layout: 3 top row, 2 bottom centered */
.pte-cards-grid .pte-reason-card:nth-child(4) {
  grid-column: 1 / 2;
}

.pte-cards-grid .pte-reason-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* ============================================================
   AFTERCARE / EXPECT CARDS GRID – 2×2
   ============================================================ */
.sd-expect-grid,
.pte-aftercare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 36px 0 32px;
}

/* ============================================================
   CIRCLE CHECKLIST – for two-column text sections
   ============================================================ */
.sd-check-list,
.pte-check-list {
  list-style: none;
  padding: 0;
  margin: 0px 0 24px;
}

.sd-check-list li,
.pte-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #444;
  /* border-bottom: 1px solid #e8f4f8; */
  font-size: 18px;
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgb(227 227 227) 30%, rgba(0, 0, 0, 0) 100%);
  border-image-slice: 1;
}

.sd-check-list li:last-child,
.pte-check-list li:last-child {
  border-bottom: none;
}

.sd-check-list li::before,
.pte-check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.simple_full_content_section .simple_full_content_inner_row .simple_full_text_col:first-child ul li::before {
    background-color: #fff;
    color: var(--primary);
}

/* ============================================================
   INLINE CTA BUTTON WRAP
   ============================================================ */
.sd-cta,
.pte-cta {
  margin-top: 25px;
}

/* Light background for alternating sections */
.sd-light,
.pte-light {
  background: #f0fafd;
}

/* ============================================================
   FINAL CTA – centered
   ============================================================ */
.sd-final-cta,
.pte-final-cta {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.sd-final-cta h2,
.pte-final-cta h2 {
  font-family: var(--recoleta);
  color: #2a2a2a;
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 20px;
}

.sd-final-cta p,
.pte-final-cta p {
  color: #555;
  margin-bottom: 14px;
  font-size: 18px;
}

.sd-final-cta .btn-wrap,
.pte-final-cta .btn-wrap {
  justify-content: center;
}

/* ============================================================
   RESPONSIVE – service pages
   ============================================================ */
@media (max-width: 991px) {

  /* Image always stacks first, content second */
  .row>.col-12:has(.sd-img),
  .row>.col-12:has(.pte-img) {
    order: -1;
  }

  /* 40px gap between image and content when stacked */
  .row:has(.sd-img),
  .row:has(.pte-img) {
    row-gap: 40px;
  }

  .sd-cards-grid,
  .pte-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pte-cards-grid .pte-reason-card:nth-child(4),
  .pte-cards-grid .pte-reason-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 767px) {

  .sd-hero,
  .pte-hero {
    padding: 70px 0 60px;
  }

  .sd-hero-content h1,
  .pte-hero-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {

  .sd-process-grid,
  .pte-process-grid {
    grid-template-columns: 1fr;
  }

  .sd-process-grid .sd-process-card:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  .sd-cards-grid,
  .pte-cards-grid {
    grid-template-columns: 1fr;
  }

  .sd-expect-grid,
  .pte-aftercare-grid {
    grid-template-columns: 1fr;
  }

  body p,
  body ul li {
    font-size: 16px !important;
  }
}

/* ------------------------------------------------------------------- */

/* .margin_bottom_0 {
  margin-bottom: 0 !important;
} */

.mar_top_50 {
  margin-top: 50px !important;
}

@media only screen and (max-width: 991px) {
  .padd_right_0_blk {
    padding-right: 0 !important;
  }

  .padd_left_0_blk {
    padding-left: 0 !important;
  }

}

@media only screen and (min-width: 576px) {

  .last_schedule_main_sec .pte-final-cta,
  .last_schedule_main_sec .sd-final-cta {
    text-align: left;
  }

  .last_schedule_main_sec .pte-final-cta .btn-wrap,
  .last_schedule_main_sec .sd-final-cta .btn-wrap {
    justify-content: left;
  }
}

@media only screen and (min-width: 768px) {
  .sd_process_grid_2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
CONTACT & APPOINTMENT PAGES
============================================================ */
.contact-page-section {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary) 100%);
    padding: 80px 24px;
}

.contact-page-section .contact-grid {
    max-width: 1300px;
    width: 100%;
}

.appointment-page-section {
    padding: 80px 24px;
    background: var(--light-bg);
}

.appointment-page-inner {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px 48px;
    box-shadow: 0 20px 60px rgba(3, 187, 199, .12);
}

.appointment-page-inner h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.appointment-page-inner>p {
    color: var(--text);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 700px) {
    .appointment-page-inner {
        padding: 28px 20px;
    }
}
 
.section-contact {
    padding: 90px 24px;
    background:#4f4f4f;
}

.contact-grid {
    max-width: 1252px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info p {
    color: #2a2a2a;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #2a2a2a;
}

.contact-detail-item i {
    width: 50px;
    height: 50px;
    background: #3295B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-item i::before {
    color: #fff;
    font-size: 18px;
}

.contact-detail-item strong {
    display: block;
    font-size: 16px;
    opacity: .75;
    margin-bottom: 2px;
    color: var(--primary);
    font-family: var(--recoleta);
}

.contact-detail-item a,
.contact-detail-item span {
    color: #2a2a2a;
    font-weight: 600;
}

.contact-detail-item a:hover {
    opacity: .8;
}

/* Appointment Form */
.appt-form {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
}

.appt-form h3 {
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #dde;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: .93rem;
    color: var(--dark);
    transition: border-color var(--transition);
    outline: none;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
    resize: none;
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.disclaimer-msg p, 
.disclaimer-msg a {
  font-size: 14px;
}

.disclaimer_group {
  margin-bottom: 40px;
}

.disclaimer_group .disclaimer-msg:last-child {
  margin-top: 10px;
}

.disclaimer_group label {
  font-size: 14px;
  font-weight: 500;
}

.appt-form #contact-form #contact-submit {
  background: var(--primary);
  color: var(--white);
  border-radius: 30px;
  padding: 13px 22px;
  font-size: 18px;
  border: 2px solid #3295b0;
}

.appt-form #contact-form #contact-submit:hover {
  background: transparent;
  color: #3295b0;
  border: 2px solid #3295b0;
}

@media only screen and (max-width: 575px) {
    form#contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media only screen and (max-width: 991px) {
    .contact-page-section .contact-grid {
       display: block;
    }
    .contact-page-section .contact-grid .contact-info {
        margin-bottom: 50px;
    }
    .contact-page-section .contact-grid .appt-form {
        padding: 30px 20px;
    }
}

/*============================================
    Start - Site-Map
============================================*/

.site-map-menu-blk {
    padding: 80px 24px;
}

.site-map-menu {
    margin: 0;
    padding: 0;
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
}

.site_map_menu_blk_container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.site-map-menu li a {
    text-align: left;
    color: #1e3a5f;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    width: 100%;
    max-width: 100%;
}

.site-map-menu li a:hover {
    color: var(--primary);
}

.site-map-menu li {
    list-style: none;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    max-width: fit-content;
}

.site-map-menu ul.sitemap-sub-menu {
    padding-top: 0;
    padding-left: 30px;
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
}

.site-map-menu li>ul.sitemap-sub-menu {
    padding-top: 15px!important;
}

.site-map-menu li a:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(/images/list_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 5px;
}

a.service-btn {
    color: #1e3a5f;
    font-size: 17px;
    display: block;
    margin-top: 10px;
}

a.service-btn:hover {
    color: var(--primary);
   
}

.check-icon path {
    stroke: #fff !important;
    stroke-width: 1 !important;
}

.check-icon svg {
    stroke: #fff !important;
    stroke-width: 1 !important;
}

.header__nav-item--has-dropdown button {
    background: transparent;
    border: none;
}
ul.sd-check-list li p {
    margin: 0;
}

.banner-content.default-content {
    max-width: 993px;
    width: 100%;
}


@media (max-width: 991px) {
  .site-map-menu-blk {
    padding: 50px 24px !important;
  }
}
/*============================================
    End - Site-Map
============================================*/
/* ====================================================
404 PAGE
==================================================== */
.error-404-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(160deg, #f0fbfa 0%, #fff 60%);
}
.error-404-inner {
    text-align: center;
    max-width: 580px;
}
.error-404-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    animation: floatTooth 3s ease-in-out infinite;
}
@keyframes floatTooth {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.error-404-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px;
}
.error-404-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: var(--primary);
    margin-bottom: 16px;
}
.error-404-msg {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.error-404-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-outline-teal {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.btn-outline-teal:hover {
    background: var(--primary);
    color: #fff;
}
.error-404-links {
    border-top: 1px solid #e5f5f4;
    padding-top: 24px;
}
.error-404-links p {
    color: #777;
    font-size: .9rem;
    margin-bottom: 12px;
}
.error-404-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}
.error-404-links ul li a {
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s;
}
.error-404-links ul li a:hover {
    color: var(--primary);
}