@charset "UTF-8";
.site-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  border-radius: 0 0 50px 50px;
  background: #FFFFFF;
}
.site-header .rdv-button {
  padding: 16px 40px;
  width: fit-content;
  background: #EBC6BF;
  height: auto;
  border-radius: 40px;
  color: #26384C;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Figtree";
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  text-decoration: none;
}
.site-header .rdv-button p {
  margin: 0;
  transition: 0.3s all;
}
.site-header .rdv-button:hover {
  background: #26384C;
}
.site-header .rdv-button:hover p {
  color: #fff;
}
.site-header__content {
  display: flex;
  align-items: center;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  max-width: 1410px;
}
.site-header__content--right {
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.site-header__content--logo {
  height: 90px;
  display: flex;
  align-items: center;
}
.site-header__content--navigation ul {
  margin: 0;
  list-style: none;
  display: flex;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__content--navigation ul ul {
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 86px;
  left: -15px;
  padding: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background: #FFFFFF;
  border-radius: 0;
  min-width: 208px;
  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: 15px 16px;
  width: 100%;
  text-wrap: nowrap;
  font-weight: 400 !important;
  color: #26384C !important;
  font-size: 16px;
  background: #fff;
}
.site-header__content--navigation ul ul li:hover a {
  color: #26384C !important;
  background: #EBC6BF;
}
.site-header__content--navigation ul ul li:last-child {
  border-radius: 0 0 16px 16px;
}
.site-header__content--navigation ul ul ul {
  background: #FFFFFF;
  min-width: 282px;
  left: 100%;
  top: 0;
}
.site-header__content--navigation ul ul ul li:hover a {
  text-decoration: underline;
}
.site-header__content--navigation ul ul ul .menu-item:hover a {
  position: relative;
}
.site-header__content--navigation ul .sub-menu a {
  text-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  text-transform: inherit;
  letter-spacing: 0;
  padding: 12px 117px 12px 24px;
}
.site-header__content--navigation ul .sub-menu:hover a {
  color: #26384C;
}
.site-header__content--navigation ul .menu-item-has-children ul {
  min-width: auto;
}
.site-header__content--navigation ul .menu-item-has-children .menu-item-has-children a {
  text-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  text-transform: inherit;
  letter-spacing: 0;
  padding: 12px 117px 12px 24px;
}
.site-header__content--navigation ul .menu-item-has-children .menu-item-has-children:hover a {
  color: #26384C;
}
.site-header__content--navigation ul li {
  height: 86px;
  transition: 0.3s all;
}
.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-item a, .site-header .sub-menu a {
  transition: color 0.3s;
}
.site-header .menu-item.active > a, .site-header .menu-item:hover > a {
  color: #C19686;
}
.site-header .menu-item a,
.site-header .menu-item-has-children a {
  color: #26384C;
  font-family: "Figtree", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
}
.site-header .menu-item a:hover,
.site-header .menu-item-has-children a:hover {
  color: #C19686;
}
.site-header .menu-item-has-children::before,
.site-header .menu-item-has-children::after {
  content: "";
  position: absolute;
  right: -14px;
  width: 1px;
  height: 8px;
  background-color: #C19686;
  transition: transform 0.3s ease;
}
.site-header .menu-item-has-children .menu-item-has-children::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../../src/images/minus.svg");
  background-color: unset;
}
.site-header .menu-item-has-children .menu-item-has-children::after {
  display: none;
}
.site-header .menu-item-has-children:hover .menu-item-has-children::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 1px solid #26384C;
  border-right: 1px solid #26384C;
  padding: 5px;
}
.site-header .menu-item-has-children:hover .menu-item-has-children:hover::before {
  transform: rotate(-135deg);
  right: 15px;
}
.site-header .menu-item-has-children:hover .menu-item-has-children::after {
  display: none;
}
.site-header .menu-item-has-children:hover .sub-menu {
  padding-bottom: 0;
  border-radius: 0 0 0 24px;
}
.site-header .menu-item-has-children:hover .sub-menu .sub-menu {
  padding-bottom: 0;
  border-radius: 0 20px 20px 20px;
  min-width: 193px;
  overflow: hidden;
}
.site-header .menu-item-has-children ul .menu-item .menu-item a {
  padding-left: 17px;
}
.site-header .menu-item-has-children .menu-item-has-children .menu-item a {
  padding-left: 24px;
}
.site-header .menu-item-has-children .menu-item-has-children::before,
.site-header .menu-item-has-children .menu-item-has-children::after {
  background-color: unset;
}
.site-header .menu-item-has-children::before {
  transform: rotate(43deg);
  top: 50%;
  margin-top: -4px;
}
.site-header .menu-item-has-children:hover::before {
  transform: rotate(-43deg);
  top: 50%;
}
.site-header .menu-item-has-children:hover::after {
  transform: rotate(43deg);
  background: #C19686;
  top: 50%;
}
.site-header .menu-item-has-children::after {
  transform: rotate(-43deg);
  top: 50%;
  margin-top: -4px;
  right: -9px;
}
.site-header .menu-item-has-children ul .menu-item-has-children::before {
  right: 20px;
}
.site-header .menu-item-has-children ul .menu-item-has-children::after {
  right: 20px;
}
.site-header .popup-mobile {
  display: none;
}
.site-header .site-header__content-m {
  display: none;
}
.site-header .menu-item-has-children ul .menu-item .menu-item a {
  padding: 12px 24px;
  background: none;
}
.site-header .menu-item-has-children ul .menu-item .menu-item a:hover {
  background: #EBC6BF;
}
@media screen and (max-width: 1505px) {
  .site-header .site-header__content--navigation a {
    font-size: 16px;
  }
  .site-header .primary-phone p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .site-header .side-widget {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }
  .site-header .side-widget {
    top: 180px;
  }
  .site-header__content {
    width: 100%;
    column-gap: 20px;
    justify-content: center;
  }
  .site-header__content--navigation {
    max-width: 870px;
    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 .primary-phone {
    max-width: 155px;
    width: 100%;
  }
  .site-header__content--logo {
    max-width: 255px;
    width: 100%;
  }
  .site-header__content--logo svg {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .site-header {
    display: flex;
    height: 50px;
    padding: 0;
    background: #fff;
    border-radius: 0;
  }
  .site-header .site-header__content-m {
    align-items: center;
  }
  .site-header .site-header__content-m--right {
    height: 38px;
    width: 38px;
    background: #EBC6BF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
  }
  .site-header .menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
  }
  .site-header .rdv-button {
    margin: auto;
    text-decoration: none;
    margin-top: 30px;
  }
  .site-header .site-header__content-m {
    display: flex;
    height: 50px;
    z-index: 99;
    background: transparent;
  }
  .site-header .site-header__content-m a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
  }
  .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: 40px;
  }
  .site-header__content-m--right {
    display: flex;
    margin-right: 20px;
    width: 100%;
    max-width: 144px;
    align-items: center;
    justify-content: flex-end;
  }
  .site-header__content-m--right a {
    max-width: 32px;
    width: 100%;
    height: 32px;
  }
  .site-header__content-m--right img {
    max-width: 32px;
    width: 100%;
    height: 32px;
  }
  .site-header__content-m--burger-menu {
    max-width: 24px;
    width: 100%;
    height: 27px;
    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: #26384C;
  }
  .site-header__content-m--burger-menu.active .site-header__content-m--burger-line:nth-child(1) {
    transform: rotate(45deg);
    bottom: 0;
    top: 0;
    margin: auto;
  }
  .site-header__content-m--burger-menu.active .site-header__content-m--burger-line:nth-child(2) {
    opacity: 0;
  }
  .site-header__content-m--burger-menu.active .site-header__content-m--burger-line:nth-child(3) {
    transform: rotate(135deg);
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.blured {
    filter: blur(0px);
  }
  .site-header .menu-item-has-children::before {
    right: 0;
  }
  .site-header .menu-item-has-children::after {
    right: 0;
  }
  .site-header .popup-mobile {
    position: absolute;
    background: linear-gradient(0deg, rgb(244, 242, 238) 0%, rgb(255, 255, 255) 100%);
    top: 53px;
    width: 100%;
    left: 0;
    z-index: 99;
    height: 100vh;
    padding-bottom: 30px;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s all;
    overflow-y: auto;
    display: block;
    background: var(--main-color);
  }
  .site-header .popup-mobile a.open::before, .site-header .popup-mobile a.open::after {
    background: #BA880C;
  }
  .site-header .popup-mobile-container {
    overflow: scroll;
    position: relative;
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 80px;
  }
  .site-header .popup-mobile-container .popup-mobile-container-bg {
    width: 98%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background: #4E4F53;
    opacity: 0.8;
    right: 0;
    left: 0;
    margin: auto;
    top: 75px;
    border-radius: 20px;
    border-top: 2px solid #4993D8;
  }
  .site-header .popup-mobile-container--rdv {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    background: #693D2D;
    margin-top: 50px;
  }
  .site-header .popup-mobile-container--rdv a {
    color: #26384C;
    text-transform: inherit;
    text-decoration: none;
    font-weight: 300;
  }
  .site-header .popup-mobile-container .submenu-toggle {
    cursor: pointer;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: "M PLUS 1";
    font-size: 25px;
    font-weight: 200;
    color: #26384C;
    position: absolute;
    top: 6px;
  }
  .site-header .popup-mobile-container .submenu-toggle::before {
    content: "";
    position: absolute;
    right: -12px;
    width: 1px;
    height: 8px;
    background-color: #26384C;
    transition: transform 0.3s ease;
    transform: rotate(43deg);
    top: 51%;
    margin-top: -4px;
  }
  .site-header .popup-mobile-container .submenu-toggle::after {
    content: "";
    position: absolute;
    right: -12px;
    width: 1px;
    height: 8px;
    background-color: #26384C;
    transition: transform 0.3s ease;
    transform: rotate(-43deg);
    top: 51%;
    margin-top: -4px;
    right: -7px;
  }
  .site-header .popup-mobile-container--contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 32px;
    row-gap: 10px;
    padding-left: 15px;
    padding-left: 0;
    justify-content: center;
    align-items: center;
    max-width: 185px;
    margin: auto;
    position: relative;
  }
  .site-header .popup-mobile-container--contacts::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #4993D8;
    position: absolute;
    top: 7px;
  }
  .site-header .popup-mobile-container--contacts-address {
    display: flex;
    column-gap: 8px;
    align-items: center;
  }
  .site-header .popup-mobile-container--contacts-address svg {
    display: block;
    width: 100%;
    max-width: 24px;
  }
  .site-header .popup-mobile-container--contacts-address a {
    color: #26384C;
    text-transform: inherit;
    font-weight: 300;
  }
  .site-header .popup-mobile-container--contacts-phone {
    display: flex;
    column-gap: 8px;
  }
  .site-header .popup-mobile-container--contacts-phone svg {
    display: block;
    width: 100%;
    max-width: 24px;
  }
  .site-header .popup-mobile-container--contacts-phone a {
    color: #26384C;
    text-transform: inherit;
    font-weight: 300;
  }
  .site-header .popup-mobile-container--contacts a {
    text-decoration: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation {
    position: relative;
  }
  .site-header .popup-mobile .popup-mobile-navigation--svg {
    position: absolute;
    bottom: 0;
    left: 0px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu {
    padding: 0;
    margin-top: 56px;
    list-style: none;
    text-align: center;
    margin: 0;
    max-width: 100%;
    text-align: left;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 210px;
    margin: auto;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu a {
    padding-left: 15px;
    font-size: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .rdv-custom-menu {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .submenu-toggle {
    color: #26384C;
    margin-left: 10px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li {
    margin: 0;
    display: flex;
    padding: 16px 0;
    width: fit-content;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li .sub-menu {
    width: 100%;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li {
    width: 100%;
    text-align: left;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle.open {
    top: 16px;
    right: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle {
    right: 0 !important;
    top: 16px;
    background-image: url("../../src/images/arrow-down.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li li .submenu-toggle.open {
    background-image: url("../../src/images/arrow-up.svg");
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li .submenu-toggle {
    right: -26px;
    height: 40px;
  }
  .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 > a {
    color: #4993D8;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle.open {
    right: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle.open::before {
    transform: rotate(-40deg);
    background: #4993D8;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li.open .submenu-toggle.open::after {
    transform: rotate(40deg);
    background: #4993D8;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a {
    color: #26384C;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: inherit;
    position: relative;
    width: fit-content;
    padding-left: 0;
    text-transform: uppercase;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open {
    color: #fff;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open::before {
    right: 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open::after {
    right: 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children::before, .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::before, .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::after {
    height: 12px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a.open::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a.open::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children > a::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a {
    position: relative;
    width: 100%;
    display: block;
    letter-spacing: normal;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a.open .menu-item-has-children > a::before, .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children a.open .menu-item-has-children > a::after {
    right: 15px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 24px;
    text-align: left;
    position: relative;
    max-width: 210px;
    width: 100%;
    min-width: auto;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a.open::before {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children > a.open::after {
    transform: rotate(0deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children.open {
    background: var(--menu-hover);
    width: 100%;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .menu-item-has-children.open a::after {
    transform: rotate(90deg);
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li {
    padding: 16px 0;
    margin: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu li a {
    font-size: 16px;
    padding-top: 0;
    text-transform: inherit;
    text-align: center;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu a {
    font-size: 16px;
    padding: 0;
    text-align: center;
    padding-top: 0 !important;
    font-weight: 300;
  }
  .site-header .popup-mobile .popup-mobile-container-svg svg {
    position: absolute;
    bottom: 0;
  }
  .site-header .popup-mobile .site-header__content--button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .popup-mobile .open-popup {
    max-width: 327px;
    height: 52px;
    font-weight: 600;
    font-size: 16px;
    justify-self: center;
  }
  .site-header .popup-mobile.active {
    opacity: 1;
    pointer-events: all;
    top: 0px;
    z-index: 9;
    background: #fff;
  }
  .site-header .popup-mobile {
    z-index: 9;
  }
  .site-header__content-side--contacts {
    max-width: 327px;
    margin: auto;
    margin-top: 40px;
  }
  .site-header__content-side--phone {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    justify-content: center;
  }
  .site-header__content-side--phone a {
    color: #373E48;
    text-decoration: none;
    margin-left: 8px;
  }
  .site-header__content-side--map {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__content-side--map a {
    color: #373E48;
    text-decoration: none;
    margin-left: 8px;
  }
}

.site-header.scrolled {
  background: #fff;
}

@media screen and (max-width: 1200px) {
  .menu-item.open > a {
    color: #C19686 !important;
  }
  .menu-item.open .submenu-toggle::before {
    transform: rotate(-40deg) !important;
    background: #C19686 !important;
  }
  .menu-item.open .submenu-toggle::after {
    transform: rotate(40deg) !important;
    background: #C19686 !important;
  }
}
.site-header__content--navigation ul ul li:last-child a {
  border-radius: 0 0 0 25px;
}

.site-header .menu-item-has-children ul .menu-item .menu-item a:hover {
  border-radius: unset;
}
.lang-separators {
    display: flex;
}

.lang-separators a {
    line-height: 0;
    width: 28px;
    height: 28px;
    padding: 2px;
    margin: 0 7px;
}
.lang-separators a img {
  display: none;
}
.lang-separators a:before {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
}
.lang-separators a[data-gt-lang="fr"]:before {
  background-image: url('../img/lang_fr.svg');
}
.lang-separators a[data-gt-lang="en"]:before {
  background-image: url('../img/lang_en.svg');
}

.lang-separators a.gt-current-lang {
  padding: 4px;
  background: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="path-1-inside-1_1108_2258" fill="white"><path d="M0 14C0 6.26801 6.26801 0 14 0C21.732 0 28 6.26801 28 14C28 21.732 21.732 28 14 28C6.26801 28 0 21.732 0 14Z"/></mask><path d="M-2 14C-2 5.71573 4.71573 -1 13 -1C21.2843 -1 28 5.71573 28 14C28 6.8203 21.732 1 14 1C7.37258 1 2 6.8203 2 14H-2ZM28 15C28 23.2843 21.2843 30 13 30C4.71573 30 -2 23.2843 -2 15L2 14C2 20.6274 7.37258 26 14 26C21.732 26 28 20.6274 28 14V15ZM13 30C4.71573 30 -2 23.2843 -2 15V14C-2 5.71573 4.71573 -1 13 -1L14 1C7.37258 1 2 6.8203 2 14C2 20.6274 7.37258 26 14 26L13 30ZM28 0V28V0Z" fill="%2326384C" mask="url(%23path-1-inside-1_1108_2258)"/></svg>');
}

footer {
  background: #26384C;
  z-index: 1;
  position: relative;
}
footer .site-info {
  padding-top: 60px;
  padding-bottom: 39px;
  display: flex;
  max-width: 1410px;
  margin: auto;
  justify-content: space-between;
}
footer .site-info .footer-left {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .site-info .footer-left p {
  color: #AFCACA;
}
footer .site-info .footer-middle, footer .site-info .footer-right {
  max-width: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 73px;
}
footer .site-info .footer-middle .text p, footer .site-info .footer-right .text p {
  font-family: "Figtree";
  font-size: 14px;
  color: #AFCACA;
}
footer .site-info .footer-middle .text p a, footer .site-info .footer-right .text p a {
  color: #AFCACA;
  text-decoration: none;
}
footer .site-info .footer-middle .text p a:hover, footer .site-info .footer-right .text p a:hover {
  text-decoration: underline;
}
footer .site-info .footer-middle ul, footer .site-info .footer-right ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
footer .site-info .footer-middle ul li, footer .site-info .footer-right ul li {
  list-style: none;
}
footer .site-info .footer-middle ul li a, footer .site-info .footer-right ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: "Figtree";
  font-weight: 600;
}
footer .site-info .footer-middle ul li a:hover, footer .site-info .footer-right ul li a:hover {
  text-decoration: underline;
}

.under-footer {
  margin-top: -1%;
  z-index: 0;
  position: relative;
  display: block;
}

.hero, .second {
  position: relative;
}
.hero__video, .second__video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.hero__video iframe,
.hero__video object,
.hero__video embed, .second__video iframe,
.second__video object,
.second__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__video .sound-toggle, .second__video .sound-toggle {
  z-index: 9;
  position: absolute;
  right: 120px;
  bottom: 188px;
}

.cabinet {
  display: flex;
  position: relative;
  justify-content: flex-end;
  column-gap: 150px;
}
.cabinet__left {
  max-width: 570px;
  width: 100%;
  margin-top: 100px;
}
.cabinet__left p {
  margin-bottom: 30px;
  margin-top: 0;
}
.cabinet__left h1 {
  margin-bottom: 20px;
}
.cabinet__left h3 {
  margin-top: 80px;
  margin-bottom: 30px;
}
.cabinet__right {
  max-width: 825px;
  width: 100%;
  display: block;
}
.cabinet .cabinet-logo {
  position: absolute;
  right: 0;
  left: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cabinet .cabinet-phone {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.cabinet-category {
  position: relative;
  z-index: 2;
  margin-top: -158px;
}
.cabinet-category__wrapper {
  position: relative;
  display: flex;
  padding-top: 201px;
  padding-bottom: 270px;
  justify-content: center;
  column-gap: 391px;
}
.cabinet-category__wrapper--left {
  max-width: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cabinet-category__wrapper--left h2 {
  margin-bottom: 100px;
}
.cabinet-category__wrapper .primary-button {
  margin-top: 40px;
}
.cabinet-category__wrapper--right {
  max-width: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cabinet-category__wrapper--right h2 {
  margin-bottom: 100px;
}
.cabinet-category__wrapper--right .primary-button {
  margin-top: 23px;
  background: #AFCACA;
}
.cabinet-category__wrapper .background {
  position: absolute;
  z-index: -1;
  bottom: 0%;
}

.notre-equipe {
  margin-top: -70px;
  z-index: 3;
  position: relative;
  border-radius: 80px 80px 0 0;
  overflow: hidden;
}
.notre-equipe:before {
  content: '';
  background: #fff;
  width: calc(100% - 90px);
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  display: block;
  z-index: 1;
}
.notre-equipe__wrapper {
  display: flex;
  align-items: center;
  column-gap: 117px;
  position: relative;
  z-index: 2;
}
.notre-equipe__wrapper--left {
  max-width: 968px;
  width: 100%;
  background: #e9eef0;
}
.notre-equipe__wrapper--left img {
  display: block;
}
.notre-equipe__wrapper--right {
  max-width: 450px;
  width: 100%;
}
.notre-equipe__wrapper--right p {
  margin-top: 20px;
  margin-bottom: 30px;
}

.nos-valeurs {
  background: #E9EEF0;
}
.nos-valeurs__wrapper {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  position: relative;
  padding-top: 104px;
  padding-bottom: 120px;
}
.nos-valeurs__wrapper .logo-main {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
.nos-valeurs__wrapper--items .item {
  max-width: 210px;
  text-align: center;
}
.nos-valeurs__wrapper--items h3 {
  font-weight: 400;
}
.nos-valeurs__wrapper .first-two {
  display: flex;
  justify-content: space-between;
}
.nos-valeurs__wrapper .rest {
  max-width: 690px;
  width: 100%;
  display: flex;
  margin: auto;
  justify-content: space-between;
  margin-top: 40px;
}
.nos-valeurs__wrapper h2 {
  margin-bottom: 80px;
  text-align: center;
}

.differencie__wrapper {
  display: flex;
  position: relative;
  background: #F1EADF;
}
.differencie__wrapper--left {
  width: 49%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  position: relative;
}
.differencie__wrapper--left .text {
  transition: 0.3s all;
  color: #26384C;
}
.differencie__wrapper--left-container {
  max-width: 330px;
  width: 100%;
  position: absolute;
  top: 100px;
  right: 37%;
}
.differencie__wrapper--middle {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 450px;
  width: 100%;
  height: fit-content;
  z-index: 2;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.differencie__wrapper--middle button {
  padding: 8px 24px;
  background: #EBC6BF;
  border: unset;
  border-radius: 100px;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  font-family: "Figtree";
  transition: 0.3s all;
  cursor: pointer;
  line-height: normal;
  min-height: 64px;
  color: #26384C;
}
.differencie__wrapper--middle button:hover {
  background: #26384C;
  color: #fff;
}
.differencie__wrapper--middle button.active {
  background: #26384C;
  color: #fff;
}
.differencie__wrapper .gradient-background {
  height: 100%;
  max-width: 690px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(90deg, rgba(241, 234, 222, 0) 0%, rgb(241, 234, 222) 40%, rgb(241, 234, 222) 60%, rgba(241, 234, 222, 0) 100%);
  z-index: 1;
}
.differencie__wrapper--right {
  width: 51%;
  height: 800px;
  position: relative;
}
.differencie__wrapper--right img {
  object-fit: cover;
  width: 100%;
  display: block;
  height: 100%;
  transition: opacity 0.5s ease;
}
.differencie__wrapper--right .diff-image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.differencie__wrapper--right .diff-image.active {
  opacity: 1;
  pointer-events: auto;
}
.differencie__wrapper--right .differencie__wrapper--right {
  position: relative;
}

.acces {
  position: relative;
  z-index: 1;
}
.acces .background {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.acces__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1290px;
  margin: auto;
  padding-top: 150px;
  padding-bottom: 67px;
}
.acces__wrapper h2 {
  margin-bottom: 40px;
}
.acces__wrapper .hours-title {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 12px;
}
.acces__wrapper .hours-title p {
  margin: 0;
  font-weight: 600;
  color: #26384C;
  font-size: 20px;
}
.acces__wrapper--address {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-bottom: 24px;
}
.acces__wrapper--address .feedback {
  width: fit-content;
  display: flex;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
  color: #26384C;
  font-weight: 600;
  font-family: "Figtree";
  font-size: 20px;
  transition: 0.3s;
}
.acces__wrapper--address .feedback:hover {
  color: #C19686;
}
.acces__wrapper--address .feedback:hover svg path {
  stroke: #C19686;
}
.acces__wrapper--address .address {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
}
.acces__wrapper--address .address svg {
  width: 24px;
  height: auto;
  margin-top: 4px;
}
.acces__wrapper--address .address p {
  margin: 0;
  font-weight: 600;
  color: #26384C;
  font-size: 20px;
  width: calc(100% - 24px);
}
.acces__wrapper--container {
  max-width: 554px;
  width: 100%;
}
.acces__wrapper--container-right {
  max-width: 690px;
  position: relative;
  height: fit-content;
}
.acces__wrapper--container-right .logo {
  position: absolute;
  left: -90px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.acces__wrapper--container-right .image {
  max-width: 600px;
  width: 100%;
}
.acces__wrapper .location__content--item {
  display: flex;
  column-gap: 42px;
  margin-bottom: 5px;
}
.acces__wrapper .location__content--day {
  max-width: 90px;
  width: 100%;
  font-family: "Figtree";
  font-weight: 400;
  font-size: 16px;
}
.acces__wrapper .location__content--first-time {
  font-family: "Figtree";
  font-weight: 400;
  font-size: 16px;
}
.acces__wrapper .location__content--second-time {
  font-family: "Figtree";
  font-weight: 400;
  font-size: 16px;
}
.acces__wrapper .primary-button {
  margin-top: 40px;
}
.acces__wrapper .current-day {
  color: #C19686;
}

.location__map {
  z-index: -2;
  position: relative;
  pointer-events: all;
}
.location__map #map {
  height: 450px;
}

.vision {
  background: #fff;
  border-radius: 80px 80px 0 0;
  padding-top: 80px;
}
.vision__wrapper {
  max-width: 1530px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
}
.vision__wrapper .left-image {
  width: 100%;
  max-width: 510px;
  margin-right: -80px;
}
.vision__wrapper .right-image {
  width: 100%;
  max-width: 510px;
  margin-left: -80px;
}
.vision__wrapper .middle-circle {
  max-width: 510px;
  width: 100%;
  background: #26384C;
  border-radius: 500px;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 130px 92px;
}
.vision__wrapper .middle-circle h3 {
  color: #fff;
}
.vision__wrapper .middle-circle p {
  color: #fff;
  text-align: center;
  margin: 0;
  margin-top: 10px;
}
.vision__wrapper .middle-circle img {
  position: absolute;
  bottom: -110px;
}

.cabinet-page .nos-valeurs {
  border-radius: 80px 80px 0 0;
  padding-bottom: 65px;
}

.equipe {
  padding-bottom: 100px;
}
.equipe__wrapper {
  max-width: 1050px;
  margin: auto;
  margin-top: 150px;
}
.equipe__wrapper h2 {
  text-align: center;
  margin-bottom: 40px;
}
.equipe__wrapper .equipe-list {
  display: flex;
  column-gap: 30px;
}
.equipe__wrapper .equipe-list .equipe-item {
  max-width: 330px;
  width: 100%;
}
.equipe__wrapper .equipe-list .equipe-item img {
  display: block;
}
.equipe__wrapper .equipe-list .equipe-item h3 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
}
.equipe__wrapper .equipe-list .equipe-item p {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  color: #26384c;
}
.equipe__wrapper .equipe-list .equipe-item a {
  margin: auto;
  color: #26384C;
}
.equipe__wrapper .equipe-list .equipe-item a:hover {
  color: #fff;
}
.equipe__wrapper .assisstants {
  display: flex;
  column-gap: 30px;
}
.equipe__wrapper .assisstants .assisstant {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 210px;
  margin: auto;
  margin-top: 40px;
}
.equipe__wrapper .assisstants .assisstant h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.equipe__wrapper .assisstants .assisstant p {
  margin: 0;
}

.gallery-images {
  overflow: hidden;
  border-radius: 80px;
  overflow: hidden;
  margin-top: -65px;
}
.gallery-images h2 {
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.gallery-images .gallery__wrapper {
  position: relative;
}
.gallery-images .swiper-container {
  width: calc(100vw - 70px);
  max-width: 600px;
  background-color: grey;
  overflow: visible;
  padding: 30px 0;
}
.gallery-images .swiper-wrapper {
  list-style: none;
  padding: 0;
  height: 628px;
}
.gallery-images .swiper-slide {
  display: block;
  width: auto;
  position: relative;
  transition: 0.3s all;
  z-index: 1;
  opacity: 0.3;
}
.gallery-images .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-images .swiper-slide-prev {
  transition: 0.3s all;
  z-index: 2;
}
.gallery-images .swiper-slide-prev {
  position: relative;
}
.gallery-images .swiper-slide-next {
  position: relative;
}
.gallery-images .swiper-slide-active {
  transition: 0.3s all;
  z-index: 9;
  opacity: 1;
  position: relative;
}
.gallery-images .swiper-slide-next {
  transition: 0.3s all;
  z-index: 2;
}
.gallery-images .arrows {
  position: absolute;
  top: 0;
  bottom: 0;
  max-width: 1128px;
  width: 100%;
  right: 0;
  left: 0;
  z-index: 9;
  margin: auto;
  height: 0;
}
.gallery-images .arrows .swiper-button-prev {
  background: #EBC6BF;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  transition: 0.3s all;
}
.gallery-images .arrows .swiper-button-prev::after {
  content: "";
  display: block;
  border-top: 2px solid #26384C;
  border-right: 2px solid #26384C;
  padding: 6px;
  margin-left: 6px;
  transform: rotate(-135deg);
  transition: 0.3s all;
}
.gallery-images .arrows .swiper-button-prev:hover {
  background: #26384C;
}
.gallery-images .arrows .swiper-button-prev:hover::after {
  border-color: #EBC6BF;
}
.gallery-images .arrows .swiper-button-next {
  background: #EBC6BF;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  transition: 0.3s all;
}
.gallery-images .arrows .swiper-button-next::after {
  content: "";
  display: block;
  border-top: 2px solid #26384C;
  border-right: 2px solid #26384C;
  padding: 6px;
  margin-right: 6px;
  transform: rotate(45deg);
  transition: 0.3s all;
}
.gallery-images .arrows .swiper-button-next:hover {
  background: #26384C;
}
.gallery-images .arrows .swiper-button-next:hover::after {
  border-color: #EBC6BF;
}
.gallery-images .swiper-button-prev::after, .gallery-images .swiper-button-next::after {
  display: none;
}
.gallery-images .pages-count {
  position: relative;
  height: 88px;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0;
  background: unset;
}
.gallery-images .swiper-pagination {
  top: 0 !important;
  bottom: 0 !important;
  margin: auto;
  height: fit-content;
  z-index: 1 !important;
}
.gallery-images .swiper-pagination .current-slide {
  color: #222222;
  font-size: 16px;
}
.gallery-images .swiper-pagination .divider {
  color: #222222;
  font-size: 16px;
}
.gallery-images .swiper-pagination .total-slides {
  color: #222222;
  font-size: 16px;
}
.gallery-images .swiper-container {
  width: 100%;
  max-width: 600px;
  overflow: visible;
  padding: 30px 0;
  position: relative;
}
.gallery-images .swiper-wrapper {
  overflow: visible;
}
.gallery-images .swiper-slide {
  transition: 0.3s all;
  z-index: 1;
  transform: scale(0.85);
  opacity: 1;
  filter: contrast(0.8);
}
.gallery-images .swiper-slide-active {
  opacity: 1;
  filter: contrast(1);
  z-index: 10;
  transform: scale(1);
}

.tech-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.tech-slider h2 {
  margin: 50px 0;
  text-align: center;
}

.tech-slider__background {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 900px;
}

.tech-slider__left {
  width: 59%;
  position: relative;
  height: 100%;
}

.tech-slider__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  border-radius: 80px;
  overflow: hidden;
}
.tech-slider__image img {
  height: 100%;
  object-fit: cover;
}

.tech-slider__image.active {
  opacity: 1;
  z-index: 2;
}

.tech-slider__right {
  width: 60%;
  align-items: flex-start;
  gap: 10px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0;
}

.tech-slider__card {
  max-width: 200px;
  opacity: 1;
  transform: translateX(0px);
  position: absolute;
  right: 0;
  max-width: 450px;
  width: 100%;
  height: 100%;
  border-radius: 80px;
  overflow: hidden;
  filter: contrast(0.6);
}

.tech-slider__card img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.tech-slider__center {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 570px;
  height: 100%;
  border-radius: 50px;
  background: #EBC6BF;
  padding: 80px 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tech-slider__titles {
  display: flex;
  flex-direction: column;
}

.tech-slider__title {
  cursor: pointer;
  margin-bottom: 30px;
}
.tech-slider__title h3 {
  color: #26384C;
  font-family: "Tenor Sans";
  font-size: 30px;
  font-weight: 400;
}

.tech-slider__title.active h3 {
  color: #26384C;
}

.tech-slider__text {
  display: none;
  margin-top: 8px;
  font-size: 16px;
  padding-left: 30px;
}

.tech-slider__text.visible {
  display: block;
}

.tech-slider__card:nth-child(1) {
  right: 30%;
  z-index: 4;
}

.tech-slider__card:nth-child(2) {
  right: 20%;
  z-index: 3;
}

.tech-slider__card:nth-child(3) {
  right: 10%;
  z-index: 2;
}

.tech-slider__card:nth-child(4) {
  right: 0%;
  z-index: 1;
}

.tech-slider__container {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.tech-slider__number {
  font-family: "Tenor Sans";
  font-size: 30px;
  font-weight: 400;
}

.tech-slider__card {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  border-radius: 80px;
  overflow: hidden;
  transition: right 0.5s ease, z-index 0.5s;
  filter: contrast(0.6);
  object-fit: cover;
}

.tech-slider__right {
  position: relative;
  height: 100%;
  width: 41%;
}

.tech-slider__nav-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tech-slider__arrow {
  background: #EBC6BF;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  transition: 0.3s all;
  cursor: pointer;
  border: 1px solid #26384C;
  position: relative;
}
.tech-slider__arrow:focus {
  border: 1px solid #26384C;
}
.tech-slider__arrow::after {
  content: "";
  display: block;
  border-top: 2px solid #26384C;
  border-right: 2px solid #26384C;
  padding: 0px;
  transform: rotate(45deg);
  transition: 0.3s all;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -6px;
  margin: auto;
  width: 16px;
  height: 16px;
}
.tech-slider__arrow:hover {
  background: #26384C;
}
.tech-slider__arrow:hover::after {
  border-color: #EBC6BF;
}

.honoraires {
  padding-top: 80px;
  padding-bottom: 130px;
}
.honoraires__wrapper {
  display: flex;
  max-width: 1380px;
  margin: auto;
  justify-content: center;
}
.honoraires__wrapper--left {
  max-width: 690px;
  width: 100%;
  position: relative;
  z-index: -1;
}
.honoraires__wrapper--right {
  max-width: 690px;
  width: 100%;
  background: #E9EEF0;
  border-radius: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: -200px;
}
.honoraires__wrapper--right img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.honoraires__wrapper--right-container {
  max-width: 381px;
  width: 100%;
}

.consulter {
  background: #fff;
  border-radius: 80px;
  padding-top: 80px;
  padding-bottom: 100px;
}
.consulter__wrapper {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.consulter__wrapper--container {
  display: flex;
  justify-content: space-between;
}
.consulter__wrapper--left {
  max-width: 450px;
  width: 100%;
}
.consulter__wrapper--right {
  max-width: 570px;
  width: 100%;
}

.orthodontie-page__wrapper {
  background: #fff;
  border-radius: 80px;
  padding-top: 80px;
  position: relative;
}
.orthodontie-page__wrapper .orthodontie-logo {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
.orthodontie-page__wrapper .orthodontie-subcategories {
  display: flex;
  max-width: 1410px;
  margin: auto;
  column-gap: 30px;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-image {
  margin-bottom: 30px;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-content {
  max-width: 330px;
  margin-left: auto;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-content h2 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 10px;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-content p {
  margin: 0;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-content a {
  margin-top: 30px;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-item {
  max-width: 450px;
  width: 100%;
}
.orthodontie-page__wrapper .orthodontie-subcategories .subcategory-item:nth-child(2n) {
  margin-top: 250px;
}
.orthodontie-page .etapes {
  padding-top: 100px;
  padding-bottom: 100px;
}
.orthodontie-page .etapes h2 {
  text-align: center;
  margin-bottom: 30px;
}
.orthodontie-page .etapes__wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.orthodontie-page .etapes__image {
  width: 100%;
  display: block;
  max-width: 1400px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.orthodontie-page .parcours__answers {
  display: flex;
  height: 730px;
  position: relative;
  max-width: 1410px;
  margin: auto;
}
.orthodontie-page .etapes__wrapper--etape-item {
  position: absolute;
  width: 100%;
  max-width: 450px;
  left: 0%;
  top: 10%;
  display: flex;
  column-gap: 30px;
}
.orthodontie-page .etapes__wrapper--etape-item .image {
  max-width: 90px;
  width: 100%;
}
.orthodontie-page .etapes__wrapper--etape-item .content .primary-button {
  margin-top: 30px;
}
.orthodontie-page .etapes__wrapper--etape-item .content .text ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.orthodontie-page .etapes__wrapper--etape-item .content .text ul li {
  color: #26384C;
}
.orthodontie-page .etapes__wrapper--etape-item .content .etape {
  color: #26384C;
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  margin-bottom: 10px;
}
.orthodontie-page .etapes__wrapper--etape-item p {
  font-size: clamp(0.625rem, 0rem + 0.8333vw, 1rem);
  color: #0F2849;
}
.orthodontie-page .etapes__wrapper--etape-item h3 {
  font-family: "Tenor Sans";
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: #26384C;
  margin-bottom: 10px;
}
.orthodontie-page .etapes__wrapper--etape {
  position: relative;
}
@media screen and (max-width: 1710px) {
  .orthodontie-page .parcours__wrapper {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1550px) {
  .orthodontie-page .parcours__wrapper {
    column-gap: 30px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .orthodontie-page .etapes__wrapper--etape {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 50px;
  }
  .orthodontie-page .etapes {
    padding-top: 58px;
    padding-bottom: 77px;
  }
  .orthodontie-page .etapes__image {
    display: none;
  }
  .orthodontie-page .etapes__wrapper--etape-item {
    transform: none;
    position: static;
    max-width: 330px;
    flex-direction: column;
  }
  .orthodontie-page .etapes__wrapper--etape-item h4 {
    font-size: 20px;
  }
  .orthodontie-page .etapes__wrapper--etape-item p {
    font-size: 18px;
  }
  .orthodontie-page .etapes__wrapper--etape-item .content .etape {
    font-size: 16px;
  }
  .orthodontie-page .parcours__answers {
    display: flex;
    flex-direction: column;
    height: auto;
    row-gap: 48px;
  }
  .orthodontie-page .etapes__wrapper--etape-item h3 {
    font-size: 18px;
  }
  .orthodontie-page .parcours__answers {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    height: auto;
  }
  .orthodontie-page .etapes__wrapper--etape-item .content {
    margin-top: 30px;
  }
  .orthodontie-page .etapes h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .orthodontie-page .etapes__wrapper--etape {
    column-gap: 20px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .orthodontie-page .parcours__wrapper {
    flex-direction: column;
    row-gap: 50px;
    padding: 0;
  }
  .orthodontie-page .parcours__wrapper--categories {
    margin: auto;
    width: 90%;
    margin-left: auto;
  }
  .orthodontie-page .parcours__wrapper--image img {
    width: 90%;
    margin-left: auto;
  }
}

.pedodontie-page {
  background: #F1E9DC;
}
.pedodontie-page .pedodontie-section {
  border-radius: 80px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.pedodontie-page .pedodontie-wrapper {
  display: flex;
  width: 100%;
  height: 600px;
  justify-content: end;
  column-gap: 160px;
}
.pedodontie-page .pedodontie-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  max-width: 450px;
  padding-top: 80px;
}
.pedodontie-page .pedodontie-list a {
  text-decoration: none;
}
.pedodontie-page .pedodontie-item {
  cursor: pointer;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Figtree";
  font-weight: 600;
  font-size: 20px;
  color: #26384C;
}
.pedodontie-page .pedodontie-item .arrow-right-button {
  width: 50px;
  height: 50px;
  background: #EBC6BF;
  border-radius: 50px;
  position: relative;
  transition: 0.3s all;
}
.pedodontie-page .pedodontie-item .arrow-right-button::after {
  transition: 0.3s all;
  content: "";
  display: block;
  border-top: 1px solid #26384C;
  border-right: 1px solid #26384C;
  padding: 5px;
  position: absolute;
  right: 0;
  left: -3px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}
.pedodontie-page .pedodontie-item.active {
  color: #C19686;
}
.pedodontie-page .pedodontie-item.active .arrow-right-button {
  background: #26384C;
}
.pedodontie-page .pedodontie-item.active .arrow-right-button::after {
  border-color: #fff;
}
.pedodontie-page .pedodontie-display {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.pedodontie-page .pedodontie-display__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: background-image 0.4s ease;
}
.pedodontie-page .pedodontie-display__content {
  position: relative;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 360px;
  background: #fff;
  margin: 50px;
  padding: 30px;
  height: auto;
  border-radius: 30px;
}
.pedodontie-page .pedodontie-display__content p {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #26384C;
}
.pedodontie-page .pedodontie-display__item {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}
.pedodontie-page .pedodontie-display__item.active {
  opacity: 1;
}

.category-hero {
  border-radius: 80px;
  padding-top: 80px;
  background: #FCFBF9;
}
.category-hero__wrapper {
  display: flex;
  justify-content: center;
  max-width: 1230px;
  column-gap: 30px;
  margin: auto;
}
.category-hero__wrapper--left {
  max-width: 600px;
  width: 100%;
}
.category-hero__wrapper--right {
  position: relative;
  max-width: 600px;
  width: 100%;
}
.category-hero__wrapper--right p {
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-right: 30px;
  position: relative;
  z-index: 1;
  color: #26384C;
}
.category-hero__wrapper--right img {
  position: absolute;
  top: 0;
  z-index: 0;
}

.category-posts {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #FCFBF9;
}
.category-posts__wrapper {
  max-width: 1290px;
  width: 100%;
  display: flex;
  gap: 150px;
  margin: auto;
}
.category-posts__titles {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.category-posts__titles .arrow-right-button {
  width: 50px;
  height: 50px;
  background: #EBC6BF;
  border-radius: 50px;
  position: relative;
  transition: 0.3s all;
}
.category-posts__titles .arrow-right-button::after {
  transition: 0.3s all;
  content: "";
  display: block;
  border-top: 1px solid #26384C;
  border-right: 1px solid #26384C;
  padding: 5px;
  position: absolute;
  right: 0;
  left: -3px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}
.category-posts__titles a {
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.category-posts__titles a h3 {
  font-size: 20px;
  font-weight: 600;
  color: #26384C;
  text-decoration: none;
  font-family: "Figtree";
  transition: 0.3s all;
}
.category-posts__titles a.active h3 {
  color: #C19686;
}
.category-posts__titles a.active .arrow-right-button {
  background: #26384C;
}
.category-posts__titles a.active .arrow-right-button::after {
  border-color: #fff;
}
.category-posts .category-posts__images {
  min-height: 450px;
  max-width: 690px;
  width: 100%;
  position: relative;
}
.category-posts .post-image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s all;
}
.category-posts .post-image img {
  height: 100%;
  width: 100%;
  transform: scale(0.9);
  transition: 0.3s all;
}
.category-posts .post-image.active {
  opacity: 1;
}
.category-posts .post-image.active img {
  transform: scale(1);
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after, .twentytwenty-vertical .twentytwenty-handle:before, .twentytwenty-vertical .twentytwenty-handle:after {
  background: black !important;
}

.twentytwenty-overlay:hover {
  background: transparent !important;
}

.twentytwenty-handle {
  border: 0px solid black !important;
  background: #000 !important;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  box-shadow: 0 3px 0 black, 0px 0px 12px rgba(51, 51, 51, 0.5) !important;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  box-shadow: 0 -3px 0 black, 0px 0px 12px rgba(51, 51, 51, 0.5) !important;
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  bottom: 24px !important;
  top: unset !important;
  font-size: 22px;
  font-family: "Montserrat";
  letter-spacing: 0;
  background: none;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  bottom: 24px !important;
  top: unset !important;
  font-size: 22px;
  font-family: "Montserrat";
  letter-spacing: 0;
  background: none;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  width: 1px !important;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  width: 1px !important;
}

.twentytwenty-overlay {
  pointer-events: none !important;
}

.twentytwenty-container:hover .twentytwenty-before-label {
  opacity: 0 !important;
}
.twentytwenty-container:hover .twentytwenty-after-label {
  opacity: 0 !important;
}

.twentytwenty-container .cliniques__wrapper--item-images img {
  height: 100%;
}

.twentytwenty-container {
  max-width: 816px;
  width: 100%;
  height: 318px;
  border-radius: 230px;
}

.twentytwenty-handle {
  background-size: contain;
  border: none;
  z-index: 10;
}
.twentytwenty-horizontal .twentytwenty-handle:before {
  margin-bottom: 0px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.twentytwenty-container .cliniques__wrapper--item-images img {
  object-fit: cover;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  margin-top: 0px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.twentytwenty-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.twentytwenty-handle:hover {
  background-image: url("../../src/images/compare-on.png") !important;
}

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

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 69% !important;
}

.twentytwenty-horizontal .twentytwenty-handle:before, .twentytwenty-horizontal .twentytwenty-handle:after {
  margin-left: 0.5px !important;
}

.cliniques__wrapper, .single__wrapper {
  padding: 100px 0;
}
.cliniques__wrapper--title, .single__wrapper--title {
  width: 100%;
  margin: auto;
  max-width: 933px;
}
.cliniques__wrapper--title h2, .single__wrapper--title h2 {
  text-align: center;
  font-family: "Tenor Sans";
  text-transform: inherit;
  color: #26384C;
  font-weight: 400;
}
.cliniques__wrapper--title p, .single__wrapper--title p {
  text-align: center;
  line-height: 30px;
  font-weight: 300;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}
.cliniques__wrapper .cliniques__wrapper--item-title h3, .single__wrapper .cliniques__wrapper--item-title h3 {
  margin-top: 20px;
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}
.cliniques .swiper-slide, .single .swiper-slide {
  transform: scale(0.85) !important;
}
.cliniques .swiper-slide-active, .single .swiper-slide-active {
  transform: scale(1) !important;
}
.cliniques .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .cliniques .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet, .single .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .single .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  background: #EBC6BF;
  opacity: 1;
}
.cliniques .swiper-horizontal > .swiper-pagination-bullets, .cliniques .swiper-pagination-bullets.swiper-pagination-horizontal, .cliniques .swiper-pagination-custom, .cliniques .swiper-pagination-fraction, .single .swiper-horizontal > .swiper-pagination-bullets, .single .swiper-pagination-bullets.swiper-pagination-horizontal, .single .swiper-pagination-custom, .single .swiper-pagination-fraction {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  column-gap: 37px;
  align-items: center;
}
.cliniques .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .single .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #26384C;
  width: 20px;
  height: 20px;
}
.cliniques .swiper-button-prev, .single .swiper-button-prev {
  left: 25%;
  top: 35%;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background: #EBC6BF;
  transition: 0.3s all;
}
.cliniques .swiper-button-prev:hover, .single .swiper-button-prev:hover {
  background: #26384C;
}
.cliniques .swiper-button-prev:hover::after, .single .swiper-button-prev:hover::after {
  color: #EBC6BF;
}
.cliniques .swiper-button-prev::after, .single .swiper-button-prev::after {
  width: 20px;
  height: 20px;
  font-size: 15px;
  margin-left: 8px;
  color: #26384C;
  font-weight: 100;
  display: flex;
  align-items: center;
}
.cliniques .swiper-button-next, .single .swiper-button-next {
  right: 25%;
  top: 35%;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background: #EBC6BF;
  transition: 0.3s all;
}
.cliniques .swiper-button-next:hover, .single .swiper-button-next:hover {
  background: #26384C;
}
.cliniques .swiper-button-next:hover::after, .single .swiper-button-next:hover::after {
  color: #EBC6BF;
}
.cliniques .swiper-button-next::after, .single .swiper-button-next::after {
  width: 20px;
  height: 20px;
  font-size: 15px;
  margin-left: 12px;
  color: #26384C;
  font-weight: 100;
  display: flex;
  align-items: center;
}

.contact-page__wrapper {
  background: #FCFBF9;
  max-width: 1410px;
  margin: auto;
  border-radius: 80px;
  display: flex;
}
.contact-page__wrapper--left {
  max-width: 570px;
  width: 100%;
}
.contact-page__wrapper--left img {
  display: block;
}
.contact-page__wrapper--right {
  max-width: 840px;
  width: 100%;
}
.contact-page__section {
  background: #F1E9DC;
}

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

.praticien .contact-page__wrapper--left img {
  border-radius: 0 0 80px 80px;
}

.cv-page .cv-page-section {
  background: #F1E9DC;
}
.cv-page .cv-page-section .cv-page-section__wrapper {
  display: flex;
  max-width: 1410px;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  column-gap: 100px;
  padding: 80px 120px;
  border-radius: 80px;
  background: #FCFBF9;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--left {
  max-width: 450px;
  width: 100%;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--left img {
  display: block;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--left h3 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--left p {
  margin: 0;
  margin-bottom: 30px;
  text-align: center;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--left .primary-button {
  margin: auto;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right {
  max-width: 570px;
  width: 100%;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right p {
  font-size: 16px;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right p strong {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
  color: #26384C;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right p a {
  color: #C19686;
  text-decoration: none;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right p a:hover {
  text-decoration: underline;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.cv-page .cv-page-section .cv-page-section__wrapper .cv-page-section__wrapper--right ul li {
  color: #C19686;
}

.content-page-container {
  background: #F1E9DC;
}
.content-page-container__wrapper {
  max-width: 1170px;
  margin: auto;
  background: #fff;
  border-radius: 80px;
  padding: 80px 120px;
}
.content-page-container__wrapper p {
  margin-bottom: 16px;
  margin-top: 0;
}
.content-page-container__wrapper p a {
  color: #C19686;
  text-decoration: none;
}
.content-page-container__wrapper p a:hover {
  text-decoration: underline;
}
.content-page-container__wrapper .wp-block-columns {
  margin: 16px 0;
}
.content-page-container__wrapper .wp-block-columns figure {
  margin: 0;
}
.content-page-container__wrapper blockquote {
  margin: 0;
  margin-bottom: 32px;
}
.content-page-container__wrapper blockquote p {
  font-family: "Instrument Serif", serif;
  font-size: 35px;
  color: #C19686;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  margin-top: 16px;
  line-height: normal;
}
.content-page-container__wrapper h2, .content-page-container__wrapper h3, .content-page-container__wrapper h5 {
  text-align: center;
  margin: 16px 0;
}
.content-page-container__wrapper h4 {
  margin: 16px 0;
  font-family: "Tenor Sans";
  font-size: 24px;
  font-weight: 400;
}
.content-page-container__wrapper h5 {
  font-size: 20px;
  font-weight: 400;
  color: #26384C;
  font-family: "Figtree";
}
.content-page-container__wrapper ul, .content-page-container__wrapper ol {
  margin: 0;
  padding: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.content-page-container__wrapper ul li, .content-page-container__wrapper ol li {
  color: #26384C;
}
.content-page-container__wrapper ul li::marker, .content-page-container__wrapper ol li::marker {
  color: #C19686;
  font-size: 21px;
}
.content-page-container__wrapper ul li a, .content-page-container__wrapper ol li a {
  color: #C19686;
  text-decoration: none;
}
.content-page-container__wrapper ul li a:hover, .content-page-container__wrapper ol li a:hover {
  text-decoration: underline;
}
.content-page-container__wrapper ol li {
  padding-left: 10px;
}
.content-page-container__wrapper ol li::marker {
  font-size: 16px;
}

.conseils-page .conseils-posts {
  background: #FCFBF9;
  border-radius: 80px;
  padding-top: 80px;
}
.conseils-page .conseils-posts h2 {
  text-align: center;
  margin-bottom: 40px;
}
.conseils-page .conseils-swiper, .conseils-page .conseils-swiper-video {
  height: 700px;
}
.conseils-page .conseils-swiper .swiper-slide, .conseils-page .conseils-swiper-video .swiper-slide {
  text-decoration: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  width: 360px;
  transform: scale(0.85);
  height: auto;
  overflow: hidden;
}
.conseils-page .conseils-swiper .swiper-slide img, .conseils-page .conseils-swiper-video .swiper-slide img {
  height: 370px;
  object-fit: cover;
  width: 100%;
  transition: 0.4s;
  border-radius: 40px;
}
.conseils-page .conseils-swiper .swiper-slide h3, .conseils-page .conseils-swiper-video .swiper-slide h3 {
  font-size: 24px;
  margin-top: 15px;
  text-align: center;
}
.conseils-page .conseils-swiper .swiper-slide.swiper-slide-active, .conseils-page .conseils-swiper-video .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.conseils-page .conseils-swiper .swiper-slide.swiper-slide-active img, .conseils-page .conseils-swiper-video .swiper-slide.swiper-slide-active img {
  height: 450px;
}
.conseils-page .conseils-swiper .swiper-slide.swiper-slide-active h3, .conseils-page .conseils-swiper-video .swiper-slide.swiper-slide-active h3 {
  font-size: 30px;
}
.conseils-page .conseils-swiper .swiper-button-next,
.conseils-page .conseils-swiper .swiper-button-prev, .conseils-page .conseils-swiper-video .swiper-button-next,
.conseils-page .conseils-swiper-video .swiper-button-prev {
  color: #000;
}
.conseils-page .conseils-swiper .swiper-pagination-bullet, .conseils-page .conseils-swiper-video .swiper-pagination-bullet {
  background: #000;
}
.conseils-page .swiper-wrapper {
  align-items: center;
}
.conseils-page .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .conseils-page .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  background: #EBC6BF;
  opacity: 1;
}
.conseils-page .swiper-horizontal > .swiper-pagination-bullets, .conseils-page .swiper-pagination-bullets.swiper-pagination-horizontal, .conseils-page .swiper-pagination-custom, .conseils-page .swiper-pagination-fraction {
  position: relative;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  column-gap: 37px;
  align-items: center;
}
.conseils-page .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #26384C;
  width: 20px;
  height: 20px;
}
.conseils-page .conseils-swiper .swiper-button-prev, .conseils-page .conseils-swiper-video .swiper-button-prev {
  left: 25%;
  top: 45%;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background: #EBC6BF;
  transition: 0.3s all;
}
.conseils-page .conseils-swiper .swiper-button-prev:hover, .conseils-page .conseils-swiper-video .swiper-button-prev:hover {
  background: #26384C;
}
.conseils-page .conseils-swiper .swiper-button-prev:hover::after, .conseils-page .conseils-swiper-video .swiper-button-prev:hover::after {
  color: #EBC6BF;
}
.conseils-page .conseils-swiper .swiper-button-prev::after, .conseils-page .conseils-swiper-video .swiper-button-prev::after {
  width: 20px;
  height: 20px;
  font-size: 15px;
  margin-left: 8px;
  color: #26384C;
  font-weight: 100;
  display: flex;
  align-items: center;
}
.conseils-page .conseils-swiper .swiper-button-next, .conseils-page .conseils-swiper-video .swiper-button-next {
  right: 25%;
  top: 45%;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background: #EBC6BF;
  transition: 0.3s all;
}
.conseils-page .conseils-swiper .swiper-button-next:hover, .conseils-page .conseils-swiper-video .swiper-button-next:hover {
  background: #26384C;
}
.conseils-page .conseils-swiper .swiper-button-next:hover::after, .conseils-page .conseils-swiper-video .swiper-button-next:hover::after {
  color: #EBC6BF;
}
.conseils-page .conseils-swiper .swiper-button-next::after, .conseils-page .conseils-swiper-video .swiper-button-next::after {
  width: 20px;
  height: 20px;
  font-size: 15px;
  margin-left: 12px;
  color: #26384C;
  font-weight: 100;
  display: flex;
  align-items: center;
}
.conseils-page .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  column-gap: 20px;
}
.conseils-page .faq-toggle {
  font-size: 22px;
  transition: transform 0.3s;
  width: 100%;
  max-width: 50px;
  height: 50px;
  background: #EBC6BF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  transition: 0.3s all;
}
.conseils-page .faq-toggle::after {
  content: "";
  display: block;
  height: 2px;
  width: 14px;
  background: #26384C;
  position: absolute;
  transition: 0.3s all;
}
.conseils-page .faq-toggle::before {
  content: "";
  display: block;
  height: 14px;
  width: 2px;
  background: #26384C;
  transition: 0.3s all;
}
.conseils-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.conseils-page .faq-item.active .faq-answer {
  max-height: 500px;
}
.conseils-page .faq-question:hover span {
  color: #C19686;
}
.conseils-page .faq-question:hover .faq-toggle {
  background: #26384C;
}
.conseils-page .faq-question:hover .faq-toggle::after {
  background: #EBC6BF;
}
.conseils-page .faq-question:hover .faq-toggle::before {
  background: #EBC6BF;
}
.conseils-page .faq-item.active span {
  color: #C19686;
}
.conseils-page .faq-item.active .faq-toggle {
  transform: rotate(90deg);
  background: #26384C;
}
.conseils-page .faq-item.active .faq-toggle::after {
  opacity: 0;
}
.conseils-page .faq-item.active .faq-toggle::before {
  background: #EBC6BF;
}
.conseils-page .faq {
  padding-top: 80px;
  background: #FCFBF9;
}
.conseils-page .faq h2 {
  text-align: center;
  margin-bottom: 40px;
}
.conseils-page .faq__wrapper--top {
  display: flex;
  align-items: center;
  max-width: 1170px;
  margin: auto;
  column-gap: 20px;
  justify-content: space-between;
  margin-bottom: 80px;
}
.conseils-page .faq__wrapper--top-left {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.conseils-page .faq__wrapper--top-left span {
  font-weight: 600;
  font-family: "Figtree";
  font-size: 20px;
  color: #26384C;
  transition: 0.3s all;
}
.conseils-page .faq__wrapper--top-right {
  max-width: 570px;
  width: 100%;
}
.conseils-page .faq__wrapper--bottom {
  display: flex;
  align-items: center;
  max-width: 1170px;
  margin: auto;
  column-gap: 20px;
  justify-content: space-between;
}
.conseils-page .faq__wrapper--bottom h2 {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}
.conseils-page .faq__wrapper--bottom-left {
  max-width: 450px;
  width: 100%;
}
.conseils-page .faq__wrapper--bottom-right {
  max-width: 570px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.conseils-page .faq__wrapper--bottom-right span {
  font-weight: 600;
  font-family: "Figtree";
  font-size: 20px;
  color: #26384C;
  transition: 0.3s all;
}
.conseils-page .video-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.conseils-page .video-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.conseils-page .video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.conseils-page .video-play-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: none;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  width: 130px;
  height: 130px;
  cursor: pointer;
  transition: 0.3s all;
}
.conseils-page .video-play-button:hover {
  transform: scale(1.1);
}
.conseils-page .video-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.conseils-page .swiper-slide-prev .video-wrapper, .conseils-page .swiper-slide-next .video-wrapper {
  height: 370px;
}

.breadcrumbs {
  background: #F1E9DC;
  position: relative;
}
.breadcrumbs img {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  height: 100%;
  object-fit: cover;
  width: 100%;
  max-width: 930px;
}
.breadcrumbs__content {
  padding-top: 100px;
  padding-bottom: 290px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  z-index: 1;
  position: relative;
  margin: auto;
}
.breadcrumbs .retour-button {
  display: flex;
  cursor: pointer;
  align-items: center;
  column-gap: 8px;
}
.breadcrumbs .retour-button:hover .arrow {
  background: #26384C;
}
.breadcrumbs .retour-button:hover .arrow::after {
  border-color: #EBC6BF;
}
.breadcrumbs .retour-button p {
  margin: 0;
  font-size: 14px;
  font-family: "Figtree";
  text-transform: uppercase;
  color: #26384C;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}
.breadcrumbs .retour-button .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #EBC6BF;
  position: relative;
}
.breadcrumbs .retour-button .arrow::after {
  content: "";
  display: block;
  border-top: 1px solid #26384C;
  border-right: 1px solid #26384C;
  padding: 0px;
  transform: rotate(-135deg);
  transition: 0.3s all;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 5px;
  margin: auto;
  width: 12px;
  height: 12px;
}
.breadcrumbs .breadcrumbs__lower {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.breadcrumbs .breadcrumbs__lower a, .breadcrumbs .breadcrumbs__lower p, .breadcrumbs .breadcrumbs__lower span {
  font-size: 14px;
  font-family: "Figtree";
  text-transform: uppercase;
  color: #26384C;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}
.breadcrumbs .breadcrumbs__lower p, .breadcrumbs .breadcrumbs__lower span {
  color: #C19686;
}

.contact-page .breadcrumbs .first-image {
  right: unset;
}
.contact-page .breadcrumbs .second-image {
  left: unset;
}
.contact-page .breadcrumbs__content {
  flex-direction: column-reverse;
  row-gap: 28px;
  justify-content: center;
}

body {
  margin-bottom: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, p, span, a, li {
  font-family: "Figtree";
}

h1 {
  font-weight: 400;
  font-size: 50px;
  line-height: 55px;
  font-family: "Tenor sans";
}

h2 {
  font-size: 44px;
  line-height: 48px;
  font-weight: 400;
  font-family: "Tenor sans";
  color: #26384C;
}

h3 {
  font-size: 30px;
  line-height: 40px;
  font-family: "Tenor sans";
  color: #26384C;
}

.primary-button {
  background: #EBC6BF;
  padding: 16.5px 40px;
  font-family: "Figtree";
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 40px;
  text-decoration: unset;
  color: #26384C;
  transition: 0.3s all;
  display: flex;
  width: fit-content;
}
.primary-button:hover {
  color: #fff;
  background: #26384C;
}

.primary-buttons {
  display: flex;
  column-gap: 16px;
}
.primary-buttons a {
  padding: 11px 29px;
  border-radius: 40px;
  border: 1px solid #26384C;
  display: flex;
  width: fit-content;
  transition: 0.3s all;
}
.primary-buttons a:hover {
  background: #26384C;
}
.primary-buttons a:hover path:not(g path) {
  fill: white;
}
.primary-buttons .app-store:hover path {
  fill: white;
}

.heading {
  margin-bottom: -65px;
}
.heading .section-heading {
  position: relative;
  padding-top: 160px;
  padding-bottom: 130px;
  margin-bottom: -50px;
}
.heading .section-heading h1 {
  text-align: center;
}
.heading .section-heading img {
  position: absolute;
  z-index: -1;
  top: 0;
}

.wpcf7 {
  max-width: 570px;
  margin: auto;
  padding-top: 60px;
  /* Сбрасываем стандартный стиль */
  /* Квадратик внутри при чекнутом состоянии */
  /* Чтобы текст красиво шёл рядом */
}
.wpcf7 .wpcf7-submit:hover {
  background: #363C41;
  color: #fff !important;
}
.wpcf7 select {
  width: 100%;
  height: 74px;
  background: #F9F7F4;
  border: unset;
  padding: 0 16px;
  appearance: none;
  cursor: pointer;
}
.wpcf7 .popup-form .form-email-phone {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.wpcf7 .popup-form .form-email-phone p {
  margin: 0;
}
.wpcf7 .popup-form .form-email-phone .form-label {
  margin: 0;
}
.wpcf7 .popup-form-label {
  font-family: "Figtree";
}
.wpcf7 .popup-form-label p {
  font-family: "Figtree";
}
.wpcf7 .nice-select:after {
  height: 8px;
  width: 8px;
  border-bottom: 1px solid #3F4549;
  border-right: 1px solid #3F4549;
  right: 20px;
}
.wpcf7 .nice-select {
  width: 100%;
  height: 74px;
  background: #f4f2ee;
  border: unset;
  padding: 0 10px;
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 10px;
}
.wpcf7 .nice-select span {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  color: #3f4549;
}
.wpcf7 .nice-select .nice-select-dropdown {
  width: 100%;
  z-index: 99;
}
.wpcf7 .nice-select .nice-select-dropdown .list {
  margin: 0;
}
.wpcf7 .nice-select .nice-select-dropdown .list li {
  font-family: "Plus Jakarta Sans";
}
.wpcf7 .nice-select .nice-select-dropdown .list .option.disabled {
  display: none;
}
.wpcf7 .form-radio {
  padding-top: 16px;
}
.wpcf7 .form-radio p .wpcf7-form-control-wrap {
  margin: 0;
  margin-top: 8px;
}
.wpcf7 .form-radio p .wpcf7-form-control-wrap .wpcf7-radio {
  display: flex;
  justify-content: space-between;
}
.wpcf7 .form-radio p .wpcf7-form-control-wrap .wpcf7-radio span {
  margin: 0;
}
.wpcf7 .submit-button input {
  background: #EBC6BF;
  padding: 16.5px 40px !important;
  font-family: "Figtree";
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px !important;
  text-decoration: unset;
  color: #26384C;
  transition: 0.3s all;
  display: flex;
  width: fit-content;
  cursor: pointer;
}
.wpcf7 input {
  width: 100%;
  height: 50px;
  padding-top: 18px;
  padding: 0 !important;
  background: #F5F0EA;
  border: unset !important;
  border: 1px solid transparent !important;
  transition: 0.3s all;
  padding-top: 10px !important;
  padding-left: 20px !important;
  border-radius: 50px !important;
  font-family: "Figtree";
  font-size: 16px;
}
.wpcf7 input:hover, .wpcf7 input:focus {
  border-bottom: 1px solid #E4D8BE;
}
.wpcf7 input:active, .wpcf7 input:hover, .wpcf7 input:focus {
  outline: 0;
  outline-offset: 0;
}
.wpcf7 textarea:hover {
  border: 1px solid #E4D8BE;
}
.wpcf7 textarea {
  background: #F5F0EA;
  border: unset;
  padding-right: 16px;
  color: #373E48;
  font-weight: 400;
  border: 1px solid transparent;
  transition: 0.3s all;
  padding-left: 20px;
  padding-top: 20px;
  font-family: "Figtree";
  height: 130px;
  border-radius: 30px;
}
.wpcf7 textarea:active, .wpcf7 textarea:hover, .wpcf7 textarea:focus {
  outline: 0;
  outline-offset: 0;
}
.wpcf7 .wpcf7-list-item.last {
  margin: 0;
}
.wpcf7 .wpcf7-list-item.last label {
  display: flex;
  column-gap: 8px;
}
.wpcf7 .wpcf7-list-item.last label input {
  max-width: 24px;
  height: 24px;
}
.wpcf7 .submit-button p {
  width: fit-content;
  margin-left: auto;
}
.wpcf7 .wpcf7-form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 20px;
  position: relative;
  cursor: pointer;
  background: transparent;
  vertical-align: middle;
  border-radius: 0 !important;
  background: #F5F0EA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  width: 100%;
}
.wpcf7 .wpcf7-form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background-color: #C19686;
  border-radius: 4px;
}
.wpcf7 .wpcf7-form .wpcf7-list-item-label {
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}
.wpcf7 .form-label {
  position: relative;
}
.wpcf7 .form-label .popup-form-label {
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 19%;
  pointer-events: none;
  transition: 0.3s all;
}
.wpcf7 .form-label .popup-form-label p {
  margin: 0;
  font-size: 16px;
  color: #3F4549;
  font-weight: 400;
  font-family: "Figtree";
  transition: 0.3s all;
}
.wpcf7 .form-label .popup-form-label.active {
  top: 8%;
  left: 20px;
}
.wpcf7 .form-label .popup-form-label.active p {
  font-size: 12px;
}
.wpcf7 .message-field .popup-form-label {
  top: 8%;
}
.wpcf7 .message-field .popup-form-label.active {
  top: 2%;
}
.wpcf7 .last-block {
  position: relative;
}
.wpcf7 .last-block .submit-button {
  width: 100%;
  height: fit-content;
}
.wpcf7 .last-block .submit-button p {
  margin: 0;
  height: fit-content;
  display: flex;
}
.wpcf7 .form-message.form-label {
  height: auto;
  position: relative;
}
.wpcf7 .form-message.form-label .popup-form-label {
  top: 10px;
}
.wpcf7 .form-message.form-label .popup-form-label.active {
  top: 5px;
}
.wpcf7 .form-label {
  margin-bottom: 14px;
}
.wpcf7 .nice-select .nice-select-dropdown .list li {
  color: #363C41;
  background: #F3F0ED;
}
.wpcf7 .nice-select .nice-select-dropdown .list:hover {
  color: #363C41;
  background: #F3F0ED;
}
.wpcf7 .nice-select .option {
  line-height: 50px;
}
.wpcf7 .nice-select .nice-select-dropdown .list li:hover {
  background: #CFC5BB;
  color: #363C41;
}
.wpcf7 .custom-radio .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  margin-right: 30px;
  cursor: pointer;
  font-size: 16px;
}
.wpcf7 .custom-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}
.wpcf7 .custom-radio .wpcf7-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #F5F0EA;
  border-radius: 50%;
  background: #F5F0EA;
  transition: 0.2s;
}
.wpcf7 .custom-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #C19686;
  border-radius: 50%;
}
.wpcf7 .form-radio p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
}
.wpcf7 .form-radio p .wpcf7-form-control-wrap {
  display: block;
  margin-top: 14px;
  margin-bottom: 30px;
}
.wpcf7 .age-field[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.wpcf7 .one-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpcf7 .one-line .form-label {
  max-width: 277px;
  width: 100%;
  height: fit-content;
  margin: 0;
}
.wpcf7 .one-line .form-label p {
  margin: 0;
}
.wpcf7 .another-label {
  justify-content: flex-start;
  column-gap: 12px;
  align-items: end;
}
.wpcf7 .another-label .form-label {
  max-width: 100%;
}
.wpcf7 .another-label .date-field {
  max-width: 180px;
}
.wpcf7 .another-label .date-field input {
  padding-right: 10px !important;
  padding-top: 0 !important;
}
.wpcf7 input[type=date] {
  position: relative;
  padding-right: 40px; /* место под иконку */
}
.wpcf7 input[type=date]::-webkit-calendar-picker-indicator {
  background: url("../../src/images/date.svg") no-repeat center;
  background-size: 20px 20px;
  opacity: 1;
  color: transparent;
}
.wpcf7 input[type=date]::-webkit-inner-spin-button,
.wpcf7 input[type=date]::-webkit-clear-button {
  display: none;
}

.error404 header {
  display: none;
}
.error404 .error-page {
  height: 100vh;
  background: #F1E9DC;
  position: relative;
}
.error404 .error-page__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.error404 .error-page__wrapper img {
  max-width: 462px;
  margin-bottom: 40px;
}
.error404 .image-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.error404 .image-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.side-widget {
  position: fixed;
  top: 0;
  bottom: -10%;
  right: 100px;
  margin: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.side-widget .side-widget-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  row-gap: 8px;
}
.side-widget .icon {
  height: 57px;
  width: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  background: #EBC6BF;
  z-index: 1;
  transition: 0.3s all;
}
.side-widget .info {
  border-radius: 60px;
  background: #EBC6BF;
  padding: 18px 20px;
  margin-left: -48px;
  padding-left: 48px;
  transition: 0.5s all;
  opacity: 0;
  width: max-content;
  width: 0;
  pointer-events: none;
}
.side-widget .info p {
  margin: 0;
  color: #26384C;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s all;
  opacity: 0;
  text-wrap: nowrap;
}
.side-widget .rdv-widget {
  margin-right: 20px;
}
.side-widget .rdv-widget .icon {
  font-size: 18px;
  color: #26384C;
  text-transform: uppercase;
  font-weight: 600;
  background: #AFCACA;
}
.side-widget .rdv-widget:hover .icon {
  color: #AFCACA;
  background: #26384C;
}
.side-widget .mail-widget .info {
  background: #487482;
}
.side-widget .mail-widget .info p {
  color: #FCFBF9;
}
.side-widget .mail-widget .icon {
  background: #487482;
}
.side-widget .location-widget .info {
  background: #26384C;
}
.side-widget .location-widget .info p {
  color: #FCFBF9;
}
.side-widget .location-widget .icon {
  background: #26384C;
}
.side-widget .widget-button {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.side-widget .widget-button:hover .info {
  opacity: 1;
  width: 190px;
  pointer-events: all;
}
.side-widget .widget-button:hover .info p {
  opacity: 1;
}
.side-widget .phone-widget:hover .info {
  width: 190px;
}
.side-widget .mail-widget:hover .info {
  width: 190px;
}
.side-widget .location-widget:hover .info {
  width: 370px;
}

.conseils-page .faq__wrapper--bottom-right {
  max-width: 450px;
}

.conseils-page .faq__wrapper--bottom-left {
  max-width: 570px;
}

.swiper {
  visibility: hidden;
}

.swiper.swiper-initialized {
  visibility: visible;
}

.content-page-container__wrapper p {
  color: #26384C;
}

.content-page-container__wrapper ul, .content-page-container__wrapper ol {
  margin-top: 16px;
  margin-bottom: 16px;
}

.wp-block-column ul, .wp-block-column ul {
  margin: 0;
}

.site-header .menu-item-has-children ul .menu-item .menu-item a {
  text-decoration: none;
}

.conseils-page .faq-item .faq-answer p {
  text-align: justify;
}

.second__video .sound-toggle {
  display: none;
}

.second__video {
  padding-bottom: 52.75%;
}

.tech-slider__container {
  align-items: baseline;
}

.wpcf7 .one-line {
  align-items: start;
  margin-bottom: 16px;
  justify-content: space-between;
}

.wpcf7 .one-line.name-date {
  align-items: end;
}

.wpcf7 {
  max-width: 620px;
  width: 100%;
}

.wpcf7 .one-line .form-label {
  max-width: 300px;
}

.wpcf7 .form-label .popup-form-label p {
  font-size: 14px;
}

.wpcf7 .form-label .popup-form-label {
  top: 20%;
}

.mon-enfant {
  display: flex;
  max-width: 100%;
  width: 100%;
}
.mon-enfant p {
  margin: 0;
  width: 100%;
}

.wpcf7 .message-field .popup-form-label {
  top: 10%;
}

.wpcf7 input[type=date] {
  padding-right: 20px !important;
  padding-top: 0 !important;
}

.wpcf7 .form-radio p .wpcf7-form-control-wrap .wpcf7-radio {
  justify-content: flex-start;
  column-gap: 90px;
}

#age-enfant-wrapper p {
  margin: 0;
  width: 100%;
  font-size: 14px;
}

/* скрываем стандартный input */
.file-upload input[type=file] {
  display: none;
}

.custom-file {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 20px;
}

.codedropz-upload-handler {
  display: none;
}

.custom-file .button-upload {
  display: inline-block;
  background: #eac4c1;
  color: #2c2c2c;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.custom-file span::after {
  margin-left: 8px;
}

.file-hint {
  font-size: 14px;
  margin-top: 10px;
  color: #444;
}

.file-upload br {
  display: none;
}
.file-upload span {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  font-size: 14px;
  letter-spacing: 1px;
}

#file-list {
  margin: 0;
  padding: 0;
}

.dnd-upload-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background: #F5F0EA;
  padding: 15px 13px;
}

.codedropz-upload-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.dnd-upload-status .dnd-upload-details .name {
  justify-content: flex-start;
}

.dnd-upload-status .dnd-upload-image {
  display: none;
}

.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
  display: none !important;
}

.dnd-upload-status .dnd-upload-details .remove-file span:after {
  background-image: url("/wp-content/themes/dr-tho-dang/src/images/trash.svg") !important;
  margin-right: 14px;
  margin-top: 8px;
  width: 24px;
  height: 24px;
}

.dnd-upload-status .dnd-upload-details .name span {
  color: #26384C;
}

.dnd-upload-status {
  transition: 0.3s all;
  border: 1px solid transparent;
}

.dnd-upload-status:hover {
  border: 1px solid #C19686;
}
.dnd-upload-status:hover .dnd-upload-details .name span {
  color: #C19686 !important;
}

.file-upload p {
  margin-bottom: 0;
}
.file-upload .file-hint {
  margin: 0;
}
.file-upload .file-hint p {
  margin: 0;
}

.codedropz-upload-wrapper {
  margin-bottom: 10px;
}

.twentytwenty-left-arrow {
  border: unset !important;
  border-left: 1px solid #26384C !important;
  border-bottom: 1px solid #26384C !important;
  border-right: 0 !important;
  margin: 0 !important;
  padding: 0px !important;
  width: 8px !important;
  height: 8px !important;
  margin-top: 0 !important;
  transform: rotate(45deg) !important;
  left: 25% !important;
  top: 40% !important;
}

.twentytwenty-handle {
  background: #fff !important;
  width: 50px !important;
}

.twentytwenty-right-arrow {
  border: unset !important;
  border-right: 1px solid #26384C !important;
  border-top: 1px solid #26384C !important;
  border-left: 0 !important;
  margin: 0 !important;
  padding: 0px !important;
  width: 8px !important;
  height: 8px !important;
  margin-top: 0 !important;
  transform: rotate(45deg) !important;
  right: 25% !important;
  top: 40% !important;
}

.cliniques__wrapper--item-title h3 {
  color: #26384C;
  font-family: "Figtree";
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-top: 20px;
}

.cliniques__wrapper--item-title p {
  font-size: 16px;
  font-family: "Figtree";
  color: #26384C;
  font-weight: 400;
  text-align: center;
}

.single .swiper {
  background: #F1E9DC;
  padding-top: 50px;
}

.differencie.mobile {
  display: none;
}

.cabinet-category__wrapper .background {
  height: 100%;
}

.cabinet__right img {
  height: 100%;
  object-fit: cover;
}

.cabinet {
  min-height: 860px;
  padding-left: 40px;
}

.acces__wrapper {
  padding-left: 40px;
}

.footer-bottom {
  display: none;
}

.mobile-only {
  display: none;
}

.heading .section-heading img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1600px) {
  .cliniques .swiper-button-prev {
    left: 26%;
  }
  .cliniques .swiper-button-next {
    right: 26%;
  }
  .cliniques .twentytwenty-container {
    height: 16vw !important;
  }
  .conseils-page .conseils-swiper .swiper-button-prev {
    left: 23%;
  }
  .conseils-page .conseils-swiper .swiper-button-next {
    right: 23%;
  }
}
@media screen and (max-width: 1400px) {
  .pedodontie-page .pedodontie-list {
    padding-left: 40px;
  }
  .pedodontie-page .pedodontie-wrapper {
    column-gap: 50px;
  }
  .category-hero__wrapper {
    padding: 0 20px;
  }
  .category-posts__wrapper {
    padding: 0 20px;
    gap: 50px;
  }
  .vision__wrapper .left-image {
    width: 30vw;
  }
  .vision__wrapper .middle-circle {
    width: 416px;
    min-height: auto;
    padding: 75px 92px;
  }
  .vision__wrapper .middle-circle img {
    width: 39%;
    bottom: -90px;
  }
  .vision__wrapper .right-image {
    width: 30vw;
  }
  .consulter__wrapper {
    padding: 0 20px;
  }
  .breadcrumbs__content {
    padding-right: 20px;
    padding-left: 20px;
  }
  .consulter__wrapper--container {
    column-gap: 20px;
  }
  .cv-page .cv-page-section .cv-page-section__wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .cliniques .swiper-button-prev {
    left: 20%;
  }
  .cliniques .swiper-button-next {
    right: 20%;
  }
  .contact-page__wrapper {
    column-gap: 40px;
  }
  .wpcf7 {
    margin-right: 40px;
  }
  .conseils-page .conseils-swiper .swiper-button-prev {
    left: 11%;
  }
  .conseils-page .conseils-swiper .swiper-button-next {
    right: 11%;
  }
  .conseils-page .faq__wrapper--bottom {
    padding: 0 20px;
  }
  .conseils-page .faq__wrapper--top {
    padding: 0 20px;
  }
  .pedodontie-page .pedodontie-display {
    width: 100%;
    height: 600px;
  }
  .pedodontie-page .pedodontie-wrapper {
    flex-direction: column;
    height: 100%;
    align-items: center;
    row-gap: 40px;
  }
  .pedodontie-page .pedodontie-list {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .wpcf7 .one-line {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .wpcf7 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact-page__wrapper--left img {
    height: 100%;
    object-fit: cover;
  }
  .differencie {
    display: none;
  }
  .differencie.mobile {
    display: block;
  }
  .differencie.mobile .differencie__wrapper {
    flex-direction: column;
  }
  .differencie.mobile .differencie__wrapper--left {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .differencie.mobile .differencie__wrapper--left-container {
    right: 0;
    top: 0;
    text-align: center;
    max-width: max-content;
    margin-top: 40px;
    position: static;
  }
  .differencie.mobile .differencie__wrapper--middle {
    position: static;
    max-width: 450px;
    width: 100%;
  }
  .differencie.mobile .differencie__wrapper--right {
    position: absolute;
    z-index: -1;
    top: 14%;
    width: 100%;
    max-width: 400px;
    height: 400px;
    right: 0;
  }
  .differencie.mobile .differencie__wrapper .gradient-background {
    display: none;
  }
  .acces__wrapper--container-right .logo {
    width: 30%;
    left: -42px;
    top: 50px;
  }
  .acces__wrapper--container-right .image {
    max-width: 400px;
  }
  .cabinet__left h1 {
    font-size: 35px;
    line-height: normal;
  }
  .footer-bottom {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  .footer-middle {
    margin-bottom: 27px;
  }
  footer .site-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 27px;
    padding-top: 33px;
  }
  footer {
    z-index: 9;
    border-radius: 50px 50px 0 0;
    margin-top: -58px;
    position: relative;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
  }
  .footer-bottom p {
    margin: 0;
    font-size: 16px;
    font-family: "Figtree";
    color: #AFCACA;
    line-height: normal;
    display: block;
    height: fit-content;
  }
  .footer-bottom p a {
    text-decoration: none;
    color: #AFCACA;
  }
  .footer-bottom p a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 901px) {
  .notre-equipe__wrapper--left {
    max-width: 50.735%;
  }
}
@media screen and (min-width: 901px) and (max-width: 1199.98px) {
  .notre-equipe__wrapper {
    column-gap: 0px;
  }
  .notre-equipe__wrapper--right {
    padding-left: 60px;
  }
}
@media screen and (max-width: 900px) {
  .pedodontie-page .pedodontie-display__content {
    background: rgba(255, 255, 255, 0.8588235294);
    margin: auto;
    margin-top: 50px;
  }
  .pedodontie-page .pedodontie-display__content h2 {
    font-size: 20px;
    line-height: normal;
  }
  .pedodontie-page .pedodontie-section {
    border-radius: 50px;
  }
  .pedodontie-page .pedodontie-list {
    width: 100%;
    padding: 0 20px;
    padding-top: 50px;
  }
  .pedodontie-page .pedodontie-display__content p {
    text-align: justify;
  }
  .conseils-page .faq h2 {
    font-size: 22px;
  }
  .conseils-page .faq-toggle {
    max-width: 40px;
    height: 40px;
  }
  .conseils-page .faq h3 {
    font-size: 20px;
  }
  .conseils-page .conseils-posts {
    border-radius: 50px;
    padding-top: 50px;
  }
  .conseils-page .faq__wrapper--top-left span {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .conseils-page .conseils-swiper {
    height: auto;
    margin-top: 20px;
  }
  .conseils-page .conseils-swiper .swiper-button-prev, .conseils-page .conseils-swiper .swiper-button-next {
    top: 37%;
  }
  .conseils-page .swiper-horizontal > .swiper-pagination-bullets, .conseils-page .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-top: 21px;
    margin-bottom: 50px;
  }
  .conseils-page .conseils-swiper .swiper-button-prev {
    left: 1%;
  }
  .conseils-page .conseils-swiper .swiper-button-next {
    right: 1%;
  }
  .conseils-page .conseils-swiper .swiper-slide img {
    height: 300px;
  }
  .conseils-page .conseils-swiper .swiper-slide.swiper-slide-active h3 {
    font-size: 22px;
  }
  .conseils-page .conseils-swiper .swiper-slide.swiper-slide-active img {
    height: 300px;
  }
  .conseils-page .conseils-swiper-video {
    height: auto;
  }
  .conseils-page .conseils-swiper-video .swiper-button-prev, .conseils-page .conseils-swiper-video .swiper-button-next {
    top: 37%;
  }
  .conseils-page .swiper-horizontal > .swiper-pagination-bullets, .conseils-page .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-top: 21px;
    margin-bottom: 50px;
  }
  .conseils-page .conseils-swiper-video .swiper-button-prev {
    left: 1%;
  }
  .conseils-page .conseils-swiper-video .swiper-button-next {
    right: 1%;
  }
  .conseils-page .conseils-swiper-video .swiper-slide img {
    height: 300px;
  }
  .conseils-page .conseils-swiper-video .swiper-slide.swiper-slide-active h3 {
    font-size: 22px;
  }
  .conseils-page .conseils-swiper-video .swiper-slide.swiper-slide-active img {
    height: 300px;
  }
  .conseils-page .video-wrapper {
    height: 300px;
  }
  .conseils-page .conseils-posts h2 {
    line-height: normal;
    margin: 0;
  }
  .contact-page__wrapper--left img {
    width: 100%;
    height: 500px;
    display: none;
  }
  .wpcf7 .one-line {
    flex-direction: row;
    align-items: center;
  }
  .contact-page__wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .wpcf7 {
    margin: auto;
  }
  .cv-page .cv-page-section {
    padding: 0 20px;
  }
  .cliniques__wrapper--title h2 {
    font-size: 22px;
  }
  .category-posts__titles h3 a {
    font-size: 18px;
    line-height: normal;
  }
  .category-posts .category-posts__images {
    min-height: 500px;
  }
  .cliniques__wrapper {
    padding-top: 50px;
  }
  .category-posts {
    padding-bottom: 0;
  }
  .category-hero__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .category-hero__wrapper--left {
    width: 50%;
  }
  .category-hero__wrapper--right p {
    margin: auto;
    margin-top: 20px;
    text-align: justify;
  }
  .cliniques .swiper-button-prev {
    left: 1%;
  }
  .cliniques .swiper-button-next {
    right: 1%;
  }
  .category-posts__wrapper {
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .category-hero {
    padding-top: 50px;
    border-radius: 50px;
  }
  .cliniques__wrapper--title p {
    padding: 0 20px;
  }
  .mobile-only {
    display: block;
  }
  .cabinet {
    flex-direction: column;
    padding: 0;
  }
  .cabinet__left {
    max-width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 18px;
    margin-top: 23px;
  }
  .cabinet__left h1 {
    font-size: 24px;
    color: #26384C;
  }
  .cabinet__left h3 {
    margin-top: 35px;
    margin-bottom: 14px;
    font-size: 22px;
  }
  .cabinet .cabinet-phone {
    max-width: 200px;
    right: unset;
    bottom: 53px;
  }
  .cabinet .cabinet-logo {
    right: unset;
    max-width: 94px;
    left: 15%;
  }
  .cabinet__right {
    max-width: max-content;
    width: 80%;
    margin-left: auto;
  }
  .cabinet-category {
    margin-top: 0;
  }
  .cabinet-category__wrapper {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
  .cabinet-category__wrapper .background {
    display: none;
  }
  .cabinet-category__wrapper--left {
    max-width: none;
    background: #AFCACA;
    padding-top: 30px;
    padding-bottom: 60px;
    position: relative;
  }
  .cabinet-category__wrapper--left .mobile-only {
    width: 100%;
    position: absolute;
    top: -19%;
  }
  .cabinet-category__wrapper--right {
    max-width: none;
    background: #EBC6BF;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cabinet-category {
    margin-top: -50px;
  }
  .cabinet-category__wrapper--left .mobile-only {
    top: -11%;
    z-index: -1;
  }
  .cabinet-category__wrapper--right h2, .cabinet-category__wrapper--left h2 {
    margin-bottom: 52px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Figtree";
  }
  .notre-equipe {
    margin-top: 0;
    padding-top: 40px;
  }
  .notre-equipe__wrapper {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .notre-equipe__wrapper--right h2 {
    text-align: center;
    font-size: 22px;
  }
  .notre-equipe__wrapper--right p {
    text-align: center;
  }
  .notre-equipe__wrapper--right .primary-button {
    margin: auto;
  }
  .notre-equipe__wrapper--left {
    border-radius: 0 0 50px 50px;
    overflow: hidden;
  }
  .notre-equipe {
    background: transparent;
    margin-bottom: -35px;
  }
  .nos-valeurs__wrapper .first-two {
    margin-bottom: 17px;
  }
  .nos-valeurs__wrapper .first-two, .nos-valeurs__wrapper .rest {
    max-width: 336px;
    margin: auto;
    margin-bottom: 17px;
  }
  .nos-valeurs__wrapper .first-two h3, .nos-valeurs__wrapper .rest h3 {
    font-size: 18px;
    line-height: normal;
  }
  .nos-valeurs__wrapper {
    padding-top: 63px;
    padding-bottom: 68px;
  }
  .notre-cabinet .swiper-slide {
    border-radius: 50px;
    overflow: hidden;
  }
  .nos-valeurs__wrapper--items .item {
    max-width: 100px;
  }
  .nos-valeurs__wrapper .logo-main {
    display: none;
  }
  .nos-valeurs__wrapper h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .acces__wrapper {
    flex-direction: column;
    row-gap: 24px;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 12px;
    background: #F1E9DC;
  }
  .acces__wrapper h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    line-height: normal;
  }
  .acces__wrapper--address {
    align-items: center;
  }
  .acces__wrapper--address .feedback {
    font-size: 16px;
  }
  .acces__wrapper--address .address p {
    font-size: 16px;
  }
  .acces__wrapper .hours-title {
    justify-content: center;
  }
  .acces__wrapper {
    justify-content: center;
  }
  .differencie__wrapper--middle button {
    font-size: 16px;
  }
  .differencie.mobile .differencie__wrapper--middle {
    margin-top: 0;
  }
  .differencie.mobile .differencie__wrapper--left-container {
    margin-top: 17px;
    margin-bottom: 20px;
  }
  .differencie.mobile .differencie__wrapper--left-container h2 {
    font-size: 22px;
  }
  .hero__video .sound-toggle, .second__video .sound-toggle {
    right: 20px;
    bottom: 20px;
  }
  .acces__wrapper .primary-button {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .heading .section-heading {
    padding-top: 60px;
    padding-bottom: 75px;
  }
  .heading .section-heading h1 {
    font-size: 26px;
  }
  .orthodontie-page__wrapper {
    padding-top: 30px;
  }
  .orthodontie-page__wrapper .orthodontie-logo {
    position: static;
  }
  .orthodontie-page__wrapper .orthodontie-subcategories {
    flex-direction: column;
  }
  .orthodontie-page__wrapper .orthodontie-subcategories .subcategory-item {
    max-width: 342px;
  }
  .orthodontie-page__wrapper .orthodontie-subcategories .subcategory-content h2 {
    font-size: 22px;
    line-height: normal;
  }
  .orthodontie-page__wrapper .orthodontie-subcategories .subcategory-item:nth-child(2n) {
    margin-top: 0px;
    margin-left: auto;
  }
  .orthodontie-page__wrapper .orthodontie-subcategories {
    row-gap: 45px;
    padding: 0 17px;
  }
  .orthodontie-logo-container {
    display: flex;
    margin-bottom: 52px;
  }
  .heading .section-heading img {
    height: 100%;
    object-fit: cover;
  }
  .breadcrumbs__content {
    justify-content: center;
    padding-top: 38px;
    padding-bottom: 196px;
  }
  .equipe__wrapper .equipe-list {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .vision__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .vision__wrapper .left-image {
    width: 100%;
    margin: 0;
    max-width: 344px;
    margin-bottom: -100px;
  }
  .vision__wrapper .middle-circle {
    width: 100%;
    max-width: 344px;
    height: 344px;
    padding: 53px 47px;
  }
  .vision__wrapper .middle-circle img {
    display: none;
  }
  .vision__wrapper .right-image {
    width: 100%;
    margin: 0;
    margin-top: -100px;
    max-width: 344px;
  }
  .equipe__wrapper .equipe-list .equipe-item h3 {
    font-size: 18px;
    line-height: normal;
  }
  .equipe__wrapper h2 {
    font-size: 22px;
  }
  .tech-slider__center {
    left: 0;
    transform: none;
    top: 190px;
    right: 0;
    margin: auto;
    max-width: 344px;
    padding: 54px 61px;
    height: auto;
  }
  .tech-slider__background {
    flex-direction: column;
    align-items: center;
    max-width: 344px;
    margin: auto;
  }
  .tech-slider__left {
    width: 100%;
    height: 348px;
  }
  .tech-slider__right {
    width: 100%;
    margin-bottom: -80px;
  }
  .tech-slider__number {
    font-size: 18px;
  }
  .tech-slider__title h3 {
    font-size: 18px;
  }
  .tech-slider__text {
    padding-left: 23px;
  }
  .tech-slider__card {
    right: 0 !important;
  }
  .tech-slider__image {
    border-radius: 50px 50px 0 0;
  }
  .tech-slider__image img {
    width: 100%;
  }
  .tech-slider h2 {
    font-size: 22px;
    margin-top: 26px;
    margin-bottom: 39px;
  }
  .honoraires__wrapper {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 50px;
  }
  .honoraires__wrapper--left {
    max-width: 341px;
  }
  .honoraires__wrapper--right {
    max-width: 459px;
    margin: 0;
    height: 459px;
  }
  .honoraires__wrapper--right img {
    display: none;
  }
  .honoraires__wrapper--right-container h2 {
    font-size: 22px;
    text-align: center;
  }
  .honoraires__wrapper--right-container p {
    text-align: center;
  }
  .honoraires__wrapper--left {
    margin-top: -130px;
  }
  .breadcrumbs__content--breadcrumbs {
    display: none;
  }
  .equipe__wrapper {
    margin-top: 50px;
  }
  .gallery-images {
    border-radius: 0;
  }
  .notre-cabinet .swiper-slide {
    border-radius: 0;
  }
  .gallery-images .swiper-wrapper {
    height: auto;
  }
  .footer-bottom {
    padding-bottom: 53px;
  }
  .under-footer {
    height: 90px;
    object-fit: cover;
  }
  .consulter__wrapper--container {
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
    text-align: center;
  }
  .consulter__wrapper--container .primary-button {
    margin: auto;
  }
  .consulter__wrapper--left p {
    text-align: justify;
  }
  footer .site-info .footer-left svg {
    width: 100%;
    padding: 0 20px;
  }
  footer .site-info .footer-middle ul li a, footer .site-info .footer-right ul li a {
    font-size: 16px;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-bottom {
    row-gap: 15px;
  }
  .consulter {
    padding-top: 50px;
    border-radius: 50px;
  }
  .consulter h2 {
    font-size: 20px;
  }
  .cv-page .cv-page-section .cv-page-section__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
  }
  .cv-page .cv-page-section {
    padding: 0;
  }
  .content-page-container__wrapper .wp-block-columns {
    flex-direction: column;
    align-items: center !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    width: 100%;
  }
  .wp-block-image img {
    width: 100%;
  }
  .content-page-container__wrapper {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 50px;
  }
  .content-page-container__wrapper blockquote p {
    font-size: 26px;
  }
  .content-page-container__wrapper h2 {
    font-size: 22px;
  }
  .content-page-container__wrapper h3 {
    font-size: 20px;
  }
  .content-page-container__wrapper h4 {
    font-size: 18px;
  }
  .content-page-container__wrapper h5 {
    font-size: 16px;
  }
  .content-page-container__wrapper p {
    text-align: justify;
  }
  .contact-page__wrapper {
    border-radius: 50px;
  }
  .conseils-page .conseils-posts h2 {
    font-size: 22px;
  }
  .conseils-page .faq__wrapper--top {
    flex-direction: column;
    row-gap: 40px;
  }
  .conseils-page .faq__wrapper--bottom {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
  .conseils-page .faq__wrapper--bottom-right span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .gallery-images .swiper-wrapper {
    height: 310px;
  }
  .category-posts .category-posts__images {
    min-height: 400px;
  }
  .cliniques .twentytwenty-container {
    height: 200px !important;
  }
  .wpcf7 .one-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .wpcf7 .one-line .form-label {
    width: 100%;
    max-width: none;
  }
  .wpcf7 .popup-form .form-email-phone {
    flex-direction: column;
    align-items: flex-start;
  }
  .wpcf7 .popup-form .form-email-phone .form-label {
    width: 100%;
  }
  .wpcf7 .one-line {
    margin-bottom: 23px;
  }
  .wpcf7 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .conseils-page .faq {
    padding-top: 0;
  }
  .wpcf7 .one-line .form-label {
    margin: 10px 0;
  }
  .wpcf7 .form-radio p .wpcf7-form-control-wrap .wpcf7-radio {
    flex-wrap: wrap;
    column-gap: 40px;
  }
  .wpcf7 .form-radio p .wpcf7-form-control-wrap .wpcf7-radio span {
    margin-bottom: 5px;
  }
  .cabinet .cabinet-logo {
    display: none;
  }
  .wpcf7 .one-line.name-date {
    margin: 0;
  }
}
@media screen and (max-width: 460px) {
  .category-posts .category-posts__images {
    min-height: 300px;
  }
  .cabinet-category__wrapper--left .mobile-only {
    top: -9vw;
  }

  .primary-buttons {
    max-width: 100%;
    justify-content: center;
  }
  .primary-buttons a {
    max-width: 42%;
  }
}

.single section.cliniques {
  background: #F1E9DC;
}

.modal {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.modal.active {
  opacity: 1;
  transition: 0.3s;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(241, 233, 220, 0.80);
  backdrop-filter: blur(7.5px);
}

.modal-wrap {
  padding: 40px;
  border-radius: 80px;
  background: #FCFBF9;
  position: relative;
  z-index: 2;
  max-width: calc(100% - 40px);
}

.modal-cls {
  margin-left: auto;
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #EBC6BF;
  cursor: pointer;
  margin-bottom: 30px;
  transition: 0.3s;
}
.modal-cls svg path {
  transition: 0.3s;
}
.modal-cls:hover {
  background: #26384C;
  transition: 0.3s;
}
.modal-cls:hover svg path {
  stroke: #fff;
  transition: 0.3s;
}

.modal-ttl {
  color: #26384C;
  text-align: center;
  font-family: "Tenor Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  max-width: 690px;
  margin: 0 auto 20px;
}

.modal-txt {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 450px;
  margin: 0 auto 30px;
  text-align: center;
}
.modal-btn .primary-button{
  margin: 0 auto;
}

@media(max-width: 767.98px) {
  .modal-wrap {
    padding: 25px;
  }
  .modal-ttl {
    font-size: 22px;
    line-height: 26px;
  }
  .modal-cls {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
}


.h-info {
  padding-top: 60px;
  text-align: center;
}

.h-info-item {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.h-info-item:last-child {
  margin-bottom: 0;
}

.h-info-item-in {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
}

.h-info-item-in svg {
  width: 24px;
  height: auto;
}

a.h-info-item-in .txt {
  width: calc(100% - 24px);
  padding-left: 8px;
  color: #26384C;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-top: 2px;
}
@media(max-width: 899.98px) {
  .cliniques .twentytwenty-container {
    height: 33vw !important;
    max-width: none;
    width: 73vw;
  }
}
.grecaptcha-badge {
    display: none!important;
}
/*# sourceMappingURL=style.css.map */
