@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
::-moz-selection {
  background: #0b8f8c;
  color: #262626;
  text-shadow: none;
}
::selection {
  background: #0b8f8c;
  color: #262626;
  text-shadow: none;
}

::-moz-selection {
  background: #0b8f8c;
  color: #eee;
  text-shadow: none;
}

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

body {
  font-family: "Outfit", sans-serif;
  background: #fdf8fd;
  color: #262626;
}

.text-primary {
  color: #0b8f8c;
}

.text-subtext {
  color: #6f6a65;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 12px;
  font-weight: normal;
  line-height: 1.2;
  font-weight: 800;
}

h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading {
  font-family: "Raleway", sans-serif;
  margin-bottom: 12px;
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
}

.button__group {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .button__group {
    justify-content: center;
    gap: 20px;
  }
}

.button__primary {
  color: #fff;
  padding: 8px 8px 8px 16px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #0b8f8c;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #0b8f8c;
  border-radius: 20px 4px 20px 4px;
}
.button__primary .button__icon {
  background: white;
  border-radius: 12px 4px 12px 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.button__primary .button__icon img {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(366%) hue-rotate(130deg) brightness(91%) contrast(106%);
}
.button__primary:hover {
  border-radius: 4px 20px 4px 20px;
  color: white;
}
.button__primary:hover .button__icon {
  border-radius: 4px 12px 4px 12px;
}
.button__primary:hover img {
  transform: rotate(45deg);
}

.button__secondary {
  color: #0b8f8c;
  padding: 8px 8px 8px 16px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px 4px 20px 4px;
}
.button__secondary .button__icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px 4px 12px 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.button__secondary .button__icon img {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(366%) hue-rotate(130deg) brightness(91%) contrast(106%);
}
.button__secondary:hover {
  border-radius: 4px 20px 4px 20px;
  color: #0b8f8c;
  background: rgba(255, 255, 255, 0.9);
}
.button__secondary:hover .button__icon {
  border-radius: 4px 12px 4px 12px;
}
.button__secondary:hover img {
  transform: rotate(45deg);
}

.button__tertiary {
  color: #0b8f8c;
  padding: 8px 8px 8px 16px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #d7efef;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #d7efef;
  border-radius: 20px 4px 20px 4px;
}
.button__tertiary .button__icon {
  background: white;
  border-radius: 12px 4px 12px 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.button__tertiary .button__icon img {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(366%) hue-rotate(130deg) brightness(91%) contrast(106%);
}
.button__tertiary:hover {
  border-radius: 4px 20px 4px 20px;
  color: #0b8f8c;
  background: rgba(255, 255, 255, 0.9);
}
.button__tertiary:hover .button__icon {
  border-radius: 4px 12px 4px 12px;
}
.button__tertiary:hover img {
  transform: rotate(45deg);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 248, 253, 0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
body.admin-bar header {
  top: 32px;
}
header.is-fixed {
  background-color: #fdf8fd;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
body.admin-bar header.is-fixed {
  top: 0;
}
header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
header .site-branding {
  position: relative;
  z-index: 1001;
}
header .site-branding img {
  max-width: 100px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  header .site-branding img {
    max-width: 60px;
  }
}
header .site-branding:hover img {
  transform: scale(1.05);
}
header .main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .main-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  header .main-navigation .menu {
    display: none;
    justify-content: center;
  }
}
header .main-navigation .menu li {
  position: relative;
  margin: 0;
}
header .main-navigation .menu li.menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 4px;
}
header .main-navigation .menu li.menu-item-has-children:after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../assets/img/chevron-down.svg");
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  font-size: 0.6rem;
  color: #262626;
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  opacity: 0.6;
}
header .main-navigation .menu li.menu-item-has-children:hover:after {
  transform: rotate(180deg);
}
header .main-navigation .menu li a {
  color: #262626;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}
header .main-navigation .menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  background-image: linear-gradient(to right, transparent, #0b8f8c, transparent);
}
header .main-navigation .menu li a:hover {
  color: #0b8f8c;
}
header .main-navigation .menu li a:hover:before {
  width: 100%;
}
header .main-navigation .menu > li:last-child a {
  color: #fff;
  padding: 8px 8px 8px 16px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #0b8f8c;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #0b8f8c;
  border-radius: 20px 4px 20px 4px;
}
header .main-navigation .menu > li:last-child a .button__icon {
  background: white;
  border-radius: 12px 4px 12px 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
header .main-navigation .menu > li:last-child a .button__icon img {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(366%) hue-rotate(130deg) brightness(91%) contrast(106%);
}
header .main-navigation .menu > li:last-child a:hover {
  border-radius: 4px 20px 4px 20px;
  color: white;
}
header .main-navigation .menu > li:last-child a:hover .button__icon {
  border-radius: 4px 12px 4px 12px;
}
header .main-navigation .menu > li:last-child a:hover img {
  transform: rotate(45deg);
}
header .main-navigation .menu > li:last-child a {
  padding: 8px 8px 8px 16px;
}
header .main-navigation .menu > li:last-child a:before, header .main-navigation .menu > li:last-child a:after {
  display: none;
}
header .main-navigation .sub-menu {
  border: 1px solid white;
  border-radius: 28px 4px 28px 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
header .main-navigation .sub-menu li {
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #ededed;
  backdrop-filter: blur(8px);
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
header .main-navigation .sub-menu li:last-child {
  border-bottom: none;
}
header .main-navigation .sub-menu li:hover {
  background-color: white;
}
header .main-navigation .sub-menu li a {
  padding: 0;
}
header .main-navigation .sub-menu li a:hover {
  color: #0b8f8c;
}
header .main-navigation .sub-menu li a:before {
  display: none;
}
header .main-navigation .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767px) {
  header .main-navigation .menu-toggle {
    display: flex;
  }
}
header .main-navigation .menu-toggle {
  font-size: 0;
  color: transparent;
}
header .main-navigation .menu-toggle:before, header .main-navigation .menu-toggle:after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #0b8f8c;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header .main-navigation .menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #0b8f8c;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header .main-navigation .menu-toggle.toggled {
  gap: 0;
}
header .main-navigation .menu-toggle.toggled:before {
  transform: rotate(45deg) translateY(4px);
}
header .main-navigation .menu-toggle.toggled span {
  opacity: 0;
  transform: scale(0);
}
header .main-navigation .menu-toggle.toggled:after {
  transform: rotate(-45deg) translateY(-4px);
}
header .main-navigation .menu-toggle:hover:before,
header .main-navigation .menu-toggle:hover span, header .main-navigation .menu-toggle:hover:after {
  background: rgb(7.3571428571, 95.6428571429, 93.6363636364);
}
header .main-navigation .menu-toggle:hover.toggled:before, header .main-navigation .menu-toggle:hover.toggled:after {
  background: #262626;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 38, 38, 0);
  backdrop-filter: blur(0px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  background: rgba(38, 38, 38, 0.5);
  backdrop-filter: blur(8px);
}

@media (max-width: 767px) {
  .main-navigation .menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: linear-gradient(135deg, #fdf8fd 0%, white 100%);
    padding: 120px 40px 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    align-items: center;
    text-align: center;
  }
  .main-navigation .menu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(11, 143, 140, 0.1) 0%, transparent 100%);
    pointer-events: none;
  }
  .main-navigation .menu li {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }
  .main-navigation .menu li a {
    display: block;
    padding: 20px 24px;
    font-size: 1.125rem;
    position: relative;
    transition: all 0.3s ease;
  }
  .main-navigation .menu li a:hover {
    color: #0b8f8c;
    background: rgba(11, 143, 140, 0.05);
  }
  .main-navigation .menu li:last-child {
    margin-top: 24px;
    padding: 0 24px;
  }
  .main-navigation .menu li:last-child a {
    color: #fff;
    padding: 8px 8px 8px 16px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #0b8f8c;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #0b8f8c;
    border-radius: 20px 4px 20px 4px;
  }
  .main-navigation .menu li:last-child a .button__icon {
    background: white;
    border-radius: 12px 4px 12px 4px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }
  .main-navigation .menu li:last-child a .button__icon img {
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
    filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(366%) hue-rotate(130deg) brightness(91%) contrast(106%);
  }
  .main-navigation .menu li:last-child a:hover {
    border-radius: 4px 20px 4px 20px;
    color: white;
  }
  .main-navigation .menu li:last-child a:hover .button__icon {
    border-radius: 4px 12px 4px 12px;
  }
  .main-navigation .menu li:last-child a:hover img {
    transform: rotate(45deg);
  }
  .main-navigation .menu li:last-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    border-radius: 4px;
    padding: 16px 24px;
    text-align: center;
  }
  .main-navigation.toggled .menu {
    right: 0;
  }
  .main-navigation.toggled .menu li {
    opacity: 1;
    transform: translateY(0);
  }
  .main-navigation.toggled .menu li:nth-child(1) {
    transition-delay: 0.08s;
  }
  .main-navigation.toggled .menu li:nth-child(2) {
    transition-delay: 0.16s;
  }
  .main-navigation.toggled .menu li:nth-child(3) {
    transition-delay: 0.24s;
  }
  .main-navigation.toggled .menu li:nth-child(4) {
    transition-delay: 0.32s;
  }
  .main-navigation.toggled .menu li:nth-child(5) {
    transition-delay: 0.4s;
  }
  .main-navigation.toggled .menu li:nth-child(6) {
    transition-delay: 0.48s;
  }
  .main-navigation.toggled .menu li:nth-child(7) {
    transition-delay: 0.56s;
  }
  .main-navigation.toggled .menu li:nth-child(8) {
    transition-delay: 0.64s;
  }
  .main-navigation.toggled .menu li:nth-child(9) {
    transition-delay: 0.72s;
  }
  .main-navigation.toggled .menu li:nth-child(10) {
    transition-delay: 0.8s;
  }
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  body.menu-open header .site-branding img {
    filter: brightness(0.8);
  }
}

.section__page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(0deg, #0b8f8c 0%, #a5c5d3 56%, rgba(51, 5, 5, 0) 100%);
  padding-top: 160px;
  padding-bottom: 200px;
  text-align: center;
}
.section__page-header .hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
}
.section__page-header .hero__waves img {
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.section__page-header p {
  color: #4c4844;
  max-width: 700px;
  margin: 0 auto;
}

.section__clinic-image {
  position: relative;
  z-index: 3;
}
.section__clinic-image .post-thumbnail img {
  max-width: 700px;
  border-radius: 32px;
  margin: -132px auto 0 auto;
  display: block;
  width: 100%;
}

.google_map--link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.google_map--link ul li {
  margin-bottom: 32px;
}
.google_map--link ul li:before {
  content: "";
  display: block;
  margin: 0 auto 4px auto;
  width: 32px;
  height: 32px;
  background: url("../assets/img/pin-map.svg") no-repeat center center;
  filter: brightness(0) saturate(100%) invert(42%) sepia(42%) saturate(769%) hue-rotate(130deg) brightness(98%) contrast(101%);
  background-size: cover;
}
.google_map--link ul li a {
  color: #0b8f8c;
  font-weight: bold;
}
.google_map--link ul li a:hover {
  text-decoration: underline;
}

.error-404 {
  padding: 180px 0 0px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.error-404__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-404__number {
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: #0b8f8c;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -20px;
  font-family: "Raleway", sans-serif;
  letter-spacing: -5px;
}

.error-404__title {
  font-size: clamp(32px, 5vw, 48px);
  color: #262626;
  margin-bottom: 24px;
  font-weight: 800;
}

.error-404__description {
  font-size: 18px;
  color: #6f6a65;
  margin-bottom: 40px;
  line-height: 1.8;
}

.error-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.error-404__search {
  background: rgba(165, 197, 211, 0.1);
  padding: 40px;
  border-radius: 20px 4px 20px 4px;
  margin-bottom: 60px;
  border: 1px solid rgba(165, 197, 211, 0.2);
}
.error-404__search h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #262626;
  font-weight: 600;
}
.error-404__search .search-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}
.error-404__search .search-form input[type=search] {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(165, 197, 211, 0.3);
  border-radius: 20px 4px 20px 4px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  background: white;
  transition: all 0.3s ease;
}
.error-404__search .search-form input[type=search]:focus {
  outline: none;
  border-color: #0b8f8c;
  box-shadow: 0 0 0 3px rgba(11, 143, 140, 0.1);
}
.error-404__search .search-form button {
  background: #0b8f8c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px 4px 20px 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
}
.error-404__search .search-form button:hover {
  background: #0a7a77;
  border-radius: 4px 20px 4px 20px;
}
.error-404__search .search-form input[type=submit] {
  background: #0b8f8c;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px 4px 20px 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Outfit", sans-serif;
}
.error-404__search .search-form input[type=submit]:hover {
  background: #0a7a77;
  border-radius: 4px 20px 4px 20px;
}

.error-404__recent {
  margin-top: 60px;
  text-align: left;
}
.error-404__recent h3 {
  font-size: 24px;
  margin-bottom: 32px;
  color: #262626;
  font-weight: 700;
  text-align: center;
}

.error-404__recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.error-404__recent-item {
  background: white;
  border-radius: 20px 4px 20px 4px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(165, 197, 211, 0.2);
  display: flex;
  flex-direction: column;
}
.error-404__recent-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 143, 140, 0.15);
  border-radius: 4px 20px 4px 20px;
}
.error-404__recent-item:hover .error-404__recent-image img {
  transform: scale(1.05);
}
.error-404__recent-item h4 {
  font-size: 18px;
  color: #262626;
  margin: 20px 20px 8px;
  font-weight: 600;
  line-height: 1.4;
}

.error-404__recent-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.error-404__recent-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.error-404__recent-date {
  font-size: 14px;
  color: #6f6a65;
  margin: 0 20px 20px;
  display: block;
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0 60px;
  }
  .error-404__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .error-404__actions a {
    justify-content: center;
  }
  .error-404__search {
    padding: 30px 20px;
  }
  .error-404__search .search-form {
    flex-direction: column;
  }
  .error-404__recent-grid {
    grid-template-columns: 1fr;
  }
}
.form-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}
.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 32px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(11, 143, 140, 0.3);
  border-radius: 24px 4px 24px 4px;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus {
  border-color: #0b8f8c;
  outline: none;
}
.form-group label {
  font-size: 1rem;
  font-weight: 600;
}
.form-group p {
  margin: 0;
}
.form-group .wpcf7-radio {
  margin-top: 16px;
  display: block;
}
.form-group .wpcf7-radio input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(11, 143, 140, 0.3);
  border-radius: 50%;
  background-color: #fff;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  vertical-align: text-bottom;
  transition: all 0.3s ease;
}
.form-group .wpcf7-radio input[type=radio]:checked {
  background-color: #0b8f8c;
  border-color: #0b8f8c;
  box-shadow: inset 0 0 0 4px #fff;
}
.form-group .wpcf7-radio input[type=radio]:hover {
  border-color: #0b8f8c;
}
.form-group .wpcf7-checkbox,
.form-group .wpcf7-acceptance {
  margin-top: 16px;
  display: block;
}
.form-group .wpcf7-checkbox input[type=checkbox],
.form-group .wpcf7-acceptance input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(11, 143, 140, 0.3);
  border-radius: 4px;
  background-color: #fff;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  vertical-align: text-bottom;
  transition: all 0.3s ease;
}
.form-group .wpcf7-checkbox input[type=checkbox]:checked,
.form-group .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #0b8f8c;
  border-color: #0b8f8c;
}
.form-group .wpcf7-checkbox input[type=checkbox]:checked::after,
.form-group .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-group .wpcf7-checkbox input[type=checkbox]:hover,
.form-group .wpcf7-acceptance input[type=checkbox]:hover {
  border-color: #0b8f8c;
}

.form-group input[type=submit] {
  color: #fff;
  padding: 20px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #0b8f8c;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #0b8f8c;
  border-radius: 20px 4px 20px 4px;
}
.form-group input[type=submit] .button__icon {
  background: white;
  border-radius: 12px 4px 12px 4px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.form-group input[type=submit] .button__icon img {
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
  filter: brightness(0) saturate(100%) invert(41%) sepia(92%) saturate(366%) hue-rotate(130deg) brightness(91%) contrast(106%);
}
.form-group input[type=submit]:hover {
  border-radius: 4px 20px 4px 20px;
  color: white;
}
.form-group input[type=submit]:hover .button__icon {
  border-radius: 4px 12px 4px 12px;
}
.form-group input[type=submit]:hover img {
  transform: rotate(45deg);
}

form small {
  font-size: 14px;
  color: #6f6a65;
  text-align: center;
  display: block;
  max-width: 700px;
  margin: 0 auto;
}
form .wpcf7-spinner {
  display: none !important;
}

.contact__infos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 52px auto;
}
.contact__infos .contact__infos--item {
  flex: 1;
  display: flex;
  gap: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.contact__infos .contact__infos--item a {
  color: #262626;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact__infos .contact__infos--item a:hover {
  text-decoration: underline;
  color: #0b8f8c;
}

.loader-overlay {
  position: fixed;
  background: #fdf8fd;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-out;
}
.loader-overlay svg {
  width: 100%;
  height: auto;
  max-width: 400px;
}
.loader-overlay.is-loaded {
  opacity: 0;
  visibility: hidden;
  z-index: -9999;
}

svg .svg-elem-1 {
  stroke-dashoffset: 301.4900512695px;
  stroke-dasharray: 301.4900512695px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-2 {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}

svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: url("#paint0_radial_159_14");
  opacity: 1;
}

svg .svg-elem-3 {
  stroke-dashoffset: 6659.0219726563px;
  stroke-dasharray: 6659.0219726563px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}

svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-4 {
  stroke-dashoffset: 769.0846557617px;
  stroke-dasharray: 769.0846557617px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.15s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.55s;
}

svg.active .svg-elem-4 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-5 {
  stroke-dashoffset: 769.0846557617px;
  stroke-dasharray: 769.0846557617px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg.active .svg-elem-5 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-6 {
  stroke-dashoffset: 69.5430374146px;
  stroke-dasharray: 69.5430374146px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.25s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.65s;
}

svg.active .svg-elem-6 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-7 {
  stroke-dashoffset: 3853.5466308594px;
  stroke-dasharray: 3853.5466308594px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}

svg.active .svg-elem-7 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-8 {
  stroke-dashoffset: 3853.5466308594px;
  stroke-dasharray: 3853.5466308594px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.35s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.75s;
}

svg.active .svg-elem-8 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-9 {
  stroke-dashoffset: 12007.8193359375px;
  stroke-dasharray: 12007.8193359375px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-9 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-10 {
  stroke-dashoffset: 1484.4769287109px;
  stroke-dasharray: 1484.4769287109px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.45s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.85s;
}

svg.active .svg-elem-10 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-11 {
  stroke-dashoffset: 1484.4769287109px;
  stroke-dasharray: 1484.4769287109px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-11 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-12 {
  stroke-dashoffset: 4850.4497070313px;
  stroke-dasharray: 4850.4497070313px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.55s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 0.95s;
}

svg.active .svg-elem-12 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-13 {
  stroke-dashoffset: 5863.8930664063px;
  stroke-dasharray: 5863.8930664063px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-13 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-14 {
  stroke-dashoffset: 10770.2607421875px;
  stroke-dasharray: 10770.2607421875px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.65s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s;
}

svg.active .svg-elem-14 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-15 {
  stroke-dashoffset: 10770.2607421875px;
  stroke-dasharray: 10770.2607421875px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-15 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-16 {
  stroke-dashoffset: 10770.1845703125px;
  stroke-dasharray: 10770.1845703125px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.75s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s;
}

svg.active .svg-elem-16 {
  stroke-dashoffset: 0;
  fill: rgb(255, 255, 255);
}

svg .svg-elem-17 {
  stroke-dashoffset: 10770.1845703125px;
  stroke-dasharray: 10770.1845703125px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-17 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

svg .svg-elem-18 {
  stroke-dashoffset: 25343.05078125px;
  stroke-dasharray: 25343.05078125px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.85s, fill 0.35s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s;
}

svg.active .svg-elem-18 {
  stroke-dashoffset: 0;
  fill: rgb(237, 196, 127);
}

.section__base {
  padding: 92px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section__base {
    padding: 72px 0;
  }
}
.section__base h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 0;
}
@media (max-width: 768px) {
  .section__base h2 {
    font-size: 2rem;
  }
}
.section__base.has-waves {
  background: #f0f4f8;
  background-image: linear-gradient(to right, #fff5f9, #d1f3f2);
  padding: 160px 0;
}
@media (max-width: 768px) {
  .section__base.has-waves {
    padding: 120px 0;
  }
}
.section__base.has-waves:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../assets/img/wave-top.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.section__base.has-waves:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../assets/img/wave-bottom.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.section__hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(0deg, #0b8f8c 0%, #a5c5d3 56%, rgba(51, 5, 5, 0) 100%);
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .section__hero {
    text-align: center;
    padding-bottom: 160px;
  }
}
.section__hero h1 span {
  color: #fff;
  padding: 8px 16px;
  display: inline-block;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
  position: relative;
  z-index: 2;
}
.section__hero h1 span:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  background: #0b8f8c;
  color: #fff;
  border-radius: 32px 4px 32px 4px;
  width: 100%;
  height: 80%;
  z-index: -1;
  transform: rotate(-0.75deg);
}
@media (max-width: 768px) {
  .section__hero h1 {
    font-size: 2.5rem;
  }
}
.section__hero .hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
}
.section__hero .hero__waves img {
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.section__hero .hero__image-wrapper {
  height: 550px;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .section__hero .hero__image-wrapper {
    height: 350px;
    margin-top: 52px;
  }
}
.section__hero .hero__image-wrapper:before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: url("../assets/img/blob.png");
  background-size: 100% 100%;
  z-index: -1;
}
.section__hero .hero__image-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 72px 8px 72px 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1), 0 47px 47px rgba(0, 0, 0, 0.09), 0 105px 63px rgba(0, 0, 0, 0.05), 0 187px 75px rgba(0, 0, 0, 0.01);
}
.section__hero .hero__stats {
  position: absolute;
  bottom: 60px;
  right: -60px;
  background-image: linear-gradient(0deg, #fad160, #f9f5f2);
  color: #0b8f8c;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  z-index: 3;
  max-width: 200px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .section__hero .hero__stats {
    bottom: -20px;
    right: 20px;
  }
}
.section__hero .hero__stats .hero__stat-number {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section__hero .hero__stats .hero__stat-number {
    font-size: 1.25rem;
  }
}
.section__hero .hero__stats .hero__stat-label {
  font-size: 0.875rem;
}

.section-stats h2 span {
  font-family: "Raleway", sans-serif;
}

.section-footer-cta .footer__cta {
  background-image: linear-gradient(to right, #fff5f9, #d2f4f3);
  padding: 92px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 52px;
  text-align: center;
}
.section-footer-cta .footer__cta h2 {
  max-width: 700px;
}

footer {
  padding-bottom: 72px;
}
footer .custom-logo-link img {
  max-width: 200px;
}
footer h2 {
  font-size: 1.375rem;
  font-weight: 700;
}
footer h3 {
  color: #6f6a65;
  font-size: 0.875rem;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  list-style: none;
  margin-bottom: 12px;
}
footer a {
  color: #262626;
  text-decoration: none;
  transition: all 0.3s ease;
}
footer a:hover {
  color: #0b8f8c;
}
footer .site-info {
  text-align: center;
  margin-top: 52px;
  color: #6f6a65;
}

.badge {
  color: #d78e28;
  background: #fff4e5;
  padding: 8px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 12px;
}

.section-about {
  overflow: hidden;
}
.section-about.is-centered {
  text-align: center;
}
.section-about.is-centered .badge {
  display: inline-block;
  margin: 0 auto;
}
.section-about.is-centered h2 {
  text-align: center;
}
.section-about.is-centered p {
  text-align: center;
}
.section-about .section-about__image-wrapper {
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about .section-about__image-wrapper .image-top {
  max-height: 150px;
  max-width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 3;
  top: -20px;
  left: 0;
  border-radius: 20px;
  border: 8px solid #fdf8fd;
}
.section-about .section-about__image-wrapper .image-bottom {
  max-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 3;
  bottom: -20px;
  right: 0;
  border-radius: 20px;
  border: 8px solid #fdf8fd;
}
.section-about .section-about__image-wrapper .image-center {
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.section-about .section-about__image-wrapper .image-center.height-unset {
  max-height: unset;
}
.section-about .section-about__image-wrapper .image-background {
  position: absolute;
  z-index: 1;
  right: -100px;
  top: -120px;
  opacity: 0.1;
}
.section-about ul {
  padding: 0;
  margin: 0 0 32px 0;
  list-style: none;
}
.section-about ul li {
  color: #0b8f8c;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-about ul li:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../assets/img/check.svg");
  background-size: cover;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.section-goals .col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 52px;
}

.goal-item {
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.goal-item img {
  width: 100%;
  max-width: 100px;
}
.goal-item h3 {
  font-size: 1.25rem;
  margin: 0;
}
.goal-item p {
  margin: 0;
}

.alert {
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
  border: 1px solid #d8eaf6;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .alert {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.alert .alert__icon {
  background: #ddefef;
  border-radius: 50%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert .alert__content {
  flex: 1;
}
.alert .alert__content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.alert .alert__content p {
  margin: 0;
  font-size: 1rem;
}

.fertility-item {
  padding: 120px 32px 32px 32px;
  border-radius: 20px;
  position: relative;
}
.fertility-item .fertility-item__number {
  font-size: 8rem;
  position: absolute;
  top: 20px;
  left: 32px;
  z-index: 1;
  font-weight: 900;
  background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  line-height: 1;
}
.fertility-item h3 {
  position: relative;
  z-index: 2;
}
.fertility-item p {
  margin: 0;
  position: relative;
  z-index: 2;
}

.fertility-item:nth-child(1) {
  background: #fec3a2;
  border: 1px solid #ea6d27;
}
.fertility-item:nth-child(1) .fertility-item__number {
  background-image: linear-gradient(to bottom, white, #fec3a2);
}

.fertility-item:nth-child(2) {
  background: #fff5b4;
  border: 1px solid #bba939;
}
.fertility-item:nth-child(2) .fertility-item__number {
  background-image: linear-gradient(to bottom, white, #fff5b4);
}

.fertility-item:nth-child(3) {
  background: #fceaf7;
  border: 1px solid #ffa8e7;
}
.fertility-item:nth-child(3) .fertility-item__number {
  background-image: linear-gradient(to bottom, white, #fceaf7);
}

.fertility-item:nth-child(4) {
  background: #d7f0f5;
  border: 1px solid #6b9ad8;
}
.fertility-item:nth-child(4) .fertility-item__number {
  background-image: linear-gradient(to bottom, white, #d7f0f5);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item .stat-item__number {
  color: #0b8f8c;
  font-weight: 900;
  font-size: 2.25rem;
}
.stat-item .stat-item__label {
  color: #6f6a65;
  font-size: 1.125rem;
}
.stat-item:nth-child(2) .stat-item__number {
  color: #c4af28;
}
.stat-item:nth-child(3) .stat-item__number {
  color: #d86b6b;
}
.stat-item:nth-child(4) .stat-item__number {
  color: #6b9ad8;
}

.section-clinics .col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 52px;
}
.section-clinics .section-clinics__header {
  max-width: 800px;
  margin: 0 auto;
}
.section-clinics .clinics-carousel-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
}
.section-clinics .clinics-swiper {
  width: 100%;
  padding: 20px 20px 80px 20px;
  margin: -20px;
}
.section-clinics .swiper-wrapper {
  padding-bottom: 10px;
}
.section-clinics .clinic-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.section-clinics .clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.section-clinics .clinic-card.is-horizontal {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
  align-items: center;
}
.section-clinics .clinic-card.is-horizontal p {
  text-align: left;
  font-size: 1rem;
  color: #6f6a65;
  margin: 0;
}
.section-clinics .clinic-card.is-horizontal .clinic-card__title {
  font-size: 1.5rem;
}
.section-clinics .swiper-slide-visible .clinic-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.section-clinics .swiper-slide-visible .clinic-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.section-clinics .clinic-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 16/9;
}
.section-clinics .clinic-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.section-clinics .clinic-card__button {
  display: flex;
  justify-content: flex-start;
}
.section-clinics .clinic-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  position: relative;
}
.section-clinics .clinic-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.section-clinics .clinic-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6f6a65;
  font-size: 14px;
}
.section-clinics .clinic-card__location .clinic-card__location-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
.section-clinics .clinic-card__link {
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.section-clinics .clinic-card__link:hover {
  background: #e8e8e8;
  transform: scale(1.1);
}
.section-clinics .clinic-card__link img {
  width: 20px;
  height: 20px;
}
.section-clinics .clinics-swiper-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 10;
}
.section-clinics .clinics-swiper-button-prev,
.section-clinics .clinics-swiper-button-next {
  position: relative;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
  flex-shrink: 0;
}
.section-clinics .clinics-swiper-button-prev:hover,
.section-clinics .clinics-swiper-button-next:hover {
  background: #f5f5f5;
  border-color: #d1d1d1;
}
.section-clinics .clinics-swiper-button-prev.swiper-button-disabled,
.section-clinics .clinics-swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.section-clinics .clinics-swiper-button-prev svg,
.section-clinics .clinics-swiper-button-next svg {
  width: 20px;
  height: 20px;
}
.section-clinics .clinics-swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
}
.section-clinics .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #0b8f8c;
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}
.section-clinics .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .section-clinics .clinics-swiper-button-prev,
  .section-clinics .clinics-swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .section-clinics .clinics-swiper-button-prev svg,
  .section-clinics .clinics-swiper-button-next svg {
    width: 18px;
    height: 18px;
  }
  .section-clinics .clinics-swiper-controls {
    gap: 16px;
  }
  .section-clinics .clinic-card__image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .section-clinics .clinics-swiper-button-prev,
  .section-clinics .clinics-swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .section-clinics .clinics-swiper-button-prev svg,
  .section-clinics .clinics-swiper-button-next svg {
    width: 16px;
    height: 16px;
  }
  .section-clinics .clinics-swiper-controls {
    gap: 12px;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #fff5f9;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.accordion-item .accordion-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.accordion-item .accordion-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #262626;
  font-family: "Outfit", sans-serif;
  margin: 0;
  transition: color 0.3s ease;
  text-align: left;
}
.accordion-item .accordion-header .icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.accordion-item .accordion-header .icon-box img {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.accordion-item .accordion-content {
  display: none;
  padding: 0 32px 32px 32px;
}
.accordion-item .accordion-content p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: inherit;
}
.accordion-item.active {
  background: #0b8f8c;
  box-shadow: 0 8px 25px rgba(11, 143, 140, 0.2);
}
.accordion-item.active .accordion-header h3 {
  color: #ffffff;
}
.accordion-item.active .accordion-header .icon-box {
  background: #ffffff;
  border-color: #ffffff;
}
.accordion-item.active .accordion-header .icon-box img {
  transform: rotate(-45deg);
}
.accordion-item.active .accordion-content {
  color: #ffffff;
}
.accordion-item:not(.active):hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.accordion-item:not(.active):hover .accordion-header .icon-box {
  border-color: #0b8f8c;
}

.section-donate-iframe iframe {
  border-radius: 52px;
  overflow: hidden;
}

/** TEAM CARD **/
.team-card {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 72px;
}
.team-card.reverse {
  flex-direction: row-reverse;
}
.team-card .team-card__image {
  aspect-ratio: 1/1;
  max-width: 400px;
  width: 100%;
}
.team-card .team-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  width: 100%;
  height: 100%;
}
.team-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}
.team-card .team-card__fonction {
  color: #0b8f8c;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 20px;
  margin-top: 8px;
}

blockquote {
  background-image: linear-gradient(to right, #d7f4f4, rgba(215, 244, 244, 0));
  padding: 4px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1.125rem;
  font-style: italic;
  margin: 0;
}
blockquote:before {
  content: "";
  width: 42px;
  height: 42px;
  background-image: url("../assets/img/quote.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}/*# sourceMappingURL=style.css.map */