.site-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.site-header .rdv-button {
  position: relative;
  justify-content: center;
  max-width: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 4px;
  text-decoration: none;
  max-width: 322px;
  height: 100px;
  transition: 0.3s all;
}
.site-header .rdv-button .rdv-doctors {
  position: absolute;
  top: 99px;
  width: 100%;
  background: #2D5B93;
  opacity: 0;
  transition: 0.3s all;
  pointer-events: none;
}
.site-header .rdv-button .rdv-doctors a {
  padding: 12px 24px;
  transition: 0.3s all;
  display: block;
  text-decoration: none;
}
.site-header .rdv-button .rdv-doctors a:hover {
  background: #4993D8;
}
.site-header .rdv-button:hover {
  background: #4993D8;
}
.site-header .rdv-button:hover .rdv-doctors {
  opacity: 1;
  pointer-events: all;
}
.site-header__content {
  display: flex;
  align-items: center;
  margin-left: auto;
  column-gap: 73px;
  justify-content: flex-end;
  width: 100%;
  max-width: 1665px;
  padding-left: 20px;
}
.site-header__content--right {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.site-header__content--logo {
  height: 100px;
  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: #fff !important;
  font-size: 16px;
  background: #2D5B93;
}
.site-header__content--navigation ul ul li:hover {
  background: #D3CDC1;
}
.site-header__content--navigation ul ul li:hover a {
  color: #fff !important;
  background: #4993D8;
}
.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 {
  background: #4993D8;
}
.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 .menu-item-has-children ul {
  min-width: auto;
}
.site-header__content--navigation ul .menu-item-has-children .menu-item-has-children {
  padding-right: 44px;
}
.site-header__content--navigation ul .menu-item-has-children .menu-item-has-children a {
  text-wrap: nowrap;
  font-weight: 400;
}
.site-header__content--navigation ul .menu-item-has-children .menu-item-has-children:hover a {
  color: #fff;
}
.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: #fff;
}
.site-header .menu-item a,
.site-header .menu-item-has-children a {
  color: #fff;
  font-weight: 400;
}
.site-header .menu-item a:hover,
.site-header .menu-item-has-children a:hover {
  color: #4993D8;
}
.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: #4993D8;
  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: 18px;
  height: 18px;
  background-image: url("../../src/images/plus.svg");
  background-color: unset;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.site-header .menu-item-has-children:hover .menu-item-has-children:hover {
  background: #4993D8;
}
.site-header .menu-item-has-children:hover .menu-item-has-children:hover::before {
  background-image: url("../../src/images/minus.svg");
}
.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: 0px 0px 16px 16px;
}
.site-header .menu-item-has-children:hover .sub-menu .sub-menu {
  padding-bottom: 0;
  border-radius: 0px 0px 16px 16px;
  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 ul .menu-item:first-child a {
  padding: 15px 16px;
}
.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);
  background: #4993D8;
  top: 50%;
}
.site-header .menu-item-has-children:hover::after {
  transform: rotate(43deg);
  background: #4993D8;
  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-top: 8px !important;
}
@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;
  }
  .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: #fff;
  }
  .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: #fff;
    text-transform: inherit;
    text-decoration: none;
    font-weight: 300;
  }
  .site-header .popup-mobile-container .submenu-toggle {
    cursor: pointer;
    margin-left: 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: "M PLUS 1";
    font-size: 25px;
    font-weight: 200;
    color: #fff;
    position: absolute;
    top: 6px;
  }
  .site-header .popup-mobile-container .submenu-toggle::before {
    content: "";
    position: absolute;
    right: -12px;
    width: 1px;
    height: 8px;
    background-color: #fff;
    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: #fff;
    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: #fff;
    text-transform: inherit;
    font-weight: 300;
  }
  .site-header .popup-mobile-container--contacts-phone {
    display: flex;
    column-gap: 8px;
  }
  .site-header .popup-mobile-container--contacts-phone svg {
    display: block;
    width: 100%;
    max-width: 24px;
  }
  .site-header .popup-mobile-container--contacts-phone a {
    color: #fff;
    text-transform: inherit;
    font-weight: 300;
  }
  .site-header .popup-mobile-container--contacts a {
    text-decoration: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation {
    position: relative;
  }
  .site-header .popup-mobile .popup-mobile-navigation--svg {
    position: absolute;
    bottom: 0;
    left: 0px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu {
    padding: 0;
    margin-top: 56px;
    list-style: none;
    text-align: center;
    margin: 0;
    max-width: 100%;
    text-align: left;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 210px;
    margin: auto;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu a {
    padding-left: 15px;
    font-size: 16px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .rdv-custom-menu {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .submenu-toggle {
    color: #fff;
    margin-left: 10px;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li {
    margin: 0;
    display: flex;
    padding: 16px 0;
    width: fit-content;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .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: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    text-transform: inherit;
    position: relative;
    width: fit-content;
    padding-left: 0;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu li a.open {
    color: #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;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu::after {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu::before {
    display: none;
  }
  .site-header .popup-mobile .popup-mobile-navigation .menu .menu-item-has-children .sub-menu .sub-menu a {
    font-size: 16px;
    padding: 0;
    text-align: center;
    padding-top: 0 !important;
    font-weight: 300;
  }
  .site-header .popup-mobile .popup-mobile-container-svg svg {
    position: absolute;
    bottom: 0;
  }
  .site-header .popup-mobile .site-header__content--button-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .popup-mobile .open-popup {
    max-width: 327px;
    height: 52px;
    font-weight: 600;
    font-size: 16px;
    justify-self: center;
  }
  .site-header .popup-mobile.active {
    opacity: 1;
    pointer-events: all;
    top: 0px;
    z-index: 9;
    background: #45464B;
  }
  .site-header .popup-mobile {
    z-index: 9;
  }
  .site-header__content-side--contacts {
    max-width: 327px;
    margin: auto;
    margin-top: 40px;
  }
  .site-header__content-side--phone {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    justify-content: center;
  }
  .site-header__content-side--phone a {
    color: #373E48;
    text-decoration: none;
    margin-left: 8px;
  }
  .site-header__content-side--map {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__content-side--map a {
    color: #373E48;
    text-decoration: none;
    margin-left: 8px;
  }
}

.site-header.scrolled {
  background: #2A2A2A;
}

@media screen and (max-width: 1200px) {
  .menu-item.open > a {
    color: #4993D8 !important;
  }
  .menu-item.open .submenu-toggle::before {
    transform: rotate(-40deg) !important;
    background: #4993D8 !important;
  }
  .menu-item.open .submenu-toggle::after {
    transform: rotate(40deg) !important;
    background: #4993D8 !important;
  }
}
footer {
  background: #2A2A2A;
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
}
footer .footer-left-line {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
footer .site-info {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  position: relative;
}
footer .site-info .site-info-top {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 63px;
}
footer .site-info .site-info-top ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
footer .site-info .site-info-top ul li {
  list-style: none;
}
footer .site-info .site-info-top ul li a {
  font-size: 18px;
  text-decoration: none;
}
footer .site-info .site-info-top .site-footer-left {
  max-width: 283px;
  width: 100%;
}
footer .site-info .site-info-top .site-footer-right {
  max-width: 330px;
  width: 100%;
}
footer .site-info .site-info-bottom {
  display: flex;
  max-width: 830px;
  margin-left: auto;
  justify-content: space-between;
}
footer .site-info .site-info-bottom .site-info-bottom-left p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 20px;
}
footer .site-info .site-info-bottom .site-info-bottom-right {
  max-width: 330px;
  width: 100%;
}
footer .site-info .site-info-bottom .site-info-bottom-right p {
  font-size: 14px;
  margin-bottom: 0px;
  line-height: 20px;
}
footer .site-info .site-info-bottom .site-info-bottom-right p a {
  font-size: 14px;
  text-decoration: none;
}

.hero {
  position: relative;
  padding-top: 155px;
}
.hero h1 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-width: 660px;
  width: 100%;
}
.hero p {
  max-width: 570px;
  width: 100%;
}
.hero__wrapper {
  display: flex;
  align-items: center;
  max-width: 1410px;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  padding: 0 20px;
}
.hero__video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-top: 80px;
}
.hero__video iframe,
.hero__video object,
.hero__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__video .sound-toggle {
  z-index: 9;
  position: absolute;
  right: 120px;
  bottom: 188px;
}

.equipe {
  padding-top: 87px;
  position: relative;
}
.equipe .bg-equipe {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background: #343538;
}
.equipe .equipe-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.equipe .equipe-left {
  position: absolute;
  top: 0;
  left: 0;
}
.equipe__wrapper {
  max-width: 1410px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  position: relative;
}
.equipe__wrapper h3 {
  margin-top: 10px;
}
.equipe__wrapper--doctors {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
  margin-top: 41px;
}
.equipe__wrapper--doctors .equipe-doctor {
  max-width: 390px;
  width: 100%;
}
.equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image {
  position: relative;
}
.equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image:hover img {
  opacity: 0.3;
}
.equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image:hover .primary-button {
  opacity: 1;
}
.equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image .primary-button {
  position: absolute;
  bottom: 24px;
  left: 9px;
  z-index: 9;
  opacity: 0;
  transition: 0.3s;
}
.equipe__wrapper--doctors .equipe-doctor img {
  max-width: 360px;
  width: 100%;
  display: block;
  height: 440px;
  object-fit: cover;
  transition: 0.3s;
}
.equipe__wrapper--doctors .equipe-doctor__content {
  margin-top: 24px;
}
.equipe__wrapper--doctors .equipe-doctor__content h3 {
  margin-bottom: 10px;
}
.equipe__wrapper--assistants {
  padding-top: 136px;
  padding-bottom: 76px;
}
.equipe__wrapper--assistants h4 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.equipe__wrapper .swiper .equipe-assistant__image img {
  transition: 0.3s all;
}
.equipe__wrapper .swiper .equipe-assistant__image:hover img {
  transform: scale(1.1);
}
.equipe__wrapper .swiper .arrows {
  position: relative;
  display: flex;
  height: 50px;
  max-width: 103px;
  margin: auto;
  margin-top: 21px;
}
.equipe__wrapper .swiper .arrows .swiper-button-next {
  width: 50px;
  border: 1px solid;
  right: 0;
  left: unset;
  transition: 0.3s all;
}
.equipe__wrapper .swiper .arrows .swiper-button-next:hover {
  background-color: #4993D8;
}
.equipe__wrapper .swiper .arrows .swiper-button-next:hover:after {
  color: #fff;
}
.equipe__wrapper .swiper .arrows .swiper-button-prev {
  width: 50px;
  border: 1px solid;
  left: 0;
  right: unset;
}
.equipe__wrapper .swiper .arrows .swiper-button-prev:hover {
  background-color: #4993D8;
}
.equipe__wrapper .swiper .arrows .swiper-button-prev:hover:after {
  color: #fff;
}
.equipe__wrapper .swiper .arrows .swiper-button-next:after, .equipe__wrapper .swiper .arrows .swiper-rtl .swiper-button-prev:after {
  font-size: 18px;
}
.equipe__wrapper .swiper .arrows .swiper-button-prev:after, .equipe__wrapper .swiper .arrows .swiper-rtl .swiper-button-next:after {
  font-size: 18px;
}

.traitements {
  background: #215E8D;
  position: relative;
  padding-top: 120px;
}
.traitements h2 {
  position: relative;
  max-width: 1410px;
  margin: auto;
}
.traitements .line-animation {
  position: absolute;
  top: 0;
}
.traitements__wrapper {
  display: flex;
  max-width: 1410px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 124px;
  column-gap: 30px;
  position: relative;
}
.traitements__wrapper .traitement-category {
  background: #2A2A2A;
  height: fit-content;
  text-decoration: none;
}
.traitements__wrapper .traitement-category .custom-shape {
  transition: 0.3s all;
}
.traitements__wrapper .traitement-category:hover .custom-shape {
  opacity: 0;
}
.traitements__wrapper .traitement-category:hover .traitement-category-link svg g path {
  fill: #fff;
}
.traitements__wrapper .traitement-category .traitement-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 16px;
  height: 100%;
  text-decoration: none;
}
.traitements__wrapper .traitement-category .custom-shape {
  width: 143px;
  height: 378px;
  background-color: #2A2A2A;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
}

.gallery-video {
  overflow: hidden;
  padding: 120px 0;
}
.gallery-video .title-arrows {
  max-width: 1410px;
  margin: auto;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.gallery-video .gallery__wrapper {
  max-width: 1920px;
  position: relative;
}
.gallery-video .video-gallery {
  display: flex;
  height: 300px;
}
.gallery-video .play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background: rgba(73, 147, 216, 0.431372549);
  border: none;
  color: white;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 75px;
  width: 75px;
}
.gallery-video .play-video-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
}
.gallery-video .swiper-slide img {
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-video .swiper-slide p {
  margin-top: 10px;
}
.gallery-video .arrows {
  max-width: 171px;
  width: 100%;
  display: flex;
  height: 50px;
  position: relative;
  right: 0;
  align-items: center;
}
.gallery-video .arrows .swiper-pagination {
  margin-right: 30px;
}
.gallery-video .arrows .swiper-pagination span {
  font-size: 20px;
}
.gallery-video .arrows .swiper-button-next {
  width: 50px;
  border: 1px solid;
  right: 0;
  left: unset;
}
.gallery-video .arrows .swiper-button-prev {
  width: 50px;
  border: 1px solid;
  left: 0;
  right: unset;
}
.gallery-video .arrows .swiper-button-next:after, .gallery-video .arrows .swiper-rtl .swiper-button-prev:after {
  font-size: 18px;
}
.gallery-video .arrows .swiper-button-prev:after, .gallery-video .arrows .swiper-rtl .swiper-button-next:after {
  font-size: 18px;
}
.gallery-video .arrows .swiper-pagination {
  left: 0;
  position: relative;
  max-width: 41px;
  height: fit-content;
  top: 0;
}
.gallery-video .arrows .swiper-navigation {
  max-width: 100px;
  width: 100%;
  display: flex;
  position: relative;
}
.gallery-video .video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.gallery-video .video-popup.active {
  display: flex;
}
.gallery-video .video-popup-inner {
  position: relative;
  width: 90%;
  max-width: 800px;
}
.gallery-video .popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}
.gallery-video .video-popup-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.gallery-video .swiper-slide {
  transition: 0.3 all;
  opacity: 0.2;
}
.gallery-video .swiper-slide-prev {
  opacity: 1;
}
.gallery-video .swiper-slide-active {
  opacity: 1;
}
.gallery-video .swiper-slide-next {
  opacity: 1;
}

.pdf__wrapper {
  max-width: 1650px;
  margin-left: auto;
}
.pdf__wrapper-title {
  display: flex;
  justify-content: space-between;
  max-width: 1410px;
  margin-bottom: 8px;
}
.pdf__wrapper-title .primary-button {
  border: 1px solid #4993D8;
  padding: 14px 20px;
}
.pdf__wrapper-files {
  display: flex;
  margin-top: 40px;
}
.pdf__wrapper-file {
  max-width: 720px;
  width: 100%;
  background: #343538;
  display: flex;
}
.pdf__wrapper-file:last-child {
  max-width: fit-content;
}
.pdf__wrapper-file:last-child .pdf__wrapper-container {
  display: none;
}
.pdf__wrapper-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.conseils {
  padding-top: 120px;
  padding-bottom: 67px;
}
.conseils__wrapper {
  display: flex;
  max-width: 1675px;
  width: 100%;
  column-gap: 30px;
}
.conseils__wrapper--right {
  max-width: 810px;
  width: 100%;
}
.conseils__wrapper--right .conseils-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #DFE5EE;
  margin-bottom: 20px;
}
.conseils__wrapper--right .conseils-item .primary-button {
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.conseils__wrapper--right .conseils-item .primary-button img {
  max-width: 210px;
  height: 150px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all;
}
.conseils__wrapper--right .conseils-item .primary-button h3 {
  text-transform: none;
}
.conseils__wrapper--right .conseils-item .primary-button:hover img {
  opacity: 1;
}
.conseils__wrapper--left {
  position: relative;
  max-width: 835px;
  width: 100%;
}
.conseils__wrapper--left .conseils-image {
  position: absolute;
  left: 0;
  z-index: 2;
}
.conseils__wrapper--left .line-animation {
  bottom: -70px;
  position: absolute;
}
.conseils__wrapper--left .conseils-line {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 31px;
  bottom: -67px;
}

.app {
  position: relative;
}
.app .app-image {
  position: absolute;
  right: 0;
  z-index: 1;
  left: 150px;
  top: 190px;
  bottom: 0;
  margin: auto;
}
.app .app-background {
  position: absolute;
  left: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
}
.app .app-lines {
  position: absolute;
  height: 100%;
}
.app__wrapper {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 268px;
  padding-bottom: 173px;
  position: relative;
  z-index: 2;
}
.app__wrapper h2 {
  margin-bottom: 10px;
}
.app__wrapper h3 {
  margin-bottom: 10px;
}
.app__wrapper p {
  margin-bottom: 40px;
}
.app__wrapper--left {
  max-width: 451px;
  width: 100%;
}
.app__wrapper--right {
  max-width: 450px;
  width: 100%;
  text-align: right;
}

.acces {
  position: relative;
}
.acces .line-animation {
  position: absolute;
  right: 0;
  top: 0;
}
.acces__wrapper {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 139px;
  padding-bottom: 114px;
  position: relative;
}
.acces__wrapper--left {
  max-width: 570px;
  width: 100%;
}
.acces__wrapper--left h2 {
  margin-bottom: 40px;
}
.acces__wrapper--left .popup-form .wpcf7-response-output {
  margin: 0;
  color: #fff;
}
.acces__wrapper--left .popup-form .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.acces__wrapper--left .popup-form .nice-select:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 11px;
  width: 11px;
}
.acces__wrapper--left .popup-form .nice-select-dropdown {
  width: 100%;
  border-radius: 0;
  background: #215E8D;
  z-index: 99;
}
.acces__wrapper--left .popup-form .nice-select .list {
  margin: 0;
}
.acces__wrapper--left .popup-form .option.null.disabled {
  display: none;
}
.acces__wrapper--left .popup-form .nice-select .option {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto";
}
.acces__wrapper--left .popup-form .nice-select .option:hover {
  background: #4993D8;
}
.acces__wrapper--left .popup-form .form-praticien {
  height: 50px;
}
.acces__wrapper--left .popup-form .row-2-col {
  display: flex;
  margin-top: 20px;
  column-gap: 10px;
  width: 100%;
}
.acces__wrapper--left .popup-form .row-2-col .form-label {
  width: 49%;
}
.acces__wrapper--left .popup-form .row-2-col .form-label input {
  width: 100%;
  padding-left: 0px;
}
.acces__wrapper--left .popup-form input {
  background: transparent;
  border: unset;
  border-bottom: 1px solid #85B2DC;
  color: #fff !important;
  transition: 0.3s all;
}
.acces__wrapper--left .popup-form input:hover {
  border-color: #fff;
}
.acces__wrapper--left .popup-form .wpcf7-submit {
  border-radius: 0;
  padding: 14px 26px;
  border: 1px solid;
  cursor: pointer;
  margin-top: 40px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  transition: 0.3s all;
}
.acces__wrapper--left .popup-form .wpcf7-submit:hover {
  background: #4993D8;
  border-color: #4993D8;
}
.acces__wrapper--left .popup-form .wpcf7-submit span {
  height: 24px;
}
.acces__wrapper--left .popup-form textarea {
  background: unset;
  border: unset;
  border-bottom: 1px solid #85B2DC;
  height: 126px;
  padding-top: 20px;
  color: #fff;
  transition: 0.3s all;
}
.acces__wrapper--left .popup-form textarea:hover {
  border-color: #fff;
}
.acces__wrapper--left .popup-form textarea::placeholder {
  color: #fff;
}
.acces__wrapper--left .popup-form .wpcf7-select {
  padding-bottom: 10px;
  width: 100%;
  background: transparent;
  color: #fff;
  border: unset;
  border-bottom: 1px solid #85B2DC;
  padding-left: 0;
  border-radius: unset;
}
.acces__wrapper--left .popup-form .wpcf7-select:hover {
  border-color: #fff;
}
.acces__wrapper--left .popup-form .wpcf7-select span {
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 400;
}
.acces__wrapper--left .popup-form .popup-form-label {
  position: absolute;
  z-index: 9;
  left: 0px;
  top: -5px;
  pointer-events: none;
  transition: 0.3s all;
  font-family: "Roboto";
  font-weight: 400;
}
.acces__wrapper--left .popup-form .popup-form-label p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-family: "Roboto";
  font-weight: 400;
  transition: 0.3s all;
}
.acces__wrapper--left .popup-form .popup-form-label.active {
  top: -18px;
  left: 0px;
}
.acces__wrapper--left .popup-form .popup-form-label.active p {
  font-size: 14px;
}
.acces__wrapper--left .popup-form .form-label {
  position: relative;
  margin-bottom: 20px;
}
.acces__wrapper--right {
  max-width: 448px;
  width: 100%;
}
.acces__wrapper--right .dayoff {
  display: flex;
  justify-content: space-between;
  max-width: 187px;
  margin-left: 34px;
}
.acces__wrapper--right h2 {
  margin-bottom: 40px;
}
.acces__wrapper--right .info {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.acces__wrapper--right a, .acces__wrapper--right p {
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.acces__wrapper--right a, .acces__wrapper--right p, .acces__wrapper--right a p {
  font-size: 20px;
}

.pdf-page__wrapper {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}
.pdf-page__wrapper h1 {
  text-align: center;
  margin-bottom: 10px;
}
.pdf-page__wrapper .subtitle {
  text-align: center;
}
.pdf-page__wrapper--files {
  display: flex;
  flex-wrap: wrap;
  row-gap: 75px;
  margin-top: 60px;
}
.pdf-page__wrapper--files-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}
.pdf-page__wrapper--files-content .primary-button p {
  letter-spacing: 1px;
}
.pdf-page__wrapper--files-item {
  width: 50%;
  background: #343538;
  display: flex;
  transition: 0.3s all;
  text-decoration: none;
}
.pdf-page__wrapper--files-item .primary-button svg {
  position: absolute;
  right: -30px;
  transition: 0.3s all;
}
.pdf-page__wrapper--files-item .primary-button svg:nth-child(3) {
  opacity: 0;
}
.pdf-page__wrapper--files-item:hover {
  background: #2D5B93;
}
.pdf-page__wrapper--files-item:hover .primary-button svg:nth-child(2) {
  opacity: 0;
}
.pdf-page__wrapper--files-item:hover .primary-button svg:nth-child(3) {
  opacity: 1;
}
.pdf-page__wrapper--files-item:hover .primary-button p {
  text-decoration: underline;
}
.pdf-page__wrapper--files-item img {
  display: block;
}

.parallax-css {
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cv-page h1 {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.cv-bio {
  padding-bottom: 60px;
}
.cv-bio__wrapper {
  display: flex;
  max-width: 1170px;
  margin: auto;
  column-gap: 150px;
  position: relative;
}
.cv-bio__wrapper--left {
  max-width: 448px;
  width: 100%;
}
.cv-bio__wrapper--right {
  max-width: 571px;
  width: 100%;
}
.cv-bio__wrapper--right h2 {
  font-size: 28px;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Roboto";
  margin-bottom: 16px;
}
.cv-bio__wrapper--right a {
  display: block;
  width: fit-content;
  margin-top: 40px;
  transition: 0.3s all;
}
.cv-bio__wrapper--right a:hover {
  transform: scale(1.1);
}
.cv-bio ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cv-bio ul li {
  list-style: none;
  position: relative;
}
.cv-bio ul li::after {
  content: "";
  position: absolute;
  display: block;
  background: #4993D8;
  width: 11px;
  height: 11px;
  left: -26px;
  top: 5px;
}
.cv-bio .cv-video {
  width: 100%;
  height: 720px;
  overflow: hidden;
  margin: auto;
  margin-top: 90px;
  margin-bottom: 100px;
}
.cv-bio .cv-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.correspondants-page h1 {
  margin: 60px 0;
  text-align: center;
}
.correspondants-page .correspondants-top__wrapper {
  display: flex;
  position: relative;
  justify-content: flex-start;
  column-gap: 150px;
}
.correspondants-page .correspondants-top__wrapper--left {
  max-width: 825px;
  width: 100%;
}
.correspondants-page .correspondants-top__wrapper--right {
  max-width: 688px;
  width: 100%;
}
.correspondants-page .correspondants-form {
  margin-top: 100px;
  padding-bottom: 80px;
}
.correspondants-page .correspondants-form h2 {
  max-width: 1290px;
  margin: auto;
  margin-bottom: 40px;
}
.correspondants-page .correspondants-form__wrapper {
  display: flex;
  max-width: 1290px;
  margin: auto;
  column-gap: 150px;
}
.correspondants-page .correspondants-form__wrapper--left {
  max-width: 570px;
  width: 100%;
}
.correspondants-page .correspondants-form__wrapper--right {
  max-width: 570px;
  width: 100%;
}

.orthodontie-page h1 {
  padding: 60px 0;
  text-align: center;
}

.orthodontie-top {
  padding-bottom: 100px;
}
.orthodontie-top__wrapper {
  display: flex;
  position: relative;
  column-gap: 150px;
}
.orthodontie-top__wrapper--left {
  max-width: 825px;
  width: 100%;
}
.orthodontie-top__wrapper--right {
  max-width: 688px;
}

.traitements-posts {
  padding-bottom: 80px;
}
.traitements-posts .traitements-posts__wrapper {
  display: flex;
  gap: 60px;
  max-width: 1410px;
  margin: auto;
  justify-content: space-between;
}
.traitements-posts .traitements-posts__wrapper--left {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 47px;
  max-width: 570px;
}
.traitements-posts .traitements-posts__wrapper--left .traitement-post__title {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 400;
  font-size: 26px;
  display: flex;
  justify-content: space-between;
}
.traitements-posts .traitements-posts__wrapper--left .traitement-post__title.active {
  color: #FFFFFF;
}
.traitements-posts .traitements-posts__wrapper--left .traitement-post__title.active .arrow-button {
  background: #4993D8;
}
.traitements-posts .traitements-posts__wrapper--left .arrow-button {
  display: block;
  height: 50px;
  width: 50px;
  border: 1px solid #4993D8;
  position: relative;
}
.traitements-posts .traitements-posts__wrapper--left .arrow-button::after {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  padding: 5px;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  left: -7px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.traitements-posts .traitements-posts__wrapper--right {
  flex: 1;
  position: relative;
  max-width: 694px;
  width: 100%;
  height: 500px;
}
.traitements-posts .traitements-posts__wrapper--right .traitement-post__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  max-width: 694px;
  width: 100%;
  height: 500px;
}
.traitements-posts .traitements-posts__wrapper--right .traitement-post__image.active {
  opacity: 1;
  pointer-events: auto;
}
.traitements-posts .traitements-posts__wrapper--right .traitement-post__image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.single-post h1 {
  position: relative;
  z-index: 9;
  padding: 60px 0;
  text-align: center;
}
.single-post__content {
  max-width: 930px;
  width: 100%;
  margin: auto;
  position: relative;
  padding-bottom: 100px;
}
.single-post .wp-block-image.size-full {
  margin: 32px 0;
}
.single-post h2 {
  margin-bottom: 16px;
  text-align: center;
  text-transform: none;
  font-size: 28px;
  font-family: "Roboto";
  letter-spacing: 0;
}
.single-post p {
  margin-bottom: 10px;
  text-align: justify;
}
.single-post h3, .single-post h4, .single-post h5 {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 20px;
}
.single-post .wp-block-columns .wp-block-column .wp-block-image.size-full {
  margin: 0;
}
.single-post .wp-block-columns .wp-block-column .wp-block-image.size-full img {
  max-width: 450px;
  width: 100%;
  display: block;
  height: 100%;
}
.single-post ul.wp-block-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 28px;
}
.single-post ul.wp-block-list li {
  list-style: none;
  position: relative;
}
.single-post ul.wp-block-list li::after {
  content: "";
  position: absolute;
  display: block;
  background: #4993D8;
  width: 11px;
  height: 11px;
  left: -26px;
  top: 5px;
}
.single-post ol.wp-block-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.single-post ol.wp-block-list li {
  font-size: 18px;
  padding-left: 10px;
}
.single-post ol.wp-block-list li::marker {
  color: #4993D8;
}
.single-post blockquote p {
  font-family: "Crimson Text";
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  border-top: 1px solid #4993D8;
  padding-top: 20px;
  margin-top: 52px;
  border-bottom: 1px solid #4993D8;
  padding-bottom: 20px;
  letter-spacing: 1px;
  line-height: 36px;
}

.cabinet-hero h1 {
  margin: 60px 0;
  text-align: center;
}
.cabinet-hero__wrapper {
  position: relative;
}
.cabinet-hero__wrapper-content p {
  max-width: 571px;
  margin-left: auto;
  margin-bottom: -200px;
  margin-right: 254px;
}
.cabinet-hero__wrapper .swiper-wrapper {
  height: 440px;
}
.cabinet-hero__wrapper .custom-slider {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  overflow: hidden;
}
.cabinet-hero__wrapper .custom-slider__main {
  width: 100%;
  max-width: 945px;
  height: 440px;
  overflow: hidden;
  position: relative;
}
.cabinet-hero__wrapper .custom-slider__track {
  display: flex;
  transition: transform 0.6s ease;
}
.cabinet-hero__wrapper .custom-slider__track img {
  width: 945px;
  height: 440px;
  object-fit: cover;
  flex-shrink: 0;
}
.cabinet-hero__wrapper .custom-slider__thumbnails {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 1000px;
  overflow: hidden;
  margin-top: auto;
  gap: 30px;
}
.cabinet-hero__wrapper .custom-slider__thumbnails img {
  width: 240px;
  height: 140px;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  transform: translateX(0);
}
.cabinet-hero__wrapper .custom-slider__thumbnails img.active {
  opacity: 1;
  transform: scale(1.05);
}

.nos-valeurs {
  position: relative;
}
.nos-valeurs .vlaeurs-sign {
  position: absolute;
  right: 170px;
  bottom: 0;
}
.nos-valeurs .line-animation {
  position: absolute;
  right: 175px;
  bottom: 0;
}
.nos-valeurs__wrapper {
  margin-left: 254px;
  max-width: 930px;
  padding-top: 120px;
  padding-bottom: 180px;
}
.nos-valeurs__wrapper h2 {
  margin-bottom: 40px;
}
.nos-valeurs__wrapper--items {
  display: flex;
  column-gap: 30px;
}
.nos-valeurs__wrapper--item {
  max-width: 450px;
  width: 100%;
}
.nos-valeurs__wrapper--item h3 {
  margin: 16px 0;
}
.nos-valeurs__wrapper--item p {
  font-size: 16px;
  line-height: 30px;
}

.parcours__etapes {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.parcours__etape {
  max-width: 330px;
  width: 100%;
}

.parcours {
  position: relative;
  padding-bottom: 116px;
  background: #343538;
}
.parcours .line-animation {
  position: absolute;
  left: 302px;
}
.parcours .parcours-line {
  position: absolute;
  right: 0px;
  left: 200px;
  margin: auto;
}
.parcours__wrapper {
  padding-top: 110px;
  position: relative;
}
.parcours__wrapper h2 {
  margin-left: 255px;
  margin-bottom: 5px;
}
.parcours__wrapper .parcours__columns {
  max-width: 931px;
  margin: auto;
}
.parcours__wrapper .parcours__columns .parcours__etape-number {
  font-weight: 400;
  color: #4993D8;
}
.parcours__wrapper .parcours__columns .parcours__etape-title {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 18px;
  margin-top: 18px;
}
.parcours__wrapper .parcours__columns .parcours__column {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  column-gap: 271px;
}
.parcours__wrapper .parcours__columns .parcours__column.left {
  margin-bottom: 26px;
}
.parcours__wrapper .parcours__columns .parcours__column .parcours__etape:nth-child(2n) {
  margin-top: 116px;
  text-align: right;
}

.technologies {
  background: #343538;
}
.technologies__wrapper h2 {
  margin-left: 255px;
  color: white;
}
.technologies__wrapper--content {
  margin-top: 40px;
  display: flex;
}
.technologies__wrapper--content-item {
  transition: all 0.6s ease;
  display: flex;
  height: 700px;
  width: 235px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.technologies__wrapper--content-item.active {
  width: 1215px;
}
.technologies__wrapper--content-item.active .technologies__wrapper--content-right {
  width: 40%;
  opacity: 1;
  transition: width 0.6s ease, opacity 0.4s ease 0.2s;
  background: #2D5B93;
  padding: 60px 80px;
}
.technologies__wrapper--content-item.active .technologies__wrapper--content-left {
  max-width: 735px;
}
.technologies__wrapper--content-item.active .technologies__wrapper--content-left img {
  filter: brightness(1);
  opacity: 1;
}
.technologies__wrapper--content-item.active .technologies__wrapper--content-left h3 {
  opacity: 0;
}
.technologies__wrapper--content-item:not(.active) .technologies__wrapper--content-right {
  width: 0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.2s ease;
}
.technologies__wrapper--content-left {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.technologies__wrapper--content-left img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.technologies__wrapper--content-left h3 {
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: fit-content;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.technologies__wrapper--content-right {
  background-color: #1f1f1f;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  color: white;
}
.technologies__wrapper--content-right h3 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 26px;
}
.technologies__wrapper--content-right p {
  font-size: 18px;
  line-height: 26px;
}

.laboratoire {
  padding-top: 120px;
  padding-bottom: 80px;
}
.laboratoire__wrapper {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.laboratoire__wrapper--left {
  max-width: 570px;
  width: 100%;
}
.laboratoire__wrapper--left h2 {
  max-width: 293px;
}
.laboratoire__wrapper--left .flag-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
}
.laboratoire__wrapper--right {
  max-width: 560px;
  width: 100%;
}

.conseils-posts h1 {
  margin: 60px 0;
  text-align: center;
}
.conseils-posts__wrapper {
  max-width: 1410px;
  width: 100%;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.conseils-posts__wrapper .conseils-post {
  display: flex;
  justify-content: space-between;
}
.conseils-posts__wrapper .conseils-post h3 {
  font-size: 28px;
  margin-bottom: 30px;
}
.conseils-posts__wrapper .conseils-post .conseils-post__text {
  margin-bottom: 30px;
}
.conseils-posts__wrapper .conseils-post img {
  max-width: 690px;
  display: block;
}
.conseils-posts__wrapper .conseils-post .conseils-post-right {
  max-width: 568px;
}

.conseils-page .gallery-video {
  background: #343538;
  margin-top: 120px;
  margin-bottom: 60px;
}

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

main {
  padding-top: 100px;
  background: #2A2A2A;
}

h1,
h2,
h3,
h4,
span,
li, p, a {
  font-family: "Roboto", sans-serif;
  transition: 0.3s all;
  color: #FFFFFF;
  margin: 0;
}

h1 {
  font-family: "Crimson Text", serif;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
h1 span {
  color: #4993D8;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Crimson Text", serif;
}

h2 {
  font-family: "Crimson Text", serif;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

h3 {
  font-family: "Roboto", serif;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0;
  text-transform: inherit;
  font-weight: 400;
}

h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
}

h5 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
  font-family: "Roboto";
}

a {
  font-size: 20px;
  font-weight: 400;
}

p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto";
  line-height: 26px;
}

.header-line-right {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 690px;
  height: 699px;
  top: 0;
  z-index: 0;
}

.header-line-left {
  position: absolute;
  left: 130px;
  top: 0;
  z-index: 0;
}

.primary-phone {
  display: flex;
  align-items: center;
  column-gap: 8px;
  text-decoration: none;
}
.primary-phone:hover p {
  color: #4993D8;
}
.primary-phone p {
  color: #FFFFFF;
  text-decoration: none;
}

.primary-button {
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  position: relative;
  width: fit-content;
  text-transform: uppercase;
}
.primary-button .arrow-icon {
  width: 24px;
  height: 24px;
  position: relative;
}
.primary-button .arrow-icon svg {
  position: absolute;
  right: 0px;
  transition: 0.3s all;
}
.primary-button .arrow-icon svg:nth-child(2) {
  opacity: 0;
}
.primary-button:hover svg:nth-child(2) {
  opacity: 1;
}
.primary-button:hover svg:nth-child(1) {
  opacity: 0;
}

.swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next {
  transition: 0.3s all;
}
.swiper-navigation .swiper-button-prev:hover, .swiper-navigation .swiper-button-next:hover {
  background: #4993D8;
  border-color: transparent;
}
.swiper-navigation .swiper-button-prev:hover::after, .swiper-navigation .swiper-button-next:hover::after {
  color: #fff;
}

.primary-button-border {
  border: 1px solid #4993D8;
  padding: 14px 26px;
  margin-left: auto;
  margin-top: 30px;
}
.primary-button-border:hover {
  background: #4993D8;
}

.breadcrumbs-section {
  padding-bottom: 80px;
}
.breadcrumbs-section .breadcrumbs-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1410px;
  margin: auto;
  position: relative;
  z-index: 9;
}
.breadcrumbs-section .breadcrumbs-bottom .breadcrumbs {
  color: #fff;
  font-family: "Roboto";
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.breadcrumbs-section .breadcrumbs-bottom .breadcrumbs a, .breadcrumbs-section .breadcrumbs-bottom .breadcrumbs span {
  font-size: 18px;
  text-decoration: none;
  font-weight: 400;
  font-family: "Roboto";
}

.breadcrumbs-primary:hover svg:nth-child(1) {
  opacity: 1;
}

.breadcrumbs-primary {
  cursor: pointer;
}

.fake-file-input {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 48px 0 15px;
  background-color: #fff;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
}

.fake-file-input .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  color: #fff;
}

.custom-file-field {
  position: relative;
}
.custom-file-field .field-label {
  position: absolute;
  top: 12px;
}
.custom-file-field.active .field-label {
  display: none;
}

.fake-file-input .file-icon {
  position: absolute;
  right: 12px;
  width: 22px;
  height: 24px;
  pointer-events: none;
  top: 12px;
}

input[type=file].file-hidden {
  display: none;
}

.fake-file-input {
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px dashed #C3D6E8;
  padding-left: 0;
}

.file-name {
  color: #0054A5;
}

.popup-form .wpcf7-response-output {
  margin: 0;
  color: #fff;
}
.popup-form .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.popup-form .nice-select:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 11px;
  width: 11px;
}
.popup-form .nice-select-dropdown {
  width: 100%;
  border-radius: 0;
  background: #215E8D;
  z-index: 99;
}
.popup-form .nice-select .list {
  margin: 0;
}
.popup-form .option.null.disabled {
  display: none;
}
.popup-form .nice-select .option {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto";
}
.popup-form .nice-select .option:hover {
  background: #4993D8;
}
.popup-form .form-praticien {
  height: 50px;
}
.popup-form .row-2-col {
  display: flex;
  margin-top: 20px;
  column-gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}
.popup-form .row-2-col .form-label {
  width: 49%;
}
.popup-form .row-2-col .form-label input {
  width: 100%;
  padding-left: 0px;
}
.popup-form input {
  background: transparent;
  border: unset;
  border-bottom: 1px solid #85B2DC;
  color: #fff !important;
  transition: 0.3s all;
}
.popup-form input:hover {
  border-color: #fff;
}
.popup-form .wpcf7-submit {
  border-radius: 0;
  padding: 14px 26px;
  border: 1px solid;
  cursor: pointer;
  margin-top: 40px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  transition: 0.3s all;
}
.popup-form .wpcf7-submit:hover {
  background: #4993D8;
  border-color: #4993D8;
}
.popup-form .wpcf7-submit span {
  height: 24px;
}
.popup-form textarea {
  background: unset;
  border: unset;
  border-bottom: 1px solid #85B2DC;
  height: 126px;
  padding-top: 20px;
  color: #fff;
  transition: 0.3s all;
}
.popup-form textarea:hover {
  border-color: #fff;
}
.popup-form textarea::placeholder {
  color: #fff;
}
.popup-form .wpcf7-select {
  padding-bottom: 10px;
  width: 100%;
  background: transparent;
  color: #fff;
  border: unset;
  border-bottom: 1px solid #85B2DC;
  padding-left: 0;
  border-radius: unset;
}
.popup-form .wpcf7-select:hover {
  border-color: #fff;
}
.popup-form .wpcf7-select span {
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 400;
}
.popup-form .popup-form-label {
  position: absolute;
  z-index: 9;
  left: 0px;
  top: -5px;
  pointer-events: none;
  transition: 0.3s all;
  font-family: "Roboto";
  font-weight: 400;
}
.popup-form .popup-form-label p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-family: "Roboto";
  font-weight: 400;
  transition: 0.3s all;
}
.popup-form .popup-form-label.active {
  top: -18px;
  left: 0px;
}
.popup-form .popup-form-label.active p {
  font-size: 14px;
}
.popup-form .form-label {
  position: relative;
  margin-bottom: 20px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: 0.5s all;
}
.preloader p {
  font-size: 50px;
}
.preloader .preloader-image {
  display: flex;
  height: 100%;
  align-items: center;
}
.preloader .preloader-image img {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  transition: 0.3s all;
}
.preloader .preloader-image .first-step {
  transform: scale(1);
  transition: 1s all;
}
.preloader .preloader-image .first-step.show {
  opacity: 1;
  transform: scale(0.522);
}
.preloader .preloader-image .second-step {
  transform: translate(-150%, 110px);
  opacity: 0;
  transition: 0.8s all;
}
.preloader .preloader-image .second-step.show {
  opacity: 1;
  transform: translate(2.5%, 110px);
}

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

.preloader.hide {
  opacity: 0;
  top: -1000px;
  pointer-events: none;
  transition: 0.5s all;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #fff;
}

.widget-right {
  position: fixed;
  top: 0;
  bottom: -25%;
  right: 180px;
  margin: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.widget-right a {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D5B93;
  transition: 0.3s all;
}
.widget-right a:hover {
  background: #234976;
}

.line-animation {
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.line-animation.animate {
  transform: scaleY(1);
  opacity: 1;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background: #4993D8;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
}

.app__wrapper--left-links a {
  display: block;
}
.app__wrapper--left-links a:hover img {
  transform: scale(1.1);
}
.app__wrapper--left-links a img {
  transition: 0.3s all;
}

.primary-location {
  transition: 0.3s all;
}
.primary-location:hover {
  color: #4993D8;
}
.primary-location:hover svg g path {
  fill: #4993D8;
}

.primary-phone {
  transition: 0.3s all;
}
.primary-phone:hover {
  color: #4993D8;
}
.primary-phone:hover svg path {
  stroke: #4993D8;
}

footer .site-info a:hover {
  color: #4993D8;
}

.primary-button:hover p {
  color: #4993D8;
}

.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
  align-items: center;
}

.wp-block-columns {
  margin-bottom: 28px;
}

.site-header .rdv-button svg {
  margin-top: -5px;
}

.orthodontie-top__wrapper--right p {
  margin-bottom: 18px;
}

.hide {
  display: none;
}

.primary-button-border:hover p {
  color: #fff;
}

.conseils__wrapper--right .conseils-item .primary-button img {
  max-width: max-content;
  object-fit: cover;
}

.wp-block-media-text.has-media-on-the-right {
  margin-bottom: 32px;
}

.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
  padding-left: 0;
}

.side-widget {
  position: fixed;
  top: 0;
  bottom: -25%;
  right: 180px;
  margin: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.side-widget__content {
  position: relative;
}
.side-widget__content--address {
  background: #2D5B93;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  width: fit-content;
  padding-right: 20px;
  border-top: unset;
  border-bottom: unset;
  text-decoration: none;
  padding: 4px;
  padding-left: 17px;
  padding-right: 7px;
  height: 60px;
}
.side-widget__content--address p {
  display: block;
  margin: 0;
  margin-left: 10px;
  text-wrap: nowrap;
  transition: 0.3s all;
  text-decoration: none;
  color: #fff;
  transition: 0.3s all;
  font-size: 16px;
  max-width: 0;
  white-space: nowrap;
  transition: max-width 0.3s ease-out;
  overflow: hidden;
}
.side-widget__content--address:hover {
  transition: 0.3s all;
  background: #4993D8;
}
.side-widget__content--address:hover p {
  transition: 0.3s all;
  max-width: 300px;
  overflow: visible;
  margin-right: 20px;
  margin-left: 20px;
}
.side-widget__content--rdv {
  background: #2D5B93;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  width: fit-content;
  padding-right: 20px;
  border-top: unset;
  border-bottom: unset;
  text-decoration: none;
  padding: 4px;
  padding-left: 17px;
  padding-right: 7px;
  height: 60px;
}
.side-widget__content--rdv svg {
  width: 24px;
}
.side-widget__content--rdv p {
  display: block;
  margin: 0;
  margin-left: 10px;
  text-wrap: nowrap;
  transition: 0.3s all;
  text-decoration: none;
  color: #fff;
  transition: 0.3s all;
  font-size: 16px;
  max-width: 0;
  white-space: nowrap;
  transition: max-width 0.3s ease-out;
  overflow: hidden;
  display: flex;
  column-gap: 5px;
}
.side-widget__content--rdv:hover {
  transition: 0.3s all;
  background: #4993D8;
}
.side-widget__content--rdv:hover p {
  transition: 0.3s all;
  max-width: 300px;
  overflow: visible;
  margin-right: 20px;
  margin-left: 20px;
}
.side-widget__content--phone {
  background: #2D5B93;
  margin-left: auto;
  cursor: pointer;
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  width: fit-content;
  padding-right: 20px;
  border-bottom: unset;
  text-decoration: none;
  padding: 4px;
  padding-left: 17px;
  padding-right: 7px;
  height: 60px;
}
.side-widget__content--phone p {
  display: block;
  margin: 0;
  margin-left: 10px;
  text-wrap: nowrap;
  transition: 0.3s all;
  text-decoration: none;
  color: #fff;
  transition: 0.3s all;
  font-size: 16px;
  pointer-events: none;
  white-space: nowrap;
  max-width: 0;
  transition: max-width 0.3s ease-out;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .side-widget__content--phone p {
    pointer-events: all;
  }
}
.side-widget__content--phone:hover {
  transition: 0.3s all;
  background: #4993D8;
}
.side-widget__content--phone:hover p {
  transition: 0.3s all;
  font-size: 16px;
  max-width: 100px;
  overflow: visible;
  margin-right: 20px;
  margin-left: 20px;
}

.disabled-arrow {
  display: none !important;
}

.gallery-video .popup-close {
  top: -62px;
  right: -68px;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  font-family: "Roboto" !important;
  color: #fff;
}

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

.wpcf7 form.sent .wpcf7-response-output {
  font-family: "Roboto" !important;
}

.acces__wrapper--left .popup-form textarea::placeholder {
  font-family: "Roboto";
  font-size: 18px;
}

.acces__wrapper--left .popup-form .wpcf7-not-valid-tip {
  font-size: 14px;
  font-family: "Roboto";
}

.popup-form textarea, .popup-form textarea::placeholder {
  font-family: "Roboto";
  font-size: 18px;
}

.popup-form .wpcf7-not-valid-tip {
  font-size: 14px;
  font-family: "Roboto";
}

.error-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 350px 0;
}
.error-section h1 {
  font-size: 160px;
  font-family: "Roboto";
  line-height: 160px;
}
.error-section h2 {
  color: #3973ba;
  margin-bottom: 10px;
}
.error-section .primary-button {
  margin-top: 20px;
  border: 1px solid #fff;
  padding: 15px 20px;
  transition: 0.3s all;
}
.error-section .primary-button svg {
  right: 20px;
  transition: 0.3s all;
}
.error-section .primary-button svg:last-child {
  opacity: 0;
  position: absolute;
}
.error-section .primary-button:hover {
  border-color: #2D5B93;
  background: #2D5B93;
}
.error-section .primary-button:hover svg:last-child {
  opacity: 1;
}
.error-section .primary-button:hover svg:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 1800px) {
  .cabinet-hero__wrapper-content p {
    margin-right: 150px;
  }
  .technologies__wrapper--content-item.active .technologies__wrapper--content-right {
    width: 80%;
  }
}
@media screen and (max-width: 1680px) {
  .cabinet-hero__wrapper .custom-slider__main {
    max-width: 800px;
  }
  .orthodontie-page h1 {
    position: relative;
  }
  .orthodontie-top {
    padding-right: 20px;
  }
  .traitements-posts .traitements-posts__wrapper {
    padding: 0 20px;
  }
  .orthodontie-top__wrapper {
    column-gap: 20px;
  }
  .orthodontie-top__wrapper--right {
    width: 100%;
  }
  .site-header .rdv-button {
    max-width: 250px;
  }
  .site-header__content--logo {
    max-width: 350px;
  }
}
@media screen and (max-width: 1600px) {
  .correspondants-page .correspondants-form {
    padding: 0 20px;
  }
  .correspondants-page .correspondants-form__wrapper {
    justify-content: space-between;
    column-gap: 50px;
  }
  .conseils__wrapper--right {
    padding-right: 20px;
  }
  .acces__wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .site-header__content {
    padding: 0;
  }
  .pdf {
    padding: 0 20px;
  }
  .gallery-video .title-arrows {
    padding: 0 20px;
  }
  .gallery-video .video-gallery {
    height: 210px;
  }
  .traitements__wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .laboratoire__wrapper {
    column-gap: 20px;
    padding: 0 20px;
  }
  .correspondants-page h1 {
    position: relative;
  }
  .correspondants-page .correspondants-top__wrapper {
    column-gap: 50px;
  }
}
@media screen and (max-width: 1440px) {
  .cabinet-hero__wrapper-content p {
    margin-right: 130px;
  }
}
@media screen and (max-width: 1530px) {
  .cabinet-hero__wrapper .custom-slider__main {
    max-width: 700px;
  }
}
@media screen and (max-width: 1430px) {
  .cabinet-hero__wrapper-content p {
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .site-header__content--logo {
    max-width: 300px;
  }
  .site-header .rdv-button {
    max-width: 200px;
  }
}
@media screen and (max-width: 1240px) {
  .technologies__wrapper--content-item.active .technologies__wrapper--content-right {
    padding: 60px 20px;
  }
  .conseils-post {
    column-gap: 20px;
  }
  .conseils-posts h1 {
    position: relative;
  }
  .traitements h2 {
    padding: 0 20px;
  }
  .traitements__wrapper .traitement-category .custom-shape {
    width: 100px;
    height: 100%;
  }
  .traitements__wrapper .traitement-category .traitement-category-link h3 {
    font-size: 22px;
  }
  .equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .equipe__wrapper--doctors .equipe-doctor img {
    height: 300px;
    max-width: 240px;
  }
  .hero {
    padding-top: 50px;
  }
  .equipe .equipe-left {
    height: 478px;
  }
  .app .app-image {
    max-width: 300px;
  }
  .app__wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  footer .site-info .site-info-top {
    padding: 0 20px;
    align-items: center;
    row-gap: 30px;
    flex-direction: column;
  }
  footer .site-info .site-info-top .site-footer-left {
    max-width: 250px;
    text-align: center;
  }
  footer .site-info .site-info-top .site-footer-right {
    max-width: 250px;
    text-align: center;
  }
  .acces__wrapper {
    column-gap: 20px;
  }
  .acces__wrapper {
    padding-bottom: 50px;
  }
  .hero__video .sound-toggle {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .cabinet-hero__wrapper .custom-slider {
    flex-direction: column;
    align-items: center;
  }
  .nos-valeurs__wrapper {
    position: relative;
  }
  .parcours .line-animation {
    display: none;
  }
  .conseils-posts__wrapper .conseils-post {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .breadcrumbs-section {
    padding-right: 20px;
    padding-left: 20px;
  }
  .conseils-posts h1 {
    margin-top: 0;
  }
  .conseils-posts__wrapper .conseils-post img {
    width: 100%;
  }
  header .primary-phone {
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  header .rdv-button {
    margin: auto;
    border: 1px solid #fff;
    padding: 10px 20px;
  }
  .widget-right {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .app .app-image {
    display: none;
  }
  .app .app-lines {
    display: none;
  }
  .app__wrapper {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .app__wrapper--left {
    margin-right: auto;
  }
  .app__wrapper--right {
    margin-left: auto;
  }
  .pdf__wrapper-files {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .pdf__wrapper-files .pdf__wrapper-file:last-child {
    display: none;
  }
  .traitements h2 {
    text-align: center;
  }
  .traitements__wrapper {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .equipe__wrapper--doctors {
    column-gap: 20px;
    text-align: center;
  }
  .hero__wrapper {
    text-align: center;
    row-gap: 20px;
    flex-direction: column;
  }
  .orthodontie-top__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .traitements-posts .traitements-posts__wrapper--right {
    flex: auto;
  }
  .traitements-posts .traitements-posts__wrapper {
    flex-direction: column;
  }
  .traitements-posts .traitements-posts__wrapper--left {
    flex: auto;
    width: 100%;
  }
  .traitements-posts .traitements-posts__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 998px) {
  .single-post .wp-block-columns .wp-block-column .wp-block-image.size-full {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .single-post__content {
    padding: 0 20px;
  }
  .single-post ol.wp-block-list {
    margin-left: 20px;
  }
  .correspondants-page .correspondants-form__wrapper {
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .correspondants-page .correspondants-form h2 {
    text-align: center;
  }
  .pdf-page {
    padding: 0 20px;
  }
  .pdf-page__wrapper--files-item {
    width: 100%;
  }
  .parcours__wrapper h2 {
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
  }
  .parcours__wrapper {
    padding-top: 50px;
  }
  .technologies__wrapper h2 {
    margin: auto;
    text-align: center;
  }
  .pdf-page__wrapper--files {
    flex-direction: column;
    align-items: center;
  }
  .nos-valeurs__wrapper {
    margin: auto;
    padding: 70px 20px;
  }
  .nos-valeurs .vlaeurs-sign {
    right: 0;
  }
  .nos-valeurs .line-animation {
    right: 0;
  }
  .technologies__wrapper--content-item {
    height: auto;
  }
  .technologies__wrapper--content {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .correspondants-page h1 {
    margin-top: 0;
  }
  .breadcrumbs-section {
    padding-top: 50px;
  }
  .correspondants-page .correspondants-top__wrapper {
    flex-direction: column;
    padding: 0 20px;
    row-gap: 20px;
  }
  .parallax-css {
    height: 400px;
    background-attachment: unset;
  }
  .cv-bio ul {
    margin-left: 20px;
  }
  .cv-bio__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 0 20px;
  }
  .cv-bio .cv-video {
    margin: 0;
    height: 520px;
  }
  .orthodontie-top {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  .parcours .parcours-line {
    display: none;
  }
  .parcours__wrapper .parcours__columns {
    padding: 0 20px;
  }
  .parcours__wrapper .parcours__columns .parcours__column {
    flex-direction: column;
  }
  .laboratoire__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .parcours__wrapper .parcours__columns .parcours__column .parcours__etape:nth-child(2n) {
    margin-left: auto;
  }
  .nos-valeurs__wrapper--items {
    flex-direction: column;
    row-gap: 20px;
  }
  .technologies__wrapper--content-item.active .technologies__wrapper--content-right {
    width: 100%;
    overflow: initial;
  }
  .technologies__wrapper--content-item {
    flex-direction: column;
  }
  .equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image .primary-button {
    opacity: 1;
    position: relative;
    top: unset;
    bottom: unset;
    margin-top: 20px;
  }
  .pdf-page__wrapper--files-item {
    flex-direction: column;
    width: 60%;
  }
  .pdf-page__wrapper--files-content {
    padding: 10px;
  }
  .pdf-page__wrapper--files-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: 36px;
    row-gap: 0;
  }
  h1 span {
    font-size: 34px;
  }
  .hero__video {
    margin-top: 20px;
  }
  .hero {
    padding-top: 0;
  }
  .equipe__wrapper--doctors {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image:hover img {
    opacity: 1;
  }
  .equipe__wrapper h2, .equipe__wrapper h3 {
    text-align: center;
  }
  .gallery-video .swiper-slide-next {
    opacity: 0.3;
  }
  .gallery-video .swiper-slide-prev {
    opacity: 0.3;
  }
  .pdf__wrapper-title {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 20px;
  }
  .acces__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .acces__wrapper--right {
    max-width: 570px;
  }
  footer .site-info .site-info-bottom {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .site-info-bottom-left {
    text-align: center;
  }
  footer .site-info .site-info-bottom .site-info-bottom-right {
    max-width: 100%;
    text-align: center;
  }
  .header-line-left {
    display: none;
  }
  .equipe__wrapper--doctors .equipe-doctor .equipe-doctor__image {
    flex-direction: column-reverse;
  }
  .line-animation {
    display: none;
  }
  .gallery-video .video-gallery {
    height: 150px;
  }
  .conseils__wrapper--right {
    padding: 0 20px;
    z-index: 1;
  }
  .conseils__wrapper--left {
    z-index: 0;
  }
  .conseils__wrapper {
    flex-direction: column;
  }
  .conseils-posts__wrapper .conseils-post {
    padding: 0 20px;
  }
}
@media screen and (max-width: 470px) {
  .traitements-posts .traitements-posts__wrapper--right {
    height: 300px;
  }
  .traitements-posts .traitements-posts__wrapper--right .traitement-post__image {
    height: 100%;
  }
  h1 {
    font-size: 28px;
    line-height: 28px;
  }
  h1 span {
    font-size: 24px;
    line-height: 28px;
  }
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  .gallery-video .video-gallery {
    height: 250px;
  }
  .gallery-video .swiper-slide img {
    width: 100%;
  }
  .gallery-video .swiper-slide p {
    text-align: center;
  }
  .pdf__wrapper-container {
    padding: 10px;
  }
  .pdf__wrapper-file {
    flex-direction: column;
    max-width: 260px;
  }
  .pdf__wrapper-container h3 {
    line-height: 26px;
    margin-bottom: 10px;
  }
  .app .app-background {
    filter: brightness(0.7);
  }
  .acces__wrapper {
    padding-top: 50px;
  }
  footer .site-info .site-info-top svg {
    width: 90%;
  }
  .breadcrumbs-section .breadcrumbs-bottom .breadcrumbs {
    overflow: auto;
    margin-left: 50px;
  }
  .breadcrumbs-section .breadcrumbs-bottom .breadcrumbs span {
    white-space: nowrap;
  }
}
.pdf__wrapper-files .pdf__wrapper-file:last-child {
  opacity: 0.5;
}

.traitements__wrapper .traitement-category {
  position: relative;
}
/*# sourceMappingURL=style.css.map */
