p, span, a, li, ul, ol {
  font-family: "ibm-plex-sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #572437;
}

h1, .h1,
h1 a, .h1 a,
h1 span, .h1 span {
  font-family: "larken", sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: #572437;
  line-height: 64px;
}
@media screen and (max-width: 992px) {
  h1, .h1,
  h1 a, .h1 a,
  h1 span, .h1 span {
    font-size: 54px;
    line-height: 54px;
  }
}

h2, .h2,
h2 a, .h2 a,
h2 span, .h2 span {
  font-family: "larken", sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #572437;
  line-height: 42px;
}
@media screen and (max-width: 992px) {
  h2, .h2,
  h2 a, .h2 a,
  h2 span, .h2 span {
    font-size: 42px;
    line-height: 42px;
  }
}

h3, .h3,
h3 a, .h3 a,
h3 span, .h3 span {
  font-family: "larken", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #572437;
  line-height: 38px;
}
@media screen and (max-width: 992px) {
  h3, .h3,
  h3 a, .h3 a,
  h3 span, .h3 span {
    font-size: 32px;
    line-height: 32px;
  }
}

h4, .h4,
h4 a, .h4 a,
h4 span, .h4 span {
  font-family: "larken", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #572437;
  line-height: 25.5px;
}
@media screen and (max-width: 992px) {
  h4, .h4,
  h4 a, .h4 a,
  h4 span, .h4 span {
    font-size: 24px;
    line-height: 24px;
  }
}

h5, .h5,
h5 a, .h5 a,
h5 span, .h5 span {
  font-family: "larken", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #572437;
  line-height: 21.2px;
}
@media screen and (max-width: 992px) {
  h5, .h5,
  h5 a, .h5 a,
  h5 span, .h5 span {
    font-size: 20px;
    line-height: 21.2px;
  }
}

a:not(.btn):hover {
  color: #A7174D;
}

.link {
  color: #A7174D;
  text-decoration: underline;
}

header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 24px;
}
header nav ul {
  display: flex;
  align-items: center;
}
header .logo-container {
  margin-right: 16px;
  min-width: 100px;
  max-width: 180px;
}
header .nav-item.current {
  position: relative;
}
header .nav-item.current a {
  font-weight: 500;
}
header .nav-item.current::after {
  content: "";
  position: absolute;
  display: block;
  height: 4px;
  width: 100%;
  background-color: #572437;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  bottom: -24px;
}
header .nav-item, header .nav-item a {
  font-size: 14px;
  line-height: 18px;
}
header .nav-item.contact-us-link a {
  padding: 12px 16px;
  border: 1px solid #572437;
  border-radius: 100px;
  transition: all 0.3s;
  white-space: nowrap;
}
header .nav-item.contact-us-link a:hover {
  background-color: #572437;
  color: #FFFFFF;
}
@media screen and (max-width: 992px) {
  header .logo-container {
    max-width: 60%;
  }
  header .burger-menu p {
    font-size: 14px;
    line-height: 18px;
  }
  header .menu-mobile {
    display: flex;
    flex-direction: column;
    background-color: #F6E8DD;
    width: calc(100% + 64px);
    height: 100vh;
    position: absolute;
    z-index: -5;
    top: -16px;
    left: -32px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  header .menu-mobile.open {
    opacity: 1;
    z-index: 5;
  }
  header .menu-mobile .nav-item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(87, 36, 55, 0.2);
    margin: 24px 0;
  }
  header .menu-mobile .nav-item > a, header .menu-mobile .nav-item p {
    font-family: "larken", sans-serif;
    font-size: 26px;
    line-height: 26px;
    font-weight: 300;
  }
  header .menu-mobile-contact {
    margin-top: auto;
  }
  header .menu-mobile-contact p {
    margin-top: 32px;
    text-align: center;
  }
  header .menu-mobile .mobile-nav {
    height: 100%;
    max-height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-bottom: 32px;
  }
  header .close-menu-mobile {
    padding: 16px;
    border-radius: 16px;
    width: fit-content;
    background-color: #FFFFFF;
    align-self: flex-end;
    margin-bottom: 32px;
  }
  header .submenu-mobile.open .submenu {
    max-height: 1000px;
    padding-top: 24px;
  }
  header .submenu-mobile.open .submenu-title img {
    transform: rotate(180deg);
  }
  header .submenu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: all 0.3s;
  }
  header .submenu-item, header .submenu .submenu-item a {
    font-family: "larken", sans-serif;
    font-size: 22px;
    line-height: 22px;
    font-weight: 300;
  }
  header .submenu-title {
    display: flex;
    justify-content: space-between;
  }
  header .submenu-title img {
    transition: transform 0.3s;
  }
  header .menu-contact-button {
    position: relative;
  }
  header .menu-contact-button .img-circles-container {
    position: absolute;
    z-index: -1;
    transform-origin: center;
    transform: translateX(calc(-50% + 32px)) translateY(-24px);
    opacity: 40%;
  }
}
@media screen and (max-width: 768px) {
  header .menu-mobile {
    width: calc(100% + 32px);
    left: -16px;
  }
}
header .has-submenu {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
header .has-submenu::after {
  content: "";
  display: block;
  background-image: url("../../../assets/icons/chevron-down.svg");
  background-size: cover;
  width: 16px;
  min-width: 16px;
  height: 16px;
}
header .has-submenu .submenu {
  height: 0;
  padding: 0;
  opacity: 0;
  width: 100%;
  overflow: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background-color: #FFFFFF;
  z-index: 5;
  transition: opacity 0.3s ease-in-out;
  top: 100%;
  border-radius: 4px;
}
header .has-submenu .submenu-item {
  width: 100%;
}
header .has-submenu .submenu-item:not(:last-child) {
  border-bottom: 1px solid rgba(87, 36, 55, 0.2);
  padding-bottom: 10px;
}
header .has-submenu:hover .submenu {
  height: auto;
  padding: 16px;
  opacity: 1;
}

footer {
  position: relative;
}
@media (max-width: 992px) {
  footer {
    text-align: center;
  }
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  padding: 64px 0;
}
@media (max-width: 992px) {
  footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 57px;
    padding: 64px 0 32px;
  }
}
footer .footer-top nav ul > ul li a {
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 992px) {
  footer .footer-links nav {
    flex-direction: column;
    gap: 32px;
  }
}
footer .footer-links .contact {
  flex-shrink: 0;
}
footer .footer-links .contact .telephone {
  width: 150px;
  text-align: end;
}
@media (max-width: 992px) {
  footer .footer-links .contact .telephone {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
@media (max-width: 992px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  footer .footer-bottom ul {
    justify-content: center;
  }
}
footer .footer-bottom ul li a {
  font-size: 14px;
  line-height: 18px;
  text-decoration: underline;
  white-space: nowrap;
}
footer .footer-bottom .adipso {
  font-size: 14px;
  line-height: 18px;
  opacity: 0.3;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 24px;
  white-space: nowrap;
}
.btn.btn-small {
  padding: 12px 16px;
}
.btn.bigger-btn {
  padding: 24px 64px;
  border-radius: 100px;
}
@media screen and (max-width: 992px) {
  .btn {
    width: 100%;
  }
}

.btn-primary {
  background-color: #572437;
  color: #FFFFFF;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: rgba(87, 36, 55, 0.9);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #572437;
  transition: background-color 0.3s;
}
.btn-secondary:hover {
  background-color: rgba(246, 232, 221, 0.9);
}

.btn-animated {
  position: relative;
  height: 146px;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 25px;
  padding-right: 21px;
}
.btn-animated span {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  text-align: end;
}
.btn-animated::before {
  content: url("../../assets/icons/right-arrow-primary.svg");
  position: absolute;
  left: -12px;
  transition: transform 0.3s;
}
.btn-animated::after {
  content: url("../../assets/images/svg/split-circle.svg");
  position: absolute;
  width: 150px;
  height: 146px;
  left: 0;
  top: calc(50% - 73px);
  transition: transform 0.3s;
}
.btn-animated:hover::before {
  transform: translateX(8px);
}
.btn-animated:hover::after {
  transform: rotate(90deg);
}

#home {
  overflow-x: hidden;
}
#home .hero-section {
  position: relative;
  padding-bottom: 64px;
}
@media (max-width: 992px) {
  #home .hero-section {
    margin-bottom: 64px;
    padding-bottom: 0;
  }
}
#home .hero-section .section-secondary-bg {
  height: calc(100% + 16px);
  top: -16px;
}
@media (max-width: 992px) {
  #home .hero-section .section-secondary-bg {
    height: calc(100% + 64px);
  }
}
#home .hero-section .hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
#home .hero-section .hero-text {
  margin-bottom: 74px;
}
@media (max-width: 992px) {
  #home .hero-section .hero-text {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}
#home .hero-section .circles-img-container {
  position: absolute;
  z-index: -1;
  right: -32px;
  top: 0;
  bottom: -32px;
  transform: rotate(180deg);
}
@media (max-width: 992px) {
  #home .hero-section .circles-img-container {
    right: -16px;
  }
}
#home .hero-section .circles-img-container img {
  width: 100%;
  height: 100%;
}
#home .section-about-us {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  padding-bottom: 128px;
  position: relative;
}
@media (max-width: 992px) {
  #home .section-about-us {
    flex-direction: column-reverse;
    margin-bottom: 0;
    gap: 32px;
    padding-bottom: 0;
  }
}
#home .section-about-us-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 115%;
  max-width: 50%;
  padding-right: 16px;
  text-align: center;
}
@media (max-width: 992px) {
  #home .section-about-us-image-container {
    position: static;
    height: 400px;
    width: 100%;
    max-width: none;
    padding-right: 0;
  }
}
#home .section-about-us-image-container img {
  height: 100%;
}
@media (max-width: 992px) {
  #home .section-about-us-image-container img {
    object-fit: contain;
  }
}
#home .section-about-us-text {
  width: 50%;
  padding-top: 162px;
}
@media (max-width: 992px) {
  #home .section-about-us-text {
    width: 100%;
    padding-top: 0;
  }
  #home .section-about-us-text p, #home .section-about-us-text p span {
    font-size: 30px;
    line-height: 36px;
  }
}
#home .section-about-us-text p {
  margin-bottom: 32px;
  line-height: 50px;
}
#home .section-contact {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}
@media (max-width: 992px) {
  #home .section-contact {
    flex-direction: column;
    gap: 50px;
    padding: 64px 0;
  }
}
#home .section-contact .circles {
  position: absolute;
  left: -32px;
  top: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  z-index: -1;
}
#home .section-contact .circles img {
  height: 100%;
}
@media (max-width: 992px) {
  #home .section-contact .circles {
    margin-bottom: 32px;
    left: 0;
    top: 20%;
    height: auto;
    width: 100%;
  }
}
#home .section-contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 542px;
}
@media (max-width: 992px) {
  #home .section-contact-text {
    text-align: center;
    width: 100%;
  }
}
#home .section-contact-text-title {
  margin-bottom: 16px;
}
#home .section-contact-image-container {
  width: 50%;
}
@media (max-width: 992px) {
  #home .section-contact-image-container {
    width: 100%;
  }
}

#contact {
  overflow-x: hidden;
}
#contact header {
  margin-bottom: 470px;
}
@media (max-width: 992px) {
  #contact header {
    margin-bottom: 420px;
  }
}
#contact .section-secondary-bg {
  top: -16px;
  height: 350px;
}
@media (max-width: 992px) {
  #contact .section-secondary-bg {
    height: 312px;
  }
}
#contact .contact-header-img-container {
  display: flex;
  justify-content: center;
  width: 856px;
  position: absolute;
  height: 345px;
  left: calc(50% - 428px);
  border-radius: 8px;
  overflow: hidden;
  top: calc(100% + 334px - 100% - 172.5px);
}
#contact .contact-header-img-container img {
  object-fit: cover;
}
@media (max-width: 992px) {
  #contact .contact-header-img-container {
    top: calc(100% + 296px - 100% - 172.5px);
    left: 0;
    width: 100%;
  }
}
#contact .contact-content {
  margin: 0 auto 128px;
  width: 856px;
}
@media (max-width: 992px) {
  #contact .contact-content {
    margin-bottom: 64px;
    width: 100%;
  }
}
#contact footer {
  padding-top: 64px;
  position: relative;
}
#contact footer .section-secondary-bg {
  height: calc(100% + 32px);
}

.about-us .picto-why {
  padding: 16px 0;
  max-height: 132px;
  object-fit: contain;
}

#blog {
  overflow-x: hidden;
}
#blog .section-secondary-bg {
  top: -16px;
  height: calc(100% + 16px + 100px);
}
#blog .hero-text {
  text-align: center;
}
#blog .blog-container {
  position: relative;
  margin-bottom: 100px;
}

#cms {
  overflow-x: hidden;
}
#cms .section-secondary-bg {
  top: -16px;
  height: calc(100% + 16px + 64px);
}
@media (max-width: 992px) {
  #cms .section-secondary-bg {
    height: calc(100% + 16px + 32px);
  }
}
#cms .hero-section {
  position: relative;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  #cms .hero-section {
    margin-bottom: 32px;
  }
}
#cms .hero-section.about-us {
  position: relative;
  padding-bottom: 64px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  #cms .hero-section.about-us {
    margin-bottom: 64px;
    padding-bottom: 0;
  }
}
#cms .hero-section.about-us .section-secondary-bg {
  height: calc(100% + 16px);
  top: -16px;
}
#cms .hero-section.about-us .hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 500px;
}
@media (max-width: 992px) {
  #cms .hero-section.about-us .hero-content {
    min-height: 0;
  }
}
#cms .hero-section.about-us .hero-text {
  margin-bottom: 74px;
  width: 69%;
}
@media (max-width: 992px) {
  #cms .hero-section.about-us .hero-text {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}
#cms .hero-section.about-us .mobile-cta {
  display: none;
}
@media (max-width: 992px) {
  #cms .hero-section.about-us .mobile-cta {
    display: flex;
    position: absolute;
    bottom: 32px;
  }
}
#cms .hero-section.about-us .hero-cta {
  position: absolute;
  top: 60%;
  left: -60%;
  width: 432px;
  background-color: #572437;
  padding: 32px;
  border-radius: 32px;
  border-top-right-radius: 5px;
  align-self: center;
}
#cms .hero-section.about-us .hero-cta a {
  width: 100%;
}
#cms .hero-section.about-us .hero-cta p {
  color: #FFFFFF;
}
#cms .hero-section.about-us .circles-img-container {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -32px;
}
@media (max-width: 992px) {
  #cms .hero-section.about-us .circles-img-container {
    display: flex;
    justify-content: center;
    width: 100%;
    bottom: 32px;
    right: auto;
  }
}
#cms .hero-section.about-us .clara-img-container {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -64px;
}
#cms .hero-section.about-us .clara-img-container img {
  height: 550px;
}
@media (max-width: 992px) {
  #cms .hero-section.about-us .clara-img-container {
    right: auto;
    display: flex;
    justify-content: center;
    position: static;
  }
  #cms .hero-section.about-us .clara-img-container img {
    height: auto;
  }
}
#cms .hero-content {
  display: flex;
  gap: 32px;
}
@media (max-width: 992px) {
  #cms .hero-content {
    flex-direction: column;
  }
}
#cms .hero-text {
  width: 80%;
}
@media (max-width: 992px) {
  #cms .hero-text {
    width: 100%;
  }
}
#cms .hero-img {
  width: 50%;
}
@media (max-width: 992px) {
  #cms .hero-img {
    width: 100%;
  }
}
#cms .hero-img img {
  width: 100%;
  object-fit: cover;
}
#cms .cms-content {
  padding: 128px 32px 64px;
  margin: 0 auto 128px;
  width: 1072px;
}
#cms .cms-content.refractive-surgery {
  padding: 16px 32px 64px;
}
#cms .cms-content.refractive-surgery .patients-image-container {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  #cms .cms-content {
    padding: 50px 32px 64px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  #cms .cms-content {
    padding: 50px 16px 64px;
  }
}
#cms .cms-content h1, #cms .cms-content h2, #cms .cms-content h3, #cms .cms-content h4, #cms .cms-content h5, #cms .cms-content .h1, #cms .cms-content .h2, #cms .cms-content .h3, #cms .cms-content .h4, #cms .cms-content .h5, #cms .cms-content span, #cms .cms-content a, #cms .cms-content ul, #cms .cms-content ol, #cms .cms-content li {
  margin-bottom: 16px;
}
#cms .cms-content p, #cms .cms-content ul {
  margin-bottom: 32px;
}
#cms .cms-content section {
  margin-bottom: 64px;
}
#cms .cms-content section:last-child {
  margin-bottom: 0;
}
#cms .cms-content section *:last-child {
  margin-bottom: 0;
}
#cms .cms-content ol {
  list-style-type: auto;
  padding-inline-start: 32px;
}
#cms .cms-content ol li .h4 {
  margin-bottom: 8px;
}
#cms .cms-content ul {
  list-style-type: disc;
  padding-inline-start: 32px;
}
#cms .cms-content .highlight {
  text-decoration: underline;
  color: #A7174D;
}
#cms .cms-content::after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(64px);
}
@media (max-width: 992px) {
  #cms .cms-content::after {
    width: calc(100% + 32px);
    transform: translateX(-16px) translateY(64px);
  }
}
@media (max-width: 992px) {
  #cms .cms-content {
    width: auto;
  }
}
#cms .schema-image-container {
  display: flex;
  justify-content: space-around;
  height: 200px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  #cms .schema-image-container {
    flex-direction: column;
    gap: 32px;
    height: auto;
  }
}
#cms .schema-image-container.small-schema {
  height: 100px;
}
#cms .schema-image-container .schema-image {
  width: fit-content;
  height: 100%;
}
@media (max-width: 992px) {
  #cms .schema-image-container .schema-image img {
    max-height: none;
  }
}
#cms .schema-image-container img {
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  #cms .schema-image-container img {
    max-height: 80px;
  }
}
#cms .schema-image-container figcaption {
  background-color: #F6E8DD;
  text-align: center;
  padding: 4px 8px;
  font-size: 14px;
  font-style: italic;
}
#cms .cms-conclusion {
  padding: 16px;
  background-color: #F6E8DD;
  border-radius: 24px;
}

.professionnel-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F6E8DD;
  padding: 16px;
  border-radius: 4px;
}
.professionnel-cta p {
  text-align: center;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 1800px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.section-secondary-bg {
  background-color: #F6E8DD;
  position: absolute;
  width: 100vw;
  top: 0;
  left: calc(0px - (100vw - 100%) / 2);
  height: 100%;
  z-index: -1;
}

.card-article {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

img:not(.svg-icon) {
  width: 100%;
  object-fit: cover;
}

.citation {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.citation span {
  display: block;
  width: 70%;
  font-weight: 600;
}

.hero-description {
  font-size: 20px;
  line-height: 21.2px;
}

/*# sourceMappingURL=custom.css.map */
