@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;
}


/* ===== 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;
}

.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 0;
    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: 150px;
  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 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  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);
}

/* Mobile menu 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;
}

/* Hamburger active (X) animation */
.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);
}

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

/* Tablet: hide call button, shrink logo */
@media (max-width: 1100px) {
  .header__nav {
    gap: 20px;
  }
  .header__nav-list {
    gap: 18px;
  }
  .header .btn.header--outline {
    display: none;
  }
}

/* Mobile: hamburger menu */
@media (max-width: 991px) {
  .header__logo img {
    height: 110px;
  }

  .header__nav {
    gap: 12px;
  }

  .header__nav-list {
    display: none;
  }

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

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

  .header__menu-toggle {
    display: block;
  }

  /* Mobile nav open state */
  .header__nav.active .header__nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F3FDFE;
    padding: 24px 20px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .header__nav.active .header__nav-list li {
    border-bottom: 1px solid rgba(50, 149, 176, 0.1);
  }

  .header__nav.active .header__nav-list li:last-child {
    border-bottom: none;
  }

  .header__nav.active .header__nav-list li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #3A3F45;
  }
}

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

  .header {
    padding: 10px 0;
  }
}

/* ===== 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:#F0FCEE;
  transition: color 0.3s;
}

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

.footer__col p {
  font-size: 16px;
  color:#F0FCEE;
  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;
}

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 0;
}

.section_margin {
  margin: 100px 0;
}

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

  .section_margin {
    margin: 80px 0;
  }
}

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

  .section_margin {
    margin: 60px 0;
  }
}

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

  .section_margin {
    margin: 50px 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: 36px;
}

.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 {
  color: var(--primary) !important;
  background-color: transparent;
}

.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;
  }
}

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

@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;
}

.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 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;
}

@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;
  }
}

.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;
}

.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;
}

.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: -15px;
  margin-right: -15px;
}

.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: 800px;
    display: flex;
    align-items: center;
  }

@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;
  }

 
}

@media (max-width: 768.5px) {
  .banner-image img {
    min-height: 300px;
  }
  .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
   ============================================================ */