.site-header__content--navigation li {
  position: relative;
}

.site-header__content--navigation ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border-radius: 10px;
  padding: 0px;
  pointer-events: none;
}
.site-header__content--navigation ul.sub-menu li {
  height: auto;
  position: relative;
  padding: 20px;
  margin: 0;
  padding-right: 50px;
  width: 100%;
}
.site-header__content--navigation ul.sub-menu li::before {
  right: 12px;
}
.site-header__content--navigation ul.sub-menu li::after {
  right: 24px;
}

.site-header__content--navigation li.menu-item-has-children:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 0px;
  border-radius: 10px;
  pointer-events: all;
}

.site-header__content--navigation ul.sub-menu ul.sub-menu {
  top: 0;
  left: 100%;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.site-header__content--navigation ul.sub-menu li.menu-item-has-children:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.site-header__content--navigation ul.sub-menu li.menu-item-has-children > .submenu-toggle {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.site-header {
  position: fixed;
  z-index: 999;
  background: #fff;
  width: 100%;
}
.site-header .primary-button {
  margin-left: 32px;
}
.site-header .rdv {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-header .rdv .primary-button__rdv {
  position: absolute;
  left: 32px;
  right: 0;
  margin: auto;
  top: 75px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.25);
  transform: translate(0px, 10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}
.site-header .rdv .primary-button__rdv--item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .rdv .primary-button__rdv--item .arrow {
  background: #0054A5;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
}
.site-header .rdv .primary-button__rdv--item .arrow::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 13px;
  margin: auto;
}
.site-header .rdv .primary-button__rdv--item:hover .arrow {
  background: #EE7BAE;
}
.site-header .rdv .primary-button__rdv a {
  text-decoration: none;
  color: #333333;
}
.site-header .rdv:hover .primary-button .arrow {
  background: #EE7BAE;
}
.site-header .rdv:hover .primary-button .arrow::after {
  right: 12px;
  transform: rotate(135deg);
}
.site-header .rdv:hover .primary-button__rdv {
  transform: translate(0);
  opacity: 1;
  pointer-events: all;
}
.site-header__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.site-header__content--logo {
  margin-right: 80px;
}
.site-header__content ul {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 32px;
}
.site-header__content ul li {
  list-style: none;
  height: 80px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.site-header__content ul li a {
  color: #333333;
  text-decoration: none;
}
.site-header__content ul .menu-item-has-children {
  padding-right: 36px;
}
.site-header__content ul .menu-item-has-children::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(135deg);
  transition: 0.5s all;
  position: absolute;
  top: -9px;
  bottom: 0;
  right: 9px;
  margin: auto;
}
.site-header__content ul .menu-item-has-children::before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 40px;
  background: #0054A5;
  position: absolute;
  right: -3px;
  top: -5px;
  bottom: 0;
  margin: auto;
  transition: 0.5s all;
}
.site-header__content ul .menu-item-has-children a {
  position: relative;
}
.site-header__content ul .menu-item-has-children:hover::after {
  transform: rotate(-45deg);
  top: 1px;
}
.site-header__content ul .menu-item-has-children:hover::before {
  background: #EE7BAE;
}

.site-header.scrolled {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7215686275);
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.25);
}

.site-header__content-m {
  display: none;
}

.popup-mobile {
  display: none;
}

@media screen and (max-width: 1500px) {
  .site-header__content ul li a {
    font-size: 14px;
  }
  .site-header__content ul .menu-item-has-children::before {
    width: 28px;
    height: 28px;
  }
  .site-header__content ul .menu-item-has-children::after {
    width: 8px;
    height: 8px;
    right: 7px;
  }
  .site-header .primary-button p {
    font-size: 14px;
  }
  .site-header .rdv .primary-button__rdv a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1440px) {
  .site-header {
    padding-right: 30px;
    padding-left: 30px;
  }
  .site-header .side-widget {
    top: 180px;
  }
  .site-header__content {
    width: 100%;
    column-gap: 0px;
  }
  .site-header__content--navigation {
    width: 100%;
    max-width: 920px;
  }
  .site-header__content--navigation ul li a {
    font-size: 14px;
  }
  .site-header__content .site-header__content--navigation-button .menu .menu-item a {
    max-width: 150px;
    height: 35px;
    font-size: 12px;
  }
  .site-header__content--logo {
    max-width: 220px;
    width: 100%;
    margin-right: 0px;
  }
  .site-header__content--logo svg {
    width: 80%;
  }
}
@media screen and (max-width: 1400px) {
  .site-header .site-header__content--navigation ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1310px) {
  .site-header {
    display: flex;
    height: 50px;
    border-bottom: 1px solid #FE9F52;
    padding: 0;
  }
  .site-header .site-header__content-m {
    display: flex;
    height: 50px;
    z-index: 99;
    background: #fff;
  }
  .site-header .site-header__content-m a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__content {
    display: none;
  }
  .site-header__content-m {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .site-header__content-m svg {
    max-width: 230px;
    height: 36px;
  }
  .site-header__content-m--right {
    display: flex;
    margin-right: 20px;
    width: 100%;
    max-width: 144px;
    align-items: center;
    justify-content: flex-end;
  }
  .site-header__content-m--right a {
    max-width: 32px;
    width: 100%;
    height: 32px;
  }
  .site-header__content-m--right img {
    max-width: 32px;
    width: 100%;
    height: 32px;
  }
  .site-header__content-m--burger-menu {
    width: 100%;
    height: 29px;
    justify-content: center;
    row-gap: 5px;
    max-width: 45px;
    display: flex;
    flex-direction: column;
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
    transition: 0.3s all;
  }
  .site-header__content-m--burger-menu .site-header__content-m--burger-line:nth-child(1) {
    transition: 0.3s all;
    width: 24px;
    margin-left: auto;
    background: #0054A5;
    height: 2px;
  }
  .site-header__content-m--burger-menu .site-header__content-m--burger-line:nth-child(2) {
    transition: 0.3s all;
    display: none;
  }
  .site-header__content-m--burger-menu .site-header__content-m--burger-line:nth-child(3) {
    transition: 0.3s all;
    background: #0054A5;
    height: 2px;
  }
  .site-header__content-m--burger-line {
    width: 100%;
    height: 1px;
    background: #000;
  }
  .site-header__content-m--burger-menu.active {
    max-width: 24px;
  }
  .site-header__content-m--burger-menu.active .site-header__content-m--burger-line:nth-child(1) {
    transform: rotate(45deg);
    bottom: 0;
    top: 0;
    margin: auto;
  }
  .site-header__content-m--burger-menu.active .site-header__content-m--burger-line:nth-child(2) {
    opacity: 0;
  }
  .site-header__content-m--burger-menu.active .site-header__content-m--burger-line:nth-child(3) {
    transform: rotate(135deg);
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.blured {
    filter: blur(0px);
  }
  .site-header .menu-item-has-children::before {
    right: 0;
  }
  .site-header .menu-item-has-children::after {
    right: 0;
  }
  .site-header .popup-mobile {
    position: absolute;
    background: linear-gradient(0deg, rgb(244, 242, 238) 0%, rgb(255, 255, 255) 100%);
    top: 53px;
    width: 100%;
    left: 0;
    z-index: 99;
    height: 100vh;
    padding-bottom: 30px;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
    overflow-y: auto;
    display: block;
    background: var(--main-color);
  }
  .site-header .popup-mobile a.open::before, .site-header .popup-mobile a.open::after {
    background: #BA880C;
  }
  .site-header .popup-mobile-container {
    overflow: scroll;
    position: relative;
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 80px;
  }
  .site-header .popup-mobile-container .popup-mobile-container-bg {
    width: 98%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background: #4E4F53;
    opacity: 0.8;
    right: 0;
    left: 0;
    margin: auto;
    top: 75px;
    border-radius: 20px;
    border-top: 2px solid #FE9F52;
  }
  .site-header .popup-mobile-container--rdv {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    background: #693D2D;
    margin-top: 50px;
  }
  .site-header .popup-mobile-container--rdv a {
    color: #fff;
    text-transform: inherit;
    text-decoration: none;
    font-weight: 300;
  }
  .site-header .popup-mobile-container .submenu-toggle {
    cursor: pointer;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: "M PLUS 1";
    font-size: 25px;
    font-weight: 200;
    color: #fff;
    position: absolute;
    top: 6px;
  }
  .site-header .popup-mobile-container .submenu-toggle::before {
    content: "";
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 40px;
    background: #0054A5;
    position: absolute;
    right: 16px;
    top: -5px;
    bottom: 0;
    margin: auto;
    transition: 0.5s all;
  }
  .site-header .popup-mobile-container .submenu-toggle::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 9px;
    height: 9px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: rotate(135deg);
    transition: 0.5s all;
    position: absolute;
    top: -8px;
    bottom: 0;
    right: 27px;
    margin: auto;
  }
  .site-header .popup-mobile-container--contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 32px;
    row-gap: 10px;
    padding-left: 15px;
    padding-left: 0;
    justify-content: center;
    align-items: center;
    max-width: 185px;
    margin: auto;
    position: relative;
  }
  .site-header .popup-mobile-container--contacts::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #FE9F52;
    position: absolute;
    top: 7px;
  }
  .site-header .popup-mobile-container--contacts-address {
    display: flex;
    column-gap: 8px;
    align-items: center;
  }
  .site-header .popup-mobile-container--contacts-address svg {
    display: block;
    width: 100%;
    max-width: 24px;
  }
  .site-header .popup-mobile-container--contacts-address a {
    color: #fff;
    text-transform: inherit;
    font-weight: 300;
  }
  .site-header .popup-mobile-container--contacts-phone {
    display: flex;
    column-gap: 8px;
  }
  .site-header .popup-mobile-container--contacts-phone svg {
    display: block;
    width: 100%;
    max-width: 24px;
  }
  .site-header .popup-mobile-container--contacts-phone a {
    color: #fff;
    text-transform: inherit;
    font-weight: 300;
  }
  .site-header .popup-mobile-container--contacts a {
    text-decoration: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation {
    position: relative;
  }
  .site-header .popup-mobile .popup-mobile-navigation--svg {
    position: absolute;
    bottom: 0;
    left: 0px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu {
    padding: 0;
    margin-top: 56px;
    list-style: none;
    text-align: center;
    margin: 0;
    max-width: 100%;
    text-align: left;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 210px;
    margin: auto;
    margin: 0;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    padding-left: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu a {
    padding-left: 15px;
    font-size: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .rdv-custom-menu {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .submenu-toggle {
    color: #fff;
    margin-left: 10px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li {
    margin: 0;
    display: flex;
    padding: 16px 0;
    width: fit-content;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li .sub-menu {
    width: 100%;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li {
    width: 100%;
    text-align: left;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle.open {
    top: 16px;
    right: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle {
    right: 0 !important;
    top: 16px;
    background-image: url("../../src/images/arrow-down.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle.open {
    background-image: url("../../src/images/arrow-up.svg");
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li .submenu-toggle {
    height: 40px;
    right: 0%;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open {
    background: var(--main-hover);
    width: 100%;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle.open {
    right: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle.open::before {
    transform: rotate(-40deg);
    background: #EE7BAE;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle.open::after {
    transform: rotate(40deg);
    background: #EE7BAE;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a {
    color: #333333;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    text-transform: inherit;
    position: relative;
    width: fit-content;
    padding-left: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open {
    color: #333333;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open::before {
    right: 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open::after {
    right: 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children::before, .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::before, .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::after {
    height: 12px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a.open::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a.open::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a {
    position: relative;
    width: 100%;
    display: block;
    letter-spacing: normal;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a.open .menu-item-has-children > a::before, .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a.open .menu-item-has-children > a::after {
    right: 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 24px;
    text-align: left;
    position: relative;
    max-width: 210px;
    width: 100%;
    min-width: auto;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a.open::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a.open::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children.open {
    background: var(--menu-hover);
    width: 100%;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children.open a::after {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li {
    padding: 16px 0;
    margin: 0;
    padding-left: 24px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li a {
    font-size: 16px;
    padding-top: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu a {
    font-size: 16px;
    padding: 0;
    text-align: center;
    padding-top: 0 !important;
    font-weight: 300;
  }
  .site-header .popup-mobile .popup-mobile-container-svg svg {
    position: absolute;
    bottom: 0;
  }
  .site-header .popup-mobile .site-header__content--button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .popup-mobile .open-popup {
    max-width: 327px;
    height: 52px;
    font-weight: 600;
    font-size: 16px;
    justify-self: center;
  }
  .site-header .popup-mobile.active {
    opacity: 1;
    pointer-events: all;
    top: 0px;
    z-index: 9;
    background: #45464B;
  }
  .site-header .popup-mobile {
    z-index: 9;
  }
  .site-header__content-side--contacts {
    max-width: 327px;
    margin: auto;
    margin-top: 40px;
  }
  .site-header__content-side--phone {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    justify-content: center;
  }
  .site-header__content-side--phone a {
    color: #373E48;
    text-decoration: none;
    margin-left: 8px;
  }
  .site-header__content-side--map {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__content-side--map a {
    color: #373E48;
    text-decoration: none;
    margin-left: 8px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle::before {
    background: #EE7BAE;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle::after {
    transform: rotate(315deg);
    top: -2px;
  }
  .site-header .popup-mobile-container {
    background: #fff;
  }
  .site-header .rdv {
    height: fit-content;
    justify-content: center;
    margin-top: 50px;
  }
  .site-header .rdv a {
    max-width: 176px;
    width: 100%;
    justify-content: space-between;
    z-index: 1;
    background: #fff;
    margin: 0;
  }
  .site-header .rdv:hover .primary-button__rdv {
    z-index: 0;
    top: 19px;
    padding-top: 34px;
    left: 0;
    max-width: 176px;
    background: #EE7BAE;
  }
  .site-header .rdv .primary-button__rdv a {
    text-align: center;
    justify-content: center;
    background: transparent;
  }
  .site-header .rdv .primary-button__rdv--item .arrow {
    display: none;
  }
  .site-header .rdv .primary-button__rdv a p {
    color: #fff;
  }
}

.site-footer {
  padding-bottom: 24px;
  border-top: 1px solid #BEC1C4;
}
.site-footer__wrapper a {
  transition: 0.3s all;
}
.site-footer__wrapper a:hover {
  color: #0054A5;
}
.site-footer__wrapper--bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: auto;
  margin-top: 48px;
}
.site-footer__wrapper--bottom a {
  text-decoration: none;
  color: #4F4F4F;
}
.site-footer__wrapper--bottom a:hover {
  color: #0054A5;
  text-decoration: underline;
}
.site-footer__wrapper--bottom .footer-right {
  display: flex;
  column-gap: 26px;
}
.site-footer__wrapper--top {
  display: flex;
  max-width: 1240px;
  margin: auto;
  width: 100%;
  justify-content: center;
  padding-top: 80px;
}
.site-footer__wrapper--top-middle {
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer__wrapper--top-middle .phone-location {
  margin-top: 40px;
  width: 100%;
}
.site-footer__wrapper--top-middle .phone-location .location {
  max-width: 371px;
  width: 100%;
}
.site-footer__wrapper--top nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.site-footer__wrapper--top nav ul li {
  list-style: none;
}
.site-footer__wrapper--top nav ul li a {
  text-decoration: none;
  color: #4F4F4F;
}
.site-footer__wrapper--top .site-footer__nav-right {
  max-width: 285px;
  width: 100%;
  margin-left: 58px;
}
.site-footer__wrapper--top .site-footer__nav-right ul {
  text-align: right;
  row-gap: 8px;
}
.site-footer__wrapper--top .site-footer__nav-left {
  max-width: 134px;
  width: 100%;
  margin-right: 212px;
}
.site-footer .rdv {
  position: relative;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  max-width: 191px;
  width: 100%;
}
.site-footer .rdv .primary-button__rdv {
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  top: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 230px;
  width: 215px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.25);
  transform: translate(0px, 10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
  z-index: 999;
}
.site-footer .rdv .primary-button__rdv--item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .rdv .primary-button__rdv--item .arrow {
  background: #0054A5;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
}
.site-footer .rdv .primary-button__rdv--item .arrow::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 13px;
  margin: auto;
}
.site-footer .rdv .primary-button__rdv--item:hover .arrow {
  background: #EE7BAE;
}
.site-footer .rdv .primary-button__rdv a {
  text-decoration: none;
  color: #333333;
}
.site-footer .rdv:hover .primary-button .arrow {
  background: #EE7BAE;
}
.site-footer .rdv:hover .primary-button .arrow::after {
  right: 12px;
  transform: rotate(135deg);
}
.site-footer .rdv:hover .primary-button__rdv {
  transform: translate(0);
  opacity: 1;
  pointer-events: all;
  left: 190px;
  top: 0;
}

.home-page .hero__video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.home-page .hero__video iframe,
.home-page .hero__video object,
.home-page .hero__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.first-block {
  padding-top: 80px;
}
.first-block__wrapper {
  display: flex;
  flex-direction: column;
}
.first-block__wrapper .logo {
  width: 100%;
  max-width: 196px;
  margin: auto;
}
.first-block__wrapper--doctors {
  display: flex;
  justify-content: end;
  column-gap: 47px;
  max-width: 1264px;
  margin: auto;
  width: 100%;
  position: relative;
  margin-top: 32px;
}
.first-block__wrapper--doctors::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #000;
  position: absolute;
  right: 0px;
  left: 0;
  margin: auto;
}
.first-block__wrapper--doctors-left {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.first-block__wrapper--doctors-left p {
  font-weight: 500;
  font-size: 42px;
  font-family: "Montserrat";
  letter-spacing: 2px;
  color: #4F4F4F;
}
.first-block__wrapper--doctors-left h1 {
  margin: 0;
}
.first-block__wrapper--doctors-right {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.first-block__wrapper--doctors-right p {
  font-weight: 500;
  font-size: 42px;
  font-family: "Montserrat";
  letter-spacing: 2px;
  color: #4F4F4F;
}
.first-block__wrapper--doctors-right h1 {
  margin: 0;
}
.first-block__wrapper--doctors-right h1 span {
  color: #0054A5;
}
.first-block__wrapper--content {
  display: flex;
  justify-content: end;
  column-gap: 244px;
  margin-top: 64px;
  padding-left: 20px;
}
.first-block__wrapper--content-left {
  max-width: 392px;
  width: 100%;
}
.first-block__wrapper--content-left .text {
  position: relative;
  text-align: justify;
}
.first-block__wrapper--content-left .text::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #BEC1C4;
  position: absolute;
  top: -67px;
}
.first-block__wrapper--content-left .phone-location {
  margin-top: 71px;
}
.first-block__wrapper--content-right {
  max-width: 944px;
  width: 100%;
}
.first-block__wrapper--content h3 {
  margin: 0;
  max-width: 230px;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

.equipe {
  padding-top: 136px;
}
.equipe__wrapper {
  position: relative;
}
.equipe__wrapper h2 {
  margin: 0;
  text-align: center;
  margin-bottom: 64px;
}
.equipe__wrapper .left-circle {
  position: absolute;
  z-index: -1;
  top: 0px;
}
.equipe__wrapper .right-circle {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 300px;
}
.equipe__wrapper--doctors {
  display: flex;
}
.equipe__wrapper--doctors .equipe__doctor {
  display: flex;
  width: 50%;
  position: relative;
  justify-content: end;
}
.equipe__wrapper--doctors .equipe__doctor .background {
  max-width: 608px;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
}
.equipe__wrapper--doctors .equipe__doctor--content {
  max-width: 392px;
  width: 100%;
  margin-left: 0;
}
.equipe__wrapper--doctors .equipe__doctor--content-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.equipe__wrapper--doctors .equipe__doctor--content-bottom h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 8px;
}
.equipe__wrapper--doctors .equipe__doctor--content-bottom .equipe__links {
  display: flex;
  column-gap: 64px;
  margin-top: 8px;
}
.equipe__wrapper--doctors .equipe__doctor--content img {
  width: 100%;
  display: block;
  height: 388px;
  transition: 0.3s all;
}
.equipe__wrapper--doctors .equipe__doctor--content img:hover {
  transform: scale(1.1);
}
.equipe__wrapper--doctors .equipe__doctor--content .image-overlay {
  overflow: hidden;
}
.equipe__wrapper--doctors .equipe__doctor:nth-child(2n) {
  flex-direction: row-reverse;
}
.equipe__wrapper--doctors .equipe__doctor:nth-child(2n) .background {
  left: unset;
  right: 0;
}
.equipe__wrapper--doctors .equipe__doctor:nth-child(2n) .equipe__doctor--content {
  margin-left: 0;
  margin-right: auto;
}
.equipe__wrapper .assistants {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  column-gap: 32px;
}
.equipe__wrapper .assistants__item {
  max-width: 286px;
  width: 100%;
}
.equipe__wrapper .assistants__item h3 {
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 8px;
}
.equipe__wrapper .assistants__item p {
  text-align: center;
}
.equipe__wrapper .assistants__item .image-overlay {
  overflow: hidden;
  border-radius: 10px;
}
.equipe__wrapper .assistants__item img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.equipe__wrapper .assistants__item img:hover {
  transform: scale(1.1);
}

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

.traitements__category {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.traitements__category .title-image {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.traitements__category .title-image img {
  max-width: 180px;
  width: 100%;
  position: absolute;
  right: 0;
  top: -65px;
}
.traitements__category:nth-child(2) img {
  right: 270px;
}
.traitements__category:nth-child(3) img {
  right: 100px;
}

.traitements__category--title {
  transition: color 0.3s ease;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.traitements__category--image {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.traitements__category--posts {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-top: 10px;
  margin-bottom: 30px;
}
.traitements__category--posts a {
  width: auto;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.traitements__category--posts a .arrow {
  background: #0054A5;
  max-width: 32px;
  width: 100%;
  height: 32px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
  opacity: 0;
}
.traitements__category--posts a .arrow::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 13px;
  margin: auto;
}
.traitements__category--posts a:hover .arrow {
  opacity: 1;
}

.traitements__category--posts.visible {
  opacity: 1;
  visibility: visible;
}

.traitements__circles {
  position: relative;
}

.traitements__circle {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1;
  mix-blend-mode: multiply;
}
.traitements__circle:nth-child(1) {
  right: -200px;
  left: unset;
}
.traitements__circle:nth-child(2) {
  right: -300px;
  left: unset;
  top: -50px;
}
.traitements__circle:nth-child(3) {
  right: -200px;
  left: unset;
  top: -35px;
}
.traitements__circle:nth-child(4) {
  top: -132px;
  right: -300px;
  left: unset;
}

.traitements__circle.active {
  opacity: 1;
  z-index: 10;
  mix-blend-mode: normal;
}

.traitements__circle[data-circle=default] {
  opacity: 1;
  z-index: 0;
}

.traitements__circle.dimmed {
  opacity: 0.3;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.traitements__circle {
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center center;
}

.traitements__circle[data-circle=pink] {
  animation-duration: 12s;
}

.traitements__circle[data-circle=green] {
  animation-duration: 20s;
}

.traitements__circle[data-circle=blue] {
  animation-duration: 16s;
}

.traitements__circle[data-circle=default] {
  animation-duration: 24s;
}

.traitements {
  padding-top: 104px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  padding-bottom: 200px;
}
.traitements__wrapper h2 {
  margin: 0;
  margin-left: 340px;
  margin-bottom: 100px;
}
.traitements__categories {
  max-width: 850px;
  width: 100%;
  margin-left: 340px;
}
.traitements__circles {
  position: absolute;
  top: 150px;
  max-width: 1001px;
  width: 100%;
  right: 0px;
}

.parcours__wrapper {
  max-width: 1350px;
  width: 100%;
  margin: auto;
  height: 1000px;
  position: relative;
}
.parcours__wrapper h2 {
  position: absolute;
  right: 0;
  left: 0;
  top: 0px;
  bottom: 150px;
  max-width: 286px;
  text-align: center;
  margin: auto;
  width: fit-content;
  height: fit-content;
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Montserrat";
  font-weight: 500;
  top: -100px;
}
.parcours__wrapper .elipse-arrows {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
.parcours__wrapper--etapes {
  display: flex;
}
.parcours__wrapper--etapes-item {
  max-width: 286px;
  width: 100%;
}
.parcours__wrapper--etapes-item h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}
.parcours__wrapper--etapes-item:nth-child(1) {
  transform: translate(0px, 300px);
}
.parcours__wrapper--etapes-item:nth-child(1) h3 {
  margin: 0;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 9px;
}
.parcours__wrapper--etapes-item:nth-child(1) p {
  width: 100%;
}
.parcours__wrapper--etapes-item:nth-child(2) {
  transform: translate(-29px, -15px);
}
.parcours__wrapper--etapes-item:nth-child(2) .parcours__wrapper--etapes-circle {
  margin-left: auto;
}
.parcours__wrapper--etapes-item:nth-child(2) h3 {
  margin: 0;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 9px;
}
.parcours__wrapper--etapes-item:nth-child(2) p {
  width: 100%;
}
.parcours__wrapper--etapes-item:nth-child(3) {
  transform: translate(247px, -5px);
  max-width: 286px;
}
.parcours__wrapper--etapes-item:nth-child(3) h3 {
  text-align: right;
  margin: 0;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 9px;
}
.parcours__wrapper--etapes-item:nth-child(3) p {
  text-align: right;
  width: 100%;
}
.parcours__wrapper--etapes-item:nth-child(4) {
  transform: translate(256px, 295px);
  max-width: 175px;
}
.parcours__wrapper--etapes-item:nth-child(4) h3 {
  text-align: right;
  margin-right: 50px;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 9px;
}
.parcours__wrapper--etapes-item:nth-child(4) p {
  text-align: right;
  margin-right: 50px;
  width: 100%;
}
.parcours__wrapper--etapes-item:nth-child(5) {
  transform: translate(-499px, 600px);
}
.parcours__wrapper--etapes-item:nth-child(5) h3 {
  margin-top: 40px;
  margin-bottom: 8px;
  text-align: center;
  margin-top: 40px;
}
.parcours__wrapper--etapes-item:nth-child(5) p {
  text-align: center;
}
.parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle {
  max-width: 310px;
}
.parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle .parcours__image {
  max-width: 70px;
}
.parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle .parcours__circle {
  top: -70px;
  animation-name: spinn;
}
.parcours__wrapper--etapes-circle {
  position: relative;
  height: 180px;
  max-width: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parcours__wrapper--etapes-circle .parcours__image {
  max-width: 80px;
  width: 100%;
}
.parcours__wrapper--etapes-circle .parcours__circle {
  position: absolute;
  left: 0;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center center;
  animation-duration: 12s;
}

.acces__wrapper {
  max-width: 1240px;
  margin: auto;
  margin-bottom: 48px;
  margin-top: 140px;
}
.acces__wrapper--hours {
  display: flex;
  max-width: 1240px;
  width: 100%;
  margin: auto;
  margin-top: 52px;
  margin-bottom: 136px;
}
.acces__wrapper--hours .location__content--item {
  max-width: 177px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.acces__wrapper--hours .location__content--item .location__content--day {
  margin-bottom: 12px;
  position: relative;
  text-align: center;
  width: 100%;
}
.acces__wrapper--hours .location__content--item .location__content--day::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #BEC1C4;
  bottom: -7px;
}
.acces__wrapper--hours .location__content--item.current-day {
  background: rgba(190, 193, 196, 0.2);
  border-radius: 10px;
}
.acces__wrapper--hours .location__content--item.current-day .location__content--day::after {
  background: #0054A5;
}
.acces__wrapper--hours .location__content--item.current-day .location__content--day {
  color: #0054A5;
}
.acces__wrapper--hours .location__content--item.current-day .location__content--first-time {
  color: #0054A5;
}
.acces__wrapper--hours .location__content--item.current-day .location__content--second-time {
  color: #0054A5;
}
.acces__wrapper--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 55px;
}
.acces__wrapper--top .phone-location {
  column-gap: 55px;
}
.acces__wrapper--top h3 {
  margin: 0;
  max-width: 498px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.acces__wrapper h2 {
  margin: 0;
  margin-bottom: 64px;
}
.acces .location__map {
  display: flex;
}
.acces .location__map #map {
  height: 320px;
  max-width: 960px;
  width: 100%;
}
.acces .location__map .map-image {
  width: 100%;
  display: block;
  max-width: 1002px;
}
.acces .rdv {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.acces .rdv .primary-button__rdv {
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  top: 42px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 230px;
  width: 215px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.25);
  transform: translate(0px, 10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
  z-index: 999;
}
.acces .rdv .primary-button__rdv--item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.acces .rdv .primary-button__rdv--item .arrow {
  background: #0054A5;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
}
.acces .rdv .primary-button__rdv--item .arrow::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 13px;
  margin: auto;
}
.acces .rdv .primary-button__rdv--item:hover .arrow {
  background: #EE7BAE;
}
.acces .rdv .primary-button__rdv a {
  text-decoration: none;
  color: #333333;
}
.acces .rdv:hover .primary-button .arrow {
  background: #EE7BAE;
}
.acces .rdv:hover .primary-button .arrow::after {
  right: 12px;
  transform: rotate(135deg);
}
.acces .rdv:hover .primary-button__rdv {
  transform: translate(0);
  opacity: 1;
  pointer-events: all;
}

.contact-form {
  position: relative;
}
.contact-form img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  display: block;
}
.contact-form__wrapper {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  padding-bottom: 268px;
}
.contact-form__wrapper .contact-form-container {
  padding: 0 64px;
}
.contact-form__wrapper .contact-form-container .form-message p {
  color: #0054A5;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
}
.contact-form__wrapper .contact-form-container textarea {
  height: 31px;
  background: transparent;
  border: unset;
  border-bottom: 1px solid;
  border-radius: unset;
  outline: none;
  box-shadow: none;
  background: none;
  text-decoration: none;
  color: inherit;
  user-select: none;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
}
.contact-form__wrapper .contact-form-container .contact-form-top {
  display: flex;
  margin-bottom: 40px;
  justify-content: space-between;
}
.contact-form__wrapper .contact-form-container .contact-form-top .form-label {
  max-width: 392px;
  width: 100%;
}
.contact-form__wrapper .contact-form-container .contact-form-top .form-label p {
  color: #0054A5;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
}
.contact-form__wrapper .contact-form-container .contact-form-top .form-label input {
  background: transparent;
  border: unset;
  border-bottom: 1px solid;
  border-radius: inherit;
  outline: none;
  box-shadow: none;
  background: none;
  text-decoration: none;
  color: inherit;
  user-select: none;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
}
.contact-form__wrapper .wpcf7 {
  padding-top: 104px;
  padding-bottom: 64px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
.contact-form__wrapper .wpcf7 .submit-button {
  position: relative;
  margin: auto;
  margin-top: 40px;
  max-width: 158px;
  width: 100%;
}
.contact-form__wrapper .wpcf7 .submit-button:hover p::after {
  background: #F07CB1;
}
.contact-form__wrapper .wpcf7 .submit-button p {
  max-width: 158px;
  width: 100%;
  position: relative;
}
.contact-form__wrapper .wpcf7 .submit-button p::after {
  content: "";
  display: block;
  height: 32px;
  width: 32px;
  background: #0054A5;
  position: absolute;
  border-radius: 40px;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
  transition: 0.3s all;
}
.contact-form__wrapper .wpcf7 .submit-button p::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  z-index: 2;
  pointer-events: none;
}
.contact-form__wrapper .wpcf7 .submit-button .wpcf7-spinner {
  position: absolute;
}
.contact-form__wrapper .wpcf7 .submit-button input {
  background: transparent;
  border: 1px solid #4F4F4F;
  border-radius: 40px;
  padding-left: 24px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Poppins";
  color: #333333;
  line-height: 24px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  padding-right: 50px;
}
.contact-form__wrapper .wpcf7 h2 {
  text-align: center;
  margin: 0;
  padding-bottom: 64px;
  font-size: 38px;
  letter-spacing: 2px;
}

.cabinet-page .content-block {
  padding-top: 136px;
  padding-bottom: 120px;
}
.cabinet-page .content-block__wrapper {
  max-width: 1580px;
  margin-left: auto;
  display: flex;
  column-gap: 138px;
}
.cabinet-page .content-block__wrapper--left {
  max-width: 498px;
  width: 100%;
}
.cabinet-page .content-block__wrapper--right {
  max-width: 944px;
  width: 100%;
}
.cabinet-page .gallery-section h2 {
  color: #333333;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  margin-bottom: 64px;
}
.cabinet-page .gallery-section .swiper {
  height: 660px;
  position: relative;
}
.cabinet-page .gallery-section .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cabinet-page .gallery-section .swiper .pagination-buttons {
  position: absolute;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: 100%;
}
.cabinet-page .gallery-section .swiper .next-button {
  background: #0054A5;
  width: 32px;
  height: 34px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
  position: absolute;
  right: 19.5%;
  margin: 0;
  cursor: pointer;
}
.cabinet-page .gallery-section .swiper .next-button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.cabinet-page .gallery-section .swiper .next-button:hover {
  background: #EE7BAE;
}
.cabinet-page .gallery-section .swiper .prev-button {
  background: #0054A5;
  width: 32px;
  height: 34px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
  position: absolute;
  left: 19.5%;
  margin: 0;
  transform: rotate(180deg);
  cursor: pointer;
}
.cabinet-page .gallery-section .swiper .prev-button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.cabinet-page .gallery-section .swiper .prev-button:hover {
  background: #EE7BAE;
}
.cabinet-page .nos-valeurs {
  padding-top: 136px;
  padding-bottom: 191px;
}
.cabinet-page .nos-valeurs__wrapper {
  max-width: 1240px;
  margin: auto;
  width: 100%;
}
.cabinet-page .nos-valeurs__wrapper h2 {
  margin: 0;
  text-align: center;
  margin-bottom: 64px;
  text-transform: capitalize;
  font-size: 36px;
  letter-spacing: 1px;
}
.cabinet-page .nos-valeurs__wrapper--items {
  display: flex;
  flex-direction: column;
  row-gap: 104px;
  position: relative;
}
.cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row h3 {
  color: #4F4F4F;
}
.cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row .nos-valeurs__wrapper--item:nth-child(2n) h3 {
  text-align: right;
}
.cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row .nos-valeurs__wrapper--item:nth-child(odd) {
  text-align: right;
}
.cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row .nos-valeurs__wrapper--item:nth-child(odd) h3 {
  text-align: left;
}
.cabinet-page .nos-valeurs__wrapper--items .circles-animation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 286px;
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabinet-page .nos-valeurs__wrapper--items .circles-animation img {
  position: absolute;
  mix-blend-mode: multiply;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center center;
}
.cabinet-page .nos-valeurs__wrapper--items .circles-animation img:nth-child(1) {
  animation-duration: 4s;
  animation-direction: reverse;
}
.cabinet-page .nos-valeurs__wrapper--items .circles-animation img:nth-child(2) {
  animation-duration: 6s;
}
.cabinet-page .nos-valeurs__wrapper--items .circles-animation img:nth-child(3) {
  animation-duration: 20s;
  animation-direction: reverse;
}
.cabinet-page .nos-valeurs__wrapper--items .circles-animation img:nth-child(4) {
  animation-duration: 26s;
}
.cabinet-page .nos-valeurs__wrapper--item {
  max-width: 286px;
  width: 100%;
}
.cabinet-page .nos-valeurs__wrapper--item h3 {
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Poppins";
  font-weight: 400;
  line-height: 40px;
  margin-top: 8px;
}
.cabinet-page .technologies {
  padding-bottom: 208px;
}
.cabinet-page .technologies__wrapper h2 {
  margin: 0;
  margin-bottom: 80px;
  text-align: center;
  text-transform: capitalize;
  font-size: 36px;
  letter-spacing: 1px;
}
.cabinet-page .technologies__wrapper--items {
  display: flex;
  justify-content: center;
  column-gap: 9px;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item {
  position: relative;
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 192px;
  overflow: hidden;
  justify-content: center;
  min-height: 600px;
  transition: 0.6s all;
  padding: 0;
  text-align: center;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item p {
  color: #fff;
  max-width: 280px;
  padding-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  visibility: hidden;
  height: 0;
  padding: 0;
  width: 0;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item h3 {
  color: #fff;
  margin: 0;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  transition: transform 0.6s ease, writing-mode 0s;
  z-index: 9;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item .background-image {
  position: absolute;
  height: 100%;
  width: 100%;
  transition: 0.6s all;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item .background-image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 84, 165, 0.2);
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item .background-image img {
  object-fit: cover;
  height: 100%;
  z-index: -1;
  position: relative;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item:hover {
  padding: 0 58px;
  justify-content: space-between;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item:hover .overlay {
  background: linear-gradient(180deg, rgba(0, 84, 165, 0) 0%, rgba(0, 84, 165, 0.56) 50%, rgb(0, 84, 165) 100%);
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item:hover h3 {
  writing-mode: horizontal-tb;
  transform: none;
  padding-top: 80px;
}
.cabinet-page .technologies__wrapper .technologies__wrapper--item:hover p {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  height: fit-content;
  padding-bottom: 64px;
  text-align: center;
  width: 100%;
}
.cabinet-page .laboratoire {
  position: relative;
}
.cabinet-page .laboratoire .background {
  position: absolute;
  right: 0;
  height: 100%;
  z-index: -1;
}
.cabinet-page .laboratoire__wrapper {
  display: flex;
  max-width: 1240px;
  margin: auto;
  column-gap: 139px;
}
.cabinet-page .laboratoire__wrapper--left {
  max-width: 286px;
  width: 100%;
}
.cabinet-page .laboratoire__wrapper--left h2 {
  margin: 0;
  color: #4F4F4F;
  margin-bottom: 64px;
  text-transform: inherit;
  font-size: 36px;
}
.cabinet-page .laboratoire__wrapper--right {
  max-width: 815px;
  width: 100%;
}
.cabinet-page .laboratoire__wrapper--right img {
  border-radius: 8px;
}

.conseils-page .conseils {
  padding-top: 136px;
  padding-bottom: 163px;
}
.conseils-page .conseils__wrapper h2 {
  margin: 0;
  margin-bottom: 64px;
  text-align: center;
  font-size: 36px;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #4F4F4F;
}
.conseils-page .conseils__wrapper--items {
  display: flex;
  max-width: 1240px;
  width: 100%;
  margin: auto;
  column-gap: 32px;
}
.conseils-page .conseils__wrapper--item {
  position: relative;
}
.conseils-page .conseils__wrapper--item h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4F4F4F;
  margin: 0;
  margin-top: 40px;
}
.conseils-page .conseils__wrapper--item .image-button {
  display: block;
  height: fit-content;
  position: relative;
}
.conseils-page .conseils__wrapper--item .primary-button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  background: #fff;
  opacity: 0;
  transition: 0.3s all;
}
.conseils-page .conseils__wrapper--item .background-color {
  background-color: #31bbed;
  position: absolute;
  height: 450px;
  width: 450px;
  z-index: -1;
  top: -30px;
  left: -29px;
  border-radius: 400px;
  filter: blur(25px);
  transform: scale(0.5);
  transition: 0.5s all;
}
.conseils-page .conseils__wrapper--item:hover .primary-button {
  opacity: 1;
}
.conseils-page .conseils__wrapper--item:hover .background-color {
  transform: scale(0.95);
}
.conseils-page .urgences {
  padding-bottom: 136px;
  position: relative;
}
.conseils-page .urgences .background-image {
  position: absolute;
  right: 0;
  z-index: -1;
  bottom: 80px;
}
.conseils-page .urgences__wrapper {
  max-width: 1240px;
  margin: auto;
  display: flex;
  column-gap: 138px;
}
.conseils-page .urgences__wrapper .primary-button {
  width: fit-content;
  margin-left: auto;
  margin-top: 60px;
}
.conseils-page .urgences__wrapper--right {
  max-width: 604px;
  width: 100%;
}
.conseils-page .urgences__wrapper--left {
  max-width: 498px;
  width: 100%;
}
.conseils-page .urgences__wrapper--left h2 {
  text-align: right;
  margin: 0;
  margin-bottom: 64px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 36px;
}
.conseils-page .urgences__wrapper--left-text {
  width: 100%;
  max-width: 392px;
}
.conseils-page .urgences__wrapper--left-text p {
  text-align: justify;
}
.conseils-page .honoraires {
  padding-bottom: 136px;
  position: relative;
}
.conseils-page .honoraires__wrapper {
  max-width: 1368px;
  margin-right: auto;
  display: flex;
  column-gap: 138px;
}
.conseils-page .honoraires__wrapper .primary-button {
  width: fit-content;
  margin-right: auto;
  margin-top: 60px;
}
.conseils-page .honoraires__wrapper--left {
  max-width: 732px;
  width: 100%;
}
.conseils-page .honoraires__wrapper--right {
  max-width: 498px;
  width: 100%;
}
.conseils-page .honoraires__wrapper--right h2 {
  text-align: left;
  margin: 0;
  margin-bottom: 64px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 36px;
}
.conseils-page .honoraires__wrapper--right-text {
  width: 100%;
  max-width: 392px;
  margin-left: auto;
}
.conseils-page .honoraires__wrapper--right-text p {
  text-align: justify;
}

.correspondant-page .content-block {
  padding: 136px 0;
}
.correspondant-page .content-block__wrapper--top {
  max-width: 1260px;
  margin: auto;
  display: flex;
  column-gap: 119px;
  align-items: center;
}
.correspondant-page .content-block__wrapper--top-left {
  max-width: 604px;
  width: 100%;
}
.correspondant-page .content-block__wrapper--top-right {
  max-width: 536px;
}
.correspondant-page .content-block__wrapper--bottom {
  display: flex;
  column-gap: 138px;
  align-items: center;
}
.correspondant-page .content-block__wrapper--bottom-left {
  max-width: 944px;
  width: 100%;
}
.correspondant-page .content-block__wrapper--bottom-right {
  max-width: 498px;
  width: 100%;
}
.correspondant-page .correspondant-form h2 {
  text-align: center;
  color: #4F4F4F;
  font-size: 38px;
  margin: 0;
  margin-bottom: 32px;
}
.correspondant-page .correspondant-form .form-text {
  max-width: 816px;
  margin: auto;
  text-align: center;
  color: #4F4F4F;
  margin-bottom: 32px;
}
.correspondant-page .correspondant-form h3 {
  text-align: center;
  margin: 0;
  color: #4F4F4F;
  margin-bottom: 64px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.correspondant-page .correspondant-form .contact-form-container {
  border: 1px solid #BEC1C4;
  border-radius: 8px;
  padding: 88px 64px;
}
.correspondant-page .correspondant-form .contact-form__wrapper {
  padding: 0;
}
.correspondant-page .correspondant-form .correspondant-form-image {
  bottom: -250px;
  height: 460px;
}
.correspondant-page .correspondant-form .contact-form__wrapper .wpcf7 {
  padding: 0;
}
.correspondant-page .correspondant-form .contact-form-top {
  flex-direction: column;
  row-gap: 40px;
}
.correspondant-page .correspondant-form .contact-form-top .two-block {
  display: flex;
  column-gap: 30px;
}
.correspondant-page .correspondant-form .contact-form-top .two-block .form-label {
  max-width: 100%;
  width: 50%;
}
.correspondant-page .correspondant-form .contact-form-top .two-block .form-label input {
  width: 100%;
}
.correspondant-page .correspondant-form .contact-form-top .form-label {
  max-width: 100%;
}
.correspondant-page .correspondant-form .contact-form-top .form-label input {
  width: 100%;
  color: #212121;
}
.correspondant-page .correspondant-form .contact-form-top .form-label textarea {
  color: #212121;
}
.correspondant-page .correspondant-form .custom-file-field {
  width: 100%;
  margin-bottom: 20px;
}
.correspondant-page .correspondant-form .field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  color: #0054A5;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
  margin: 0;
}
.correspondant-page .correspondant-form .fake-file-input {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 48px 0 15px;
  background-color: #fff;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
}
.correspondant-page .correspondant-form .fake-file-input .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  color: #000;
}
.correspondant-page .correspondant-form .fake-file-input .file-icon {
  position: absolute;
  right: 12px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.correspondant-page .correspondant-form input[type=file].file-hidden {
  display: none;
}
.correspondant-page .correspondant-form .fake-file-input {
  border: none;
  border-bottom: 1px solid #333333;
  border-radius: 0;
}
.correspondant-page .correspondant-form .file-name {
  color: #0054A5;
}
.correspondant-page .correspondant-form .contact-form-top .two-block .form-label input {
  color: #212121;
  border-bottom: 1px solid #333333;
}

.formations-page .formations {
  padding-top: 136px;
  padding-bottom: 120px;
}
.formations-page .formations__wrapper {
  max-width: 1420px;
  margin: auto;
  display: flex;
  flex-direction: column;
  row-gap: 88px;
  margin-right: 160px;
}
.formations-page .formations__wrapper--item {
  display: flex;
  column-gap: 138px;
}
.formations-page .formations__wrapper--item-left {
  max-width: 604px;
  width: 100%;
}
.formations-page .formations__wrapper--item-left h2 {
  color: #4F4F4F;
  margin: 0;
  text-transform: capitalize;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.formations-page .formations__wrapper--item-left h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.formations-page .formations__wrapper--item-left p {
  text-align: justify;
}
.formations-page .formations__wrapper--item-left .location {
  display: flex;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 72px;
  column-gap: 8px;
  text-decoration: none;
  transition: 0.3s all;
}
.formations-page .formations__wrapper--item-left .location p {
  transition: 0.3s all;
}
.formations-page .formations__wrapper--item-left .location:hover p {
  color: #0054A5;
}
.formations-page .formations__wrapper--item-left .phone-button {
  display: flex;
  justify-content: space-between;
}
.formations-page .formations__wrapper--item-left .phone-button .phone {
  display: flex;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
  transition: 0.3s all;
}
.formations-page .formations__wrapper--item-left .phone-button .phone p {
  transition: 0.3s all;
}
.formations-page .formations__wrapper--item-left .phone-button .phone:hover p {
  color: #0054A5;
}
.formations-page .formations__wrapper--item-left .date-picker {
  display: flex;
  margin-bottom: 32px;
  column-gap: 24px;
}
.formations-page .formations__wrapper--item-left .date-picker .date-picker-begin, .formations-page .formations__wrapper--item-left .date-picker .date-picker-end {
  width: fit-content;
  padding: 8px 20px;
  border: 1px solid #BEC1C4;
  border-radius: 24px;
  line-height: 24px;
  font-size: 16px;
  font-family: "Poppins";
}
.formations-page .formations__wrapper--item-right {
  max-width: 678px;
  width: 100%;
}

.traitements-category-page .traitements-category {
  padding: 104px 0;
}
.traitements-category-page .traitements-category__wrapper {
  max-width: 816px;
  margin: auto;
  text-align: center;
}
.traitements-category-page .traitements-category__wrapper h2 {
  margin: 0;
  margin-bottom: 24px;
  font-size: 36px;
  text-transform: inherit;
  letter-spacing: 1px;
}
.traitements-category-page .traitements-category .circles-animation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 603px;
  width: 100%;
  height: 582px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.traitements-category-page .traitements-category .circles-animation img {
  position: absolute;
  mix-blend-mode: multiply;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center center;
}
.traitements-category-page .traitements-category .circles-animation .main-photo {
  animation-name: spinn;
}
.traitements-category-page .traitements-category .circles-animation img:nth-child(2) {
  animation-duration: 6s;
  animation-direction: reverse;
}
.traitements-category-page .traitements-category .circles-animation img:nth-child(3) {
  animation-duration: 10s;
}
.traitements-category-page .traitements-category .circles-animation img:nth-child(4) {
  animation-duration: 20s;
  animation-direction: reverse;
}
.traitements-category-page .traitements-category .circles-animation img:nth-child(5) {
  animation-duration: 25s;
}
.traitements-category-page .traitements-category .circles-animation-container {
  position: relative;
  height: 582px;
  margin-top: 40px;
}
.traitements-category-page .traitements-category-posts {
  border-top: 1px solid #BEC1C4;
  margin-top: 100px;
}
.traitements-category-page .traitements-category-posts__wrapper {
  max-width: 1420px;
  margin: auto;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  row-gap: 88px;
  margin-right: 160px;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post {
  display: flex;
  column-gap: 138px;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-left {
  max-width: 498px;
  width: 100%;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-left .primary-button {
  width: fit-content;
  margin-top: 80px;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-right {
  max-width: 784px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-right img {
  transition: 0.3s all;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-right:hover img {
  transform: scale(1.1);
}

.single-page .breadcrumbs-section {
  height: 368px;
}
.single-page .bottom-page-circle {
  bottom: -50px;
}
.single-page .middle-page-circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.single-page__wrapper h2, .single-page__wrapper h3, .single-page__wrapper h4, .single-page__wrapper p, .single-page__wrapper .wp-block-columns, .single-page__wrapper .wp-block-image, .single-page__wrapper .wp-block-list {
  max-width: 816px;
  margin: auto;
}
.single-page__wrapper ul {
  padding-left: 15px;
}
.single-page__wrapper ul li {
  list-style: none;
  position: relative;
  margin-bottom: 24px;
  text-align: justify;
}
.single-page__wrapper ul li::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #0054A5;
  border-radius: 10px;
  position: absolute;
  left: -15px;
  top: 8px;
}
.single-page__wrapper p {
  text-align: justify;
}
.single-page__wrapper ol {
  padding: 0 25px;
}
.single-page__wrapper ol li {
  margin-bottom: 24px;
  text-align: justify;
}
.single-page__wrapper p {
  margin-bottom: 24px;
}
.single-page__wrapper h3 {
  margin-top: 64px;
}
.single-page__wrapper a {
  color: #333333;
  text-decoration: underline;
  transition: 0.3s all;
}
.single-page__wrapper a:hover {
  color: #0054A5;
}
.single-page__wrapper .single-description p {
  text-align: center;
}
.single-page__wrapper h2 {
  margin-top: 80px;
  text-align: center;
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: inherit;
  margin-bottom: 32px;
  font-weight: 500;
}
.single-page__wrapper .wp-block-columns {
  display: flex;
  align-items: center !important;
  justify-content: center;
  margin-bottom: 64px;
  margin-top: 32px;
}
.single-page__wrapper .wp-block-image {
  margin-bottom: 24px;
}
.single-page__wrapper h3 {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.single-page__wrapper h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins";
  margin-bottom: 24px;
}
.single-page__wrapper .custom-quotes {
  background: #F07CB1;
  padding-top: 38px;
  padding-bottom: 34px;
  z-index: -2;
  position: relative;
  margin-top: 64px;
}
.single-page__wrapper .custom-quotes-block {
  max-width: 816px;
  margin: auto;
}
.single-page__wrapper .custom-quotes-block .quotes-custom-title {
  display: flex;
  column-gap: 4px;
}
.single-page__wrapper .custom-quotes-block .quotes-custom-title span {
  color: #fff;
  font-size: 46px;
  font-family: "Montserrat";
  line-height: 38px;
}
.single-page__wrapper .custom-quotes-block h4 {
  color: #fff;
  max-width: 100%;
  margin: 0;
  margin-bottom: 6px;
}
.single-page__wrapper .custom-quotes-block p {
  color: #fff;
  text-align: right;
  margin-bottom: 0;
  max-width: 100%;
}

.cv-page .breadcrumbs-section {
  height: 368px;
}
.cv-page .bottom-page-circle {
  right: 0;
}
.cv-page .cv__wrapper {
  display: flex;
  max-width: 1580px;
  width: 100%;
  margin-left: auto;
  column-gap: 31px;
}
.cv-page .cv__wrapper h2 {
  margin: 0;
  text-transform: inherit;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.cv-page .cv__wrapper h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: left;
}
.cv-page .cv__wrapper--left {
  max-width: 498px;
  width: 100%;
}
.cv-page .cv__wrapper--left p {
  text-align: justify;
}
.cv-page .cv__wrapper--left ul {
  padding-left: 15px;
  margin: 0;
}
.cv-page .cv__wrapper--left ul li {
  list-style: none;
  position: relative;
  margin-bottom: 24px;
}
.cv-page .cv__wrapper--left ul li::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #0054A5;
  border-radius: 10px;
  position: absolute;
  left: -15px;
  top: 8px;
}
.cv-page .cv__wrapper--right {
  max-width: 1050px;
  width: 100%;
  position: relative;
}
.cv-page .cv__wrapper--right h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}
.cv-page .cv__wrapper--right .image-text {
  max-width: 498px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cv-page .cv__wrapper--right .image-text img {
  display: block;
}
.cv-page .cv__wrapper--right .background-cv {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.error-404 {
  padding-top: 315px;
  padding-bottom: 315px;
}
.error-404 .error-section {
  max-width: 503px;
  width: 100%;
  margin: auto;
}
.error-404 .error-section h1 {
  margin-top: 40px;
  margin-bottom: 16px;
}
.error-404 .error-section .text-error {
  text-align: center;
  font-size: 20px;
}
.error-404 .primary-button {
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}

@media screen and (max-width: 1850px) {
  .traitements__circle {
    width: 45vw;
  }
  .traitements__categories {
    margin-left: 300px;
  }
  .traitements__wrapper h2 {
    margin-left: 300px;
  }
}
@media screen and (max-width: 1680px) {
  .traitements__circles {
    right: -300px;
  }
  .traitements__circle:nth-child(1) {
    right: 0;
  }
  .traitements__circle:nth-child(2) {
    right: 0;
    left: unset;
    top: 0px;
  }
  .traitements__circle:nth-child(3) {
    right: 0;
    left: unset;
    top: 0px;
  }
  .traitements__circle:nth-child(4) {
    top: 0;
    right: 0;
    left: unset;
  }
  .traitements__circle {
    width: 45vw;
  }
}
@media screen and (max-width: 1500px) {
  .traitements__categories {
    margin-left: 100px;
  }
  .traitements__wrapper h2 {
    margin-left: 100px;
  }
  .first-block__wrapper--doctors-right {
    max-width: 570px;
    width: 100%;
  }
  .first-block__wrapper--doctors-right h1 {
    font-size: 34px;
  }
  .first-block__wrapper--doctors-left {
    max-width: 570px;
    width: 100%;
  }
  .first-block__wrapper--doctors-left h1 {
    font-size: 34px;
  }
  .first-block__wrapper--doctors {
    justify-content: center;
  }
  .first-block__wrapper--doctors-left p {
    font-size: 30px;
  }
  .first-block__wrapper--doctors-right p {
    font-size: 30px;
  }
  .parcours__wrapper--etapes {
    justify-content: center;
  }
  .parcours__wrapper--etapes-item:nth-child(5) {
    transform: translate(-475px, 600px);
  }
  .acces .location__map .map-image {
    max-width: 600px;
    object-fit: cover;
  }
}
@media screen and (max-width: 1310px) {
  .site-footer__wrapper {
    padding: 0 20px;
  }
  .site-footer__wrapper--top-middle .phone-location {
    column-gap: 20px;
  }
}
@media screen and (max-width: 1140px) {
  .site-footer__wrapper--top .site-footer__nav-left {
    max-width: 285px;
    margin-right: 50px;
  }
  .site-footer__wrapper--top .site-footer__nav-right {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1240px) {
  .equipe__wrapper--doctors .equipe__doctor .background {
    display: none;
  }
  .parcours__wrapper--etapes-item:nth-child(1) {
    transform: translate(30px, 300px);
  }
  .parcours__wrapper--etapes-item:nth-child(4) {
    transform: translate(230px, 295px);
  }
  .parcours__wrapper--etapes-circle .parcours__image {
    width: 6vw;
  }
  .parcours__wrapper--etapes-circle .parcours__circle {
    width: 13vw;
    right: 0;
    left: 0;
    margin: auto;
  }
  .parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle .parcours__circle {
    width: 22vw;
  }
  .parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle .parcours__image {
    top: 0;
    position: absolute;
    bottom: 40px;
    margin: auto;
  }
  .acces__wrapper {
    margin-top: 20px;
  }
  .acces__wrapper h2 {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .acces__wrapper--top {
    display: block;
    padding: 0 20px;
  }
  .acces__wrapper--top h3 {
    margin-bottom: 30px;
  }
  .acces .rdv {
    margin-bottom: 30px;
  }
  .contact-form__wrapper .contact-form-container .contact-form-top .form-label {
    width: 31%;
  }
  .contact-form__wrapper .contact-form-container .contact-form-top .form-label input {
    width: 100%;
  }
  .traitements__categories {
    max-width: 750px;
  }
}
@media screen and (max-width: 1100px) {
  .parcours__wrapper h2 {
    position: relative;
  }
  .parcours__wrapper--etapes {
    flex-wrap: wrap;
  }
  .parcours__wrapper--etapes-item:nth-child(1) {
    transform: translate(0);
  }
  .parcours__wrapper--etapes-item:nth-child(2) {
    transform: translate(0);
  }
  .parcours__wrapper--etapes-item:nth-child(3) {
    transform: translate(0);
  }
  .parcours__wrapper--etapes-item:nth-child(4) {
    transform: translate(0);
  }
  .parcours__wrapper--etapes-item:nth-child(5) {
    transform: translate(0);
  }
  .parcours__wrapper {
    height: 1200px;
  }
  .parcours__wrapper .elipse-arrows {
    display: none;
  }
  .parcours__wrapper--etapes {
    flex-wrap: wrap;
    column-gap: 125px;
    row-gap: 100px;
  }
  .parcours__wrapper--etapes-item:nth-child(5) {
    transform: translate(0);
    max-width: 400px;
    margin: auto;
  }
  .parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle {
    margin: auto;
  }
  .parcours__wrapper--etapes-circle {
    margin: auto;
  }
  .parcours__wrapper--etapes-item h3 {
    text-align: center;
  }
  .parcours__wrapper--etapes-item p {
    text-align: center;
  }
  .parcours__wrapper--etapes-item:nth-child(3) h3 {
    text-align: center;
  }
  .parcours__wrapper--etapes-item:nth-child(3) p {
    text-align: center;
  }
  .parcours__wrapper--etapes-item:nth-child(4) h3 {
    margin-top: 0;
    text-align: center;
  }
  .parcours__wrapper--etapes-item:nth-child(4) p {
    margin-right: 0;
    text-align: center;
  }
  .parcours__wrapper--etapes-item:nth-child(4) {
    max-width: 286px;
  }
}
@media screen and (max-width: 990px) {
  .first-block__wrapper--doctors {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .first-block__wrapper--doctors-left {
    align-items: center;
  }
  .first-block__wrapper--doctors-right {
    align-items: center;
  }
  .first-block__wrapper--doctors::after {
    width: 80px;
    height: 2px;
  }
  .first-block__wrapper--doctors-right p {
    font-size: 24px;
  }
  .first-block__wrapper--doctors-right h1 {
    font-size: 23px;
  }
  .first-block__wrapper--doctors-left h1 {
    font-size: 23px;
  }
  .first-block__wrapper--doctors-left p {
    font-size: 24px;
  }
  .first-block__wrapper--content {
    padding: 0 40px;
    flex-direction: column;
    row-gap: 50px;
  }
  .first-block__wrapper--content-left .phone-location {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 50px;
  }
  .first-block__wrapper--content h3 {
    margin-bottom: 50px;
  }
  .first-block__wrapper--content-left .text::after {
    top: -28px;
  }
  .traitements__category {
    min-height: 390px;
  }
  .traitements__category .title-image {
    flex-direction: column;
  }
  .traitements__category .title-image img {
    top: 215px;
    left: 0px;
    transform: scale(1);
    max-width: 162px;
  }
  .traitements__category--posts {
    opacity: 1;
    visibility: visible;
  }
  .traitements__category--posts a .arrow {
    opacity: 1;
  }
  .traitements__category--posts a p {
    max-width: 168px;
    width: 100%;
  }
  .traitements__category--posts a {
    width: 100%;
  }
  .traitements__category:nth-child(2n) {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin-left: auto;
    width: 100%;
  }
  .traitements__categories {
    padding: 0 40px;
    margin: 0;
    max-width: 100%;
  }
  .traitements__circle {
    width: 48vw;
  }
  .traitements__circles {
    right: -222px;
  }
  .site-footer__wrapper--top {
    flex-direction: column;
  }
  .site-footer__wrapper--top .site-footer__nav-left {
    order: 2;
    margin: 0;
    margin-top: 50px;
  }
  .site-footer__wrapper--top-middle {
    order: 1;
    margin: auto;
  }
  .site-footer__wrapper--top .site-footer__nav-right {
    order: 3;
    margin: 0;
    margin-top: 20px;
  }
  .site-footer__wrapper--top .site-footer__nav-right ul {
    text-align: left;
    row-gap: 16px;
  }
  .site-footer__wrapper--bottom {
    flex-direction: column;
  }
  .site-footer__wrapper--bottom p {
    max-width: 300px;
    margin-bottom: 20px;
  }
  .site-footer__wrapper--bottom .footer-right {
    flex-direction: column;
    row-gap: 20px;
  }
  .site-footer__wrapper--bottom .footer-right p {
    margin: 0;
  }
  .acces__wrapper--hours .location__content--item {
    flex-direction: row;
    max-width: 100%;
    column-gap: 20px;
  }
  .acces__wrapper--hours {
    flex-direction: column;
    align-items: center;
  }
  .acces__wrapper--hours .location__content--item .location__content--day {
    max-width: 83px;
    margin: 0;
    text-align: left;
  }
  .acces .location__map .map-image {
    width: 100%;
    max-width: 100%;
  }
  .acces__wrapper--hours .location__content--item {
    max-width: 343px;
  }
  .acces__wrapper--hours .location__content--item .location__content--day::after {
    display: none;
  }
  .acces__wrapper--hours .location__content--item.current-day {
    background: unset;
  }
  .location__content--first-time {
    max-width: 108px;
    width: 100%;
  }
  .contact-form img {
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .equipe__wrapper--doctors {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .equipe__wrapper .assistants {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
  }
  .equipe__wrapper .right-circle {
    display: none;
  }
  .equipe__wrapper .left-circle {
    display: none;
  }
  .equipe__wrapper h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .equipe__wrapper--doctors .equipe__doctor--content-bottom h3 {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 500;
  }
  .equipe__wrapper--doctors .equipe__doctor--content img {
    height: 340px;
    object-fit: cover;
  }
  .equipe {
    padding-top: 50px;
  }
  .traitements__category:nth-child(2n) img {
    top: 170px;
  }
  .parcours__wrapper--etapes {
    flex-direction: column;
    align-items: center;
  }
  .parcours__wrapper {
    height: auto;
  }
  .parcours__wrapper--etapes-circle .parcours__image {
    width: 100%;
  }
  .parcours__wrapper--etapes-circle .parcours__circle {
    width: 100%;
  }
  .parcours__wrapper--etapes-item {
    display: flex;
    column-gap: 20px;
    max-width: 343px !important;
    align-items: center;
  }
  .parcours__wrapper--etapes-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .parcours__wrapper--etapes-circle {
    max-width: 162px;
  }
  .parcours__wrapper--etapes-item h3 {
    font-size: 18px;
  }
  .parcours__wrapper--etapes-item:nth-child(odd) h3 {
    text-align: left;
  }
  .parcours__wrapper--etapes-item:nth-child(odd) p {
    text-align: left;
  }
  .parcours__wrapper--etapes-item:nth-child(even) p {
    text-align: right;
  }
  .parcours__wrapper--etapes-item:nth-child(even) h3 {
    text-align: right;
  }
  .parcours__wrapper--etapes-item:nth-child(5) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle {
    height: 257px;
  }
  .parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle .parcours__image {
    bottom: -50px;
  }
  .parcours__wrapper--etapes-item:nth-child(5) .parcours__wrapper--etapes-circle .parcours__circle {
    width: 100%;
    max-width: 272px;
    top: 0;
  }
  .parcours__wrapper--etapes-item:nth-child(5) p {
    text-align: center;
  }
  .parcours__wrapper--etapes-item:nth-child(5) h3 {
    text-align: center;
  }
  .elipse-arrows-mobile {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 260px;
    width: 100%;
    max-width: 170px;
  }
  .parcours__wrapper h2 {
    bottom: 0;
    top: 0;
  }
  .parcours__wrapper--etapes {
    margin-top: 30px;
    row-gap: 0;
  }
  .parcours__wrapper--etapes {
    row-gap: 0px;
  }
  .parcours__wrapper--etapes-item:nth-child(4) {
    margin-bottom: 105px;
  }
  .parcours__wrapper--etapes-item:nth-child(3) {
    margin-bottom: 73px;
  }
  .parcours__wrapper--etapes-item:nth-child(2) {
    margin-bottom: 74px;
  }
  .parcours__wrapper--etapes-item:nth-child(1) {
    margin-bottom: 65px;
  }
  .parcours__wrapper h2 {
    bottom: 0;
    top: 0;
  }
  .parcours {
    padding-bottom: 46px;
  }
  .parallax-section {
    height: 369px;
    background-position: center;
  }
  .acces__wrapper--hours {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .acces__wrapper--hours .location__content--item {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .contact-form__wrapper .contact-form-container .contact-form-top {
    flex-direction: column;
    row-gap: 40px;
  }
  .contact-form__wrapper .contact-form-container .contact-form-top .form-label {
    width: 100%;
    max-width: 100%;
  }
  .traitements {
    padding-bottom: 46px;
  }
  .acces__wrapper--top .phone-location {
    flex-direction: column;
    row-gap: 30px;
  }
  .acces__wrapper h2 {
    margin-bottom: 30px;
  }
  .acces__wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .acces .location__map {
    flex-direction: column;
  }
  .equipe__wrapper .assistants__item {
    max-width: 100%;
    width: 45%;
  }
  .traitements__circles {
    right: -17%;
    top: 250px;
  }
  .site-footer__wrapper--top-middle svg {
    max-width: 450px;
    width: 100%;
  }
  .site-footer__wrapper--top-middle .phone-location {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .equipe__wrapper--doctors .equipe__doctor {
    width: 100%;
    justify-content: center;
  }
  .equipe__wrapper--doctors .equipe__doctor:nth-child(2n) .equipe__doctor--content {
    margin: auto;
  }
  .equipe__wrapper--doctors .equipe__doctor--content {
    max-width: 343px;
  }
  .equipe__wrapper--doctors .equipe__doctor--content img:hover {
    transform: scale(1);
  }
}
@media screen and (max-width: 360px) {
  .traitements__circles {
    display: none;
  }
  .parcours__wrapper--etapes {
    padding: 0 20px;
  }
  .acces__wrapper--hours .location__content--item {
    column-gap: 10px;
  }
  .acces__wrapper--hours {
    padding: 0 20px;
  }
  .contact-form__wrapper .contact-form-container {
    padding: 0 20px;
  }
}
.cabinet-page .content-block__wrapper {
  padding-left: 20px;
}

@media screen and (max-width: 1440px) {
  .cabinet-page .gallery-section .swiper {
    height: 500px;
  }
  .cabinet-page .technologies__wrapper--items {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
    padding: 0 20px;
  }
  .bottom-page-circle {
    width: 33vw;
  }
  .cabinet-page .nos-valeurs__wrapper--items {
    padding: 0 20px;
  }
  .cabinet-page .laboratoire__wrapper {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .cabinet-page .gallery-section .swiper {
    height: 300px;
  }
}
@media screen and (max-width: 900px) {
  .cabinet-page .nos-valeurs__wrapper--items .circles-animation img {
    max-width: 161px;
  }
  .cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row .nos-valeurs__wrapper--item:nth-child(odd) {
    text-align: left;
  }
  .cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row .nos-valeurs__wrapper--item:nth-child(even) {
    text-align: right;
  }
  .cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row h3 {
    font-size: 18px;
  }
  .cabinet-page .content-block__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
    padding-left: 0;
    padding: 0 20px;
  }
  .cabinet-page .content-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cabinet-page .content-block__wrapper--right img {
    border-radius: 10px;
  }
  .cabinet-page .gallery-section .swiper .prev-button {
    left: 15.5%;
  }
  .cabinet-page .gallery-section .swiper .next-button {
    right: 15.5%;
  }
  .cabinet-page .gallery-section .swiper .swiper-slide img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .cabinet-page .gallery-section .swiper .prev-button {
    left: 0%;
  }
  .cabinet-page .gallery-section .swiper .next-button {
    right: 0%;
  }
  .cabinet-page .gallery-section .swiper {
    padding: 0 16px;
  }
  .cabinet-page .gallery-section h2 {
    margin-bottom: 20px;
  }
  .cabinet-page .nos-valeurs {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row .nos-valeurs__wrapper--item:nth-child(even) {
    margin-left: auto;
    margin-top: -75px;
  }
  .cabinet-page .nos-valeurs__wrapper--item {
    width: 41%;
  }
  .cabinet-page .nos-valeurs__wrapper--items .nos-valeurs__row {
    flex-direction: column;
    margin-bottom: 100px;
  }
  .cabinet-page .technologies__wrapper .technologies__wrapper--item {
    min-width: unset;
    min-height: auto;
    padding: 46px 0;
  }
  .cabinet-page .technologies__wrapper .technologies__wrapper--item h3 {
    writing-mode: inherit;
    transform: rotate(0);
  }
  .cabinet-page .technologies__wrapper--items {
    flex-direction: column;
  }
  .cabinet-page .technologies__wrapper .technologies__wrapper--item .background-image img {
    width: 100%;
  }
  .cabinet-page .technologies__wrapper .technologies__wrapper--item:hover h3 {
    padding-top: 70px;
    padding-bottom: 164px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .cabinet-page .technologies {
    padding-bottom: 50px;
  }
  .cabinet-page .laboratoire .background {
    display: none;
  }
  .cabinet-page .laboratoire__wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .cabinet-page .laboratoire__wrapper--left {
    max-width: 100%;
    margin-bottom: 50px;
  }
  .cabinet-page .laboratoire__wrapper--left h2 {
    margin-bottom: 30px;
  }
  .cabinet-page .technologies__wrapper h2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .conseils-page .conseils__wrapper--items {
    padding: 0 20px;
  }
  .conseils-page .urgences {
    padding-right: 20px;
    padding-left: 20px;
  }
  .conseils-page .honoraires__wrapper {
    padding-right: 20px;
  }
  .conseils-page .conseils__wrapper--items {
    padding: 0 20px;
  }
  .conseils-page .conseils__wrapper--item .background-color {
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0px;
  }
}
@media screen and (max-width: 900px) {
  .conseils-page .conseils {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .conseils-page .conseils__wrapper--items {
    align-items: center;
    flex-direction: column;
    row-gap: 50px;
    padding: 0 44px;
  }
  .conseils-page .conseils__wrapper h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .conseils-page .urgences .background-image {
    display: none;
  }
  .conseils-page .urgences__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .conseils-page .urgences__wrapper--left h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 30px;
  }
  .conseils-page .urgences__wrapper--left-text {
    max-width: 100%;
  }
  .conseils-page .urgences__wrapper .primary-button {
    margin-left: 0;
  }
  .conseils-page .urgences {
    padding-right: 16px;
    padding-left: 16px;
  }
  .conseils-page .honoraires__wrapper {
    flex-direction: column-reverse;
    padding: 0 20px;
    row-gap: 20px;
  }
  .conseils-page .honoraires__wrapper--left {
    max-width: 100%;
  }
  .conseils-page .honoraires__wrapper--left img {
    width: 100%;
  }
  .conseils-page .honoraires__wrapper--right-text {
    max-width: 100%;
  }
  .conseils-page .honoraires__wrapper--right {
    max-width: 100%;
  }
  .conseils-page .honoraires__wrapper .primary-button {
    margin-top: 30px;
  }
  .conseils-page .honoraires__wrapper--right h2 {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  .conseils-page .urgences {
    padding-bottom: 50px;
  }
  .conseils-page .conseils__wrapper--item h3 {
    font-size: 18px;
    margin-top: 20px;
  }
  .conseils-page .honoraires {
    padding-bottom: 0;
  }
}
.correspondant-page .correspondant-form .correspondant-form-image {
  object-fit: cover;
}

.correspondant-page .content-block__wrapper--bottom {
  padding-right: 16px;
}

.correspondant-page .content-block__wrapper--top {
  padding: 0 16px;
}

@media screen and (max-width: 1240px) {
  .correspondant-page .contact-form__wrapper .contact-form-container .contact-form-top .form-label {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .correspondant-page .content-block__wrapper--top {
    flex-direction: column;
    row-gap: 20px;
  }
  .correspondant-page .content-block__wrapper--bottom {
    flex-direction: column-reverse;
    padding: 0 16px;
    row-gap: 20px;
    margin-top: 50px;
  }
  .correspondant-page .content-block__wrapper--bottom-right {
    max-width: 100%;
  }
  .correspondant-page .correspondant-form .form-text {
    padding: 0 16px;
  }
  .correspondant-page .content-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .correspondant-page .correspondant-form .contact-form-top .two-block {
    flex-wrap: wrap;
    row-gap: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .formations-page .formations__wrapper {
    margin: auto;
    padding: 0 16px;
  }
  .bottom-page-circle-formations {
    width: 28vw;
  }
  .formations-page .formations {
    padding-bottom: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 900px) {
  .formations-page .formations__wrapper--item {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
}
.traitements-category-page .traitements-category__wrapper {
  padding: 0 16px;
}

@media screen and (max-width: 1600px) {
  .traitements-category-page .traitements-category-posts__wrapper {
    margin: auto;
    padding: 50px 16px;
  }
}
@media screen and (max-width: 768px) {
  .traitements-category-page .traitements-category-posts__wrapper .traitement-post {
    flex-direction: column;
    row-gap: 20px;
  }
  .traitements-category-page .traitements-category {
    padding: 50px 0;
    padding-bottom: 0;
  }
  .traitements-category-page .traitements-category .circles-animation-container {
    height: 500px;
  }
}
@media screen and (max-width: 445px) {
  .traitements-category-page .traitements-category .circles-animation-container {
    height: 400px;
  }
}
@media screen and (max-width: 1260px) {
  .single-page .middle-page-circle {
    width: 32vw;
    z-index: -1;
  }
  .single-page .bottom-page-circle {
    width: 21vw;
    z-index: -3;
  }
  h2, h3, h4, p, .wp-block-columns, .wp-block-image, .wp-block-list {
    padding: 0 16px;
  }
  .single-page .breadcrumbs-section {
    height: auto;
  }
}
@media screen and (max-width: 1600px) {
  .cv-page .cv__wrapper {
    margin: auto;
    padding: 0 16px;
  }
}
@media screen and (max-width: 900px) {
  .cv-page .breadcrumbs-section {
    height: auto;
  }
  .cv-page .cv__wrapper--left {
    max-width: 100%;
  }
  .cv-page .cv__wrapper--right .image-text {
    margin: auto;
  }
  .cv-page .cv__wrapper--right .background-cv {
    display: none;
  }
  .cv-page .cv__wrapper {
    flex-direction: column;
  }
}
a, p, span, h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4F4F4F;
  font-family: "Montserrat";
}
h1 span {
  color: #EE7BAE;
  font-family: "Montserrat";
}

h2 {
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #333333;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 48px;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  color: #333333;
  font-family: "Poppins";
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}

main {
  padding-top: 80px;
}

.primary-button {
  padding: 4px 8px 4px 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #4F4F4F;
  border-radius: 48px;
}
.primary-button .arrow {
  background: #0054A5;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  margin-left: 16px;
  position: relative;
  transition: 0.3s all;
}
.primary-button .arrow::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 13px;
  margin: auto;
}
.primary-button:hover .arrow {
  background: #EE7BAE;
}

.phone-location {
  justify-content: space-between;
  display: flex;
}
.phone-location a {
  display: flex;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
}
.phone-location a:hover svg path {
  fill: #EE7BAE;
}
.phone-location .location:hover svg path:nth-child(2) {
  fill: #fff;
}
.phone-location svg {
  max-width: 34px;
  width: 100%;
}
.phone-location .phone {
  width: 100%;
  max-width: 149px;
}
.phone-location .location {
  max-width: 232px;
}

.parallax-section {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 1220px;
  width: 100%;
}

.breadcrumbs-section {
  position: relative;
}
.breadcrumbs-section .breadcrumbs-background {
  position: absolute;
  z-index: -1;
}
.breadcrumbs-section .breadcrumbs-logo {
  position: absolute;
  left: 0;
  top: -80px;
}
.breadcrumbs-section .breadcrumbs-wrapper {
  max-width: 1000px;
  margin-left: 340px;
  padding-top: 112px;
  padding-bottom: 48px;
}
.breadcrumbs-section h1 {
  margin: 0;
  margin-bottom: 24px;
}
.breadcrumbs-section .breadcrumbs-bottom {
  display: flex;
  align-items: center;
}
.breadcrumbs-section .breadcrumbs {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.breadcrumbs-section .breadcrumbs a {
  color: #4F4F4F;
  text-decoration: none;
}
.breadcrumbs-section .breadcrumbs a:hover {
  color: #0054A5;
}
.breadcrumbs-section .breadcrumbs span {
  color: #4F4F4F;
}

.breadcrumbs-primary {
  width: fit-content;
  padding-right: 16px;
  padding-left: 8px;
  cursor: pointer;
  margin-right: 24px;
}
.breadcrumbs-primary .arrow {
  transform: rotate(180deg);
  margin: 0;
  margin-right: 16px;
}

.bottom-page {
  margin: auto;
}

.retour-container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bottom-page-circle {
  position: absolute;
  bottom: -400px;
  z-index: -1;
}

.bottom-page-circle-right {
  position: absolute;
  bottom: -400px;
  z-index: -1;
  right: 0;
}

main {
  position: relative;
  overflow: hidden;
}

.bottom-page-circle-formations {
  bottom: -500px;
}

.mon-rdv-1-page .bottom-page-circle {
  right: 0;
}

.mon-rdv-2-page .bottom-page-circle {
  right: 0;
}
.mon-rdv-2-page .mon-rdv-2 {
  padding-top: 136px;
}
.mon-rdv-2-page .mon-rdv-2__wrapper {
  max-width: 1240px;
  margin: auto;
  width: 100%;
  display: flex;
  column-gap: 139px;
}
.mon-rdv-2-page .mon-rdv-2__wrapper--right {
  max-width: 604px;
  width: 100%;
}
.mon-rdv-2-page .mon-rdv-2__wrapper--left {
  max-width: 497px;
  width: 100%;
}
.mon-rdv-2-page .mon-rdv-2 h2 {
  font-size: 36px;
  text-transform: inherit;
  letter-spacing: 1px;
  max-width: 470px;
  margin: 0;
  margin-bottom: 40px;
}
.mon-rdv-2-page .mon-rdv-2 h3 {
  margin: 0;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button {
  background: #0054A5;
  width: fit-content;
  transition: 0.3s all;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button svg {
  margin-right: 8px;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button p {
  color: #fff;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button .arrow {
  background: #fff;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button .arrow::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s all;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 13px;
  margin: auto;
  border-color: #0054A5;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button:hover {
  background: #EE7BAE;
  border-color: #EE7BAE;
}
.mon-rdv-2-page .mon-rdv-2 .primary-button:hover .arrow::after {
  border-color: #EE7BAE;
}
.mon-rdv-2-page .breadcrumbs-section {
  height: 368px;
}

@media screen and (max-width: 1440px) {
  main {
    padding-top: 50px;
  }
}
.traitements__category--posts a {
  display: flex;
  align-items: center;
}

.first-block__wrapper--content-right img {
  border-radius: 8px;
}

.elipse-arrows-mobile {
  display: none;
}

.bottom-page-circle-right {
  width: 45vw;
}

@media screen and (max-width: 900px) {
  .breadcrumbs-section .breadcrumbs-logo {
    display: none;
  }
  .breadcrumbs-section .breadcrumbs-background {
    display: none;
  }
  .breadcrumbs-section h1 {
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 100%;
  }
  .breadcrumbs-section .breadcrumbs-wrapper {
    margin: 0;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 34px;
  }
  h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 34px;
    text-transform: inherit;
    letter-spacing: 1px;
  }
  ul, ol, .wp-block-list {
    margin: 0 16px !important;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .elipse-arrows-mobile {
    display: block;
  }
  h2 {
    font-size: 22px !important;
  }
  .parallax-section {
    height: 369px;
    background-attachment: unset;
  }
  .bottom-page-circle {
    bottom: -200px;
  }
  .single-page__wrapper .wp-block-image {
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .bottom-page-circle {
    width: 100%;
    max-width: 200px;
  }
  .breadcrumbs-section .breadcrumbs a {
    white-space: nowrap;
  }
  .breadcrumbs-section .breadcrumbs span {
    white-space: nowrap;
  }
  .breadcrumbs-section .breadcrumbs {
    overflow: auto;
  }
}
@media screen and (max-width: 500px) {
  .single-page .middle-page-circle {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .mon-rdv-2-page .mon-rdv-2__wrapper {
    padding: 0 16px;
  }
}
@media screen and (max-width: 980px) {
  .mon-rdv-2-page .mon-rdv-2__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .phone-location .phone {
    max-width: 100%;
  }
  .mon-rdv-2-page .mon-rdv-2__wrapper--left {
    max-width: 100%;
  }
  .mon-rdv-2-page .mon-rdv-2__wrapper--right {
    max-width: 100%;
  }
  .mon-rdv-2-page .mon-rdv-2__wrapper--right img {
    width: 100%;
  }
  .mon-rdv-2-page .mon-rdv-2 h2 {
    padding: 0;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .mon-rdv-2-page .mon-rdv-2 h3 {
    padding: 0;
    font-size: 24px;
    line-height: 34px;
    font-size: 18px;
  }
  .mon-rdv-2-page .mon-rdv-2 {
    padding-top: 50px;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 1s ease-in-out;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader p {
  font-size: 50px;
}
.preloader .preloader-image {
  display: flex;
  height: 100%;
  align-items: center;
}
.preloader .preloader-image img {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  transition: 0.3s all;
}
.preloader .preloader-image .first-step {
  opacity: 0;
  transform: scale(15.5);
  transition: 1s all;
}
.preloader .preloader-image .first-step.show {
  opacity: 1;
  transform: scale(1);
}
.preloader .preloader-image .second-step {
  transform: translate(-150%, 107px);
  opacity: 0;
  transition: 0.8s all;
}
.preloader .preloader-image .second-step.show {
  opacity: 1;
  transform: translate(2.5%, 107px);
}
.preloader .preloader-image .second-step.hidden {
  opacity: 0;
}

.preloader.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.bottom-page-circle-right {
  width: 40vw;
}

@media screen and (max-width: 1440px) {
  .cabinet-page .gallery-section .swiper {
    height: auto;
  }
  .first-block__wrapper--content {
    column-gap: 200px;
    padding-left: 50px;
  }
  .cabinet-page .content-block__wrapper {
    column-gap: 100px;
    padding-left: 50px;
  }
  .bottom-page-circle-right {
    width: 36vw;
  }
  .traitements-category-page .traitements-category-posts__wrapper {
    padding: 50px 40px;
  }
  .traitements-category-page .traitements-category-posts__wrapper .traitement-post {
    column-gap: 100px;
  }
}
.conseils-page .urgences .background-image {
  max-width: 872px;
  height: 525px;
}

.site-header__content ul .sub-menu {
  flex-direction: column;
}

.contact-form img {
  object-fit: cover;
}

.cv-page .cv__wrapper--right .background-cv {
  max-width: 771px;
}

.cv-page .cv__wrapper--left p {
  margin-bottom: 20px;
}

.correspondant-page .correspondant-form .contact-form__wrapper .wpcf7 {
  border-radius: 8px;
  overflow: hidden;
}

.traitements-category-page .traitements-category .circles-animation .main-photo {
  max-width: 352px;
}

.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-left h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 40px;
}
.traitements-category-page .traitements-category-posts__wrapper .traitement-post .traitements-post-left .traitement-text {
  font-family: "Poppins";
  font-size: 18px;
  text-align: justify;
  font-weight: 400;
}

.site-header__content--navigation li.menu-item-has-children > ul.sub-menu {
  width: max-content;
}

.site-header__content--navigation ul.sub-menu li {
  transition: 0.3s all;
}
.site-header__content--navigation ul.sub-menu li a {
  transition: 0.3s all;
}

.site-header__content--navigation ul.sub-menu li:hover {
  background: #EE7BAE;
}
.site-header__content--navigation ul.sub-menu li:hover a {
  color: #fff;
}

.single-page__wrapper ul li {
  font-family: "Poppins";
}

.site-header__content--navigation ul.sub-menu {
  border-radius: 0 0 10px 10px;
}

.site-header__content--navigation li.menu-item-has-children:hover > ul.sub-menu {
  border-radius: 0 0 10px 10px;
}

.site-header__content--navigation ul.sub-menu li:hover:last-child {
  border-radius: 0 0 10px 10px;
}

.hide {
  display: none;
}

.single-page__wrapper h2 {
  margin-top: 50px;
}

.single-page__wrapper h3 {
  margin-top: 40px;
}

.single-page__wrapper .wp-block-columns {
  margin-bottom: 30px;
}

.site-footer__wrapper--top .site-footer__nav-left {
  max-width: 285px;
  width: 100%;
  margin-right: 0;
}

.site-footer__wrapper--top .site-footer__nav-right {
  max-width: 285px;
  width: 100%;
  margin-left: 0;
}

@media screen and (max-width: 1600px) {
  .first-block__wrapper--content {
    column-gap: 100px;
  }
  .cabinet-page .content-block__wrapper {
    padding-left: 100px;
    column-gap: 100px;
  }
  .cv-page .cv__wrapper {
    padding-left: 100px;
  }
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-family: "Poppins";
  font-size: 16px;
}

.correspondant-page .content-block__wrapper--top-left p {
  text-align: justify;
}

.correspondant-page .content-block__wrapper--bottom-right p {
  text-align: justify;
}

.cv-page .cv__wrapper--left a {
  color: #333333;
}
.cv-page .cv__wrapper--left a:hover {
  color: #0054A5;
}

.cv-page .cv__wrapper--left ul li {
  font-family: "Poppins", sans-serif;
}

.site-footer__wrapper--top .site-footer__nav-right ul {
  row-gap: 16px;
}

.wpcf7 form.sent .wpcf7-response-output {
  font-family: "Poppins";
}

.correspondant-page .content-block__wrapper--bottom {
  padding-right: 40px;
}

.correspondant-page .content-block__wrapper--top {
  padding: 0 40px;
}
/*# sourceMappingURL=style.css.map */
