@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/* Utility Classes */
.hidden {
  display: none !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-4 {
  z-index: 4 !important;
}

.position-fixed {
  position: fixed;
  top: 0;
  width: 100%;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-1 {
  opacity: 1 !important;
}

.flex {
  display: flex;
}

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

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

.spc-between {
  justify-content: space-between;
}

.spc-around {
  justify-content: space-around;
}

.spc-evenly {
  justify-content: space-evenly;
}

.stop-scroll {
  overflow: hidden !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeIn {
  animation: fadeIn 0.5s forwards;
}

.fadeOut {
  animation: fadeOut 0.5s forwards;
}

@keyframes navUnderlineAnimation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.underline-nav-li {
  animation: navUnderlineAnimation 0.5s forwards;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
}

h1 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1440px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1440px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1024px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  h4 {
    font-size: 1.625rem;
  }
}

h5 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1440px) {
  h5 {
    font-size: 1.375rem;
  }
}

h6 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1440px) {
  h6 {
    font-size: 1.25rem;
  }
}

body {
  font-family: "Nunito", sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #1d3557;
}
body .wrap {
  height: 100%;
}

p {
  font-weight: 400;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .nav-link {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav-link {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .nav-link {
    font-size: 1.125rem;
  }
}

button,
.button {
  cursor: pointer;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  button,
  .button {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  button,
  .button {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  button,
  .button {
    font-size: 1.125rem;
  }
}

a {
  text-decoration: none;
}

.cta {
  border: none;
  border-radius: 4rem;
  padding: 1rem 1rem;
  background-color: #1d3557;
  color: white;
  transition: background-color 0.175s, transform 0.175s;
}
.cta:hover, .cta:active {
  background-color: #33d1ce;
}
.cta:active {
  transform: scale(0.95);
}
.cta i {
  margin-left: 0.25rem;
}

label {
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  label {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  label {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  label {
    font-size: 1rem;
  }
}

input,
select,
textarea {
  font-family: "Nunito", sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
}

th {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  th {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  th {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  th {
    font-size: 1.125rem;
  }
}

td {
  font-weight: 400;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  td {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  td {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  td {
    font-size: 1rem;
  }
}

.text-small {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .text-small {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .text-small {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .text-small {
    font-size: 0.875rem;
  }
}

.text-tiny {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .text-tiny {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .text-tiny {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .text-tiny {
    font-size: 0.75rem;
  }
}

.lead-text {
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .lead-text {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .lead-text {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1440px) {
  .lead-text {
    font-size: 1.5rem;
  }
}

.caption {
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .caption {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .caption {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .caption {
    font-size: 0.875rem;
  }
}

.text-light {
  font-weight: 300;
}

.text-regular {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

.text-alert {
  font-weight: 600;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .text-alert {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .text-alert {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .text-alert {
    font-size: 1rem;
  }
}

.text-success {
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .text-success {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .text-success {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .text-success {
    font-size: 1rem;
  }
}

.scroll-up {
  cursor: pointer;
  z-index: 99;
  position: absolute;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 3.4rem;
  height: 3.4rem;
  background-color: #33d1ce;
  transition: background-color 0.2s, opacity 0.6s;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-up .inside-div {
  width: 75%;
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-up .inside-div i {
  color: white;
}

.scroll-up:hover {
  background-color: #88a984;
}

.primary-color-background {
  background-color: #1d3557;
}

.test {
  display: none;
}

.txt-2nd-color {
  color: #33d1ce;
}

.phone-numbers {
  padding: 4rem 1rem;
}
.phone-numbers .container {
  max-width: 1200px;
  margin: auto;
}
.phone-numbers__title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.phone-numbers .divider {
  margin: 0 auto 3rem;
  width: 5rem;
  height: 0.1675rem;
  background-color: #33d1ce;
}
@media screen and (max-width: 1135px) {
  .phone-numbers .divider {
    display: none;
  }
}
.phone-numbers__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.phone-numbers__cards .card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  width: 23rem;
  min-height: 16rem;
  border-bottom: solid 1px lightgray;
}
.phone-numbers__cards .card:hover .card-title i,
.phone-numbers__cards .card:hover .card-title img {
  transform: translateY(-0.5rem);
}
.phone-numbers__cards .card:last-of-type {
  border: none;
}
.phone-numbers__cards .card .card-title i {
  margin-bottom: 1.5rem;
  color: #33d1ce;
  transition: 0.175s transform ease;
}
.phone-numbers__cards .card .card-title h4 {
  font-weight: 500;
}
.phone-numbers__cards .card .card-title img {
  width: 32px;
  height: 32px;
  transition: 0.175s transform ease;
}
.phone-numbers__cards .card .phone p {
  position: relative;
  font-size: 1.25rem;
  font-weight: 500;
}
.phone-numbers__cards .card .phone p .tooltip-copié {
  position: absolute;
  right: 75%;
  font-size: 1rem;
  background-color: #1d3557;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.75rem;
  display: none;
}
.phone-numbers__cards .card .phone p .tooltip-copié::after {
  content: "";
  position: absolute;
  top: 32%;
  left: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1d3557;
}
.phone-numbers__cards .card .phone p i {
  color: #33d1ce;
  margin-right: 0.25rem;
}
.phone-numbers__cards .card .phone p:first-of-type {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1135px) {
  .phone-numbers__cards .card:nth-of-type(1), .phone-numbers__cards .card:nth-of-type(3), .phone-numbers__cards .card:nth-of-type(5) {
    border-right: solid 1px lightgray;
  }
  .phone-numbers__cards .card:nth-of-type(5) {
    border-bottom: none;
  }
}
@media screen and (min-width: 1136px) {
  .phone-numbers__cards .card:nth-of-type(1), .phone-numbers__cards .card:nth-of-type(2), .phone-numbers__cards .card:nth-of-type(4), .phone-numbers__cards .card:nth-of-type(5) {
    border-right: solid 1px lightgray;
  }
  .phone-numbers__cards .card:nth-of-type(4), .phone-numbers__cards .card:nth-of-type(5), .phone-numbers__cards .card:nth-of-type(6) {
    border-bottom: none;
  }
}

.site-wrapper {
  height: 100%;
}

.site-header {
  z-index: 100 !important;
}
.site-header__top {
  background-color: #1d3557;
  display: none;
}
.site-header__top .container {
  margin: auto;
  max-width: 1250px;
  padding: 0.4rem 0;
  display: flex;
  justify-content: space-between;
}
.site-header__top .container p {
  display: inline-block;
  margin-right: 1.4rem;
}
.site-header__top .container p i {
  color: #33d1ce;
  margin-right: 0.3rem;
}
.site-header__top .container p a span {
  transition: color 0.175s ease;
}
.site-header__top .container p a:hover span,
.site-header__top .container p a:active span {
  color: #33d1ce;
}
.site-header__top .container p span {
  color: white;
  font-family: "Nunito", sans-serif !important;
  font-size: 0.9rem;
}
.site-header__top .container p .fa-facebook-f {
  transition: color 0.175s ease;
}
.site-header__top .container p .fa-facebook-f:hover,
.site-header__top .container p .fa-facebook-f:active {
  color: #33d1ce !important;
}
@media screen and (min-width: 900px) and (max-width: 1020px) {
  .site-header__top .container .column-2 .facebook-adress .fa-location-arrow,
  .site-header__top .container .column-2 .facebook-adress .suivez-nous {
    display: none;
  }
}
@media screen and (min-width: 964px) {
  .site-header .site-header__top {
    display: block;
  }
}
.site-header__main {
  box-shadow: 0 0 0.25rem lightgray;
  z-index: 100 !important;
}
.site-header__main .container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 100 !important;
}
.site-header__main .container .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}
.site-header__main .container .main-nav__logo {
  width: 120px;
}
.site-header__main .container .main-nav__logo img {
  margin-bottom: -0.5rem;
  width: 100%;
  height: auto;
}
.site-header__main .container .main-nav__list {
  display: flex;
  list-style: none;
  font-family: "Poppins", sans-serif !important;
}
.site-header__main .container .main-nav__list li {
  margin-left: 30px;
}
.site-header__main .container .main-nav__list li a {
  color: #1d3557;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 12px;
  text-transform : uppercase;
}
.site-header__main .container .main-nav__list li a .nav-item-border {
  background-color: #33d1ce;
  height: 2px;
  width: 0;
  transition: width 0.2s;
  margin-top: 8px;
}
.site-header__main .container .main-nav__list li a:hover {
  color: #33d1ce;
}
.site-header__main .container .main-nav__list li a:hover .nav-item-border {
  width: 100%;
}
.site-header__main .container .main-nav__list li a.active {
  color: #33d1ce !important;
}
.site-header__main .container .main-nav__list li a.active .nav-item-border {
  width: 100%;
}
.site-header__main .container .main-nav__toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: #1d3557;
}
@media screen and (min-width: 1201px) {
  .site-header__main .container .main-nav {
    align-items: end;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .site-header__main .container .main-nav__list {
    display: none;
  }
  .site-header .site-header__main .container .main-nav__toggle {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .container {
    padding: 0 3rem;
  }
  .site-header .container .main-navigation .nav-list {
    display: none !important;
  }
  .site-header .mobile-menu-toggle {
    display: block !important;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1400px) {
  .site-header__top .container, .site-header__main .container {
    max-width: 1400px !important;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.mobile-nav {
  margin: 1rem 0;
  background-color: white;
  border-radius: 0 0 6px 6px;
}
.mobile-nav ul {
  list-style: none;
}
.mobile-nav ul a {
  display: block;
  padding: 1rem;
  color: #1d3557;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.175s, color 0.175s;
}
.mobile-nav ul a:hover, .mobile-nav ul a:active, .mobile-nav ul a.active {
  background-color: #1d3557;
  color: white;
}
@media screen and (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}

.site-footer {
  background-color: #0f4342;
}
.site-footer__main {
  max-width: 1300px;
  margin: 0 auto;
  color: white;
  padding: 3rem;
  display: flex;
  justify-content: space-around;
  gap: 3rem;
}
.site-footer__main .footer-column {
  width: 33.3333333333%;
}
.site-footer__main .footer-column h3 {
  color: white;
  font-weight: 500;
}
.site-footer__main .footer-column p {
  color: rgb(200, 200, 200);
}
.site-footer__main .footer-column:first-child {
  padding-right: 3.4rem;
}
.site-footer__main .footer-column:first-child .doctor-name {
  color: #33d1ce;
}
.site-footer__main .footer-column .footer-nav ul {
  list-style: none;
}
.site-footer__main .footer-column .footer-nav ul li {
  padding: 0.4rem 0;
}
.site-footer__main .footer-column .footer-nav ul li a {
  color: rgb(200, 200, 200);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__main .footer-column .footer-nav ul li a:hover, .site-footer__main .footer-column .footer-nav ul li a.active {
  color: #33d1ce;
}
.site-footer__main .footer-column .contact-info p {
  line-height: 2rem;
  color: rgb(200, 200, 200);
}
.site-footer__main .footer-column .contact-info p i {
  margin-right: 0.35rem;
}
.site-footer__bottom {
  background-color: #0f1c2e;
  padding: 1rem;
  color: #7d8a8d;
  text-align: center;
  font-family: "Nunito", sans-serif !important;
}
@media screen and (max-width: 1080px) {
  .site-footer__main {
    flex-direction: column;
  }
  .site-footer__main .footer-column {
    width: 100%;
  }
}

.home .hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .home .hero {
    height: 75vh;
    justify-content: center;
    align-items: center;
  }
}
.home .hero__images {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.home .hero__images img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  transition: opacity 0.5s;
  opacity: 0;
}
@media screen and (min-width: 840px) {
  .home .hero__images img {
    width: 100% !important;
  }
}
.home .hero__images .overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(74, 139, 140, 0.32), rgba(3, 59, 74, 0.68));
}
.home .hero__content {
  padding: 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .home .hero__content {
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
.home .hero__description, .home .hero__form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.home .hero__description {
  align-items: center !important;
  color: white;
}
@media screen and (min-width: 900px) {
  .home .hero__description {
    align-items: start !important;
  }
}
.home .hero__description h1 {
  text-align: center;
  text-transform: uppercase;
  line-height: 2.5rem;
}
@media screen and (min-width: 900px) {
  .home .hero__description h1 {
    text-align: start;
    line-height: 4rem;
  }
  .home .hero__description h1 .inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .home .hero__description h1 .next-line {
    display: none;
  }
}
.home .hero__description .hero-divider {
  margin: 1rem;
  width: 5rem;
  height: 0.1875rem;
  border: none;
  background-color: #33d1ce;
}
.home .hero__description p {
  text-align: start !important;
  width: 100%;
  margin: 0.25rem 0 0.625rem 0;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .home .hero__description p {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .hero__description p {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .hero__description p {
    font-size: 1.25rem;
  }
}
.home .hero__description p i {
  background-color: #33d1ce;
  color: white;
  padding: 0.25rem;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-right: 0.25rem;
}
.home .hero__description p span {
  display: block;
}
.home .hero__description .en-savoir-plus {
  text-decoration: none;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  border: solid 1px;
  border-radius: 4rem;
  font-weight: 600;
  background-color: #1d3557;
  color: white;
  transition: background-color 0.175s, transform 0.175s;
}
.home .hero__description .en-savoir-plus:hover, .home .hero__description .en-savoir-plus:active {
  background-color: #33d1ce;
}
.home .hero__description .en-savoir-plus:active {
  transform: scale(0.95);
}
.home .hero__description .en-savoir-plus i {
  margin-left: 0.25rem;
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .home .hero__description .badge, .home .hero__description h1 {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.home .hero .divider {
  margin: 2rem 0;
  width: 10%;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .home .hero .divider {
    display: none;
  }
}
.home .hero__form .form-body .form-wrapper {
  position: relative;
  width: 16.5rem;
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.885);
  border-radius: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: 0.25rem 0.25rem 4rem rgba(0, 0, 0, 0.278);
}
.home .hero__form .form-body .form-wrapper .radio {
  display: none;
}
.home .hero__form .form-body .form-wrapper #pat-radio:checked ~ .pat-tab {
  border-color: transparent;
  color: white;
  background-color: #33d1ce;
}
.home .hero__form .form-body .form-wrapper #pat-radio:checked ~ .title .med {
  display: none;
}
.home .hero__form .form-body .form-wrapper #pat-radio:checked ~ .form-wrap {
  transform: translateX(0);
}
.home .hero__form .form-body .form-wrapper #pat-radio:checked ~ .form-wrap .med-form-field {
  opacity: 0;
}
.home .hero__form .form-body .form-wrapper #med-radio:checked ~ .med-tab {
  border-color: transparent;
  color: white;
  background-color: #33d1ce;
}
.home .hero__form .form-body .form-wrapper #med-radio:checked ~ .title .pat {
  display: none;
}
.home .hero__form .form-body .form-wrapper #med-radio:checked ~ .form-wrap {
  transform: translateX(-100%);
}
.home .hero__form .form-body .form-wrapper #med-radio:checked ~ .form-wrap .pat-form-field {
  opacity: 0;
}
.home .hero__form .form-body .form-wrapper .title {
  margin: 1rem 0;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.home .hero__form .form-body .form-wrapper .title h3 {
  font-size: 1.375rem;
}
.home .hero__form .form-body .form-wrapper .tab {
  cursor: pointer;
  width: 50%;
  padding: 0.5rem !important;
  margin-bottom: 25px;
  border: solid 2px #f1f1f1;
  border-radius: 5px;
  font-size: 1.063rem;
  font-weight: 700;
  text-align: center;
  transition: color 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.home .hero__form .form-body .form-wrapper .tab.pat-tab {
  border-right: none;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.home .hero__form .form-body .form-wrapper .tab.med-tab {
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.home .hero__form .form-body .form-wrapper .form-wrap {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field {
  width: 100%;
  flex: 0 0 100%;
  transition: all 0.5s ease;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .input-group {
  width: 100%;
  margin-bottom: 12px;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .input-group input {
  border: solid #f1f1f1 2px;
  border-radius: 5px;
  width: 100%;
  padding: 8px 10px;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.938rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s linear;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .input-group input::-moz-placeholder {
  color: #494949;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .input-group input::placeholder {
  color: #494949;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .input-group input:hover {
  border-color: rgba(3, 59, 74, 0.3);
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .input-group input:focus {
  border-color: rgba(3, 59, 74, 0.5);
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .submit-btn {
  cursor: pointer;
  width: 100%;
  padding: 1.25rem 0 !important;
  margin: 1rem 0;
  border: none;
  font-family: "Nunito", sans-serif !important;
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  background: #1d3557;
  border-radius: 4rem;
  transition: all 0.175s linear;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .submit-btn:hover {
  background: #33d1ce;
  color: white;
}
.home .hero__form .form-body .form-wrapper .form-wrap .form-field .submit-btn:active {
  transform: scale(0.95);
}
@media screen and (max-width: 840px) {
  .home .hero__description {
    align-items: start;
    text-align: start;
  }
  .home .hero__form {
    justify-content: flex-start;
  }
  .home .hero__form .form-wrapper {
    width: 15rem;
    padding: 0.5rem 1.5rem;
  }
  .home .hero__form .title h3 {
    font-size: 1.24rem !important;
  }
  .home .hero__form .tab {
    font-size: 1rem !important;
    padding: 2.5px !important;
  }
  .home .hero__form input[type=text] {
    padding: 6px 10px !important;
  }
  .home .hero__form .submit-btn {
    padding: 12px !important;
  }
}
.home .horaires {
  padding: 3rem;
  text-align: center;
  background-color: #33d1ce;
  color: white;
}
.home .services {
  width: 100vw;
}
.home .services__container {
  position: relative;
  background-color: white;
  margin: 3rem auto;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  z-index: 5;
}
.home .services__column {
  z-index: 5;
  padding: 1rem 0;
  width: 33.3333333333%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  transition: 0.25s box-shadow, 0.2s transform;
}
.home .services__column:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  transform: translateY(-0.25rem);
}
.home .services__column:hover .column-icon i {
  transform: translateY(-10px);
}
.home .services__column .column-icon,
.home .services__column .column-content,
.home .services__column .column-content__left p,
.home .services__column .column-content__right p {
  margin-bottom: 1.5rem;
}
.home .services__column .column-icon {
  text-align: center;
}
.home .services__column .column-icon i {
  font-size: 2rem;
  color: #33d1ce;
  transition: 0.175s transform;
}
@media screen and (min-width: 768px) {
  .home .services__column .column-icon i {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .services__column .column-icon i {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .services__column .column-icon i {
    font-size: 2.25rem;
  }
}
.home .services__column h4 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .home .services__column h4 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .services__column h4 {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .services__column h4 {
    font-size: 1.75rem;
  }
}
.home .services__column .column-content {
  display: flex;
  justify-content: space-evenly;
  padding: 0 2rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.home .services__column .column-content__left, .home .services__column .column-content__right {
  max-width: 75%;
}
.home .services__column .column-content__left p, .home .services__column .column-content__right p {
  color: #1d3557;
}
.home .services__column .column-content__left p .removable-title, .home .services__column .column-content__right p .removable-title {
  display: none;
}
.home .services__column .column-content__left p span {
  font-weight: 600;
  margin-left: 0.25rem;
}
.home .services__column .column-content__right p {
  font-weight: 500;
}
.home .services__column .call-to-action {
  text-align: center;
}
.home .services__column .call-to-action p {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .home .services__column .call-to-action p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .services__column .call-to-action p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .services__column .call-to-action p {
    font-size: 1rem;
  }
}
.home .services__column .call-to-action a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  color: #33d1ce;
  transition: color 0.175s, font-size 0.2s;
}
@media screen and (min-width: 768px) {
  .home .services__column .call-to-action a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .services__column .call-to-action a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .services__column .call-to-action a {
    font-size: 0.875rem;
  }
}
.home .services__column .call-to-action a:hover {
  color: #1d3557;
}
.home .services__column--offerings .services-col {
  width: 50%;
}
.home .services__column--offerings .services-col i {
  color: #33d1ce;
}
@media screen and (max-width: 1150px) {
  .home .services__container {
    flex-direction: column;
    align-items: center;
  }
  .home .services__column {
    width: 80%;
    margin: 4px 0;
  }
}

.notre-clinique .hero {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}
.notre-clinique .hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.notre-clinique .hero__container .info {
  z-index: 3;
  color: white;
  display: flex;
  flex-direction: column;
}
.notre-clinique .hero__container .info h1 {
  text-transform: uppercase;
}
.notre-clinique .hero__container .info h1 span {
  color: #33d1ce;
}
.notre-clinique .hero__container .info .hero-divider {
  border: none;
  background-color: #33d1ce;
  height: 0.1875rem;
  width: 15%;
  margin: 0.5rem auto;
}
.notre-clinique .hero__container .info h5 {
  margin-bottom: 1rem;
  text-align: center;
}
.notre-clinique .hero__container .info .cta {
  margin: 1rem auto 0;
  text-align: center;
  border: solid 1px;
  font-weight: 600;
  padding-left: 2rem;
  padding-right: 2rem;
}
.notre-clinique .hero__container .image-container {
  height: 100%;
  width: 100%;
  inset: 0;
  position: absolute;
  overflow: hidden;
}
.notre-clinique .hero__container .image-container .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.331);
}
.notre-clinique .hero__container .image-container img {
  width: 100%;
  z-index: 1;
}
.notre-clinique .hero__container .divider {
  display: none;
}
@media screen and (min-width: 1000px) {
  .notre-clinique .hero__container {
    padding: 0;
    justify-content: space-between;
  }
  .notre-clinique .hero__container__info, .notre-clinique .hero__container__image-container {
    max-width: 50%;
  }
}
.notre-clinique .about {
  max-width: 1300px;
  margin: auto;
  padding: 2rem 2rem;
}
.notre-clinique .about p {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .notre-clinique .about p {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .notre-clinique .about p {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1440px) {
  .notre-clinique .about p {
    font-size: 1.375rem;
  }
}
.notre-clinique .services {
  padding-bottom: 4rem;
}
.notre-clinique .services__container {
  max-width: 1200px;
  margin: auto;
}
.notre-clinique .services__container .title {
  text-align: center;
}
.notre-clinique .services__container .swiper .card-wrapper {
  max-width: 1200px;
  margin: 0 60px 36px;
  padding: 20px 10px;
  overflow: hidden;
}
.notre-clinique .services__container .swiper .card-wrapper .card-list .card-item {
  border-radius: 0.75rem;
  background-color: rgb(250, 250, 250);
  box-shadow: 0 0.25rem 0.75rem rgb(230, 230, 230);
  max-width: 400px;
  height: 500px;
}
.notre-clinique .services__container .swiper .card-wrapper .card-list .card-item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0.5rem;
  width: 100% !important;
  height: 30vh !important;
}
.notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info {
  padding: 1rem;
}
.notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info h6 {
  display: inline-block;
  border-radius: 1rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.5rem;
  background-color: #33d1ce;
  color: white;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info h6 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info h6 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info h6 {
    font-size: 1rem;
  }
}
.notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info h4 {
  margin-bottom: 0.75rem;
  line-height: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .notre-clinique .services__container .swiper .card-wrapper .card-list .card-item .info h4 {
    line-height: 2rem;
  }
}
.notre-clinique .services__container .swiper .card-wrapper .swiper-pagination-bullet {
  background-color: #33d1ce;
  height: 0.75rem;
  width: 0.75rem;
  opacity: 0.5;
}
.notre-clinique .services__container .swiper .card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-prev,
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-next {
  color: #33d1ce;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  transition: 0.175s ease;
}
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-prev:hover, .notre-clinique .services__container .swiper .card-wrapper .swiper-button-prev:active,
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-next:hover,
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-next:active {
  color: white;
  background-color: #33d1ce;
}
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-prev:active,
.notre-clinique .services__container .swiper .card-wrapper .swiper-button-next:active {
  transform: scale(90%);
}
@media screen and (max-width: 768px) {
  .notre-clinique .services__container .swiper .card-wrapper .swiper-button-prev,
  .notre-clinique .services__container .swiper .card-wrapper .swiper-button-next {
    display: none;
  }
}

.q-r__container {
  max-width: 1200px;
  margin: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
.q-r__container h1 {
  text-align: center;
}
.q-r__container .divider {
  border: none;
  width: 10%;
  height: 0.1675rem;
  background-color: #33d1ce;
  margin: 1rem auto 3rem;
}
.q-r__container .accordion-container {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
.q-r__container .accordion-container .question-button {
  padding: 1.5rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  background-color: #33d1ce;
  color: white;
  border: none;
  transition: 0.2s ease;
  z-index: 2;
}
.q-r__container .accordion-container .question-button:hover {
  background-color: #1d3557;
}
.q-r__container .accordion-container .question-button:after {
  content: "+";
  font-size: 2rem;
}
.q-r__container .accordion-container .question-button:focus:after {
  content: "−";
}
.q-r__container .accordion-container .question-button .text {
  text-align: start;
}
.q-r__container .accordion-container .answer-space {
  max-height: 0;
  overflow: hidden;
}
.q-r__container .accordion-container .answer-space .answer-container {
  padding: 1rem;
}
.q-r__container .accordion-container .answer-space p,
.q-r__container .accordion-container .answer-space li {
  font-weight: 500;
}
.q-r__container .accordion-container .answer-space p {
  margin-bottom: 1rem;
}
.q-r__container .accordion-container .answer-space ul {
  padding: 0 1rem;
}
.q-r__container .accordion-container .answer-space ul li span {
  font-weight: 700;
}

.contact-page .maps iframe {
  width: 100%;
  height: 60vh;
}
@media screen and (min-width: 900px) {
  .contact-page .maps iframe {
    height: 50vh;
  }
}
.contact-page .info__container {
  max-width: 1300px;
  margin: 1rem auto;
}
.contact-page .info__col {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  transition: 0.25s box-shadow, 0.2s transform;
}
.contact-page .info__col:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  transform: translateY(-0.25rem);
}
.contact-page .info__col:hover .title-icon {
  transform: translateY(-0.25rem);
}
.contact-page .info__col .title-icon {
  color: #33d1ce;
  padding: 2rem;
  transition: transform 0.175s;
  margin-bottom: 1rem;
}
.contact-page .info__col p {
  font-weight: 600;
}
.contact-page .info__col .phones-container .phone-numbers {
  position: relative;
  font-weight: 600;
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 0.25rem;
}
.contact-page .info__col .phones-container .phone-numbers .tooltip-1,
.contact-page .info__col .phones-container .phone-numbers .tooltip-2 {
  position: absolute;
  left: -50%;
  font-weight: 400;
  font-size: 14px;
  background-color: #1d3557;
  color: white;
  padding: 0.125rem 0.25rem;
  border-radius: 0.5rem;
  display: none;
}
.contact-page .info__col .phones-container .phone-numbers .tooltip-1::after,
.contact-page .info__col .phones-container .phone-numbers .tooltip-2::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 100%;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #1d3557;
}
.contact-page .info__col .phones-container .phone-numbers i {
  cursor: pointer;
  margin-right: 0.25rem;
  padding: 0;
}
.contact-page .info__col .phones-divider {
  width: 100%;
  height: 0.0625rem;
  border: none;
  background-color: lightgray;
}
.contact-page .info__col:first-of-type, .contact-page .info__col:nth-of-type(2) {
  border-bottom: solid 1px rgba(3, 59, 74, 0.3);
}
@media screen and (min-width: 1000px) {
  .contact-page .info__container {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .contact-page .info__col {
    width: 30%;
    height: 15rem;
    padding: 3rem 2rem;
    border: none !important;
    border-radius: 0.25rem;
  }
}

.not-found-404 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.not-found-404 h1 {
  font-size: 5rem;
  line-height: 6rem;
}
.not-found-404 p {
  font-size: 1.5rem;
  font-weight: 600;
}
.not-found-404 a {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-weight: 500;
}/*# sourceMappingURL=main.css.map */