.site-header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0px 3px 16px -8px rgba(0, 0, 0, 0.45);
}
.site-header a {
  color: #3C3C3B;
  text-transform: uppercase;
  font-family: "Jost", serif;
}
.site-header a:hover, .site-header a:focus, .site-header a:active {
  color: #3C3C3B;
}
.site-header a:focus {
  color: #3C3C3B;
}
.site-header__content {
  display: flex;
  align-items: center;
  max-width: 1760px;
  margin-left: auto;
  justify-content: space-between;
  height: 96px;
  padding-left: 20px;
}
.site-header__content--contacts {
  height: 100%;
  display: flex;
}
.site-header__content--contacts-left {
  background: #FAF8F4;
  display: flex;
  height: 100%;
  align-items: center;
  column-gap: 32px;
  padding: 0 23px;
}
.site-header__content--contacts-right {
  background: #EE7135;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  max-width: 180px;
  width: 100%;
}
.site-header__content--contacts-right:hover {
  background: #3C3C3B;
}
.site-header__content--contacts-right:hover a {
  color: #EE7135;
  display: flex;
}
.site-header__content--contacts-right:hover a::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/orange-arrow-right.svg");
  height: 24px;
  width: 24px;
  display: block;
  padding-left: 5px;
}
.site-header__content--contacts-right a {
  color: #fff;
  font-family: "Jost", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 37px 48px;
  text-decoration: none;
}
.site-header__content--logo {
  height: 80px;
}
.site-header__content--navigation ul {
  margin: 0;
  list-style: none;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__content--navigation ul ul {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 96px;
  left: 0;
  padding: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background: #FAF8F4;
  border-radius: 0;
  min-width: 305px;
  transition: 0.3s all;
}
.site-header__content--navigation ul ul a {
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s all;
}
.site-header__content--navigation ul ul li {
  height: 100%;
  transition: 0.3s all;
}
.site-header__content--navigation ul ul li a {
  height: 100%;
  padding: 16px;
  width: 100%;
}
.site-header__content--navigation ul ul li:hover {
  background: #EE7135;
}
.site-header__content--navigation ul ul ul {
  left: 100%;
  top: 0;
}
.site-header__content--navigation ul ul ul li a {
  text-transform: inherit;
  letter-spacing: 0;
}
.site-header__content--navigation ul li {
  height: 96px;
  transition: 0.3s all;
  padding: 0 16px;
}
.site-header__content--navigation ul li a {
  text-decoration: unset;
  font-size: 16px;
  height: 100%;
  color: #3C3C3B;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.site-header__content--navigation li {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
}
.site-header__content--navigation li:hover > ul {
  opacity: 1;
  pointer-events: all;
}
.site-header__content--navigation a {
  display: block;
  padding: 0;
  text-decoration: none;
}
.site-header .menu li:hover {
  background: #EE7135;
}
.site-header .menu-item a, .site-header .sub-menu a {
  transition: color 0.3s;
}
.site-header .menu-item.active > a, .site-header .menu-item:hover > a {
  color: #fff;
}
.site-header .sub-menu .menu-item:hover > a {
  color: #fff;
}
.site-header .menu-item-has-children > a::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/arrow-down.svg");
  height: 24px;
  width: 24px;
}
.site-header .menu-item-has-children {
  padding: 0 16px;
}
.site-header .menu-item-has-children .sub-menu li {
  padding: 0;
  border-bottom: 1px solid var(--BB_bej, #AFA99F);
}
.site-header .menu-item-has-children .sub-menu li .sub-menu li a::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/white-arrow-down.svg");
  height: 24px;
  width: 24px;
  right: 0;
  transform: rotate(-90deg);
  margin-left: auto;
  opacity: 0;
}
.site-header .menu-item-has-children .sub-menu li .sub-menu li:hover a::after {
  opacity: 1;
}
.site-header .menu-item-has-children:hover > a {
  color: #fff;
}
.site-header .menu-item-has-children:hover > a::after {
  background-image: url("../../src/images/white-arrow-down.svg");
}
.site-header .menu-item-has-children ul .menu-item-has-children > a::before {
  right: 17px;
  transform: rotate(45deg);
}
.site-header .menu-item-has-children ul .menu-item-has-children > a::after {
  margin-left: auto;
  transform: rotate(-90deg);
}
.site-header .popup-mobile {
  display: none;
}
.site-header .site-header__content-m {
  display: none;
}
@media screen and (max-width: 1440px) {
  .site-header__content {
    width: 100%;
  }
  .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%;
  }
  .site-header__content--logo svg {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .site-header .site-header__content--navigation ul li a {
    font-size: 12px;
  }
  .site-header .site-header__content--navigation ul li {
    padding: 0 12px;
  }
  .site-header .site-header__content--contacts-right a {
    padding: 20px 30px;
  }
  .site-header .site-header__content--contacts-left {
    padding: 0 16px;
  }
}
@media screen and (max-width: 1240px) {
  .site-header__content--navigation ul li a {
    font-size: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .site-header {
    display: flex;
  }
  .site-header .site-header__content-m {
    transition: 0.3s all;
  }
  .site-header .site-header__content-m svg {
    transition: 0.3s all;
  }
  .site-header .site-header__content-m.active {
    height: 12.24vh;
    z-index: 999;
  }
  .site-header .site-header__content-m.active .site-header__content--contacts-right {
    width: 0;
  }
  .site-header .site-header__content-m.active svg {
    width: 100%;
  }
  .site-header .site-header__content-m--logo {
    display: block;
    padding: 4px 0;
  }
  .site-header .site-header__content-m {
    display: flex;
    height: 56px;
  }
  .site-header .site-header__content--contacts-right {
    max-width: 99px;
  }
  .site-header .site-header__content--contacts-right a {
    color: #fff;
    letter-spacing: 2px;
    font-size: 15px;
    padding: 0;
  }
  .site-header .site-header__content--contacts-right a::after {
    display: none;
  }
  .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: 100%;
  }
  .site-header__content-m--right {
    display: flex;
    width: 100%;
    max-width: 44px;
    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 {
    max-width: 32px;
    width: 100%;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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;
  }
  .site-header__content-m--burger-menu .site-header__content-m--burger-line:nth-child(2) {
    transition: 0.3s all;
  }
  .site-header__content-m--burger-menu .site-header__content-m--burger-line:nth-child(3) {
    transition: 0.3s all;
  }
  .site-header__content-m--burger-line {
    width: 100%;
    height: 1px;
    background: #3C3C3B;
  }
  .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 .popup-mobile {
    position: absolute;
    background: #fff;
    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;
    padding-bottom: 80px;
  }
  .site-header .popup-mobile a.open::before, .site-header .popup-mobile a.open::after {
    background: #BA880C;
  }
  .site-header .popup-mobile .bb-icon {
    z-index: -1;
    position: absolute;
    bottom: 43px;
    right: 0;
  }
  .site-header .popup-mobile-container {
    overflow: scroll;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .site-header .popup-mobile-container .popup-mobile-container--contacts-contact {
    height: 48px;
    background: #EE7135;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .popup-mobile-container .popup-mobile-container--contacts-contact a {
    color: #fff;
    text-decoration: none;
    font-family: "Jost";
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 400;
  }
  .site-header .popup-mobile-container--contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    margin-bottom: 32px;
    padding-left: 16px;
  }
  .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: fit-content;
  }
  .site-header .popup-mobile-container--contacts-address a {
    color: #3C3C3B;
    text-transform: inherit;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Outfit";
  }
  .site-header .popup-mobile-container--contacts-phone {
    display: flex;
    column-gap: 8px;
    align-items: center;
  }
  .site-header .popup-mobile-container--contacts-phone svg {
    display: block;
    width: fit-content;
  }
  .site-header .popup-mobile-container--contacts-phone a {
    color: #3C3C3B;
    text-transform: inherit;
    font-weight: 300;
    font-family: "Outfit";
  }
  .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: 90px;
    display: flex;
    flex-direction: column;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li:hover {
    background: transparent;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu a {
    padding-left: 85px;
    font-size: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .rdv-custom-menu {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    position: relative;
    flex-direction: column;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open > .submenu-container {
    background: #EE7135;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open > .submenu-container a {
    color: #fff;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li .submenu-container {
    display: flex;
    height: 48px;
    align-items: center;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li .submenu-toggle {
    content: "";
    transition: transform 0.3s ease;
    background-image: url("../../src/images/arrow-down.svg");
    height: 24px;
    width: 24px;
    display: block;
  }
  .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 {
    content: "";
    background-image: url("../../src/images/white-arrow-down.svg");
    transform: rotate(-180deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a {
    color: #3C3C3B;
    text-decoration: none;
    font-size: 15px;
    text-transform: inherit;
    position: relative;
    width: fit-content;
    font-family: "Jost";
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a {
    width: fit-content;
    margin-right: 10px;
    position: relative;
    display: block;
  }
  .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;
    text-align: left;
    position: relative;
    padding: 0 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children .submenu-container {
    justify-content: space-between;
    padding: 0 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children .submenu-container a {
    padding-left: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
    padding: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li:last-child {
    border-bottom: unset;
  }
  .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 .submenu-toggle.open {
    transform: rotate(-180deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li {
    margin: 0;
    background: #FAF8F4;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li a {
    font-size: 16px;
  }
  .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;
    font-weight: 300;
  }
  .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;
  }
  .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-footer {
  background: #918A80;
}
.site-footer__top {
  display: flex;
  max-width: 1240px;
  margin: auto;
  justify-content: space-between;
}
.site-footer__top--left {
  padding-top: 64px;
}
.site-footer__top--right {
  padding-top: 58px;
}
.site-footer__top--right-contacts {
  padding-top: 48px;
  display: flex;
  align-items: center;
  column-gap: 45px;
}
.site-footer__top--right-contacts a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-footer__top--right-contacts a svg {
  margin-right: 8px;
  max-width: 24px;
  width: 100%;
}
.site-footer__top--right-contacts a p {
  letter-spacing: 2px;
  color: #FAF8F4;
  font-family: "Jost", serif;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}
.site-footer__top--right-contacts .phone-number:hover svg {
  fill: #3C3C3B;
}
.site-footer__top--right-contacts .phone-number:hover svg path {
  stroke: #3C3C3B;
}
.site-footer__top--right-contacts .phone-number:hover p {
  color: #3C3C3B;
}
.site-footer__top--right-contacts .marker-icon {
  position: relative;
}
.site-footer__top--right-contacts .marker-icon svg path {
  fill: #fff;
}
.site-footer__top--right-contacts .marker-icon:hover::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../src/images/black-point.svg");
  position: absolute;
  left: 0;
}
.site-footer__top--right-contacts .marker-icon:hover svg {
  stroke: none;
}
.site-footer__top--right-contacts .marker-icon:hover svg path {
  fill: #3C3C3B !important;
}
.site-footer__top--right-contacts .marker-icon:hover p {
  color: #3C3C3B !important;
}
.site-footer__top--right-contacts a::after {
  display: none;
}
.site-footer__top--right .menu-footer-container ul, .site-footer__top--right .menu-footer-2-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.site-footer__top--right .menu-footer-container ul li a, .site-footer__top--right .menu-footer-2-container ul li a {
  font-family: "Outfit";
  text-decoration: none;
  font-size: 16px;
  color: #FAF8F4;
  letter-spacing: 1px;
  font-weight: 300;
  transition: 0.3s all;
}
.site-footer__top--right .menu-footer-container ul li a:hover, .site-footer__top--right .menu-footer-2-container ul li a:hover {
  color: #3C3C3B;
}
.site-footer .menu-footer-container {
  display: flex;
  justify-content: space-between;
}
.site-footer .menu-footer-container .menu-footer-2-container ul {
  text-align: right;
}
.site-footer__bottom {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
  padding-bottom: 32px;
}
.site-footer__bottom--text-one p {
  font-family: "Outfit";
  font-weight: 300;
  letter-spacing: 1px;
}
.site-footer__bottom--text-two {
  display: flex;
  column-gap: 4px;
}
.site-footer__bottom--text-two p {
  font-family: "Outfit";
  font-weight: 300;
  letter-spacing: 1px;
}
.site-footer__bottom--text-three p {
  font-family: "Outfit";
  font-weight: 300;
  letter-spacing: 1px;
}
.site-footer__bottom--text-four p {
  font-family: "Outfit";
  font-weight: 300;
  letter-spacing: 1px;
}
.site-footer__bottom p {
  color: #fff;
}
.site-footer__bottom p a {
  color: #fff;
  text-decoration: none;
}
.site-footer__bottom p a:hover {
  color: #3C3C3B;
}

@media screen and (max-width: 1300px) {
  .site-footer__bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer__top {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .site-footer__bottom {
    flex-wrap: wrap;
    column-gap: 15px;
    justify-content: center;
    row-gap: 10px;
  }
  .site-footer__top--left svg {
    max-width: 400px;
  }
}
@media screen and (max-width: 1100px) {
  .site-footer__top {
    flex-direction: column;
    align-items: center;
  }
  .site-footer__top--right {
    padding-top: 25px;
  }
  .site-footer__top--right .menu-footer-container {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .site-footer__top--left {
    padding-top: 30px;
  }
  .site-footer__top--left svg {
    max-width: 250px;
  }
  .site-footer__top--right-contacts a p {
    font-size: 13px;
  }
  .site-footer__top--right-contacts {
    flex-direction: column;
    row-gap: 12px;
  }
  .site-header .popup-mobile {
    padding-bottom: 99px;
  }
}
.page-home .hero__slider {
  position: relative;
}
.page-home .hero .swiper-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 340px;
  width: 100%;
  height: 48px;
  display: flex;
  background: #AFA99F;
  z-index: 9;
  transition: 0.3s all;
}
.page-home .hero .swiper-navigation:hover {
  background: #EE7135;
}
.page-home .hero .swiper-navigation .swiper-button-prev {
  left: 40px;
}
.page-home .hero .swiper-navigation .swiper-button-next {
  right: 40px;
}
.page-home .hero .swiper-navigation .swiper-button-prev::after, .page-home .hero .swiper-navigation .swiper-button-next::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/white-arrow-down.svg");
  height: 24px;
  width: 24px;
}
.page-home .hero .swiper-navigation .swiper-button-next::after {
  transform: rotate(-90deg);
}
.page-home .hero .swiper-navigation .swiper-button-prev::after {
  transform: rotate(90deg);
}
.page-home .hero .swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
}
.page-home .hero .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .cabinet__content {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.page-home .cabinet__content--left {
  max-width: 754px;
  width: 100%;
  position: absolute;
  left: 17.8%;
  top: 136px;
  z-index: 9;
}
.page-home .cabinet__content--left-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-home .cabinet__content--left-title h1 {
  margin: 0;
  max-width: 562px;
  font-size: 54px;
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 500;
  line-height: 74px;
}
.page-home .cabinet__content--left-title h1 span {
  color: #918A80;
}
.page-home .cabinet__content--left-text {
  margin-top: 64px;
  max-width: 498px;
  width: 100%;
  text-align: justify;
}
.page-home .cabinet__content--right {
  max-width: 1156px;
  width: 100%;
}
.page-home .cabinet__content--right-image {
  position: relative;
  overflow: hidden;
}
.page-home .cabinet__content--right-image::after {
  content: "";
  background: inherit;
  backdrop-filter: blur(8px);
  background: rgba(250, 248, 244, 0.6);
  max-width: 392px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.page-home .cabinet__content--right-image::before {
  content: "";
  background: rgba(255, 255, 255, 0.6980392157);
  max-width: 180px;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.page-home .cabinet__content--right-image img {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}

.page-home .horaires {
  display: flex;
}
.page-home .horaires__left {
  width: 49.4%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .horaires__left--button {
  background: #AFA99F;
  opacity: 90%;
  padding: 16px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 106px;
  column-gap: 58px;
  transition: 0.6s all;
}
.page-home .horaires__left--button.active {
  background: #FAF8F4;
}
.page-home .horaires__left--button.active p {
  color: #3C3C3B;
}
.page-home .horaires__left--button p {
  max-width: 152px;
  width: 100%;
  font-family: "Jost";
  font-weight: 300;
  font-size: 22px;
  color: #FAF8F4;
  line-height: 28px;
}
.page-home .horaires__left img {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.page-home .horaires__right {
  width: 50.6%;
}
.page-home .horaires__right--time {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.page-home .horaires__right--button {
  height: 88px;
  background: #AFA99F;
  display: flex;
  align-items: center;
  padding-left: 48px;
  column-gap: 107px;
}
.page-home .horaires__right--button p {
  color: #FAF8F4;
  font-size: 22px;
  font-weight: 300;
  font-family: "Jost";
}
.page-home .horaires__hours {
  display: flex;
  height: 226px;
  align-items: center;
  padding-left: 32px;
  background: #FAF8F4;
}
.page-home .horaires__hours .current-day {
  background: rgba(175, 169, 159, 0.5607843137);
}
.page-home .horaires__hours--day {
  color: #3C3C3B;
  font-size: 22px;
  font-family: "Jost";
  margin-bottom: 12px;
}
.page-home .horaires__hours--first-time, .page-home .horaires__hours--second-time {
  font-family: "Outfit";
  font-weight: 300;
  font-size: 16px;
}
.page-home .horaires__hours--item {
  text-align: center;
  max-width: 130px;
  width: 100%;
  height: 100%;
  padding-top: 56px;
}

.page-home .equipe {
  padding-top: 136px;
  padding-bottom: 136px;
  position: relative;
}
.page-home .equipe .bb-equipe {
  position: absolute;
  top: 136px;
  left: 0;
  max-width: 370px;
  width: 100%;
  display: block;
}
.page-home .equipe__content {
  max-width: 1365px;
  width: 100%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.page-home .equipe__content h2 {
  color: #3C3C3B;
  font-weight: 400;
  font-size: 42px;
  line-height: 53px;
  font-family: "Outfit";
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 64px;
}
.page-home .equipe__content--qualification {
  font-family: "Jost";
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #918A80;
  position: relative;
  margin-bottom: 64px;
  margin-top: 0;
}
.page-home .equipe__content--qualification::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 286px;
  height: 1px;
  background: #EE7135;
  position: absolute;
  top: -8px;
}
.page-home .equipe__content--doctor-left {
  max-width: 392px;
  width: 100%;
}
.page-home .equipe__content--doctor-left-text {
  max-width: 286px;
  width: 100%;
  font-family: "Jost";
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #918A80;
  margin-top: 0;
  margin-bottom: 40px;
}
.page-home .equipe__content--doctor-left h3 {
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  margin-top: 0;
  margin-bottom: 24px;
}
.page-home .equipe__content--doctor-right-doctor {
  max-width: 392px;
  width: 100%;
  height: 481px;
  display: block;
}
.page-home .equipe__content--doctor-right-image {
  display: flex;
  width: 100%;
}
.page-home .equipe__content--doctor-right-image .image-blur {
  max-width: 551px;
  width: 100%;
  position: relative;
}
.page-home .equipe__content--doctor-right-image .image-blur img {
  display: block;
  height: 100%;
  width: 100%;
}
.page-home .equipe__assisstants {
  max-width: 1365px;
  width: 100%;
  margin-left: auto;
  display: flex;
  padding-top: 64px;
}
.page-home .equipe__assisstants--container {
  display: flex;
  column-gap: 8px;
}
.page-home .equipe__assisstants--item {
  max-width: 196px;
  width: 100%;
}
.page-home .equipe__assisstants--item h4 {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 22px;
  font-family: "Jost";
  line-height: 28px;
  color: #3C3C3B;
  font-weight: 400;
}
.page-home .equipe__assisstants--item p {
  font-size: 16px;
  font-family: "Outfit";
  color: #918A80;
  font-weight: 300;
  line-height: 22px;
}
.page-home .equipe__assisstants--qualification {
  max-width: 392px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-right: 32px;
}
.page-home .equipe__assisstants--qualification p {
  font-family: "Jost";
  width: 100%;
  margin-bottom: 54px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #918A80;
  position: relative;
  margin-top: 0;
}
.page-home .equipe__assisstants--qualification p::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 286px;
  height: 1px;
  background: #EE7135;
  position: absolute;
  top: -8px;
}

.treatments {
  padding-top: 100px;
  background: #ffffff;
}
.treatments__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.treatments__content--wrapper {
  padding: 0;
}
.treatments__content .mobile-image {
  display: none;
}
.treatments__content h2 {
  font-size: 42px;
  text-transform: uppercase;
  font-family: "Outfit";
  font-weight: 400;
  letter-spacing: 1px;
  color: #3C3C3B;
  margin-bottom: 60px;
  margin-top: 0;
  line-height: 52px;
  position: relative;
  width: fit-content;
}
.treatments__content--wrapper {
  display: flex;
  width: 100%;
  margin-left: auto;
  justify-content: end;
}
.treatments__content--titles {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 136px;
  padding-bottom: 136px;
  background: #FAF8F4;
}
.treatments__content--titles-container {
  max-width: 604px;
  margin: auto;
  margin-right: 32px;
  row-gap: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.treatments__content--title {
  line-height: 40px;
  position: relative;
  font-size: clamp(1.5rem, 1.083rem + 0.868vw, 2.125rem);
  cursor: pointer;
  transition: 0.3s all;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  flex-direction: column;
}
.treatments__content--title span {
  color: #AFA99F;
  font-family: "Outfit";
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  transition: 0.3s all;
  padding-left: 24px;
}
.treatments__content--title-container {
  position: relative;
  text-decoration: none;
  padding-bottom: 44px;
  padding-top: 44px;
  display: flex;
  outline: none;
}
.treatments__content--title-container:focus {
  outline: none;
}
.treatments__content--title-container::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/gray-arrow-right.svg");
  height: 24px;
  width: 24px;
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.treatments__content--title.active .treatments__content--title-container {
  position: relative;
  outline: none;
}
.treatments__content--title.active .treatments__content--title-container::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/orange-arrow-right.svg");
  height: 24px;
  width: 24px;
  display: block;
  padding-left: 5px;
  transform: rotate(0deg);
  transition: 0.3s all;
}
.treatments__content--title .mobile-image {
  pointer-events: none;
  margin-top: 20px;
}
.treatments__content--title h3 {
  font-size: 28px;
  line-height: 33px;
  margin: 0;
  position: relative;
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 500;
  width: 100%;
  transition: 0.3s all;
}
.treatments__content--title p {
  line-height: 26px;
  font-weight: 400;
  font-family: "Montserrat";
  font-size: 16px;
  color: #0F1321;
  opacity: 0;
  height: 0;
  margin: 0;
}
.treatments__content--title-number {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 48px;
}
.treatments__content--title-number::after {
  content: "";
  display: block;
  background: #BEBEBD;
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -52px;
  transition: 0.3s all;
}
.treatments__content--title-number::before {
  content: "";
  display: block;
  background: #BEBEBD;
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  top: -53px;
  transition: 0.3s all;
}
.treatments__content--title .button-primary {
  margin-top: 20px;
  text-decoration: none;
  text-transform: inherit;
  opacity: 0;
  height: 0;
  margin: 0;
  border: 1px solid #BEBEBD;
  text-transform: uppercase;
  font-family: "M PLUS 1";
  color: #1D3D91;
  font-weight: 400;
}
.treatments__content--title .button-primary:hover {
  background: #693D2D;
  color: #fff;
}
.treatments__content .desktop-image {
  display: block;
}
.treatments__content .treatments__content--images {
  display: block;
}
.treatments__content--title.active .button-primary {
  opacity: 1;
  height: auto;
}
.treatments__content--title.active p {
  opacity: 1;
  height: auto;
  margin-top: 16px;
  margin-bottom: 24px;
}
.treatments__content--arrow {
  transition: 0.3s all;
}
.treatments__content--title.active span {
  color: #EE7135;
}
.treatments__content--title.active h3 {
  color: #EE7135;
}
.treatments__content--title.active h3::after {
  background: #EE7135;
  z-index: 1;
}
.treatments__content--title.active h3::before {
  background: #EE7135;
}
.treatments__content--title:hover h3 {
  color: #EE7135;
}
.treatments__content--title:hover .pathologies__content--arrow {
  transform: translate(10px, 0px);
}
.treatments__content--images {
  max-width: 945px;
  width: 100%;
  position: relative;
  height: auto;
  display: block;
}
.treatments__content--images-sticky {
  position: sticky;
  top: 100px;
  height: 570px;
  height: 100%;
}
.treatments__content--image.active {
  z-index: 9;
}
.treatments__content--image {
  opacity: 0;
  transition: 0.5s all;
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.treatments__content--image img {
  transition: 0.5s all;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.treatments__content--image.active {
  opacity: 1;
}
.treatments__content--image.active img {
  transform: scale(1.1);
}

.page-home .appareils {
  padding-top: 136px;
  padding-bottom: 136px;
}
.page-home .appareils h2 {
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 400;
  font-size: 42px;
  line-height: 53px;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 1590px;
  width: 100%;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 64px;
}
.page-home .appareils__posts {
  max-width: 1590px;
  width: 100%;
  display: flex;
  margin-left: auto;
}
.page-home .appareils__posts--item {
  max-width: 318px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #AFA99F;
  padding-top: 23px;
  padding-bottom: 23px;
  transition: 0.3s all;
  position: relative;
}
.page-home .appareils__posts--item-bottom {
  background: #FAF8F4;
  position: absolute;
  bottom: -88px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 23px;
  opacity: 0;
  transition: 0.3s all;
}
.page-home .appareils__posts--item.active {
  background: #FAF8F4;
  border-color: #EE7135;
}
.page-home .appareils__posts--item.active span {
  color: #EE7135;
}
.page-home .appareils__posts--item.active p {
  color: #EE7135;
}
.page-home .appareils__posts--item.active .appareils__posts--item-bottom {
  opacity: 1;
}
.page-home .appareils__posts--item-button {
  transition: 0.3s all;
}
.page-home .appareils__posts--item-image {
  position: relative;
  cursor: pointer;
}
.page-home .appareils__posts--item-image img {
  display: block;
}
.page-home .appareils__posts--item-container {
  max-width: 270px;
  width: 100%;
  margin: auto;
}
.page-home .appareils__posts span {
  color: #AFA99F;
  font-size: 28px;
  font-weight: 500;
  line-height: 33px;
  font-family: "Outfit";
  transition: 0.3s all;
}
.page-home .appareils__posts p {
  font-family: "Jost";
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  color: #3C3C3B;
  padding-top: 16px;
  padding-bottom: 16px;
}

.page-home .pathologies__content {
  display: flex;
  justify-content: space-between;
}
.page-home .pathologies__content--text {
  max-width: 415px;
  width: 100%;
}
.page-home .pathologies__content--text h2 {
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 400;
  font-size: 42px;
  line-height: 53px;
  letter-spacing: 1px;
  margin-top: 80px;
  margin-bottom: 64px;
  text-transform: uppercase;
}
.page-home .pathologies__content--text p {
  font-family: "Outfit";
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  color: #3C3C3B;
  margin-bottom: 44px;
  margin-top: 0;
}
.page-home .pathologies__content--right-image {
  max-width: 944px;
  width: 100%;
  display: flex;
  align-items: end;
  position: relative;
}
.page-home .pathologies__content--right-image-bg {
  display: block;
  max-width: 838px;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
  right: 0;
  background: #FAF8F4;
  z-index: -1;
}

.cliniques__slider--mini-photos {
  max-width: 392px;
  width: 100%;
  height: 211px;
}
.cliniques__slider--mini-photos .cliniques__slide {
  height: 100%;
}
.cliniques__slider--mini-photos img {
  border-radius: 10px;
  height: 211px;
}
.cliniques__content {
  max-width: 1228px;
  width: 100%;
  margin: auto;
  background: #FAF8F4;
  padding-left: 106px;
  padding-top: 136px;
  padding-bottom: 136px;
}
.cliniques__content--button {
  margin-top: 61px;
  margin-left: auto;
}
.cliniques__content--left h2 {
  font-family: "Outfit";
  font-weight: 400;
  font-size: 42px;
  line-height: 53px;
  color: #3C3C3B;
  margin-top: 0;
  margin-bottom: 64px;
  text-transform: uppercase;
}
.cliniques__content--right {
  max-width: 604px;
  margin-top: 114px;
  width: 100%;
}
.cliniques__slide h3 {
  color: #3C3C3B;
  font-size: 28px;
  font-weight: 500;
  font-family: "Outfit";
  line-height: 33px;
  margin-top: 25px;
  margin-bottom: 13px;
}
.cliniques__slide p {
  color: #3C3C3B;
  font-weight: 400;
  font-family: "Outfit";
  line-height: 28px;
  letter-spacing: 1px;
}

.parallax-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.parallax-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.parallax-image.image-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .parallax-image.image-desktop {
    display: none;
  }
  .parallax-image.image-mobile {
    display: block;
  }
}
.page-home .conseils {
  position: relative;
}
.page-home .conseils__bg {
  background: #FAF8F4;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60.5%;
  z-index: -1;
}
.page-home .conseils__content {
  display: flex;
  max-width: 1240px;
  margin: auto;
  justify-content: space-between;
  padding-top: 136px;
}
.page-home .conseils__content--left {
  max-width: 286px;
  width: 100%;
}
.page-home .conseils__content--left h2 {
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 400;
  font-size: 42px;
  line-height: 53px;
  letter-spacing: 1px;
  margin-bottom: 84px;
  margin-top: 0;
  text-transform: uppercase;
}
.page-home .conseils__content--posts {
  display: flex;
  column-gap: 16px;
}
.page-home .conseils__content--posts-hidden {
  opacity: 0;
  background: #FFFFFF;
  transition: 0.3s all;
}
.page-home .conseils__content--posts-hidden p {
  padding-left: 16px;
  padding-right: 16px;
}
.page-home .conseils__content--posts-item {
  max-width: 286px;
  transition: 0.3s all;
}
.page-home .conseils__content--posts-item-bottom {
  padding-bottom: 80px;
}
.page-home .conseils__content--posts-item:hover {
  background: #fff;
}
.page-home .conseils__content--posts-item:hover h3 {
  color: #EE7135;
}
.page-home .conseils__content--posts-item:hover .conseils__content--posts-hidden {
  opacity: 1;
}
.page-home .conseils__content--posts-item-image img {
  display: block;
}
.page-home .conseils__content--posts-item h3 {
  color: #3C3C3B;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Jost";
  transition: 0.3s all;
  margin-bottom: 0;
  margin-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
.page-home .conseils__content--posts-item p {
  color: #AFA99F;
  line-height: 28px;
  font-family: "Outfit";
  padding-top: 8px;
  margin-bottom: 16px;
}

.page-home .acces {
  background: #918A80;
  padding-top: 136px;
}
.page-home .acces__content {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.page-home .acces__content--right {
  max-width: 815px;
  width: 100%;
  margin-top: 68px;
}
.page-home .acces__content--right-time {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.page-home .acces__content--right-time p {
  color: #fff;
  font-family: "Jost";
  letter-spacing: 0.2px;
  font-size: 22px;
}
.page-home .acces__content--right-button-rdv {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.page-home .acces__content--right-button-rdv .appareils__posts--item-button a {
  border: 1px solid #fff;
  color: #fff;
}
.page-home .acces__content--right-button-rdv .appareils__posts--item-button::after {
  border: 1px solid #fff;
}
.page-home .acces__content--left-contacts {
  max-width: 192px;
}
.page-home .acces__content--left-contacts .phone-number::after {
  display: none;
}
.page-home .acces__content--left-contacts .marker-icon {
  margin-bottom: 28px;
}
.page-home .acces__content--left-contacts .marker-icon, .page-home .acces__content--left-contacts .phone-number {
  column-gap: 16px;
  text-decoration: none;
}
.page-home .acces__content--left-contacts .marker-icon svg, .page-home .acces__content--left-contacts .phone-number svg {
  width: 100%;
  max-width: 24px;
  height: 24px;
}
.page-home .acces__content--left-contacts .marker-icon p, .page-home .acces__content--left-contacts .phone-number p {
  color: #fff;
  font-family: "Outfit";
  font-weight: 300;
}
.page-home .acces__content--left h2 {
  color: #fff;
  font-family: "Outfit";
  font-weight: 300;
  font-size: 42px;
  line-height: 53px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 48px;
}
.page-home .acces__content--hours {
  display: flex;
  height: 102px;
  align-items: center;
  border-top: 1px solid var(--BB_light, #FAF8F4);
  margin-top: 8px;
}
.page-home .acces__content--hours .current-day {
  background: rgba(250, 248, 244, 0.3098039216);
}
.page-home .acces__content--hours--day {
  color: #fff;
  font-size: 22px;
  font-family: "Jost";
  margin-bottom: 8px;
}
.page-home .acces__content--hours--first-time, .page-home .acces__content--hours--second-time {
  font-family: "Outfit";
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
.page-home .acces__content--hours--item {
  text-align: center;
  max-width: 136px;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 10px;
}
.page-home .acces .location {
  position: relative;
  max-width: 1240px;
  margin: auto;
}
.page-home .acces .location .location__content--items.desktop-only {
  display: flex;
}
.page-home .acces .location .location__content--items.mobile-only {
  display: none;
}
.page-home .acces .location-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  z-index: -1;
}
.page-home .acces .location__map {
  height: 276px;
  width: 100%;
}
.page-home .acces .location__map #map {
  height: 100%;
}
.page-home .acces .location__content {
  display: flex;
  max-width: 1240px;
  margin: auto;
  justify-content: space-between;
}
.page-home .acces .location__content img {
  height: 100%;
}
.page-home .acces .location__content--right {
  max-width: 815px;
  width: 100%;
}
.page-home .acces .location__content--left {
  max-width: 392px;
  width: 100%;
  padding-top: 100px;
}
.page-home .acces .location__content--left h2 {
  text-transform: uppercase;
  color: #0F1321;
  font-family: "M PLUS 1";
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 40px;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 0;
}
.page-home .acces .location__content--left-text {
  line-height: 26px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.page-home .acces .location__content--left h3 {
  font-size: 24px;
  font-weight: 400;
  font-family: "M PLUS 1";
  color: #0F1321;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.page-home .acces .location__content--station {
  max-width: 360px;
}
.page-home .acces .location__content--station-location {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  margin-bottom: 16px;
}
.page-home .acces .location__content--station-location:last-child {
  margin-bottom: 32px;
}
.page-home .acces .location__content--station-location-text p {
  margin: 0;
}
.page-home .acces .location__content--transport-location {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  margin-bottom: 16px;
}
.page-home .acces .location__content--transport-location-text p {
  margin: 0;
}
.page-home .acces .location__content--first-time {
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 300;
  color: #BEBEBD;
  padding: 0 20px;
}
.page-home .acces .location__content--second-time {
  font-size: 16px;
  font-family: "Manrope";
  font-weight: 300;
  color: #3F4549;
}
.page-home .acces .location__content--items {
  margin-bottom: 68px;
  margin-top: 10px;
  column-gap: 0;
  display: flex;
}
.page-home .acces .location__content--items-subtext {
  font-family: "Manrope";
  font-size: 16px;
  margin: 0;
  color: #3F4549;
}
.page-home .acces .location__content--item {
  display: flex;
  justify-content: flex-start;
  column-gap: 30px;
  flex-direction: column;
  align-items: center;
}
.page-home .acces .location__content--day {
  max-width: 100%;
  text-align: center;
  width: 100%;
  font-family: "Montserrat";
  font-size: 16px;
  color: #BEBEBD;
  margin-bottom: 12px;
  position: relative;
}
.page-home .acces .location__content--day::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #BEBEBD;
  position: absolute;
  bottom: -7px;
}
.page-home .acces .location__content--address {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-direction: column;
  row-gap: 10px;
}
.page-home .acces .location__content--address-phone {
  align-items: center;
  display: flex;
  transition: 0.3s all;
}
.page-home .acces .location__content--address-phone a:hover {
  color: #6e8f77;
}
.page-home .acces .location__content--address-location {
  align-items: center;
  display: flex;
  transition: 0.3s all;
}
.page-home .acces .location__content--address-location a:hover {
  color: #6e8f77;
}
.page-home .acces .location__content--address a {
  color: #3F4549;
  font-size: 18px;
  text-decoration: unset;
  margin-left: 10px;
  font-size: 18px;
  font-family: "Manrope";
}
.page-home .acces .location__content--location-transport p {
  color: #3F4549;
  font-size: 16px;
  font-family: "Manrope";
  margin: 0;
  margin-top: 10px;
}
.page-home .acces .location__content--location-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.page-home .acces .location__content--location-item p {
  color: #3F4549;
  font-size: 18px;
  text-decoration: unset;
  margin: 0;
  margin-left: 10px;
  font-family: "Manrope";
}
.page-home .acces .location__content--buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 50px;
}
.page-home .acces .location__content--buttons .open-popup {
  cursor: pointer;
}
.page-home .acces .location__content--buttons span, .page-home .acces .location__content--buttons a {
  max-width: 220px;
  height: 40px;
  border: 1px solid #6E8F77;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: unset;
  font-size: 16px;
  color: #373E48;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s all;
  width: 100%;
}
.page-home .acces .location__content--buttons a:hover, .page-home .acces .location__content--buttons span:hover {
  background: #6E8F77;
  color: #fff;
}
.page-home .acces .location__content--item.current-day .location__content--day, .page-home .acces .location__content--item.current-day .location__content--first-time, .page-home .acces .location__content--item.current-day .location__content--second-time {
  color: #0F1321;
}
.page-home .acces .location__content--item.current-day .location__content--day::after {
  background: #0F1321;
}
.page-home .acces__bottom-image {
  max-width: 1240px;
  margin: auto;
}

.form__content {
  display: flex;
  max-width: 1250px;
  margin: auto;
  justify-content: space-between;
  padding-top: 136px;
  padding-bottom: 136px;
}
.form__content--right {
  max-width: 604px;
  width: 100%;
}
.form__content--left {
  max-width: 486px;
  width: 100%;
  position: relative;
}
.form__content--left h2 {
  font-family: "Outfit";
  font-size: 42px;
  color: #3C3C3B;
  font-weight: 300;
  line-height: 53px;
  letter-spacing: 2px;
  margin-top: 0;
  text-transform: uppercase;
}
.form__content--left img {
  position: absolute;
  z-index: -1;
  bottom: -300px;
}
.form .popup-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 16px;
}
.form .popup-form input {
  width: 100%;
  height: 56px;
  padding-left: 0;
  padding-top: 0;
  background: unset;
  border: unset;
  border: 1px solid transparent;
  border-bottom: 1px solid #3C3C3B;
  transition: 0.3s all;
  border-radius: 0;
}
.form .popup-form input:focus {
  border-bottom: 1px solid #EE7135;
}
.form .popup-form input:hover {
  border-bottom: 1px solid #EE7135;
}
.form .popup-form input:active, .form .popup-form input:hover, .form .popup-form input:focus {
  outline: 0;
  outline-offset: 0;
}
.form .popup-form textarea:hover {
  border-bottom: 1px solid #EE7135;
}
.form .popup-form textarea {
  background: #fff;
  border: unset;
  padding-left: 0px;
  color: #373E48;
  font-weight: 300;
  font-family: "Outfit";
  border: 1px solid transparent;
  transition: 0.3s all;
  height: 123px;
  border-radius: 0;
  height: 150px;
  resize: none;
  border-bottom: 1px solid #3C3C3B;
}
.form .popup-form textarea:focus {
  border-bottom: 1px solid #EE7135;
}
.form .popup-form textarea:active, .form .popup-form textarea:hover, .form .popup-form textarea:focus {
  outline: 0;
  outline-offset: 0;
}
.form .popup-form .form-label {
  position: relative;
  width: 100%;
}
.form .popup-form .form-label p {
  margin: 0;
}
.form .popup-form .form-label .popup-form-label {
  position: absolute;
  z-index: 9;
  top: 15px;
  pointer-events: none;
  transition: 0.3s all;
}
.form .popup-form .form-label .popup-form-label p {
  margin: 0;
  font-size: 16px;
  color: #373E48;
  font-weight: 300;
  transition: 0.3s all;
  font-family: "Outfit";
}
.form .popup-form .form-label .popup-form-label.active {
  top: 0px;
}
.form .popup-form .form-label .popup-form-label.active p {
  font-size: 12px;
  color: #AFA99F;
}
.form .popup-form .popup-form-message {
  width: 100%;
}
.form .popup-form .popup-form-message textarea {
  padding-left: 0;
  padding-top: 10px;
}
.form .popup-form .popup-form-message .popup-form-label.active {
  top: 0px;
}
.form .popup-form .popup-form-submit .wpcf7-spinner {
  position: absolute;
  right: 9px;
}
.form .popup-form .popup-form-submit input {
  width: 100%;
  display: flex;
  background: no-repeat;
  color: #3C3C3B;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s all;
  text-transform: uppercase;
  font-size: 15px;
  padding: 0;
  font-family: "Jost";
  letter-spacing: 2px;
  border: none;
}

.page-cabinet .hero__content {
  display: flex;
}
.page-cabinet .hero__content--left {
  width: 50%;
  display: flex;
  padding-left: 160px;
  padding-top: 63px;
  padding-right: 122px;
  justify-content: space-between;
  height: fit-content;
  background: #FAF8F4;
}
.page-cabinet .hero__content--left-title {
  max-width: 498px;
  width: 100%;
}
.page-cabinet .hero__content--left-title .breadcrumbs .breadcrumbs-text {
  margin-top: 48px;
}
.page-cabinet .hero__content--left-title .breadcrumbs .breadcrumbs-text p {
  margin-bottom: 16px;
  font-family: "Outfit";
  font-weight: 300;
  color: #3C3C3B;
  text-align: justify;
}
.page-cabinet .hero__content--left img {
  display: block;
  width: 100%;
  max-width: 147px;
  height: 400px;
}
.page-cabinet .hero__content--right {
  width: 50%;
}
.page-cabinet .hero__content--right-image {
  position: relative;
}
.page-cabinet .hero__content--right-image::after {
  content: "";
  display: block;
  max-width: 122px;
  width: 100%;
  background: rgba(250, 248, 244, 0.6);
  backdrop-filter: blur(3px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-cabinet .hero__content--right-image img {
  width: 100%;
  display: block;
}
.page-cabinet .hero__content--right img {
  display: block;
}

.page-cabinet .technologies__content {
  display: flex;
}
.page-cabinet .technologies__content img {
  display: block;
}
.page-cabinet .technologies__content--left {
  max-width: 732px;
  width: 100%;
  position: relative;
  height: fit-content;
}
.page-cabinet .technologies__content--left::after {
  content: "";
  display: block;
  background: rgba(250, 248, 244, 0.5019607843);
  backdrop-filter: blur(3px);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.page-cabinet .technologies__content--middle {
  max-width: 992px;
  width: 100%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background: #FAF8F4;
}
.page-cabinet .technologies__content--middle-text {
  padding-left: 350px;
  padding-right: 100px;
}
.page-cabinet .technologies__content--middle-text p {
  max-width: 286px;
  margin-bottom: 40px;
  font-family: "Outfit";
  font-weight: 300;
}
.page-cabinet .technologies__content--middle h2 {
  font-family: "Outfit";
  font-weight: 400;
  font-size: 30px;
  color: #3C3C3B;
  line-height: 40px;
  margin-bottom: 80px;
  margin-top: 0;
  text-transform: uppercase;
}
.page-cabinet .technologies__content--middle img {
  position: absolute;
  z-index: -1;
  left: -390px;
  bottom: 0;
}
.page-cabinet .technologies__content--right {
  max-width: 342px;
  width: 100%;
  position: relative;
}
.page-cabinet .technologies__content--right img {
  width: 100%;
}
.page-cabinet .technologies__content--right::after {
  content: "";
  display: block;
  background: rgba(250, 248, 244, 0.3019607843);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.page-cabinet .valeurs {
  padding-top: 136px;
  padding-bottom: 109px;
}
.page-cabinet .valeurs h2 {
  font-family: "Outfit";
  font-weight: 400;
  font-size: 30px;
  color: #3C3C3B;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 80px;
}
.page-cabinet .valeurs__content {
  max-width: 1240px;
  width: 100%;
  margin: auto;
}
.page-cabinet .valeurs__content--items {
  display: flex;
  justify-content: space-between;
}
.page-cabinet .valeurs__content--items-item {
  max-width: 286px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-cabinet .valeurs__content--items-item p {
  text-align: justify;
  font-family: "Outfit";
  font-weight: 300;
  opacity: 0;
  margin: 0;
}
.page-cabinet .valeurs__content--items-item h3 {
  transition: 0.3s all;
  margin-top: 16px;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 28px;
  color: #3C3C3B;
  font-family: "Outfit";
}
.page-cabinet .valeurs__content--items-item:hover p {
  opacity: 1;
}
.page-cabinet .valeurs__content--items-item:hover h3 {
  color: #EE7135;
}

.valeurs-slider {
  overflow: hidden;
}
.valeurs-slider .swiper-container {
  width: calc(100vw - 70px);
  max-width: 600px;
  background-color: grey;
  overflow: visible;
  padding: 30px 0;
}
.valeurs-slider .swiper-wrapper {
  list-style: none;
  padding: 0;
}
.valeurs-slider .swiper-slide {
  display: block;
  width: auto;
  transition: 0.3s all;
  position: relative;
  transition: 0.3s all;
  z-index: 1;
}
.valeurs-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 686px;
}
.valeurs-slider .swiper-slide-prev {
  transition: 0.3s all;
  z-index: 2;
}
.valeurs-slider .swiper-slide-prev {
  position: relative;
}
.valeurs-slider .swiper-slide-prev::after {
  content: "";
  position: absolute;
  background: rgba(250, 248, 244, 0.4901960784);
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  right: 0;
}
.valeurs-slider .swiper-slide-next {
  position: relative;
}
.valeurs-slider .swiper-slide-next::before {
  content: "";
  position: absolute;
  background: rgba(250, 248, 244, 0.4901960784);
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
}
.valeurs-slider .swiper-slide-active {
  transition: 0.3s all;
  z-index: 9;
  opacity: 1;
  position: relative;
}
.valeurs-slider .swiper-slide-next {
  transition: 0.3s all;
  z-index: 2;
}
.valeurs-slider .swiper-slide-active {
  opacity: 1;
}
.valeurs-slider [class*=swiper-button] {
  background-color: white;
  width: 27px;
  height: 27px;
  border: 3px solid white;
  border-radius: 100%;
}
.valeurs-slider .swiper-button-prev {
  left: -16px;
  border: 1px solid #949494;
  background: transparent;
  height: 48px !important;
  border-radius: 40px;
  width: 48px !important;
  border: none;
}
.valeurs-slider .swiper-button-prev::after {
  content: "";
  background-image: url("../../src/images/arrow-down.svg");
  height: 24px;
  width: 24px;
  transform: rotate(90deg);
}
.valeurs-slider .swiper-button-prev:hover::after {
  content: "";
  background-image: url("../../src/images/arrow-hover.svg");
  height: 24px;
  width: 24px;
  transform: rotate(180deg);
}
.valeurs-slider .swiper-button-prev:hover::after {
  color: #fff;
}
.valeurs-slider .swiper-button-next {
  right: -16px;
  border: 1px solid #949494;
  background: transparent;
  height: 48px !important;
  border-radius: 40px;
  width: 48px !important;
  border: none;
}
.valeurs-slider .swiper-button-next::after {
  content: "";
  background-image: url("../../src/images/arrow-down.svg");
  height: 24px;
  width: 24px;
  transform: rotate(-90deg);
}
.valeurs-slider .swiper-button-next:hover::after {
  content: "";
  background-image: url("../../src/images/arrow-hover.svg");
  height: 24px;
  width: 24px;
  transform: rotate(0deg);
}
.valeurs-slider .swiper-button-next:hover::after {
  color: #fff;
}
.valeurs-slider .swiper-navigation {
  position: relative;
  height: 88px;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  background: #FAF8F4;
}
.valeurs-slider .swiper-navigation .swiper-button-prev {
  left: 341px;
}
.valeurs-slider .swiper-navigation .swiper-button-next {
  right: 341px;
}
.valeurs-slider .swiper-button-prev::after, .valeurs-slider .swiper-button-next::after {
  color: #3F4549;
  font-size: 16px !important;
  z-index: 9 !important;
}
.valeurs-slider .swiper-pagination {
  top: 0 !important;
  bottom: 0 !important;
  margin: auto;
  height: fit-content;
  z-index: 1 !important;
}
.valeurs-slider .swiper-pagination .current-slide {
  color: #3C3C3B;
  font-family: "Jost";
}
.valeurs-slider .swiper-pagination .divider {
  color: #3C3C3B;
}
.valeurs-slider .swiper-pagination .total-slides {
  color: #3C3C3B;
  font-family: "Jost";
}

.technologies-page {
  position: relative;
}
.technologies-page .technologies {
  margin: auto;
  width: 100%;
  padding-top: 0px;
  position: relative;
  z-index: 2;
  max-width: 1240px;
  padding-top: 136px;
}
.technologies-page .technologies__item {
  display: flex;
  margin-bottom: 16px;
}
.technologies-page .technologies__item--content {
  width: 100%;
  display: flex;
  align-items: center;
  background: unset;
  position: relative;
}
.technologies-page .technologies__item--content-bg-text {
  position: absolute;
  z-index: -1;
  display: block;
  height: 100%;
}
.technologies-page .technologies__item--content .button-primary {
  justify-self: flex-start;
}
.technologies-page .technologies__item--content-title {
  margin-bottom: 30px;
}
.technologies-page .technologies__item--content-excerpt p {
  margin-top: 0;
  margin-bottom: 0;
  color: #3C3C3B;
  line-height: 24px;
  font-family: "Outfit";
  text-align: justify;
  font-weight: 300;
}
.technologies-page .technologies__item--content-container {
  width: 100%;
  margin-right: auto;
  margin-left: 138px;
  max-width: 392px;
}
.technologies-page .technologies__item--content-container a {
  text-decoration: unset;
}
.technologies-page .technologies__item--content-container h2 {
  margin-top: 0;
  color: #3C3C3B;
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Outfit";
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
}
.technologies-page .technologies__item--content-container h2::after {
  content: "";
  display: block;
  background: #AFA99F;
  max-width: 286px;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -16px;
}
.technologies-page .technologies__item--image {
  max-width: 498px;
  height: 298px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.technologies-page .technologies__item--image::after {
  content: "";
  display: block;
  max-width: 392px;
  height: 250px;
  background: #FAF8F4;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.technologies-page .technologies__item--image img {
  width: 100%;
  display: block;
  transition: 0.3s all;
  max-width: 392px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 250px;
}
.technologies-page .technologies__item--image:hover img {
  transform: scale(1.1);
}
.technologies-page .technologies__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.technologies-page .technologies__item:nth-child(2n) .technologies__item--content-container {
  margin-left: auto;
  margin-right: 138px;
}
.technologies-page .technologies__item:nth-child(2n) .technologies__item--image img {
  left: 0;
  right: unset;
}
.technologies-page .technologies__item:nth-child(2n) .technologies__item--image::after {
  right: 0;
  left: unset;
}
@media screen and (max-width: 1440px) {
  .technologies-page .technologies__item--content-container {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-right: auto;
  }
  .technologies-page .technologies__item:nth-child(2n) .technologies__item--content {
    padding-left: 0;
  }
  .technologies-page .technologies__item img {
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .technologies-page .technologies__item--image img {
    object-fit: cover;
  }
  .technologies-page .technologies__item--content-container {
    margin-right: 20px;
    margin-left: 20px;
    padding-bottom: 20px;
    padding-top: 10px;
  }
  .technologies-page .technologies__item:nth-child(2n) .technologies__item--content-container {
    margin-left: 20px;
    padding-bottom: 20px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .technologies-page .technologies__item:nth-child(2n) {
    flex-direction: column;
  }
  .technologies-page .technologies__item:nth-child(2n) .technologies__item--content-container {
    margin-left: 0;
  }
  .technologies-page .technologies__item {
    flex-direction: column;
  }
  .technologies-page .technologies__item--image {
    max-width: 100%;
  }
  .technologies-page .technologies__item--content {
    padding-right: 20px;
    order: 2;
    padding: 0;
  }
  .technologies-page .technologies__item--content-title {
    margin-bottom: 0;
  }
  .technologies-page .technologies__item--content-title h2 {
    line-height: 33px;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
  }
  .technologies-page .technologies__item--content-container {
    padding-bottom: 20px;
    padding-top: 10px;
    margin: 0;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.single-hero {
  position: relative;
}
.single-hero img {
  position: absolute;
  right: 21px;
}
.single-hero h1 {
  color: #3C3C3B;
  font-weight: 500;
  font-family: "Outfit";
  font-size: 54px;
  line-height: 74px;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 16px;
}
.single-hero h1::after {
  background: #EE7135;
  content: "";
  display: block;
  height: 1px;
  width: 71%;
}
.single-hero__content {
  background: #FAF8F4;
  width: 80.8%;
  padding-left: 340px;
  padding-top: 88px;
  padding-bottom: 77px;
}
.single-hero__content .breadcrumbs {
  color: #AFA99F;
  font-family: "Outfit";
  line-height: 24px;
  font-weight: 300;
  text-decoration: none;
}
.single-hero__content .breadcrumbs a {
  color: #AFA99F;
  font-family: "Outfit";
  line-height: 24px;
  font-weight: 300;
  text-decoration: none;
}
.single-hero__content .breadcrumbs span {
  font-weight: 300;
  font-size: 16px;
  color: #3C3C3B;
}

.single-equipe__content {
  display: flex;
  max-width: 1240px;
  margin: auto;
  justify-content: space-between;
  padding-top: 136px;
}
.single-equipe__content--left {
  max-width: 392px;
  width: 100%;
}
.single-equipe__content--left img {
  height: 538px;
  object-fit: cover;
}
.single-equipe__content--left .button-secondary {
  margin-top: 32px;
}
.single-equipe__content--right {
  max-width: 710px;
  width: 100%;
}

.page-equipe {
  position: relative;
}
.page-equipe__bg {
  position: absolute;
  bottom: -150px;
  left: 38px;
  z-index: -1;
}

.single-content h2 {
  font-family: "Outfit";
  font-size: 30px;
  color: #3C3C3B;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  margin-top: 0;
}
.single-content h3 {
  margin-top: 0;
  color: #EE7135;
  font-weight: 500;
  font-family: "Outfit";
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 48px;
}
.single-content h4 {
  font-family: "Jost";
  font-size: 22px;
  line-height: 28px;
  color: #414241;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 16px;
}
.single-content p {
  color: #414241;
  font-family: "Outfit";
  font-weight: 300;
  text-align: justify;
  margin-bottom: 16px;
}
.single-content ul {
  padding: 0;
  margin: 0;
  padding-left: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 48px;
}
.single-content ul li {
  font-family: "Outfit";
  font-weight: 300;
  font-size: 16px;
  color: #414241;
  line-height: 24px;
  position: relative;
  align-items: center;
  display: flex;
}
.single-content ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background: #414241;
  margin-right: 10px;
}

.single-content-section p {
  max-width: 816px;
  margin: auto;
  font-weight: 300;
  font-family: "Outfit";
  color: #3C3C3B;
  margin-bottom: 32px;
  text-align: justify;
}
.single-content-section p strong {
  font-weight: 500;
}
.single-content-section p a {
  text-decoration: underline;
  color: #3C3C3B;
  transition: 0.3s all;
}
.single-content-section p a:hover {
  color: #EE7135;
}
.single-content-section h2 {
  max-width: 816px;
  margin: auto;
  color: #EE7135;
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: "Outfit";
  text-transform: uppercase;
  margin-bottom: 32px;
}
.single-content-section h3 {
  max-width: 816px;
  margin: auto;
  font-size: 28px;
  font-weight: 500;
  font-family: "Outfit";
  color: #3C3C3B;
  margin-bottom: 24px;
  line-height: 33px;
}
.single-content-section h4 {
  max-width: 816px;
  margin: auto;
  font-family: "Jost";
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.single-content-section figure {
  max-width: 816px;
  margin: auto;
}
.single-content-section ol, .single-content-section ul {
  max-width: 816px;
  margin: auto;
  margin-top: 38px;
}
.single-content-section ol {
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-left: 18px;
}
.single-content-section ol li {
  color: #3C3C3B;
  font-family: "Outfit";
  font-weight: 300;
}
.single-content-section ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-left: 18px;
}
.single-content-section ul li {
  color: #3C3C3B;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 300;
  font-family: "Outfit";
}
.single-content-section ul li strong {
  display: contents;
}
.single-content-section ul li::before {
  content: "";
  display: block;
  background: #3C3C3B;
  width: 3px;
  height: 3px;
  position: absolute;
  left: -15px;
  top: 10px;
  border-radius: 10px;
}
.single-content-section .wp-block-columns {
  max-width: 816px;
  margin: auto;
  position: relative;
  margin-bottom: 38px;
}
.single-content-section .wp-block-columns .wp-block-column:first-child figure {
  left: -390px;
  width: fit-content;
}
.single-content-section .wp-block-columns .wp-block-column {
  max-width: 498px;
  flex-basis: auto;
  width: auto;
}
.single-content-section .wp-block-columns .wp-block-column figure {
  position: absolute;
  height: 100%;
  width: 100%;
}
.single-content-section .wp-block-columns .wp-block-column figure img {
  height: 100%;
}

.single-page {
  position: relative;
}
.single-page .single-hero {
  margin-bottom: 64px;
}

.custom-block {
  margin: auto;
  margin-top: 32px;
  margin-bottom: 32px;
  max-width: 675px;
}
.custom-block__author {
  text-align: right;
  color: #414241;
}
.custom-block__text {
  font-size: 42px;
  line-height: 53px;
  font-weight: 400;
  font-family: "Outfit";
  margin: 0 auto;
}
.custom-block__author {
  margin-bottom: 0;
  text-align: right !important;
}

.single-traitements .single-hero__content {
  padding-left: 552px;
}

.page-taxonomy {
  position: relative;
}
.page-taxonomy .taxonomy {
  padding-top: 136px;
}
.page-taxonomy .taxonomy__content--post {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
.page-taxonomy .taxonomy__content--post-title {
  display: flex;
  position: relative;
  margin-bottom: 60px;
}
.page-taxonomy .taxonomy__content--post-title::after {
  content: "";
  display: block;
  background: #EE7135;
  height: 1px;
  max-width: 286px;
  width: 100%;
  position: absolute;
  bottom: -30px;
  left: -103px;
}
.page-taxonomy .taxonomy__content--post-number {
  height: fit-content;
  position: absolute;
  left: -103px;
  top: 0;
  letter-spacing: 2px;
  color: #EE7135;
  font-size: 30px;
  line-height: 40px;
  font-family: "Outfit";
  font-weight: 300;
}
.page-taxonomy .taxonomy__content--post-item {
  display: flex;
  justify-content: flex-end;
  column-gap: 138px;
  justify-content: flex-end;
  column-gap: 138px;
  z-index: 9;
  position: relative;
}
.page-taxonomy .taxonomy__content--post-left {
  max-width: 498px;
  width: 100%;
}
.page-taxonomy .taxonomy__content--post-left .button-secondary {
  margin-top: 92px;
}
.page-taxonomy .taxonomy__content--post-left .post-item__description p {
  font-family: "Outfit";
  font-weight: 300;
  max-width: 392px;
  text-align: justify;
}
.page-taxonomy .taxonomy__content--post-left h2 {
  max-width: 392px;
  margin: 0;
}
.page-taxonomy .taxonomy__content--post-left h2 a {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3C3C3B;
  text-decoration: none;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
}
.page-taxonomy .taxonomy__content--post-right {
  max-width: 944px;
  width: 100%;
}
.page-taxonomy .taxonomy__content--post-right .post-item__images {
  position: relative;
  height: 480px;
}
.page-taxonomy .taxonomy__content--post-right .post-item__image {
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
}
.page-taxonomy .taxonomy__content--post-right .post-item__blured-image {
  width: fit-content;
  position: absolute;
  right: 0;
  z-index: -1;
  bottom: 0;
}
.page-taxonomy .taxonomy__content--post-right .post-item__blured-image::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: rgba(250, 248, 244, 0.5019607843);
  backdrop-filter: blur(2px);
  height: 100%;
  top: 0;
}
.page-taxonomy .taxonomy__content--etape {
  position: relative;
  height: 900px;
}
.page-taxonomy .taxonomy__content--etape img {
  position: absolute;
  z-index: -1;
  width: 100%;
  display: block;
  height: 100%;
}
.page-taxonomy .taxonomy__content--etape-left {
  height: 100%;
  display: block;
  width: 50%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}
.page-taxonomy .taxonomy__content--etape-left h2 {
  margin: 0;
  padding-top: 88px;
  padding-bottom: 62px;
  max-width: 528px;
  margin-left: auto;
  margin-right: 92px;
  font-family: "Outfit";
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 30px;
}
.page-taxonomy .taxonomy__content--etape-item {
  max-width: 528px;
  margin-left: auto;
  margin-right: 92px;
}
.page-taxonomy .taxonomy__content--etape-rows {
  display: flex;
  column-gap: 32px;
  margin-bottom: 40px;
}
.page-taxonomy .taxonomy__content--etape-title {
  font-size: 22px;
  color: #3C3C3B;
  line-height: 28px;
  font-family: "Jost";
}
.page-taxonomy .taxonomy__content--etape-text {
  max-width: 222px;
}
.page-taxonomy .taxonomy__content--etape-text p {
  font-family: "Outfit";
  text-align: justify;
  font-weight: 300;
  line-height: 24px;
  font-size: 16px;
}
.page-taxonomy .taxonomy__content--etape-count {
  display: flex;
  color: #EE7135;
  font-family: "Outfit";
  font-size: 28px;
  font-weight: 500;
  line-height: 33px;
}
.page-taxonomy .taxonomy__content--etape-count p {
  color: #EE7135;
  font-family: "Outfit";
  font-size: 28px;
  font-weight: 500;
  line-height: 33px;
  margin-left: 8px;
}
.page-taxonomy .taxonomy__content .back-button-section {
  max-width: 1270px;
  margin: auto;
}
.page-taxonomy .taxonomy__content .cliniques__content {
  padding-bottom: 50px;
}
.page-taxonomy .taxonomy .parcours {
  max-width: 1230px;
  margin: auto;
}
.page-taxonomy .taxonomy .parcours h2 {
  color: #3C3C3B;
  margin: 0;
  font-family: "Outfit";
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 30px;
  margin-bottom: 62px;
}
.page-taxonomy .taxonomy .parcours h3 {
  line-height: 33px;
  font-size: 28px;
  font-weight: 400;
  font-family: "Outfit";
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
  transition: 0.3s all;
}
.page-taxonomy .taxonomy .parcours h3::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #AFA99F;
  border-radius: 40px;
  border: 3px solid #EDEAE7;
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.page-taxonomy .taxonomy .parcours__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.page-taxonomy .taxonomy .parcours__wrapper::after {
  content: "";
  display: block;
  background: #AFA99F;
  width: 81%;
  height: 1px;
  position: absolute;
  top: 135px;
  left: 0;
  right: 0;
  margin: auto;
}
.page-taxonomy .taxonomy .parcours__wrapper--item {
  max-width: 223px;
  width: 100%;
}
.page-taxonomy .taxonomy .parcours__wrapper--item-image {
  background: rgba(250, 248, 244, 0.3019607843);
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  height: 135px;
  transition: 0.3s all;
}
.page-taxonomy .taxonomy .parcours__wrapper--item:hover h3 {
  color: #AFA99F;
}
.page-taxonomy .taxonomy .parcours__wrapper--item:hover h3::after {
  background: #EE7135;
}
.page-taxonomy .taxonomy .parcours__wrapper--item:hover .parcours__wrapper--item-image img {
  opacity: 1;
}
.page-taxonomy .taxonomy .parcours__wrapper--item img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: 0.3s all;
}
.page-taxonomy .taxonomy .parcours__wrapper--item h3 {
  text-align: center;
}
.page-taxonomy .taxonomy .parcours__wrapper--item p {
  text-align: center;
  font-family: "Outfit";
}

.page-conseils {
  position: relative;
}
.page-conseils .single-b-bg {
  position: absolute;
  bottom: -160px;
  left: 38px;
  z-index: -1;
}
.page-conseils #conseils-container {
  max-width: 1362px;
  margin: auto;
  padding-top: 93px;
  z-index: 2;
  position: relative;
}
.page-conseils #conseils-container .conseil-item {
  display: flex;
  padding-top: 39px;
  padding-bottom: 39px;
  padding-left: 62px;
  padding-right: 62px;
  justify-content: space-between;
  transition: 0.3s all;
  column-gap: 10px;
  text-decoration: none;
}
.page-conseils #conseils-container .conseil-item .conseil-image {
  max-width: 604px;
  width: 100%;
  height: 100%;
}
.page-conseils #conseils-container .conseil-item .conseil-image img {
  width: 100%;
}
.page-conseils #conseils-container .conseil-item:hover {
  background: #FAF8F4;
}
.page-conseils #conseils-container .conseil-item h3 {
  font-family: "Outfit";
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: 400;
  text-transform: uppercase;
  color: #3C3C3B;
}
.page-conseils #conseils-container .conseil-item .conseil-text {
  max-width: 496px;
  text-decoration: none;
  width: 100%;
}
.page-conseils #conseils-container .conseil-item .conseil-tags {
  display: flex;
  column-gap: 5px;
  margin-bottom: 32px;
}
.page-conseils #conseils-container .conseil-item .conseil-tags p {
  color: #EE7135;
  cursor: pointer;
}
.page-conseils #conseils-container .conseil-item .conseil-tags p:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1700px) {
  .page-home .equipe .bb-equipe {
    z-index: -1;
    width: 19.3vw;
    max-width: 100%;
  }
  .page-home .cabinet__content--right-image {
    width: 61vw;
    height: 100%;
    display: flex;
    justify-content: end;
  }
  .page-home .cabinet__content--right {
    height: 740px;
    display: flex;
    justify-content: end;
  }
  .page-home .pathologies__content {
    column-gap: 30px;
  }
  .page-home .horaires__left {
    width: 45%;
  }
  .page-home .horaires__left img {
    object-fit: cover;
  }
  .page-home .horaires__right {
    width: 55%;
  }
}
@media screen and (max-width: 1440px) {
  .page-home .horaires__hours {
    flex-wrap: wrap;
    height: auto;
    padding: 20px;
  }
  .page-home .horaires__hours--item {
    padding: 10px;
  }
  .page-home .cabinet__content--left {
    left: 11%;
  }
  .page-home .equipe .bb-equipe {
    bottom: 0px;
    top: unset;
  }
  .page-home .appareils__posts--item {
    max-width: 20vw;
  }
  .page-home .appareils {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-home .appareils__posts--item-container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .page-home .appareils__posts--item.active .appareils__posts--item-bottom {
    padding-right: 10px;
    padding-left: 10px;
  }
  .page-home .appareils__posts--item-button a {
    width: 93%;
  }
  .form__content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-home .acces__content {
    padding-right: 20px;
    padding-left: 20px;
  }
  .page-home .conseils__content {
    padding-right: 20px;
    padding-left: 20px;
    column-gap: 20px;
  }
  .page-home .pathologies__content--right-image img {
    height: 100%;
    object-fit: cover;
  }
  .treatments__content--titles {
    padding-right: 10px;
    padding-left: 20px;
  }
  .page-home .equipe__content {
    padding-left: 20px;
  }
  .page-home .equipe__content--doctor-right-image .image-blur img {
    object-fit: cover;
  }
  .page-home .horaires__left img {
    object-fit: cover;
  }
  .page-home .horaires__left--button {
    padding-right: 20px;
    padding-left: 10px;
  }
  .page-home .horaires__right--time svg {
    max-width: 24px;
    width: 100%;
  }
  .page-home .horaires__right {
    width: 58%;
  }
  .page-home .horaires__hours {
    padding-left: 10px;
  }
  .site-header__content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .page-home .cabinet__content--left {
    left: 3%;
  }
  .page-home .cabinet__content--left-title h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .page-home .cabinet__content--left {
    max-width: 550px;
  }
  .page-home .cabinet__content--left-title {
    column-gap: 20px;
  }
  .page-home .cabinet__content--left-title svg {
    max-width: 65px;
    width: 100%;
  }
  .page-home .cabinet__content--left-title h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .page-home .horaires {
    flex-direction: column;
  }
  .horaires__left {
    width: 100%;
  }
  .page-home .horaires__left--button {
    justify-content: center;
  }
  .page-home .horaires__right {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .page-home .horaires__left {
    width: 100%;
  }
  .page-home .horaires__right--button {
    justify-content: center;
    padding: 0;
  }
  .page-home .horaires__hours {
    justify-content: center;
    padding: 0;
    column-gap: 20px;
  }
  .pathologies__content--left-image {
    width: 100%;
    max-width: 250px;
  }
  .cliniques__content {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    align-items: center;
  }
  .cliniques__content--left {
    text-align: center;
  }
  .cliniques__content--button {
    margin: auto;
    margin-top: 30px;
  }
  .cliniques__content--right {
    max-width: 520px;
  }
  .page-home .conseils__content {
    flex-direction: column;
  }
  .page-home .conseils__content--left {
    margin-bottom: 50px;
  }
  .page-home .conseils__content--left h2 {
    margin-bottom: 30px;
  }
  .page-home .appareils__posts p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .cabinet__content {
    flex-direction: column;
  }
  .page-home .cabinet__content--left {
    position: inherit;
    left: unset;
    top: unset;
    margin: auto;
    padding-right: 10px;
    padding-left: 10px;
  }
  .page-home .cabinet__content--right {
    height: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
  .page-home .cabinet__content--right-image {
    width: 100%;
  }
  .page-home .cabinet__content--left-text p {
    text-align: justify;
  }
  .page-home .cabinet__content--left-text {
    max-width: 100%;
  }
  .cabinet__content--left-contacts {
    justify-content: center;
  }
  .equipe__content--doctor-right {
    display: none;
  }
  .page-home .equipe__content {
    justify-content: center;
    padding-right: 20px;
  }
  .page-home .equipe__content--doctor-left h3 {
    margin-top: 20px;
  }
  .page-home .equipe__content--doctor-right-doctor {
    height: 400px;
    object-fit: contain;
  }
  .page-home .equipe__assisstants {
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
  .page-home .equipe__assisstants--container {
    justify-content: center;
  }
  .page-home .equipe .bb-equipe {
    top: 50px;
    bottom: unset;
  }
  .page-home .equipe {
    padding-bottom: 0;
  }
  .page-home .equipe__content--doctor-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-home .equipe__content--doctor-left-text {
    text-align: center;
    max-width: 100%;
  }
  .treatments__content .treatments__content--images {
    height: 400px;
  }
  .treatments__content--wrapper {
    flex-direction: column;
  }
  .treatments__content--titles {
    padding-top: 110px;
  }
  .page-home .appareils__posts {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-home .horaires__right--button {
    padding-right: 20px;
    padding-left: 20px;
  }
  .page-home .appareils__posts--item {
    max-width: 200px;
  }
  .pathologies__content--left-image {
    max-width: 200px;
  }
  .page-home .pathologies__content--right-image {
    max-width: 200px;
    display: none;
  }
  .page-home .pathologies__content--text {
    padding-right: 20px;
  }
  .page-home .pathologies__content--text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .page-home .horaires__hours--item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-home .cabinet__content--right-image::after {
    max-width: 200px;
  }
  .page-home .cabinet__content--right-image::before {
    max-width: 110px;
  }
  .page-home .horaires__hours {
    flex-wrap: wrap;
    height: 100%;
    justify-content: flex-start;
  }
  .cliniques__content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pathologies {
    padding-bottom: 50px;
  }
  .page-home .conseils__content--posts-hidden {
    opacity: 1;
  }
  .page-home .conseils__content--posts-item {
    background: #fff;
    max-width: 270px;
  }
  .page-home .conseils__content--posts {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }
  .page-home .conseils__content--posts-item-bottom {
    padding-bottom: 20px;
  }
  .page-home .conseils__content--posts-item h4 {
    font-size: 18px;
  }
  .page-home .conseils__content--posts-hidden p {
    padding-left: 0;
    padding-right: 0;
  }
  .page-home .conseils__content--posts-hidden {
    padding-left: 20px;
    padding-right: 20px;
  }
  .conseils__content--posts-item-button a {
    max-width: 200px !important;
  }
  .button-secondary:hover::after {
    max-width: 170px !important;
  }
  .page-home .acces__content--hours {
    flex-wrap: wrap;
    height: 100%;
  }
  .page-home .conseils__content {
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
  }
  .page-home .conseils__content--left {
    text-align: center;
  }
  .page-home .acces {
    padding-top: 50px;
  }
  .page-home .acces__content {
    flex-direction: column;
  }
  .page-home .acces__content--right {
    margin-top: 30px;
  }
  .page-home .acces__content--right-button-rdv {
    justify-content: flex-start;
  }
  .form__content {
    flex-direction: column;
  }
  .form__content--left img {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .page-home .horaires__right--button {
    column-gap: 40px;
  }
  .page-home .horaires__right--time {
    max-width: 200px;
    width: 100%;
  }
  .treatments__content h2 {
    font-size: 36px;
  }
  .treatments__content--title h3 {
    font-size: 24px;
  }
  .form__content--left h2 {
    font-size: 36px;
  }
  .page-home .cabinet__content--left-title h1 {
    font-size: 28px;
  }
  .pathologies__content--left-image {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .page-home .pathologies__content {
    flex-direction: column;
    padding: 0 20px;
  }
  .page-home .horaires__hours {
    justify-content: center;
  }
}
@media screen and (max-width: 1300px) {
  .single-equipe__content--right {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-hero__content {
    padding-left: 100px;
  }
  .single-traitements .single-hero__content {
    padding-left: 100px;
  }
}
@media screen and (max-width: 960px) {
  .single-hero h1 {
    font-size: 42px;
    line-height: 55px;
  }
  .single-hero__content {
    padding-left: 50px;
  }
  .single-hero img {
    max-width: 200px;
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .single-equipe__content {
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    row-gap: 20px;
  }
  .back-button-section {
    padding-top: 50px;
  }
  .single-equipe__content--left {
    max-width: 300px;
  }
  .single-equipe__content--left img {
    height: 100%;
  }
  .single-hero__content {
    width: 100%;
  }
  .single-hero img {
    display: none;
  }
}
@media screen and (max-width: 1700px) {
  .page-taxonomy .taxonomy__content--post-left {
    max-width: 598px;
  }
  .page-taxonomy .taxonomy__content--post-number {
    left: 10px;
  }
  .page-taxonomy .taxonomy__content--post-left h2 {
    padding-left: 100px;
  }
  .page-taxonomy .post-item__description {
    padding-left: 100px;
  }
  .page-taxonomy .taxonomy__content--post-title::after {
    left: 10px;
  }
  .page-taxonomy .taxonomy__content--post-left .button-secondary {
    margin-left: 100px;
  }
  .page-taxonomy .taxonomy__content--post-right .post-item__blured-image {
    width: 43vw;
    max-width: 732px;
  }
  .page-taxonomy .taxonomy__content--post-right .post-item__image {
    width: 100%;
  }
  .page-taxonomy .taxonomy__content--post-item {
    padding: 0 20px;
  }
  .page-taxonomy .taxonomy__content--post-right .post-item__images {
    width: 53.9vw;
  }
  .page-taxonomy .taxonomy__content--etape {
    height: 100%;
  }
  .page-taxonomy .taxonomy__content--etape img {
    object-fit: cover;
  }
  .page-taxonomy .taxonomy__content--etape-left {
    padding-left: 20px;
  }
  .page-taxonomy .taxonomy__content--etape-left h2 {
    margin: 0;
  }
  .page-taxonomy .taxonomy__content--etape-item {
    margin: 0;
  }
}
@media screen and (max-width: 1100px) {
  .page-taxonomy .post-item__description {
    padding-left: 50px;
  }
  .page-taxonomy .taxonomy__content--post-left h2 {
    padding-left: 60px;
  }
  .page-taxonomy .taxonomy__content--etape-item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
  }
  .page-taxonomy .taxonomy__content--etape-rows {
    flex-direction: column;
    row-gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .page-taxonomy .taxonomy__content--post-item {
    flex-direction: column;
    row-gap: 40px;
  }
  .page-taxonomy .taxonomy__content--post-left {
    max-width: 100%;
  }
  .page-taxonomy .taxonomy__content--post-right {
    display: flex;
    justify-content: end;
  }
  .page-taxonomy .taxonomy__content--post-left h2 {
    padding-left: 100px;
  }
  .page-taxonomy .taxonomy__content--post-right .post-item__images {
    width: 100%;
  }
  .page-taxonomy .taxonomy__content--post-right .post-item__image {
    width: 100%;
  }
  .page-taxonomy .taxonomy__content--post-right .post-item__blured-image {
    width: 60vw;
  }
}
@media screen and (max-width: 790px) {
  .page-taxonomy .taxonomy__content--post-right .post-item__images {
    height: 400px;
  }
}
@media screen and (max-width: 600px) {
  .page-taxonomy .taxonomy__content--post-right .post-item__images {
    height: 300px;
  }
  .page-taxonomy .post-item__description {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-taxonomy .taxonomy__content--etape-item {
    padding-right: 10px;
  }
  .page-taxonomy .taxonomy__content--etape-left {
    width: 100%;
  }
}
@media screen and (max-width: 470px) {
  .page-taxonomy .taxonomy__content--post-right .post-item__images {
    height: 200px;
  }
  .page-taxonomy .taxonomy__content--post-left .button-secondary {
    margin: 30px auto;
  }
  .page-taxonomy .taxonomy__content--post-left h2 a {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .page-conseils #conseils-container .conseil-item {
    flex-direction: column;
    padding: 0 20px;
  }
  .page-conseils #conseils-container {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .page-conseils #conseils-container .conseil-item .conseil-image {
    padding-top: 30px;
  }
  .page-conseils #conseils-container .conseil-item {
    align-items: center;
  }
}
@media screen and (max-width: 1600px) {
  .single-traitements .single-hero__content {
    padding-left: 100px;
  }
}
.page-cabinet .technologies {
  padding-top: 136px;
}

@media screen and (max-width: 1600px) {
  .page-cabinet .hero__content--right-image {
    height: 100%;
  }
  .page-cabinet .hero__content--right-image img {
    height: 100%;
  }
  .page-cabinet .technologies__content--right img {
    height: 100%;
  }
  .page-cabinet .technologies {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1400px) {
  .page-cabinet .hero__content--left {
    padding-left: 80px;
    padding-right: 80px;
  }
  .page-cabinet .valeurs__content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .valeurs-slider .swiper-slide img {
    height: 400px;
  }
  .valeurs-slider .swiper-navigation .swiper-button-prev {
    left: 50px;
  }
  .valeurs-slider .swiper-navigation .swiper-button-next {
    right: 50px;
  }
}
@media screen and (max-width: 1120px) {
  .page-cabinet .hero__content {
    flex-direction: column;
  }
  .page-cabinet .hero__content--left {
    width: 100%;
    justify-content: flex-start;
    column-gap: 20px;
  }
  .page-cabinet .hero__content--right {
    width: 100%;
  }
  .page-cabinet .technologies__content--left {
    display: none;
  }
  .page-cabinet .technologies__content--middle {
    max-width: 100%;
    padding-bottom: 0;
    padding-top: 30px;
  }
  .page-cabinet .technologies__content--middle-text {
    padding: 0;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .page-cabinet .technologies__content--middle img {
    position: initial;
    height: 400px;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .page-cabinet .technologies__content--middle img {
    display: none;
  }
  .page-cabinet .technologies__content--middle {
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .page-cabinet .technologies__content--middle-text {
    padding: 0;
  }
  .page-cabinet .valeurs__content--items-item p {
    opacity: 1;
  }
  .page-cabinet .valeurs__content--items {
    flex-wrap: wrap;
    column-gap: 20px;
  }
  .page-cabinet .hero__content--left {
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-cabinet .hero__content--left img {
    max-width: 100px;
    height: 100%;
  }
  .page-cabinet .valeurs__content--items-item {
    max-width: 230px;
  }
}
@media screen and (max-width: 600px) {
  .valeurs-slider .swiper-slide img {
    height: 300px;
  }
  .page-cabinet .technologies__content {
    flex-direction: column;
    align-items: center;
  }
  .page-cabinet .technologies__content--middle img {
    display: block;
  }
  .page-cabinet .technologies__content--right {
    display: none;
  }
  .page-cabinet .technologies__content--middle {
    padding-top: 50px;
  }
  .page-cabinet .technologies {
    padding-top: 0;
  }
  .page-cabinet .technologies__content--middle-text {
    margin-bottom: 50px;
  }
  .page-cabinet .valeurs h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  .page-cabinet .valeurs {
    padding-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  .page-cabinet .valeurs__content--items {
    justify-content: center;
  }
  .valeurs-slider .swiper-slide img {
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .technologies-page .technologies__item--image img {
    width: 100%;
    max-width: 100%;
  }
  .technologies-page .technologies {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .error404 h1 {
    font-size: 150px !important;
    line-height: 150px !important;
  }
  .error404 .error-404 {
    padding: 0 20px !important;
  }
  .error404 h2 {
    text-align: center;
  }
  .error404 .error-404 .single-b-bg {
    z-index: -1;
  }
  .error404 .error-404 .double-b-bg {
    z-index: -1;
  }
}
.error404 .site-main {
  height: 100vh;
  padding: 0;
}
.error404 header {
  display: none;
}
.error404 footer {
  display: none;
}
.error404 .error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.error404 .error-404 .double-b-bg {
  position: absolute;
  top: 0;
  right: 0;
}
.error404 .error-404 .single-b-bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.error404 h1 {
  font-family: "Outfit";
  font-size: 228px;
  margin: 0;
  line-height: 250px;
  font-weight: 400;
}
.error404 h2 {
  color: #3C3C3B;
  font-size: 42px;
  font-family: "Outfit";
  font-weight: 400;
  margin: 0;
  line-height: 53px;
  margin-bottom: 24px;
}
.error404 p {
  max-width: 604px;
  text-align: center;
  color: #3F4549;
  font-family: "Outfit";
  font-weight: 300;
  margin-bottom: 48px;
}

p {
  margin: 0;
  color: #3C3C3B;
  transition: 0.3s all;
}

main {
  padding-top: 96px;
}

a {
  transition: 0.3s all;
}

.paragraph {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.paragraph p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit";
  color: #3C3C3B;
}

.button-primary {
  max-width: 286px;
  width: 100%;
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.button-primary a {
  font-family: "Jost";
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FAF8F4;
  font-size: 15px;
  max-width: 270px;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  line-height: 22px;
  color: #FAF8F4;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s all;
}
.button-primary:after {
  content: "";
  max-width: 286px;
  height: 32px;
  display: block;
  border: 1px solid #FAF8F4;
  background: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  z-index: -1;
  transition: 0.3s all;
}
.button-primary:hover::after {
  max-width: 270px;
}
.button-primary:hover a {
  background: #EE7135;
  color: #FAF8F4;
}

.back-button-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 136px;
  padding-bottom: 80px;
}

.button-secondary {
  max-width: 286px;
  width: 100%;
  height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  cursor: pointer;
}
.button-secondary a, .button-secondary p, .button-secondary input {
  font-family: "Jost";
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #AFA99F;
  font-size: 15px;
  max-width: 270px;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  line-height: 22px;
  color: #3C3C3B;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s all;
}
.button-secondary:after {
  content: "";
  max-width: 286px;
  height: 32px;
  display: block;
  border: 1px solid #AFA99F;
  background: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  z-index: -1;
  transition: 0.3s all;
}
.button-secondary:hover::after {
  max-width: 270px;
}
.button-secondary:hover a, .button-secondary:hover p, .button-secondary:hover input {
  background: #EE7135;
  color: #FAF8F4 !important;
}

.slider-button {
  display: flex;
  align-items: center;
  border: 1px solid #AFA99F;
  max-width: 270px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
}

.phone-number {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s all;
  height: fit-content;
  width: max-content;
  position: relative;
}
.phone-number::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: #AFA99F;
  position: absolute;
  right: -16px;
}
.phone-number p {
  font-family: "Outfit", serif;
  font-size: 16px;
  color: #3C3C3B;
  font-weight: 300;
  transition: 0.3s all;
}
.phone-number svg {
  transition: 0.3s all;
}
.phone-number:hover p {
  color: #EE7135;
}
.phone-number:hover svg {
  fill: #EE7135;
  transition: 0.3s all;
}
.phone-number:hover svg path {
  stroke: #EE7135;
}

.rdv {
  height: fit-content;
  text-decoration: none;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.rdv::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: #AFA99F;
  position: absolute;
  right: -16px;
}
.rdv:hover p {
  color: #EE7135;
}
.rdv p {
  font-family: "Jost", serif;
  font-weight: 400;
}

.marker-icon {
  display: flex;
}

.contacts-component {
  display: flex;
  align-items: center;
  column-gap: 54px;
  margin-top: 50px;
}
.contacts-component .phone-number {
  column-gap: 8px;
}
.contacts-component .phone-number::after {
  display: none;
}
.contacts-component .marker-icon {
  column-gap: 8px;
  text-decoration: none;
  max-width: 193px;
  align-items: center;
}
.contacts-component .marker-icon svg {
  max-width: 24px;
  width: 100%;
}

.image-blur::after {
  content: "";
  display: block;
  max-width: 139px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5019607843);
  backdrop-filter: blur(13px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.twentytwenty-overlay {
  display: none;
}

#next-slide::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/gray-arrow-right.svg");
  height: 24px;
  width: 24px;
  display: block;
}

#prev-slide::after {
  content: "";
  transition: transform 0.3s ease;
  background-image: url("../../src/images/gray-arrow-right.svg");
  height: 24px;
  width: 24px;
  display: block;
  transform: rotate(-180deg);
}

#next-slide:hover::after {
  background-image: url("../../src/images/orange-arrow-right.svg");
}

#prev-slide:hover::after {
  background-image: url("../../src/images/orange-arrow-right.svg");
}

.cliniques__content {
  display: flex;
  justify-content: space-between;
}

.cliniques__slider--mini-photos,
.cliniques__slider--compare-photos {
  position: relative;
  overflow: hidden;
}

.cliniques__slide {
  display: none;
}

.cliniques__slide.active {
  display: block;
}

.button-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.slider-nav {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: -52% !important;
}

.twentytwenty-handle {
  border: unset !important;
  box-shadow: unset !important;
}

.twentytwenty-left-arrow {
  left: 30% !important;
  width: 0;
  height: 0;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  border-right: 15px solid transparent !important;
  position: relative;
}
.twentytwenty-left-arrow::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -15px;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.twentytwenty-left-arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -15px;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}

.twentytwenty-right-arrow {
  right: -7% !important;
  width: 0;
  height: 0;
  border-top: 10px solid transparent !important;
  border-bottom: 10px solid transparent !important;
  border-left: 15px solid transparent !important;
  position: relative;
}
.twentytwenty-right-arrow::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -15px;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}
.twentytwenty-right-arrow::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -15px;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transform: rotate(-45deg);
}

.breadcrumbs h1 {
  color: #3C3C3B;
  font-weight: 500;
  font-family: "Outfit";
  font-size: 54px;
  line-height: 74px;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
}
.breadcrumbs h1::after {
  background: #EE7135;
  content: "";
  display: block;
  height: 1px;
  width: 80%;
  position: absolute;
  bottom: -10px;
}

.breadcrumbs-links {
  color: #AFA99F;
  font-family: "Outfit";
  line-height: 24px;
  font-weight: 300;
  text-decoration: none;
}
.breadcrumbs-links a {
  color: #AFA99F;
  font-family: "Outfit";
  line-height: 24px;
  font-weight: 300;
  text-decoration: none;
}
.breadcrumbs-links span {
  font-weight: 300;
  font-size: 16px;
  color: #3C3C3B;
}

.show-mobile-only {
  display: none !important;
}

.single-content-section .text-image-block {
  padding-left: 300px;
}
.single-content-section .text-image-block__content {
  display: flex;
  max-width: 1308px;
  margin: auto;
  column-gap: 32px;
}
.single-content-section .text-image-block__text {
  max-width: 498px;
  margin-left: 100px;
  width: 26vw;
}
.single-content-section .text-image-block__image {
  height: fit-content;
}
.single-content-section .text-image-block__image img {
  height: 338px;
}
.single-content-section .text-image-block.left {
  padding-left: 0;
  padding-right: 300px;
}
.single-content-section .text-image-block.left .text-image-block__content {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1600px) {
  .single-content-section .text-image-block {
    padding-left: 87px;
  }
  .single-content-section .text-image-block__content {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1440px) {
  .button-primary {
    max-width: 230px;
  }
  .button-primary a {
    max-width: 210px;
  }
}
@media screen and (max-width: 1400px) {
  .single-content-section .text-image-block:nth-of-type(2n) {
    padding-right: 245px;
  }
  .single-content-section .text-image-block {
    padding-left: 85px;
  }
}
@media screen and (max-width: 1300px) {
  .single-content-section .text-image-block {
    padding: 0;
    padding-right: 0 !important;
  }
  .single-content-section .text-image-block__content {
    flex-direction: column;
    align-items: center;
    max-width: 816px;
  }
  .single-content-section .text-image-block__text {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
  .single-content-section .text-image-block__image {
    width: 100%;
  }
  .single-content-section .text-image-block__image img {
    width: 100%;
    height: 400px;
  }
  .single-content-section .text-image-block:nth-of-type(2n) .text-image-block__content {
    flex-direction: column;
  }
  .single-content-section {
    padding-right: 20px;
    padding-left: 20px;
  }
}
a {
  outline: none;
}

a:focus {
  outline: none !important;
  box-shadow: none;
}

.marker-icon:hover svg {
  stroke: #EE7135;
}
.marker-icon:hover p {
  color: #EE7135;
}

header .marker-icon {
  width: 25px;
}

@media screen and (max-width: 1100px) {
  main {
    padding-top: 56px;
  }
}
@media screen and (max-width: 768px) {
  .show-mobile-only {
    display: block !important;
  }
  .single-traitements .single-hero__content {
    padding-left: 20px;
  }
  .single-content-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .custom-block__text {
    text-align: left;
    font-size: 28px;
    line-height: 36px;
  }
}
@media screen and (max-width: 600px) {
  .single-content-section .text-image-block__image img {
    height: 300px;
    object-fit: cover;
  }
}
@media screen and (max-width: 420px) {
  .single-content-section .text-image-block__image img {
    height: 200px;
  }
}
.acces .marker-icon {
  position: relative;
}
.acces .marker-icon svg path {
  fill: #fff;
}
.acces .marker-icon:hover:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../src/images/arrow-right-white.svg");
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.acces .marker-icon:hover svg {
  opacity: 0;
}
.acces .marker-icon:hover::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../src/images/white-point.svg");
  position: absolute;
  left: 0;
}
.acces .phone-number:hover:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../src/images/arrow-right-white.svg");
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.acces .phone-number:hover svg {
  fill: #fff;
  stroke: #fff;
}
.acces .phone-number:hover svg path {
  stroke: #fff;
}

.page-home .acces__content--hours {
  margin-bottom: 16px;
}

.form__content--left h2 {
  font-size: 30px;
}

.b-logo {
  position: absolute;
  bottom: -150px;
  left: 38px;
  z-index: -1;
}

.wp-block-image.size-full {
  margin-bottom: 10px;
}

.single-content-section .text-image-block.left .text-image-block__text {
  margin-left: unset;
}

.single-content-section ul {
  margin-top: 16px;
  margin-bottom: 16px;
}

.page-home .form__content--left h2 {
  font-size: 42px;
}

.wp-block-image.size-full {
  margin-bottom: 32px;
}

.single-content-section ol {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 1600px) {
  .page-home .cabinet__content--right-image img {
    object-fit: cover;
  }
  .valeurs-slider .swiper-slide img {
    height: 540px;
    object-fit: cover;
  }
  .single-content-section .text-image-block__image img {
    object-fit: cover;
  }
  .page-home .equipe__assisstants--qualification {
    margin-right: 12px;
  }
  .page-home .equipe__assisstants {
    padding-left: 20px;
  }
  .page-cabinet .hero__content--right-image img {
    object-fit: cover;
  }
}
@media screen and (max-width: 1366px) {
  .valeurs-slider .swiper-slide img {
    height: 470px;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu a {
    text-transform: inherit;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 768px) {
  .page-taxonomy .taxonomy {
    padding-top: 50px;
  }
  .page-taxonomy .taxonomy .parcours {
    margin-top: 20px;
  }
  .page-taxonomy .taxonomy .parcours__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .technologies-page .technologies__item--content-container h2 {
    margin-bottom: 20px;
  }
  .technologies-page .technologies__item--content-container h2::after {
    bottom: -11px;
  }
  .technologies-page .technologies__item:nth-child(2n) .technologies__item--content-container {
    margin-right: 0;
  }
  .valeurs-slider .swiper-slide img {
    height: 250px;
  }
  .page-home .horaires {
    flex-direction: column-reverse;
  }
  .page-home .horaires__right {
    flex-direction: column;
  }
  .page-home .horaires__right--button p {
    font-size: 20px;
  }
  .treatments__content--title-container {
    padding-right: 35px;
  }
  .site-footer__bottom p {
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .page-home .cabinet__content--left-title {
    margin-top: 40px;
  }
  .page-home .cabinet__content--left-text {
    margin-top: 40px;
  }
  .contacts-component .marker-icon {
    max-width: 300px;
  }
  .contacts-component {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
  .contacts-component p {
    max-width: 190px;
  }
}
.page-home .cabinet__content--right-image::after {
  backdrop-filter: blur(3px);
}

.image-blur::after {
  backdrop-filter: blur(3px);
}

.page-cabinet .hero__content--left-title .breadcrumbs .breadcrumbs-text p {
  font-size: 18px;
}

.page-cabinet .technologies__content--middle img {
  max-width: 620px;
}

.page-home .horaires__left img {
  object-fit: cover;
}

.page-home .equipe__content--doctor-right-image .image-blur img {
  object-fit: cover;
}

.pathologies__content--left-image {
  object-fit: cover;
}

.single-content-section figure {
  margin: 32px auto;
}

.single-content-section .wp-block-columns .wp-block-column figure img {
  margin: 0;
  object-fit: cover;
  max-width: 678px;
}

.single-content-section .wp-block-columns .wp-block-column figure {
  margin: 0;
}

.single-content-section p {
  margin-bottom: 16px;
}

.single-content-section h2 {
  margin-top: 32px;
}

.single-content-section ul li a {
  color: #3C3C3B;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 300;
  font-family: "Outfit";
}

.single-content-section .wp-block-columns .wp-block-column figure {
  height: 400px;
}

.single-content-section ul li {
  text-align: justify;
}

.custom-block__text {
  font-size: 30px;
  line-height: 35px;
}

strong {
  color: #3C3C3B;
  font-weight: 600 !important;
}

.wp-block-columns .wp-block-column h2 {
  margin-top: 0;
}

.single-content-section .wp-block-columns {
  margin-top: 40px;
  margin-bottom: 60px;
}

.single-content-section h3 {
  margin-top: 24px;
}

.hidden {
  display: none;
}

.marker-icon {
  height: 27px;
}

.form .popup-form input {
  font-family: "Outfit";
}

.wpcf7-not-valid-tip {
  font-family: "Outfit";
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-family: "Outfit";
}

.single-content-section ul li a:hover {
  color: #EE7135;
}

.page-conseils #conseils-container .conseil-item .conseil-text p {
  font-family: "Outfit";
}

.wp-block-columns h3 {
  margin-top: 0;
}

.horaires__hours--day, .acces__content--hours--day {
  position: relative;
  display: flex;
  justify-content: center;
  column-gap: 5px;
}
.horaires__hours--day .tooltip, .acces__content--hours--day .tooltip {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 22px;
  font-family: "Jost";
  white-space: nowrap;
  top: -56px;
  left: 3px;
  opacity: 0;
  transition: 0.3s all;
  cursor: pointer;
}
.horaires__hours--day .tooltip::after, .acces__content--hours--day .tooltip::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.horaires__hours--day svg, .acces__content--hours--day svg {
  cursor: pointer;
}
.horaires__hours--day svg g path, .acces__content--hours--day svg g path {
  stroke: #000;
}
.horaires__hours--day .tooltip-container:hover .tooltip, .acces__content--hours--day .tooltip-container:hover .tooltip {
  opacity: 1;
}

.acces__content--hours--day svg {
  cursor: pointer;
}
.acces__content--hours--day svg g path {
  stroke: #fff;
}

.page-home .acces__content--hours--item:nth-child(2) {
  max-width: 70px;
}

.page-home .acces__content--hours--item:last-child {
  max-width: 70px;
}

.treatments {
  padding-bottom: 100px;
}

.page-home .equipe {
  padding-bottom: 0;
}

.page-home .acces {
  padding-top: 100px;
}

.page-home .acces__content {
  margin-bottom: 50px;
}

.single-content-section {
  overflow: hidden;
}

@media screen and (max-width: 1440px) {
  .page-home .horaires__hours--first-time, .page-home .horaires__hours--second-time {
    font-size: 12px;
  }
  .page-home .horaires__hours--day {
    font-size: 18px;
  }
  .page-home .horaires__hours {
    flex-wrap: nowrap;
  }
  .page-home .horaires__hours--item {
    max-width: 96px;
  }
}
@media screen and (max-width: 1330px) {
  .page-home .horaires__hours {
    flex-wrap: wrap;
  }
  .single-content-section .wp-block-columns {
    flex-direction: column;
  }
  .single-content-section .wp-block-columns .wp-block-column {
    width: 100%;
    max-width: max-content;
  }
  .single-content-section .wp-block-columns .wp-block-column figure {
    position: relative;
    left: 0;
    max-width: max-content;
    width: 100%;
    height: auto;
  }
  .single-content-section .wp-block-columns .wp-block-column:first-child figure {
    left: 0;
  }
  .single-content-section .wp-block-columns .wp-block-column figure img {
    max-width: max-content;
    height: 100%;
    width: 100%;
  }
  .single-content-section .wp-block-columns .wp-block-column {
    max-width: max-content;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .page-taxonomy .taxonomy__content--post-left .button-secondary {
    margin: auto;
    margin-top: 50px;
  }
  .page-taxonomy .taxonomy__content--post-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-taxonomy .post-item__description {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-cabinet .technologies__content--middle img {
    width: 100%;
  }
  .technologies-page .technologies {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-conseils #conseils-container .conseil-item {
    padding: 0 20px;
  }
  .horaires__hours--day .tooltip, .acces__content--hours--day .tooltip {
    top: -48px;
    left: 0px;
    font-size: 12px;
  }
  .horaires__hours--day .tooltip::after, .acces__content--hours--day .tooltip::after {
    left: 60%;
  }
  .acces__content--hours--day .tooltip-container:hover .tooltip {
    left: 10px;
  }
  .acces__content--hours--day .tooltip::after {
    left: 84%;
  }
}
@media screen and (max-width: 550px) {
  .page-cabinet .hero__content--left {
    flex-direction: column;
  }
  .page-cabinet .hero__content--left img {
    display: none;
  }
  .page-cabinet .valeurs__content--items {
    justify-content: space-between;
  }
  .page-home .equipe__assisstants--container {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.site-popup {
  background: #3C3C3B;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: center;
  border-radius: 10px;
  border-radius: 0;
  min-height: 608px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-popup h2 {
  color: #FAF8F4;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 2px;
  font-family: "Outfit";
  font-weight: 400;
  margin: 20px 0;
}

.site-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.site-popup-subtext {
  color: #EE7135;
  font-size: 14px;
  margin-top: 20px;
}

.site-popup-text p {
  color: #FAF8F4;
  font-weight: 300;
  font-family: "Outfit";
}
.site-popup-text p strong {
  color: #FAF8F4;
  font-weight: 400 !important;
}

.site-popup-button {
  border: none;
  cursor: pointer;
  font-family: "Jost";
  font-size: 15px;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FAF8F4;
  margin-top: 80px;
}
/*# sourceMappingURL=style.css.map */
