@charset "UTF-8";
:root {
  --transition-base: all .3s linear 0s;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 3px;
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px rgba(160, 157, 125, 0.3);
}

*::-webkit-scrollbar-thumb {
  background-color: #c3a159;
  outline: 1px solid #c3a159;
}

.scroll-disabled {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #222222;
  font-size: inherit;
}

.container {
  width: 1270px;
  padding: 0 15px;
  margin: 0 auto;
}

.container-sm {
  width: 846px;
  padding: 0 15px;
  margin: 0 auto;
}

.title-section {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.8px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: var(--transition-base);
  background-color: transparent;
}
.btn.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.btn.w392 {
  width: 392px;
  max-width: 100%;
}
.btn.h52 {
  height: 52px;
}
.btn span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
  position: relative;
  z-index: 2;
}
.btn svg {
  position: relative;
  z-index: 2;
}
.btn:hover {
  transition: var(--transition-base);
}
.btn.btn-border {
  border: 1px solid var(--Linear, #b2965d);
  position: relative;
  color: #222222;
}
.btn.btn-border:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: var(--Linear, linear-gradient(109deg, #b2965d 15.52%, #d6bf8d 87.13%));
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition-base);
}
.btn.btn-border:hover {
  opacity: 1;
}
.btn.btn-border:hover:before {
  opacity: 1;
  transition: var(--transition-base);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fd-c {
  flex-direction: column;
}

.jc-c {
  justify-content: center;
}

input {
  border-radius: 0 !important;
}

input[type=search] {
  -webkit-appearance: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  height: 136px;
  color: #222222;
}
.header.animated {
  transition: var(--transition-base);
}
.header.animated.scroll {
  transition: var(--transition-base);
}
.header.animated .container {
  transition: var(--transition-base);
}
.header.home {
  color: #ffffff;
}
.header.active {
  color: #222222;
}
.header.scroll {
  color: #222222;
  height: 76px;
}
.header.scroll:before {
  opacity: 1;
  transition: var(--transition-base);
}
.header.scroll .container {
  height: 76px;
}
.header.scroll .logo svg g {
  opacity: 0;
  transition: var(--transition-base);
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  z-index: 1;
  opacity: 0;
  transition: var(--transition-base);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 136px;
  position: relative;
  z-index: 2;
}
.header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 120px;
  height: 120px;
}
.header .logo svg.logo-small {
  display: none;
}
.header .logo svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header .logo svg g {
  opacity: 1;
  transition: var(--transition-base);
}
.header .menu-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  height: 100%;
}
.header .menu-items li {
  height: 100%;
}
.header .menu-items li a {
  height: 100%;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header .menu-items li a .box-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .menu-items li a .box-svg .v-line {
  transition: var(--transition-base);
}
.header .menu-items li a:hover {
  transition: var(--transition-base);
  transform: skewX(-15deg);
}
.header .menu-items li a:hover .box-svg .v-line {
  transition: var(--transition-base);
  opacity: 0;
}
.header .menu-items li.menu-item-has-children {
  position: relative;
}
.header .menu-items li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition: var(--transition-base);
}
.header .menu-items li.menu-item-has-children .sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 392px;
  padding: 20px;
  gap: 20px;
  background-color: #1d1d1b;
  color: #f6f6f6;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(10%);
  transition: var(--transition-base);
}
.header .menu-items li.menu-item-has-children .sub-menu a {
  transition: var(--transition-base);
}
.header .menu-items li.menu-item-has-children .sub-menu a:hover {
  transform: skewX(-15deg);
  transition: var(--transition-base);
}
.header .left {
  height: 100%;
}
.header .right {
  display: flex;
  height: 100%;
}
.header .right .menu-items {
  margin-right: 38px;
}
.header .right .link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-right: 38px;
}
.header .right .link.tablet-link {
  display: none;
}
.header .right .link path {
  transition: var(--transition-base);
}
.header .right .link:nth-child(3) {
  margin-right: 32px;
}
.header .right .link:hover span {
  transition: var(--transition-base);
  transform: skewX(-15deg);
}
.header .right .link:hover svg path {
  fill: #b2965d;
  transition: var(--transition-base);
}
.header .right .link span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: var(--transition-base);
}

.burger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger svg {
  width: 34px;
  height: 34px;
}
.burger .line {
  fill: none;
  stroke: #c3a159;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.burger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger.active .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.burger.active .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.burger.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.big-menu {
  background-image: url("../img/menu-bg.webp");
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  height: 622px;
  width: 100%;
  position: fixed;
  z-index: 890;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(-110%);
  opacity: 0;
  transition: var(--transition-base);
}
.big-menu.active {
  transform: translateY(0%);
  opacity: 1;
  transition: var(--transition-base);
}
.big-menu .link {
  display: none;
}
.big-menu .container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 113px;
}
.big-menu .menu-items {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  gap: 138px;
}
.big-menu .menu-items .box-svg,
.big-menu .menu-items .sub-menu {
  display: none;
}
.big-menu .menu-items li {
  margin-bottom: 40px;
}
.big-menu .menu-items li:nth-child(5n) {
  margin-bottom: 0;
}
.big-menu .menu-items li a {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.big-menu .menu-items li a:hover {
  transition: var(--transition-base);
  background: linear-gradient(109deg, #b2965d 15.52%, #d6bf8d 87.13%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .header .right .link {
    margin-right: 20px;
    gap: 8px;
  }
  .header .right .link:nth-child(3) {
    margin-right: 20px;
  }
  .header .right .link span {
    font-size: 14px;
  }
  .header .right .menu-items {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .header {
    height: 76px;
  }
  .header.home {
    color: #222222;
  }
  .header:before {
    opacity: 1;
    transition: var(--transition-base);
  }
  .header.scroll .logo svg.logo-small {
    display: block;
  }
  .header .container {
    height: 76px;
  }
  .header .menu-items,
  .header .left {
    display: none;
  }
  .header .logo {
    width: 63px;
    height: 48px;
  }
  .header .logo svg.logo-big {
    display: none;
  }
  .header .logo svg.logo-small {
    width: 100%;
    height: auto;
    display: block;
  }
  .header .right .link.tablet-link {
    display: flex;
  }
  .big-menu {
    background-image: url("../img/menu-bg-table.webp");
    top: 76px;
    height: auto;
  }
  .big-menu .container {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .big-menu .menu-items li {
    margin-bottom: 34px;
  }
  .big-menu .menu-items li a {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 700px) {
  .big-menu {
    height: calc(100svh - 60px);
    max-height: -webkit-fill-available;
    top: 54px;
    background-image: none;
    background-color: #f6f6f6;
  }
  .big-menu .container {
    height: calc(100svh - 60px);
    max-height: -webkit-fill-available;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 34px;
  }
  .big-menu .link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }
  .big-menu .menu-items {
    width: 100%;
    display: block;
    -moz-columns: 1;
         columns: 1;
  }
  .big-menu .menu-items .box-svg {
    display: flex !important;
  }
  .big-menu .menu-items > li {
    margin-top: 34px;
    margin-bottom: 34px;
  }
  .big-menu .menu-items > li:first-child {
    margin-top: 0;
  }
  .big-menu .menu-items > li:last-child {
    margin-bottom: 0;
  }
  .big-menu .menu-items .sub-menu {
    flex-direction: column;
    margin-top: 10px;
  }
  .big-menu .menu-items .sub-menu li {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .big-menu .menu-items .sub-menu li:first-child {
    margin-top: 0;
  }
  .big-menu .menu-items .sub-menu li:last-child {
    margin-bottom: 0;
  }
  .big-menu .menu-items li {
    width: 100%;
    margin-bottom: 0;
  }
  .big-menu .menu-items li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .big-menu .menu-items li a.active .box-svg .v-line {
    opacity: 0;
    transition: var(--transition-base);
  }
  .header {
    height: 54px;
  }
  .header.scroll {
    height: 54px;
  }
  .header.scroll .container {
    height: 54px;
  }
  .header .container {
    height: 54px;
  }
  .header .right .link {
    margin-right: 34px;
  }
  .header .right .link.mobile-hidden {
    display: none;
  }
}
.footer {
  background-image: url("../img/footer-bg.webp");
  width: 100%;
  padding: 100px 0 114px;
}
.footer .copyright-table {
  display: none;
}
.footer .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.footer .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .col:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .menu-items {
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
.footer .menu-items li a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
  display: flex;
  transition: var(--transition-base);
}
.footer .menu-items li a:hover {
  transition: var(--transition-base);
  background: linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer .copyright p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.footer .copyright a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #C3A159;
  transition: var(--transition-base);
  display: flex;
}
.footer .copyright a:hover {
  transition: var(--transition-base);
  transform: skewX(-15deg);
}

@media only screen and (max-width: 768px) {
  .footer {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 55px;
  }
  .footer .container {
    flex-wrap: wrap;
  }
  .footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .footer .logo svg {
    width: 45%;
    height: auto;
  }
  .footer .menu-items {
    gap: 25px;
  }
  .footer .col:nth-child(1) {
    width: 100%;
  }
  .footer .col:nth-child(1) .copyright {
    display: none;
  }
  .footer .col:nth-child(2) {
    width: 50%;
  }
  .footer .col:nth-child(3) {
    width: 50%;
  }
  .footer .copyright-table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    text-align: center;
  }
  .footer .copyright-table p {
    text-align: center;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
p {
  cursor: default;
}

a,
a span {
  cursor: pointer;
}

.article-content a {
  color: #C3A159;
}
.article-content a:hover {
  transition: var(--transition-base);
  opacity: 0.75;
}
.article-content h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 20px 0;
  text-align: center;
}
.article-content h1:first-child {
  margin-top: 0;
}
.article-content h1:last-child {
  margin-bottom: 0;
}
.article-content h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.8px;
  text-align: center;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 48px 0 20px;
}
.article-content h2:first-child {
  margin-top: 0;
}
.article-content h2:last-child {
  margin-bottom: 0;
}
.article-content h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  font-feature-settings: "liga" off;
  margin: 20px 0;
  text-align: center;
}
.article-content h3:first-child {
  margin-top: 0;
}
.article-content h3:last-child {
  margin-bottom: 0;
}
.article-content h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  font-feature-settings: "liga" off;
  margin: 20px 0;
  text-align: center;
}
.article-content h4:first-child {
  margin-top: 0;
}
.article-content h4:last-child {
  margin-bottom: 0;
}
.article-content h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  font-feature-settings: "liga" off;
  margin: 20px 0;
  text-align: center;
}
.article-content h5:first-child {
  margin-top: 0;
}
.article-content h5:last-child {
  margin-bottom: 0;
}
.article-content p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  margin: 20px 0;
}
.article-content p:first-child {
  margin-top: 0;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content ul li {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  padding-left: 20px;
  color: #222;
}
.article-content ul li span {
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.09px;
  color: #222;
}
.article-content ul li:before {
  content: "•";
  position: absolute;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.45px;
  color: #222;
  top: -1px;
  left: 5px;
}
.article-content ol {
  padding-left: 25px;
}
.article-content ol li {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.article-content .wp-block-gallery {
  margin: 28px 0;
}
.article-content .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0;
  width: 100%;
}
.article-content .wp-block-image img {
  width: 100%;
  height: auto;
}

.wp-block-preformatted {
  background-color: #F1EDE9;
  padding: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  margin: 20px 0;
  font-family: "Open Sans", sans-serif;
}

.wp-medium-block .wp-block-gallery {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block .wp-block-preformatted {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block h2 {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block h3 {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block h4 {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block h5 {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block p {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block ol {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-medium-block ul {
  width: 1028px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wp-small-block .wp-block-gallery {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block .wp-block-image {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block h2 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block h3 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block h4 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block h5 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block p {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block ol {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block ul {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1024px) {
  .wp-medium-block .wp-block-gallery,
  .wp-medium-block .wp-block-preformatted,
  .wp-medium-block h2,
  .wp-medium-block h3,
  .wp-medium-block h4,
  .wp-medium-block h5,
  .wp-medium-block p,
  .wp-medium-block ol,
  .wp-medium-block ul {
    padding-left: 36px;
    padding-right: 36px;
  }
  .wp-small-block h2,
  .wp-small-block h3,
  .wp-small-block h4,
  .wp-small-block h5,
  .wp-small-block p,
  .wp-small-block ol,
  .wp-small-block ul {
    width: 100%;
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-preformatted {
    font-size: 18px;
    line-height: 26px;
  }
  .wp-text h1 {
    font-size: 31px;
  }
  .wp-text h2 {
    font-size: 28px;
  }
  .wp-text h3 {
    font-size: 22px;
  }
  .wp-text h4 {
    font-size: 20px;
  }
  .wp-text h5 {
    font-size: 18px;
  }
  .wp-text p {
    font-size: inherit;
  }
  .wp-text ul li {
    font-size: inherit;
  }
  .wp-text ol li {
    font-size: inherit;
  }
  .wp-text .wp-block-image {
    margin: 20px 0;
  }
  .wp-medium-block h1 {
    font-size: 31px;
  }
  .wp-medium-block h2 {
    font-size: 28px;
  }
  .wp-medium-block h3 {
    font-size: 22px;
  }
  .wp-medium-block h4 {
    font-size: 20px;
  }
  .wp-medium-block h5 {
    font-size: 18px;
  }
  .wp-medium-block p {
    font-size: inherit;
  }
  .wp-medium-block ul li {
    font-size: inherit;
  }
  .wp-medium-block ol li {
    font-size: inherit;
  }
  .wp-medium-block .wp-block-image {
    margin: 20px 0;
  }
  .wp-small-block h1 {
    font-size: 31px;
  }
  .wp-small-block h2 {
    font-size: 28px;
  }
  .wp-small-block h3 {
    font-size: 22px;
  }
  .wp-small-block h4 {
    font-size: 20px;
  }
  .wp-small-block h5 {
    font-size: 18px;
  }
  .wp-small-block p {
    font-size: inherit;
  }
  .wp-small-block ul li {
    font-size: inherit;
  }
  .wp-small-block ol li {
    font-size: inherit;
  }
  .wp-small-block .wp-block-image {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 700px) {
  .article-content {
    margin-bottom: 50px;
  }
  .wp-medium-block .wp-block-gallery,
  .wp-medium-block .wp-block-preformatted,
  .wp-medium-block h2,
  .wp-medium-block h3,
  .wp-medium-block h4,
  .wp-medium-block h5,
  .wp-medium-block p,
  .wp-medium-block ol,
  .wp-medium-block ul {
    padding-left: 15px;
    padding-right: 15px;
  }
  .wp-small-block h2,
  .wp-small-block h3,
  .wp-small-block h4,
  .wp-small-block h5,
  .wp-small-block p,
  .wp-small-block ol,
  .wp-small-block ul {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  justify-content: center;
  width: 100%;
}
.breadcrumbs::-webkit-scrollbar {
  height: 2px;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li a {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  transition: var(--transition-base);
  display: flex;
  white-space: nowrap;
}
.breadcrumbs li:last-child a {
  color: #C3A159;
}
.breadcrumbs li:hover a {
  transform: skewX(-15deg);
  transition: var(--transition-base);
}
.breadcrumbs li:after {
  content: "/";
  display: inline-block;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0 6px 0;
}
.breadcrumbs li:last-child:after {
  display: none;
}

.hero-page {
  background-image: url("../img/hero-page-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-page .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 302px;
  padding-bottom: 60px;
}
.hero-page .title-hero {
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px; /* 119.231% */
  letter-spacing: -0.52px;
  text-align: center;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.other-hero-page .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 302px;
  padding-bottom: 60px;
}
.other-hero-page .title-hero {
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px; /* 119.231% */
  letter-spacing: -0.52px;
  text-align: center;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .hero-page .title-hero {
    font-size: 44px;
    line-height: 54px;
  }
  .other-hero-page .title-hero {
    font-size: 44px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 700px) {
  .hero-page .title-hero {
    font-size: 36px;
    line-height: 46px;
  }
  .other-hero-page .title-hero {
    font-size: 36px;
    line-height: 46px;
  }
}
.preloader {
  background-image: url("../img/preloader-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

@keyframes animateMarginTop {
  from {
    padding-top: 100vh;
  }
  to {
    padding-top: 0;
  }
}
@keyframes animateTop {
  from {
    top: 0;
  }
  to {
    top: -100vh;
  }
}
.animate-margin-top {
  animation: animateMarginTop 3.1s ease forwards 1.5s;
}

.animate-top {
  animation: animateTop 3.1s ease forwards 1.5s;
}

.widget-box {
  width: 188px;
  height: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 103px;
  right: 103px;
  z-index: 900;
}
.widget-box:hover .widget-text-box:before {
  opacity: 1;
  transition: var(--transition-base);
}
.widget-box svg {
  width: 100%;
  height: 100%;
  animation-name: spin;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.widget-box .widget-text-box {
  position: absolute;
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--Linear, #B2965D);
  border-radius: 50%;
}
.widget-box .widget-text-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition-base);
}
.widget-box .widget-text-box p {
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
}

@media only screen and (max-width: 1024px) {
  .widget-box {
    right: 40px;
    bottom: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .widget-box {
    right: 20px;
    bottom: 20px;
    width: 82px;
    height: 82px;
  }
  .widget-box svg {
    display: none;
  }
  .widget-box .widget-text-box {
    width: 82px;
    height: 82px;
  }
  .widget-box .widget-text-box:before {
    opacity: 1;
  }
}
.hero {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
}
.hero .hero-video {
  height: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  pointer-events: none;
  position: relative;
}
.hero .hero-video:before {
  content: "";
  opacity: 0.3;
  background: #222;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.hero .hero-video video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero .sound {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19 13-5 4h-4v6h4l5 4V13ZM31 17l-6 6M25 17l6 6' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='.5' y='.5' width='39' height='39' rx='19.5' stroke='%23fff'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  bottom: 15%;
  cursor: pointer;
  height: 40px;
  position: absolute;
  left: 5%;
  width: 40px;
  z-index: 10;
  display: none !important;
}
.hero .sound.active {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m19 13-5 4h-4v6h4l5 4V13ZM27.07 12.93a10 10 0 0 1 0 14.14m-3.53-10.61a5 5 0 0 1 0 7.07' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='.5' y='.5' width='39' height='39' rx='19.5' stroke='%23fff'/%3E%3C/svg%3E");
}

.section-cabinet {
  background-image: url("../img/cabinet-bg.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 70px;
}
.section-cabinet .cabinet-big-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
  letter-spacing: -0.52px;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-cabinet .cabinet-big-title span {
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Philosopher", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
}
.section-cabinet .cabinet-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.8px;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-cabinet .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 114px;
  width: 825px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section-cabinet .text p {
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.section-cabinet .box {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
}
.section-cabinet .box .col {
  display: flex;
}
.section-cabinet .box .col.col-first {
  gap: 60px;
}
.section-cabinet .box .btn {
  height: 56px;
  width: 286px;
  max-width: 100%;
}
.section-cabinet .link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-cabinet .link span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
  transition: var(--transition-base);
}
.section-cabinet .link:hover span {
  transition: var(--transition-base);
}
.section-cabinet .img {
  position: relative;
  width: 568px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-34px);
}
.section-cabinet .img svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-cabinet .img picture {
  position: absolute;
  width: 83%;
  height: auto;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
}
.section-cabinet .img picture img {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .section-cabinet {
    overflow: hidden;
  }
  .section-cabinet .box {
    flex-wrap: wrap;
  }
  .section-cabinet .box .col:nth-child(1) {
    order: 2;
    width: 50%;
  }
  .section-cabinet .box .img {
    width: 100%;
    order: 1;
  }
  .section-cabinet .box .col:nth-child(3) {
    width: 50%;
    order: 3;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 700px) {
  .section-cabinet {
    padding: 60px 0 35px;
  }
  .section-cabinet .cabinet-big-title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .section-cabinet .cabinet-big-title span {
    font-size: 44px;
    line-height: 40px;
  }
  .section-cabinet .cabinet-title {
    font-size: 28px;
    line-height: 32px;
  }
  .section-cabinet .box .col:nth-child(1) {
    width: 100%;
    gap: 30px;
  }
  .section-cabinet .box .col:nth-child(3) {
    margin-top: 30px;
    width: 100%;
    justify-content: flex-start;
  }
}
@media (hover: hover) {
  .section-cabinet .link:hover span {
    transform: skewX(-15deg);
  }
}
.section-equipe .title-section {
  text-align: center;
  margin-bottom: 50px;
}
.section-equipe .doctor-box {
  padding-top: 140px;
  background: linear-gradient(270deg, #F6F6F6 33.69%, rgba(246, 246, 246, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.section-equipe .doctor-box .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 138px;
}
.section-equipe .doctor-box .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 392px;
  min-width: 392px;
  max-width: 100%;
}
.section-equipe .doctor-box .img picture {
  display: flex;
  width: 100%;
  height: auto;
}
.section-equipe .doctor-box .img img {
  width: 100%;
  height: auto;
}
.section-equipe .doctor-box .desc .title {
  font-feature-settings: "liga" off;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  margin-bottom: 20px;
}
.section-equipe .doctor-box .desc .sub-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  color: #c3a159;
  margin-bottom: 16px;
}
.section-equipe .doctor-box .desc ul {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  gap: 8px;
}
.section-equipe .doctor-box .desc ul li {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  position: relative;
  display: flex;
  align-items: flex-start;
}
.section-equipe .doctor-box .desc ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #222;
  border-radius: 50%;
  margin-right: 8px;
  transform: translateY(10px);
}
.section-equipe .assistante-wrapper .assistante-box {
  width: 100%;
  background: linear-gradient(90deg, #F6F6F6 25.16%, rgba(246, 246, 246, 0) 78.59%);
}
.section-equipe .assistante-wrapper .assistante-box .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 285px;
}
.section-equipe .assistante-wrapper .assistante-box .img {
  width: 392px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-equipe .assistante-wrapper .assistante-box .img picture {
  display: flex;
  width: 100%;
  height: auto;
}
.section-equipe .assistante-wrapper .assistante-box .img img {
  width: 100%;
  height: auto;
}
.section-equipe .assistante-wrapper .assistante-box .desc {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-equipe .assistante-wrapper .assistante-box .desc .title {
  text-align: right;
  font-feature-settings: "liga" off;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}
.section-equipe .assistante-wrapper .assistante-box .desc .position {
  color: #C3A159;
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}

@media only screen and (max-width: 1024px) {
  .section-equipe .doctor-box {
    padding-top: 90px;
  }
  .section-equipe .doctor-box .container {
    gap: 50px;
    align-items: flex-end;
  }
  .section-equipe .doctor-box .desc {
    padding-bottom: 40px;
  }
  .section-equipe .assistante-wrapper .assistante-box .container {
    gap: 200px;
  }
}
@media only screen and (max-width: 992px) {
  .section-equipe .doctor-box .container {
    gap: 25px;
  }
  .section-equipe .doctor-box .img {
    min-width: 50%;
  }
  .section-equipe .assistante-wrapper .assistante-box .container {
    gap: 25px;
  }
  .section-equipe .assistante-wrapper .assistante-box .img {
    min-width: 45%;
    width: 45%;
  }
}
@media only screen and (max-width: 700px) {
  .section-equipe {
    margin-bottom: 40px;
  }
  .section-equipe .title-section {
    margin-bottom: 30px;
  }
  .section-equipe .doctor-box {
    padding-top: 50px;
  }
  .section-equipe .doctor-box .container {
    flex-direction: column-reverse;
  }
  .section-equipe .doctor-box .img {
    width: 100%;
  }
  .section-equipe .doctor-box .desc {
    width: 100%;
  }
  .section-equipe .doctor-box .desc .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px;
  }
  .section-equipe .doctor-box .desc .sub-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
  }
  .section-equipe .assistante-wrapper .assistante-box .container {
    padding-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .section-equipe .assistante-wrapper .assistante-box .img {
    min-width: 90%;
    width: 90%;
  }
  .section-equipe .assistante-wrapper .assistante-box .desc {
    width: 100%;
  }
}
.section-gallery {
  display: flex;
  gap: 32px;
  margin-bottom: 117px;
}
.section-gallery .col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-gallery .col.col-4 {
  width: 35.5%;
}
.section-gallery .col.col-2 {
  width: 29%;
}
.section-gallery .col a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-gallery .col a img {
  width: 100%;
}

.section-gallery-mobile {
  display: none;
}
.section-gallery-mobile a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-gallery-mobile a img {
  width: 100%;
}

.fancybox__slide.has-image > .fancybox__content {
  width: 1026px !important;
  height: 680px !important;
  transform: none !important;
}

.fancybox-image {
  width: 1026px;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (max-width: 1200px) {
  .fancybox-image {
    width: 100%;
    height: auto;
  }
  .fancybox__slide.has-image > .fancybox__content {
    width: calc(100% - 10px) !important;
    height: auto !important;
  }
}
@media only screen and (max-width: 768px) {
  .section-gallery {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 700px) {
  .section-gallery-mobile {
    display: flex;
    width: 100%;
  }
  .section-gallery {
    display: none;
    flex-direction: column;
    gap: 20px;
  }
  .section-gallery .col {
    gap: 20px;
  }
  .section-gallery .col.col-4 {
    width: 100%;
  }
  .section-gallery .col.col-2 {
    width: 100%;
  }
}
.wrapper-section {
  position: relative;
  margin-bottom: 140px;
}

.section-notre-cabinet {
  position: sticky;
  top: 76px;
  left: 0;
  overflow: hidden;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.section-notre-cabinet .logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section-notre-cabinet .bg {
  display: none;
}
.section-notre-cabinet .container {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 25%;
}
.section-notre-cabinet .box {
  width: 392px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section-notre-cabinet .title-section {
  margin-bottom: 50px;
}
.section-notre-cabinet .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
.section-notre-cabinet .text p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.section-notre-cabinet .btn {
  width: 100%;
  height: 52px;
}

@media only screen and (max-width: 768px) {
  .section-notre-cabinet {
    position: relative;
    top: 0;
    margin-bottom: 0;
  }
  .section-notre-cabinet .container {
    padding-top: 50px;
    padding-bottom: 50px;
    position: static;
  }
  .section-notre-cabinet .logo {
    display: none;
  }
  .section-notre-cabinet .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
  }
}
@media only screen and (max-width: 700px) {
  .wrapper-section {
    margin-bottom: 50px;
  }
  .section-notre-cabinet .title-section {
    margin-bottom: 25px;
  }
  .section-notre-cabinet .text {
    margin-bottom: 25px;
  }
}
.section-technique {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  position: sticky;
  top: 76px;
  left: 0;
}
.section-technique.new .container {
  display: flex;
  justify-content: flex-end;
}
.section-technique .box {
  display: flex;
  flex-direction: column;
  width: 498px;
  max-width: 100%;
}
.section-technique .title-section {
  margin-bottom: 50px;
}
.section-technique .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
.section-technique .text p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.section-technique .btn {
  width: 392px;
  max-width: 100%;
  height: 52px;
}

@media only screen and (max-width: 1024px) {
  .section-technique {
    max-height: 600px;
  }
}
@media only screen and (max-width: 700px) {
  .section-technique {
    height: auto;
    margin-bottom: 0;
    position: relative;
    top: 0;
  }
  .section-technique:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #fff;
    opacity: 0.5;
  }
  .section-technique .container {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-technique .title-section,
  .section-technique .text {
    margin-bottom: 25px;
  }
}
.section-traitements {
  margin-bottom: 140px;
}
.section-traitements .title-section {
  text-align: center;
  margin-bottom: 46px;
}
.section-traitements .traitements-items {
  position: relative;
}
.section-traitements .traitements-items .traitements-item {
  transition: var(--transition-base);
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  background-color: #fff;
}
.section-traitements .traitements-items .traitements-item:nth-child(1) {
  background-color: #f6f6f6;
}
.section-traitements .traitements-items .traitements-item:nth-child(2) {
  background-color: #f1f1f1;
}
.section-traitements .traitements-items .traitements-item:nth-child(3) {
  background-color: #e9e9e9;
}
.section-traitements .traitements-items .traitements-item:nth-child(4) {
  background-color: #e3e3e3;
}
.section-traitements .traitements-items .traitements-item:nth-child(5) {
  background-color: #d8d8d8;
}
.section-traitements .traitements-items .traitements-item:nth-child(6) {
  background-color: #d0d0d0;
}
.section-traitements .traitements-items .traitements-item:nth-child(7) {
  background-color: #c8c8c8;
}
.section-traitements .traitements-items .traitements-item:hover svg path.svg-bg {
  fill: #c3a159;
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item:hover svg path.svg-arrow {
  stroke: #222222;
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item.active .box {
  padding-top: 100px;
  padding-bottom: 100px;
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item.active .img svg {
  transition: var(--transition-base);
  opacity: 0;
}
.section-traitements .traitements-items .traitements-item.active-default .box {
  padding-top: 100px;
  padding-bottom: 100px;
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item.active-default .img img {
  display: block;
}
.section-traitements .traitements-items .traitements-item.active-default .img svg {
  transition: var(--transition-base);
  opacity: 0;
}
.section-traitements .traitements-items .traitements-item.active-default .desc .text {
  display: block;
}
.section-traitements .traitements-items .traitements-item.active-default .desc .btn {
  display: flex;
}
.section-traitements .traitements-items .traitements-item .box {
  display: flex;
  align-items: center;
  padding-top: 45px;
  padding-bottom: 45px;
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item .top svg {
  display: none;
}
.section-traitements .traitements-items .traitements-item .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49vw;
  min-width: 944px;
  position: relative;
  min-height: 50px;
}
.section-traitements .traitements-items .traitements-item .img img {
  width: 100%;
  display: none;
}
.section-traitements .traitements-items .traitements-item .img svg {
  position: absolute;
  top: 0;
  margin-left: calc((100vw - 1270px) / 2 + 15px);
  left: 0;
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item .img svg path.svg-bg {
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item .img svg path.svg-arrow {
  transition: var(--transition-base);
}
.section-traitements .traitements-items .traitements-item .desc {
  padding-left: 7vw;
  width: 51vw;
  min-width: calc(100vw - 944px);
  padding-right: calc((100vw - 1270px) / 2 + 20px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.section-traitements .traitements-items .traitements-item .desc .title {
  color: #222;
  font-feature-settings: "liga" off;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}
.section-traitements .traitements-items .traitements-item .desc .text {
  color: #222;
  text-align: justify;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: none;
  margin-top: 50px;
}
.section-traitements .traitements-items .traitements-item .desc .btn {
  display: none;
}

@media (min-width: 1025px) and (max-width: 1499px) {
  .section-traitements .traitements-items .traitements-item .img {
    min-width: unset;
  }
  .section-traitements .traitements-items .traitements-item .desc {
    padding-left: 32px;
    min-width: unset;
    padding-right: 16px;
    max-width: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-traitements .traitements-items .traitements-item .img {
    min-width: 49vw;
  }
  .section-traitements .traitements-items .traitements-item .img img {
    min-height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-traitements .traitements-items .traitements-item .desc {
    min-width: 51vw;
  }
}
@media only screen and (max-width: 1024px) {
  .section-traitements .traitements-items .traitements-item .img svg {
    margin-left: 36px;
  }
  .section-traitements .traitements-items .traitements-item .desc {
    padding-left: 36px;
    padding-right: 36px;
  }
  .section-traitements .traitements-items .traitements-item .desc .title {
    font-size: 22px;
  }
  .section-traitements .traitements-items .traitements-item .desc .text {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .section-traitements .traitements-items .traitements-item.active-default .box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-traitements .traitements-items .traitements-item.active-default .box .desc {
    padding-top: 25px;
  }
  .section-traitements .traitements-items .traitements-item.active-default .top svg {
    display: none;
  }
  .section-traitements .traitements-items .traitements-item.active .box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-traitements .traitements-items .traitements-item.active .box .desc {
    padding-top: 25px;
  }
  .section-traitements .traitements-items .traitements-item.active .top svg {
    display: none;
  }
  .section-traitements .traitements-items .traitements-item .top {
    display: flex;
    gap: 25px;
  }
  .section-traitements .traitements-items .traitements-item .top svg {
    display: block;
  }
  .section-traitements .traitements-items .traitements-item .box {
    width: 100%;
    flex-direction: column;
  }
  .section-traitements .traitements-items .traitements-item .box .img {
    width: 100%;
    min-height: auto;
  }
  .section-traitements .traitements-items .traitements-item .box .img svg {
    display: none;
  }
  .section-traitements .traitements-items .traitements-item .box .desc {
    width: 100%;
  }
  .section-traitements .traitements-items .traitements-item .box .desc .title {
    line-height: 50px;
  }
  .section-traitements .traitements-items .traitements-item .box .desc .text {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 700px) {
  .section-traitements {
    margin-bottom: 50px;
  }
  .section-traitements .title-section {
    margin-bottom: 25px;
  }
  .section-traitements .traitements-items .traitements-item.active .box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .section-traitements .traitements-items .traitements-item .box {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .section-traitements .traitements-items .traitements-item .box .desc {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-traitements .traitements-items .traitements-item .box .desc .title {
    line-height: 36px;
  }
  .section-traitements .traitements-items .traitements-item .top svg {
    display: none;
  }
}
.section-cliniques {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 130px;
  height: 500px;
  position: relative;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.section-cliniques.new .container {
  display: flex;
  justify-content: flex-end;
}
.section-cliniques .title-section {
  margin-bottom: 50px;
}
.section-cliniques .btn {
  width: 392px;
  max-width: 100%;
  height: 52px;
}
.section-cliniques .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
.section-cliniques .text p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.section-cliniques .box {
  display: flex;
  flex-direction: column;
  width: 392px;
  max-width: 100%;
}

@media only screen and (max-width: 700px) {
  .section-cliniques {
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .section-cliniques .container {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .section-cliniques .btn {
    width: 100%;
  }
}
.section-faq-espace {
  top: -232px;
  margin-bottom: -226px;
  padding-top: 232px;
  position: relative;
  z-index: 1;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-faq-espace .faq {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 140px;
}
.section-faq-espace .faq .box-wrapper {
  position: relative;
  width: 676px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-faq-espace .faq svg {
  width: 100%;
  height: auto;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.section-faq-espace .faq .box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.section-faq-espace .espace {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}
.section-faq-espace .espace .box {
  width: 604px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}
.section-faq-espace .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 392px;
  max-width: 100%;
}
.section-faq-espace .text p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.section-faq-espace .btn {
  height: 52px;
  width: 392px;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  .section-faq-espace {
    margin-bottom: -274px;
  }
}
@media only screen and (max-width: 700px) {
  .section-faq-espace {
    padding-top: 152px;
    margin-bottom: -304px;
  }
  .section-faq-espace .btn {
    width: 100%;
  }
  .section-faq-espace .faq {
    margin-bottom: 50px;
  }
  .section-faq-espace .faq .box {
    gap: 25px;
  }
  .section-faq-espace .faq .box-wrapper {
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-faq-espace .faq .box-wrapper svg {
    width: calc(100% - 10px);
    height: auto;
  }
  .section-faq-espace .faq .box-wrapper .btn {
    width: calc(100% - 125px);
  }
  .section-faq-espace .espace .box {
    padding-left: 15px;
    padding-right: 15px;
    gap: 25px;
  }
}
.section-acces {
  padding-top: 134px;
  margin-bottom: 140px;
}
.section-acces .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-acces .title-section {
  margin-bottom: 50px;
}
.section-acces .acces-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.section-acces .acces-items .acces-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.section-acces .acces-items .acces-item span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
  transition: var(--transition-base);
}
.section-acces .acces-items .acces-item:hover span {
  transition: var(--transition-base);
}
.section-acces .horaires-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}
.section-acces .horaires-box .title {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  margin-bottom: 30px;
}
.section-acces .horaires-box .horaires-items {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.section-acces .horaires-box .horaires-items .horaires-item {
  width: 25%;
}
.section-acces .horaires-box .horaires-items .horaires-item.active .day:after {
  background-color: #C3A159;
}
.section-acces .horaires-box .horaires-items .horaires-item .day {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 7px;
  margin-bottom: 7px;
  position: relative;
}
.section-acces .horaires-box .horaires-items .horaires-item .day:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E5E1D9;
}
.section-acces .horaires-box .horaires-items .horaires-item .time {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-acces .map {
  width: 100%;
  height: 360px;
  background-color: silver;
}

@media only screen and (max-width: 700px) {
  .section-acces {
    margin-bottom: 50px;
  }
  .section-acces .title-section {
    margin-bottom: 25px;
  }
  .section-acces .acces-items {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  .section-acces .horaires-box {
    margin-bottom: 25px;
  }
  .section-acces .horaires-box .title {
    margin-bottom: 20px;
  }
  .section-acces .horaires-box .horaires-items {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px 0;
  }
  .section-acces .horaires-box .horaires-items .horaires-item {
    width: 33.3%;
  }
}
@media (hover: hover) {
  .section-acces .acces-items .acces-item:hover span {
    transform: skewX(-15deg);
  }
}
.section-contactez {
  position: relative;
  width: 100%;
}
.section-contactez input:-webkit-autofill,
.section-contactez input:-webkit-autofill:hover,
.section-contactez input:-webkit-autofill:focus,
.section-contactez textarea:-webkit-autofill,
.section-contactez textarea:-webkit-autofill:hover,
.section-contactez textarea:-webkit-autofill:focus,
.section-contactez select:-webkit-autofill,
.section-contactez select:-webkit-autofill:hover,
.section-contactez select:-webkit-autofill:focus {
  border: none !important;
  border-bottom: 1px solid #F6F6F6 !important;
  -webkit-text-fill-color: #F6F6F6 !important;
  -webkit-box-shadow: 0 0 0px 1000px #222222 inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
.section-contactez .wpcf7 form.invalid .wpcf7-response-output, .section-contactez .wpcf7 form.unaccepted .wpcf7-response-output, .section-contactez .wpcf7 form.payment-required .wpcf7-response-output {
  color: #ffffff;
  border: none !important;
  margin: 0;
  padding: 0;
}
.section-contactez .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 105px;
  padding-bottom: 145px;
}
.section-contactez .title-section {
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: none;
  margin-bottom: 96px;
}
.section-contactez .form-row {
  display: flex;
  gap: 32px;
}
.section-contactez .form-row.row-btn p {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.section-contactez .form-row .btn {
  margin-top: 40px;
}
.section-contactez .form-row .btn:hover span {
  color: #222222;
}
.section-contactez .form-row .btn span {
  color: #f6f6f6;
}
.section-contactez .form-row .input-box {
  width: 100%;
  margin-bottom: 62px;
}
.section-contactez .form-row .input-box p {
  width: 100%;
}
.section-contactez .form-row .input-box label {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-contactez .form-row .input-box label.active-label .label {
  font-size: 12px;
  top: -25px;
  transition: var(--transition-base);
}
.section-contactez .form-row .input-box label.active-label input {
  border-bottom-color: #F6F6F6;
}
.section-contactez .form-row .input-box label .wpcf7-not-valid-tip {
  font-size: 12px;
}
.section-contactez .form-row .input-box label .label {
  position: absolute;
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  top: 3px;
  left: 2px;
  opacity: 1;
  transition: var(--transition-base);
}
.section-contactez .form-row .input-box label .wpcf7-form-control-wrap {
  width: 100%;
}
.section-contactez .form-row .input-box label input {
  height: 32px;
  width: 100%;
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #434343;
  -webkit-appearance: none;
}
.section-contactez .form-row .input-box label input:focus {
  border-bottom-color: #F6F6F6;
}
.section-contactez .form-row .input-box label input::-moz-placeholder {
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-contactez .form-row .input-box label input::placeholder {
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-contactez .form-row .input-box label textarea {
  height: 64px;
  width: 100%;
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #434343;
  -webkit-appearance: none;
  border-radius: 0;
}
.section-contactez .form-row .input-box label textarea:focus {
  border-bottom-color: #F6F6F6;
}
.section-contactez .form-row .input-box label textarea::-moz-placeholder {
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-contactez .form-row .input-box label textarea::placeholder {
  color: #F6F6F6;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section-contactez .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  display: flex;
  left: 0;
  top: 0;
  height: 100%;
}
.section-contactez .bg-wrapper .bg-color {
  width: auto;
  height: 100%;
  position: absolute;
  top: -1px;
  right: 22.7%;
}
.section-contactez .bg-wrapper .right {
  margin-left: 77.4%;
  width: 22.6%;
  padding-right: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.section-contactez .bg-wrapper .right .logo {
  position: absolute;
  right: 36px;
  top: 25px;
  width: 30.2vw;
}
.section-contactez .bg-wrapper .right .logo-txt {
  position: absolute;
  left: -43%;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff !important; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #dc3232 !important; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  color: #dc3232 !important;
}

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

@media only screen and (max-width: 1270px) {
  .section-contactez .bg-wrapper .bg-color {
    right: 0;
  }
  .section-contactez .bg-wrapper .right {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .section-contactez {
    overflow: hidden;
  }
  .section-contactez .container {
    padding-top: 60px;
    padding-bottom: 75px;
  }
  .section-contactez .box {
    width: 100%;
  }
  .section-contactez .bg-wrapper .bg-color {
    right: -28%;
  }
}
@media only screen and (max-width: 700px) {
  .section-contactez .title-section {
    margin-bottom: 30px;
  }
  .section-contactez .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-contactez .form-row {
    flex-direction: column;
    gap: 0;
  }
  .section-contactez .form-row.row-btn {
    margin-top: -35px;
  }
  .section-contactez .bg-wrapper {
    background-color: #222;
  }
  .section-contactez .bg-wrapper .bg-color {
    display: none;
  }
}
.technique-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 160px;
}
.technique-page .technique-items {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.technique-page .technique-items .technique-item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 64px 0;
  gap: 32px;
}
.technique-page .technique-items .technique-item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49%;
  min-width: 49%;
}
.technique-page .technique-items .technique-item .img img {
  width: 100%;
}
.technique-page .technique-items .technique-item .desc {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 51%;
}
.technique-page .technique-items .technique-item .desc .title {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 125% */
  letter-spacing: -0.8px;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 498px;
  max-width: 100%;
}
.technique-page .technique-items .technique-item .desc .text {
  width: 498px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 15px;
}
.technique-page .technique-items .technique-item .desc .text p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
}
.technique-page .technique-items .technique-item:nth-child(odd) {
  flex-direction: row;
  background: linear-gradient(270deg, #F6F6F6 33.69%, #FFF 100%);
}
.technique-page .technique-items .technique-item:nth-child(odd) .desc {
  align-items: flex-start;
  padding-left: 7vw;
}
.technique-page .technique-items .technique-item:nth-child(even) {
  flex-direction: row-reverse;
  background: linear-gradient(90deg, #F6F6F6 26.74%, #FFF 75.42%);
}
.technique-page .technique-items .technique-item:nth-child(even) .title {
  text-align: right;
}
.technique-page .technique-items .technique-item:nth-child(even) .desc {
  align-items: flex-end;
  padding-right: 7vw;
}
@media only screen and (max-width: 1270px) {
  .technique-page .technique-items .technique-item:nth-child(odd) .desc {
    padding-left: 36px;
    padding-right: 36px;
  }
  .technique-page .technique-items .technique-item:nth-child(even) .desc {
    padding-left: 36px;
    padding-right: 36px;
  }
  .technique-page .technique-items .technique-item .desc {
    padding-left: 36px;
    padding-right: 36px;
  }
  .technique-page .technique-items .technique-item .desc .title,
  .technique-page .technique-items .technique-item .desc .text {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .technique-page .technique-items .technique-item .desc .title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .technique-page .technique-items .technique-item {
    padding: 0 0 40px;
    flex-direction: column;
  }
  .technique-page .technique-items .technique-item:nth-child(odd) {
    flex-direction: column;
  }
  .technique-page .technique-items .technique-item:nth-child(even) {
    flex-direction: column;
  }
  .technique-page .technique-items .technique-item:nth-child(even) .desc .title {
    text-align: left;
  }
  .technique-page .technique-items .technique-item .img {
    width: 100%;
  }
  .technique-page .technique-items .technique-item .desc {
    width: 100%;
  }
  .technique-page .technique-items .technique-item .desc .title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 700px) {
  .technique-page {
    margin-bottom: 50px;
  }
  .technique-page .technique-items {
    margin-bottom: 40px;
  }
  .technique-page .technique-items .technique-item:nth-child(odd) .desc {
    padding-left: 15px;
    padding-right: 15px;
  }
  .technique-page .technique-items .technique-item:nth-child(even) .desc {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.correspondant-form {
  margin-top: 40px;
  margin-bottom: 160px;
}
.correspondant-form .container-sm {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.correspondant-form .form-row {
  display: flex;
  gap: 32px;
}
.correspondant-form .form-row.jc-c p {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
.correspondant-form .form-row .input-box {
  width: 100%;
  margin-bottom: 62px;
}
.correspondant-form .form-row .input-box p {
  width: 100%;
}
.correspondant-form .form-row .input-box label {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.correspondant-form .form-row .input-box label.active-label .label {
  font-size: 12px;
  top: -14px;
  transition: var(--transition-base);
}
.correspondant-form .form-row .input-box label.active-label input {
  border-bottom-color: #C3A159;
}
.correspondant-form .form-row .input-box label .wpcf7-not-valid-tip {
  font-size: 12px;
}
.correspondant-form .form-row .input-box label .label {
  position: absolute;
  color: #222;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  top: 3px;
  left: 2px;
  opacity: 1;
  transition: var(--transition-base);
}
.correspondant-form .form-row .input-box label .wpcf7-form-control-wrap {
  width: 100%;
}
.correspondant-form .form-row .input-box label input {
  height: 32px;
  width: 100%;
  color: #222;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: none;
  border-bottom: 1px solid #F1EDE9;
}
.correspondant-form .form-row .input-box label input:focus {
  border-bottom-color: #C3A159;
}
.correspondant-form .form-row .input-box label input::-moz-placeholder {
  color: #222;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.correspondant-form .form-row .input-box label input::placeholder {
  color: #222;
  font-family: "Open Sans", sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.correspondant-form h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -0.8px;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 55px;
}
.correspondant-form p {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media only screen and (max-width: 700px) {
  .correspondant-form {
    margin-bottom: 50px;
  }
  .correspondant-form .container-sm {
    gap: 25px;
  }
  .correspondant-form h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  .correspondant-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.protocole-page h2 {
  margin-top: 60px;
}
.protocole-page h3,
.protocole-page h4,
.protocole-page h5,
.protocole-page h6 {
  margin-top: 60px;
  border-bottom: 1px solid #F1EDE9;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

@media only screen and (max-width: 700px) {
  .protocole-page h3,
  .protocole-page h4,
  .protocole-page h5,
  .protocole-page h6 {
    margin-top: 30px;
  }
}
.cliniques-page {
  margin-bottom: 160px;
}
.cliniques-page .cliniques-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 60px 32px;
  margin-bottom: 60px;
}
.cliniques-page .cliniques-items .cliniques-item {
  width: calc(50% - 16px);
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 16px;
}
.cliniques-page .cliniques-items .cliniques-item .item-name {
  width: 100%;
  color: var(--neutral-color-eerie-black, #222);
  text-align: center;
  font-feature-settings: "liga" off;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
}
.cliniques-page .cliniques-items .cliniques-item .swiper {
  width: 100%;
}
.cliniques-page .cliniques-items .cliniques-item .swiper .swiper-wrapper {
  height: auto;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-box {
  overflow: hidden;
  width: 100%;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cliniques-page .cliniques-items .cliniques-item .label {
  position: absolute;
  left: 0;
  bottom: 24px;
  background: #222;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-navigation {
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f6f6f6;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-button-prev {
  position: static;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-button-prev:after {
  display: none;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-button-next {
  position: static;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-button-next:after {
  display: none;
}
.cliniques-page .cliniques-items .cliniques-item .swiper-pagination {
  position: static;
  width: 109px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  letter-spacing: 0.09px;
}

@media only screen and (max-width: 768px) {
  .cliniques-page .cliniques-items {
    gap: 30px 20px;
  }
  .cliniques-page .cliniques-items .cliniques-item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 700px) {
  .cliniques-page {
    margin-bottom: 50px;
  }
  .cliniques-page .cliniques-items {
    flex-direction: column;
  }
  .cliniques-page .cliniques-items .cliniques-item {
    width: 100%;
  }
}
.cabinet-page {
  margin-bottom: 160px;
}

.section-cabinet-information .container {
  width: 1028px;
  max-width: 100%;
  padding: 0 15px;
}
.section-cabinet-information .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 50px;
}
.section-cabinet-information .text p {
  color: #222;
  text-align: justify;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.section-cabinet-information .text ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section-cabinet-information .text ul li {
  padding-left: 20px;
  color: #222;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}
.section-cabinet-information .text ul li:before {
  content: "•";
  position: absolute;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.45px;
  color: #222;
  top: -1px;
  left: 5px;
}

.section-cabinet-valeurs {
  padding-top: 120px;
  margin-bottom: 60px;
  width: 100%;
}
.section-cabinet-valeurs .title-section {
  text-align: center;
  margin-bottom: 30px;
}
.section-cabinet-valeurs .valeurs-items {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section-cabinet-valeurs .valeurs-items .line {
  height: 100%;
  width: auto;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item {
  position: relative;
  width: 100%;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(even) .item-wrapper {
  flex-direction: row;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(odd) .item-wrapper {
  flex-direction: row-reverse;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(1) .item-wrapper {
  padding-top: 46px;
  padding-bottom: 84px;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(3) .item-wrapper {
  padding-top: 79px;
  padding-bottom: 52px;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .item-wrapper {
  margin: 0 auto;
  width: 1186px;
  padding: 65px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .img {
  width: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc {
  width: 498px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 33px;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc .title-item {
  color: var(--Neutral-color-Eerie-Black, #222);
  font-feature-settings: "liga" off;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 135.714% */
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc .text-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc p {
  color: #222;
  text-align: justify;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc ul li {
  padding-left: 20px;
  color: #222;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}
.section-cabinet-valeurs .valeurs-items .valeurs-item .desc ul li:before {
  content: "•";
  position: absolute;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.45px;
  color: #222;
  top: -1px;
  left: 5px;
}

[data-aos=svg] path {
  stroke-dasharray: 2475 2477;
  stroke-dashoffset: 2476;
}

[data-aos=svg].aos-animate path {
  stroke-dasharray: 2475 2477;
  stroke-dashoffset: 2476;
  animation: draw 2000ms linear 0ms forwards;
}

@keyframes draw {
  100% {
    stroke-dashoffset: 0;
  }
}
.section-cabinet-gallery {
  margin-bottom: 60px;
  width: 100%;
  overflow: hidden;
}
.section-cabinet-gallery .myCabinetGallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-cabinet-gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-cabinet-gallery .swiper-slide.swiper-slide-active img {
  opacity: 1;
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.section-cabinet-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation {
  margin-top: 32px;
  width: 605px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-cabinet-gallery .swiper-navigation .swiper-button-prev {
  position: static;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.section-cabinet-gallery .swiper-navigation .swiper-button-prev:hover svg rect {
  fill: #C3A159;
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-prev:hover svg path {
  stroke: #222222;
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-prev svg rect {
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-prev svg path {
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-prev:after {
  display: none;
}
.section-cabinet-gallery .swiper-navigation .swiper-button-next {
  position: static;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
.section-cabinet-gallery .swiper-navigation .swiper-button-next:hover svg rect {
  fill: #C3A159;
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-next:hover svg path {
  stroke: #222222;
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-next svg rect {
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-next svg path {
  transition: var(--transition-base);
}
.section-cabinet-gallery .swiper-navigation .swiper-button-next:after {
  display: none;
}
.section-cabinet-gallery .swiper-navigation .swiper-pagination {
  position: static;
  width: 109px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #222;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.09px;
}
.section-cabinet-gallery .swiper-navigation .swiper-pagination .swiper-pagination-current {
  color: #C3A159;
}

@media only screen and (max-width: 1270px) {
  .section-cabinet-valeurs .valeurs-items .line {
    display: none;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(1) .item-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(2) .item-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(3) .item-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .item-wrapper {
    width: 100%;
    padding-left: 34px;
    padding-right: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .section-cabinet-valeurs .valeurs-items {
    gap: 60px;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(1) .item-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(2) .item-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(3) .item-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .item-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    gap: 40px;
    align-items: center;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .img {
    width: 40%;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .desc {
    padding-top: 0;
    width: 60%;
  }
}
@media only screen and (max-width: 700px) {
  .cabinet-page {
    margin-bottom: 50px;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(odd) .item-wrapper {
    flex-direction: column-reverse;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item:nth-child(even) .item-wrapper {
    flex-direction: column-reverse;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .item-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .desc {
    width: 100%;
  }
  .section-cabinet-valeurs .valeurs-items .valeurs-item .img {
    width: 100%;
  }
  .section-cabinet-gallery .swiper-navigation {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.article-content {
  margin-bottom: 160px;
}
.article-content .btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.error-page {
  margin-top: 200px;
}
.error-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-page .logo {
  margin-bottom: 40px;
}
.error-page .error-page__number {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 125% */
  letter-spacing: -0.8px;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.error-page .error-page__title {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 125% */
  letter-spacing: -0.8px;
  background: var(--Linear, linear-gradient(109deg, #B2965D 15.52%, #D6BF8D 87.13%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}
.error-page .error-page__subtitle {
  width: 500px;
  max-width: 100%;
  color: #222;
  text-align: center;
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 40px;
}

@media only screen and (max-width: 700px) {
  .error-page {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1270px) {
  .container {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .container-sm {
    width: 100%;
  }
  main {
    margin-top: 76px;
  }
  .btn span {
    font-size: 16px;
  }
  .container {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 700px) {
  main {
    margin-top: 54px;
  }
  .title-section {
    font-size: 32px;
    line-height: 36px;
  }
}
