@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  min-width: 320px;
}
body {
  color: #2d2823;
  line-height: 1;
  font-family: "Montserrat Alternates";
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button,
input,
textarea {
  font-family: "Montserrat Alternates";
  font-size: inherit;
}
button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}
a {
  color: inherit;
}
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
body {
  background-color: #efece8;
}
.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}
.cookie-consent {
  position: fixed;
  display: grid;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #556054;
  column-gap: 10px;
  width: calc(100% - 40px);
  max-width: 650px;
  box-shadow: 4px 4px 8px 0px rgba(85, 96, 84, 0.5);
  
  transition: all 0.6s ease 0s;
  transform: scale(0.5);
  opacity: 0;
  z-index: -3;
}
.cookie-consent.shown {
  transform: none;
  opacity: 1;
  z-index: 3;
}
.cookie-consent__title {
  margin-bottom: 10px;
  grid-row: 1;
  grid-column: 1;
  font-weight: 600;
}
.cookie-consent__btn {
  background-color: #556054;
  color: #fff;
  padding: 10px;
  margin-top: 10px;
  display: flex;
  justify-self: center;
  align-self: center;
  font-weight: 500;
}
.cookie-consent__info {
  line-height: 1.2;
  grid-row: 2;
  grid-column: 1;
}
.cookie-consent__link {
  display: block;
  margin-top: 10px;
  color: #556054;
}
@media screen and (max-width: 767px) {
  .cookie-consent__desktop {
    display: none;
  }
  
  .cookie-consent {
    text-align: center;
    padding: 20px;
    gap: 12px;
  }
  
  .cookie-consent * {
    margin: 0;
  }
  #hero_video {
    display: none;
  }
  #hero_video.shown {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .cookie-consent__btn {
    margin: 0;
    grid-row: 1/4;
    grid-column: 2;
  }
}
@media screen and (min-width: 1720px) {
  .cookie-consent {
    right: calc(50vw - 860px);
  }
}
[class*="__container"] {
  max-width: 107.5rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.select {
  position: relative;
}
.select__body {
  position: relative;
}
.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}
.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.875rem;
  padding: 0 0.9375rem;
  gap: 0.625rem;
}
.select__value > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}
.select__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0 5px 0;
}
.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}
.select__option._select-selected {
  background-color: #eee;
}
.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.select._select-open {
  z-index: 5;
}
._select-tag {
  cursor: pointer;
}
.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.rating.rating_sending {
  opacity: 0.2;
}
.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}
.rating__body {
  position: relative;
}
.rating__body::before {
  content: "★★★★★";
  display: block;
}
.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #556054;
}
.rating__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.rating__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}
.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0 0 0 10px;
}
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}
@supports (
  (-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))
) {
  body::after {
    background-color: rgba(85, 96, 84, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}
@supports not (
  (-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))
) {
  body::after {
    background-color: rgba(85, 96, 84, 0.5);
  }
}
.popup-show body::after {
  opacity: 1;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}
.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}
.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}
.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}
.lock .popup__content {
  visibility: visible;
}
[data-showmore-button] span:last-child {
  display: none;
}
._showmore-active [data-showmore-button] span {
  display: none;
}
._showmore-active [data-showmore-button] span:last-child {
  display: block;
}
[class*="-ibg"] {
  position: relative;
}
[class*="-ibg"] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}
.plug-show .footer,
.plug-show .header,
.plug-show .page {
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
img {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.btn {
  min-width: 13.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color);
  position: relative;
  overflow: hidden;
  background-color: var(--bgc);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@supports (padding: clamp(0.625rem, 0.4375rem + 0.625vw, 1.1875rem)) {
  .btn {
    padding: clamp(0.625rem, 0.4375rem + 0.625vw, 1.1875rem);
  }
}
@supports not (padding: clamp(0.625rem, 0.4375rem + 0.625vw, 1.1875rem)) {
  .btn {
    padding: calc(0.625rem + 0.5625 * (100vw - 30rem) / 90);
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 0.375rem);
  height: calc(100% - 0.375rem);
  -webkit-transform: translate(-50%, -50%) scale(1.5);
  -ms-transform: translate(-50%, -50%) scale(1.5);
  transform: translate(-50%, -50%) scale(1.5);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 1px solid var(--bdc);
  pointer-events: none;
}
._header-scroll._home .header__button,
.btn-green {
  --color: #efece8;
  --bgc: #556054;
  --bdc: #778076;
}
._header-scroll._home .header__button:active,
.btn-green:active {
  --bdc: #efece8;
}
.btn-beige {
  --color: #556054;
  --bgc: #efece8;
  --bdc: #c1c3bc;
}
.btn-beige:active {
  --bdc: #556054;
}
.plug {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #efece8;
  z-index: 9999999999;
  -webkit-transition: opacity 0.7s ease 1s, -webkit-transform 0.1s ease 1.7s;
  transition: opacity 0.7s ease 1s, -webkit-transform 0.1s ease 1.7s;
  -o-transition: opacity 0.7s ease 1s, transform 0.1s ease 1.7s;
  transition: opacity 0.7s ease 1s, transform 0.1s ease 1.7s;
  transition: opacity 0.7s ease 1s, transform 0.1s ease 1.7s,
    -webkit-transform 0.1s ease 1.7s;
}
.loaded .plug {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.loaded.plug-show .plug,
.plug-show .plug {
  -webkit-transition: opacity 0.7s ease 0s;
  -o-transition: opacity 0.7s ease 0s;
  transition: opacity 0.7s ease 0s;
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.plug__body {
  width: 100%;
  height: 100%;
  max-height: 75.3703703704%;
  max-width: 75.3125%;
  background-color: #556054;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem;
}
.loaded .plug__body {
  -webkit-animation: plugBodyAnimLoaded 5s ease;
  animation: plugBodyAnimLoaded 5s ease;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.loaded.plug-show .plug__body {
  -webkit-animation: none;
  animation: none;
}
@-webkit-keyframes plugBodyAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes plugBodyAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes plugBodyAnimLoaded {
  to {
    -webkit-transform: scale(10.5);
    transform: scale(10.5);
  }
}
@keyframes plugBodyAnimLoaded {
  to {
    -webkit-transform: scale(10.5);
    transform: scale(10.5);
  }
}
.section-title {
  font-family: "Montserrat Alternates";
  line-height: 1.140625;
  text-transform: uppercase;
}
@supports (font-size: clamp(1.875rem, 1.3994755245rem + 2.3776223776vw, 4rem)) {
  .section-title {
    font-size: clamp(1.875rem, 1.3994755245rem + 2.3776223776vw, 4rem);
  }
}
@supports not (
  font-size: clamp(1.875rem, 1.3994755245rem + 2.3776223776vw, 4rem)
) {
  .section-title {
    font-size: calc(1.875rem + 2.125 * (100vw - 20rem) / 89.375);
  }
}
.lg-backdrop {
  background-color: rgba(239, 236, 232, 0.8) !important;
}
[data-lg-id] {
  position: relative;
}
[data-lg-id]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../img/icons/Group.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  opacity: 0;
  z-index: 2;
}
._content {
  line-height: 1.2;
}
@supports (font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem)) {
  ._content h3 {
    font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem)
) {
  ._content h3 {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  ._content h3:not(:last-child) {
    margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  ._content h3:not(:last-child) {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
._content ol {
  font-size: 0.875rem;
  padding-left: 1em;
  margin-top: 1.25rem;
}
@supports (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  ._content ol:not(:last-child) {
    margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  ._content ol:not(:last-child) {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
._content ul {
  margin-top: 0.4375rem;
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  ._content ul:not(:last-child) {
    margin-bottom: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem);
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  ._content ul:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
._content ul li {
  line-height: 1.7142857143;
}
._content ul li::before {
  content: "— ";
}
._content li:not(:last-child) {
  margin-bottom: 0.9375rem;
}
[data-textmask] {
  overflow: hidden;
}
[data-textmask-text] {
  -webkit-transition: opacity 1s ease 0.4s, -webkit-transform 1s ease 0.4s;
  transition: opacity 1s ease 0.4s, -webkit-transform 1s ease 0.4s;
  -o-transition: transform 1s ease 0.4s, opacity 1s ease 0.4s;
  transition: transform 1s ease 0.4s, opacity 1s ease 0.4s;
  transition: transform 1s ease 0.4s, opacity 1s ease 0.4s,
    -webkit-transform 1s ease 0.4s;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
  opacity: 0;
}
.mhz-loaded [data-textmask-text] {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
._anim {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
._anim_toright {
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}
.mhz-loaded ._watcher-view ._anim_toright {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
._anim_fadein {
  opacity: 0;
}
.mhz-loaded ._watcher-view ._anim_fadein {
  opacity: 1;
}
._anim_scalein {
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}
.mhz-loaded ._watcher-view ._anim_scalein {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
._anim_toleft {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}
.mhz-loaded ._watcher-view ._anim_toleft {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
}
.header._header-scroll {
  position: fixed;
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
  background-color: #efece8;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header._header-scroll._header-show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.header._notfound {
  position: static;
  background-color: #efece8;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@supports (gap: clamp(1.25rem, 0.4166666667rem + 2.7777777778vw, 3.75rem)) {
  .header__container {
    gap: clamp(1.25rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
  }
}
@supports not (gap: clamp(1.25rem, 0.4166666667rem + 2.7777777778vw, 3.75rem)) {
  .header__container {
    gap: calc(1.25rem + 2.5 * (100vw - 30rem) / 90);
  }
}
@supports (padding-top: clamp(1.25rem, 0.1953125rem + 3.515625vw, 2.375rem)) {
  .header__container {
    padding-top: clamp(1.25rem, 0.1953125rem + 3.515625vw, 2.375rem);
  }
}
@supports not (
  padding-top: clamp(1.25rem, 0.1953125rem + 3.515625vw, 2.375rem)
) {
  .header__container {
    padding-top: calc(1.25rem + 1.125 * (100vw - 30rem) / 32);
  }
}
._home .header__container {
  color: #fff;
}
._home._header-scroll .header__container {
  color: #2d2823;
}
._header-scroll .header__container,
._notfound .header__container {
  padding-top: 1.0625rem !important;
  padding-bottom: 1.0625rem !important;
}
.header__logo {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  
  @media screen and (max-width: 1868px) {
    img {
     max-width: 70%;
    }
  }
  
}
._home .header__logo {
  opacity: 0;
}
._home .header__logo path {
  fill: #fff;
}
._header-scroll._home .header__logo {
  opacity: 1;
}
._header-scroll._home .header__logo path {
  fill: #2d2823;
}
@supports (
  font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem)
) {
  .header__phone {
    font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem)
) {
  .header__phone {
    font-size: calc(0.875rem + 0.25 * (100vw - 62rem) / 58);
  }
}
@supports (
  font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem)
) {
  .header__time {
    font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem)
) {
  .header__time {
    font-size: calc(0.875rem + 0.25 * (100vw - 62rem) / 58);
  }
}
@supports (
  margin-left:
    clamp(0.0000000625rem, -8.1458331111rem + 9.4444442593vw, 3.1875rem)
) {
  .header__button {
    margin-left: clamp(
      0.0000000625rem,
      -8.1458331111rem + 9.4444442593vw,
      3.1875rem
    );
  }
}
@supports not (
  margin-left:
    clamp(0.0000000625rem, -8.1458331111rem + 9.4444442593vw, 3.1875rem)
) {
  .header__button {
    margin-left: calc(
      0.0000000625rem + 3.1874999375 * (100vw - 86.25rem) / 33.75
    );
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}
@supports (
  gap: clamp(0.9375rem, -3.6056034483rem + 7.3275862069vw, 5.1875rem)
) {
  .menu__list {
    gap: clamp(0.9375rem, -3.6056034483rem + 7.3275862069vw, 5.1875rem);
  }
}
@supports not (
  gap: clamp(0.9375rem, -3.6056034483rem + 7.3275862069vw, 5.1875rem)
) {
  .menu__list {
    gap: calc(0.9375rem + 4.25 * (100vw - 62rem) / 58);
  }
}
.menu__link {
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@supports (
  font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem)
) {
  .menu__link {
    font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.6077586207rem + 0.4310344828vw, 1.125rem)
) {
  .menu__link {
    font-size: calc(0.875rem + 0.25 * (100vw - 62rem) / 58);
  }
}
.icon-menu {
  display: none;
}
.footer__content {
  background-color: #556054;
  -webkit-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
}
@supports (
  padding-top:
    clamp(0.0000000625rem, -4.1576321596rem + 8.6730267997vw, 6.25rem)
) {
  .footer__content {
    padding-top: clamp(
      0.0000000625rem,
      -4.1576321596rem + 8.6730267997vw,
      6.25rem
    );
  }
}
@supports not (
  padding-top:
    clamp(0.0000000625rem, -4.1576321596rem + 8.6730267997vw, 6.25rem)
) {
  .footer__content {
    padding-top: calc(
      0.0000000625rem + 6.2499999375 * (100vw - 47.9375rem) / 72.0625
    );
  }
}
._watcher-view .footer__content {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #b1b7ab;
  border-bottom: 1px solid #b1b7ab;
  color: #fff;
}
.main-footer__contacts {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.3138551605rem + 1.300954033vw, 1.875rem)
) {
  .main-footer__contact:not(:last-child) {
    margin-bottom: clamp(0.9375rem, 0.3138551605rem + 1.300954033vw, 1.875rem);
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.3138551605rem + 1.300954033vw, 1.875rem)
) {
  .main-footer__contact:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 47.9375rem) / 72.0625);
  }
}
.main-footer__uptitle {
  color: #b1b7ab;
}
@supports (font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem)) {
  .main-footer__uptitle {
    font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem)
) {
  .main-footer__uptitle {
    font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
.main-footer__uptitle:not(:last-child) {
  margin-bottom: 0.625rem;
}
@supports (font-size: clamp(1rem, 0.8881118881rem + 0.5594405594vw, 1.5rem)) {
  .main-footer__text {
    font-size: clamp(1rem, 0.8881118881rem + 0.5594405594vw, 1.5rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.8881118881rem + 0.5594405594vw, 1.5rem)
) {
  .main-footer__text {
    font-size: calc(1rem + 0.5 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.25rem, 0.4184735473rem + 1.7346053773vw, 2.5rem)
) {
  .main-footer__menu .main-footer__text:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.4184735473rem + 1.7346053773vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.4184735473rem + 1.7346053773vw, 2.5rem)
) {
  .main-footer__menu .main-footer__text:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 47.9375rem) / 72.0625);
  }
}
.main-footer__center {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.625rem;
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
@supports (
  padding-top: clamp(2.1875rem, 1.6979895105rem + 2.4475524476vw, 4.375rem)
) {
  .main-footer__center {
    padding-top: clamp(2.1875rem, 1.6979895105rem + 2.4475524476vw, 4.375rem);
  }
}
@supports not (
  padding-top: clamp(2.1875rem, 1.6979895105rem + 2.4475524476vw, 4.375rem)
) {
  .main-footer__center {
    padding-top: calc(2.1875rem + 2.1875 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(2.5rem, 1.9965034965rem + 2.5174825175vw, 4.75rem)
) {
  .main-footer__center {
    padding-bottom: clamp(2.5rem, 1.9965034965rem + 2.5174825175vw, 4.75rem);
  }
}
@supports not (
  padding-bottom: clamp(2.5rem, 1.9965034965rem + 2.5174825175vw, 4.75rem)
) {
  .main-footer__center {
    padding-bottom: calc(2.5rem + 2.25 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.25rem, 0.8024475524rem + 2.2377622378vw, 3.25rem)
) {
  .main-footer__logo:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.8024475524rem + 2.2377622378vw, 3.25rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.8024475524rem + 2.2377622378vw, 3.25rem)
) {
  .main-footer__logo:not(:last-child) {
    margin-bottom: calc(1.25rem + 2 * (100vw - 20rem) / 89.375);
  }
}
.main-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.25rem;
}
.main-footer__social {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 var(--ftrscl);
  flex: 0 0 var(--ftrscl);
  width: var(--ftrscl);
  height: var(--ftrscl);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #b1b7ab;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.main-footer__social svg {
  max-width: 1.5rem;
  max-height: 1.5rem;
}
.main-footer__social svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.main-footer__social:active {
  background-color: #fff;
}
.main-footer__social:active path {
  fill: #556054;
}
.main-footer__menu {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 33.333%;
  flex: 0 1 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #b1b7ab;
  font-size: 1rem;
  gap: 0.625rem;
  -webkit-transition: all 0.3s ease 1.9s;
  -o-transition: all 0.3s ease 1.9s;
  transition: all 0.3s ease 1.9s;
}
@supports (
  padding-top: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .bottom-footer {
    padding-top: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  padding-top: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .bottom-footer {
    padding-top: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .bottom-footer {
    padding-bottom: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  padding-bottom: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .bottom-footer {
    padding-bottom: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (font-size: clamp(0.75rem, 0.6666666667rem + 0.2777777778vw, 1rem)) {
  .bottom-footer__column {
    font-size: clamp(0.75rem, 0.6666666667rem + 0.2777777778vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.75rem, 0.6666666667rem + 0.2777777778vw, 1rem)
) {
  .bottom-footer__column {
    font-size: calc(0.75rem + 0.25 * (100vw - 30rem) / 90);
  }
}
.bottom-footer__column a {
  text-decoration: underline;
}
@supports (--ftrscl: clamp(2.5rem, 1.9405594406rem + 2.7972027972vw, 5rem)) {
  :root {
    --ftrscl: clamp(2.5rem, 1.9405594406rem + 2.7972027972vw, 5rem);
  }
}
@supports not (
  --ftrscl: clamp(2.5rem, 1.9405594406rem + 2.7972027972vw, 5rem)
) {
  :root {
    --ftrscl: calc(2.5rem + 2.5 * (100vw - 20rem) / 89.375);
  }
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 37.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: hidden;
}
.hero_full .hero {
  height: calc(100vh - 6.125rem);
}
.hero__bg {
  position: absolute;
  background-color: #ccc;
  top: 0;
  left: 0;
  height: 100%;
}
.hero_full .hero__bg {
  width: 100%;
}
.hero__bg iframe,
.hero__bg img,
.hero__bg picture,
.hero__bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero_full .hero__wrapper {
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #556054;
  -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
  transition: -webkit-transform 0.4s ease-in-out 0s;
  -o-transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s;
  transition: transform 0.4s ease-in-out 0s,
    -webkit-transform 0.4s ease-in-out 0s;
}
.mhz-loaded ._watcher-view .hero__green {
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.mhz-loaded .hero_full._watcher-view .hero__green {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}
.hero__down {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
  position: absolute;
  z-index: 2;
  right: 5.2083333333%;
  bottom: 9.2592592593%;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 55.75rem;
  width: 100%;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__logo img {
  max-width: 100%;
}
.hero__address {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  font-weight: 300;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 18.5185185185%;
}
@supports (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .hero__address {
    font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .hero__address {
    font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 89.375);
  }
}
.about {
  background-color: #efece8;
}
@supports (
  padding-top: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .about {
    padding-top: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem);
  }
}
@supports not (
  padding-top: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .about {
    padding-top: calc(3.125rem + 4.0625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .about {
    padding-bottom: clamp(
      3.125rem,
      2.2159090909rem + 4.5454545455vw,
      7.1875rem
    );
  }
}
@supports not (
  padding-bottom: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .about {
    padding-bottom: calc(3.125rem + 4.0625 * (100vw - 20rem) / 89.375);
  }
}
.about__container {
  position: relative;
}
.about__container::before {
  content: "";
  position: absolute;
  left: 0.9375rem;
  width: 100%;
  border-top: 1px solid #b0a99f;
  border-bottom: none;
}
@supports (top: clamp(0.5625rem, 0.520541958rem + 0.2097902098vw, 0.75rem)) {
  .about__container::before {
    top: clamp(0.5625rem, 0.520541958rem + 0.2097902098vw, 0.75rem);
  }
}
@supports not (
  top: clamp(0.5625rem, 0.520541958rem + 0.2097902098vw, 0.75rem)
) {
  .about__container::before {
    top: calc(0.5625rem + 0.1875 * (100vw - 20rem) / 89.375);
  }
}
.about__container > * {
  position: relative;
  z-index: 2;
}
@supports (
  margin-bottom: clamp(2.1875rem, 1.8378496503rem + 1.7482517483vw, 3.75rem)
) {
  .about__head:not(:last-child) {
    margin-bottom: clamp(2.1875rem, 1.8378496503rem + 1.7482517483vw, 3.75rem);
  }
}
@supports not (
  margin-bottom: clamp(2.1875rem, 1.8378496503rem + 1.7482517483vw, 3.75rem)
) {
  .about__head:not(:last-child) {
    margin-bottom: calc(2.1875rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
.about__uptitle {
  display: inline-block;
  padding-right: 2.5rem;
  font-weight: 500;
  line-height: 1.22;
  background-color: #efece8;
}
@supports (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .about__uptitle {
    font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .about__uptitle {
    font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 89.375);
  }
}
.about__titlewrap {
  overflow: hidden;
}
.about__title {
  color: #2d2823;
  font-family: "Montserrat Alternates";
  font-weight: bold;
  font-size: clamp(1.125rem, 4.897vw - 0.023rem, 7.813rem) !important;
  padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-transform: uppercase;
}

.about__title span:nth-child(2) img {
  -webkit-transform: translateX(250%);
  -ms-transform: translateX(250%);
  transform: translateX(250%);
  opacity: 0;
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.about__title span:nth-child(3) img {
  -webkit-transform: translateX(-250%);
  -ms-transform: translateX(-250%);
  transform: translateX(-250%);
  opacity: 0;
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.about__title img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mhz-loaded ._watcher-view .about__title img {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.mhz-loaded .about__title {
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  -o-transition: transform 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease,
    -webkit-transform 1.5s ease;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
  opacity: 0;
}
.mhz-loaded ._watcher-view .about__title {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.about__title span {
  white-space: nowrap;
  background-color: #efece8;
  display: inline-block;
}
@supports (
  max-height: clamp(1.4375rem, -0.4366258741rem + 9.3706293706vw, 9.8125rem)
) {
  .about__title span img {
    max-height: clamp(1.4375rem, -0.4366258741rem + 9.3706293706vw, 9.8125rem);
  }
}
@supports not (
  max-height: clamp(1.4375rem, -0.4366258741rem + 9.3706293706vw, 9.8125rem)
) {
  .about__title span img {
    max-height: calc(1.4375rem + 8.375 * (100vw - 20rem) / 89.375);
  }
}
.about__body {
  position: relative;
  -webkit-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
  opacity: 0;
  padding-left: 0.625rem;
}
@supports (
  padding-right: clamp(0.625rem, -4.0315481353rem + 9.7137901127vw, 7.625rem)
) {
  .about__body {
    padding-right: clamp(0.625rem, -4.0315481353rem + 9.7137901127vw, 7.625rem);
  }
}
@supports not (
  padding-right: clamp(0.625rem, -4.0315481353rem + 9.7137901127vw, 7.625rem)
) {
  .about__body {
    padding-right: calc(0.625rem + 7 * (100vw - 47.9375rem) / 72.0625);
  }
}
.mhz-loaded .about__body._watcher-view {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.about__body::after,
.about__body::before {
  content: "";
  position: absolute;
  width: 0.0625rem;
  background-color: #b0a99f;
  bottom: 0;
}
.about__body::before {
  content: "";
  left: 0;
  height: 100%;
}
.about__body::after {
  content: "";
  right: 0;
  height: 100%;
}
.about__text {
  max-width: 45.625rem;
  margin-left: auto;
  line-height: 1.7;
  font-weight: 500;
}
@supports (font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem)) {
  .about__text {
    font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem)
) {
  .about__text {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
.about__text p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.about__text_full {
  max-width: none;
}
.services {
  background-color: #556054;
  color: #fff;
}
.services__container {
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
}

.services__container img {
  max-height: 450px;
}
@supports (
  padding-top: clamp(1.875rem, 0.895979021rem + 4.8951048951vw, 6.25rem)
) {
  .services__container {
    padding-top: clamp(1.875rem, 0.895979021rem + 4.8951048951vw, 6.25rem);
  }
}
@supports not (
  padding-top: clamp(1.875rem, 0.895979021rem + 4.8951048951vw, 6.25rem)
) {
  .services__container {
    padding-top: calc(1.875rem + 4.375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(1.875rem, 0.895979021rem + 4.8951048951vw, 6.25rem)
) {
  .services__container {
    padding-bottom: clamp(1.875rem, 0.895979021rem + 4.8951048951vw, 6.25rem);
  }
}
@supports not (
  padding-bottom: clamp(1.875rem, 0.895979021rem + 4.8951048951vw, 6.25rem)
) {
  .services__container {
    padding-bottom: calc(1.875rem + 4.375 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded ._watcher-view .services__container {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.services__head:not(:last-child) {
  margin-bottom: 2.5rem;
}
.services__title {
  font-family: "Montserrat Alternates";
  line-height: 1.140625;
  text-align: center;
  text-transform: uppercase;
}
h2.services__title {
  font-weight: 700;
}
div.specialists__title {
  font-weight: 700;
}
h2.frames__title {
  font-weight: 700;
}
h2.reviews__title {
  font-weight: 700;
}
@supports (font-size: clamp(1.875rem, 1.3994755245rem + 2.3776223776vw, 4rem)) {
  .services__title {
    font-size: clamp(1.875rem, 1.3994755245rem + 2.3776223776vw, 4rem);
  }
}
@supports not (
  font-size: clamp(1.875rem, 1.3994755245rem + 2.3776223776vw, 4rem)
) {
  .services__title {
    font-size: calc(1.875rem + 2.125 * (100vw - 20rem) / 89.375);
  }
}
.services__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #b1b7ab;
  border-bottom: 1px solid #b1b7ab;
}
.item-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}
@supports (
  padding-top: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-services {
    padding-top: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem);
  }
}
@supports not (
  padding-top: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-services {
    padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-services {
    padding-bottom: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem);
  }
}
@supports not (
  padding-bottom: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-services {
    padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
.item-services:not(:last-child) {
  border-right: 1px solid #b1b7ab;
}
@supports (
  padding-right: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem)
) {
  .item-services:not(:last-child) {
    padding-right: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem);
  }
}
@supports not (
  padding-right: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem)
) {
  .item-services:not(:last-child) {
    padding-right: calc(1.5625rem + 2.1875 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-left: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem)
) {
  .item-services:not(:first-child) {
    padding-left: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem);
  }
}
@supports not (
  padding-left: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem)
) {
  .item-services:not(:first-child) {
    padding-left: calc(1.5625rem + 2.1875 * (100vw - 20rem) / 89.375);
  }
}
.item-services:first-child > * {
  -webkit-transform: translateX(-7.5rem);
  -ms-transform: translateX(-7.5rem);
  transform: translateX(-7.5rem);
}
.item-services:last-child > * {
  -webkit-transform: translateX(7.5rem);
  -ms-transform: translateX(7.5rem);
  transform: translateX(7.5rem);
}
.item-services__title {
  text-transform: uppercase;
  line-height: 1.2083333333;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
@supports (font-size: clamp(1rem, 0.8881118881rem + 0.5594405594vw, 1.5rem)) {
  .item-services__title {
    font-size: clamp(1rem, 0.8881118881rem + 0.5594405594vw, 1.5rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.8881118881rem + 0.5594405594vw, 1.5rem)
) {
  .item-services__title {
    font-size: calc(1rem + 0.5 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded ._watcher-view .item-services__title {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@supports (
  margin-bottom: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem)
) {
  .item-services__title:not(:last-child) {
    margin-bottom: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem);
  }
}
@supports not (
  margin-bottom: clamp(1.5625rem, 1.0729895105rem + 2.4475524476vw, 3.75rem)
) {
  .item-services__title:not(:last-child) {
    margin-bottom: calc(1.5625rem + 2.1875 * (100vw - 20rem) / 89.375);
  }
}
.item-services__image {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 0;
}
.item-services__image img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.mhz-loaded ._watcher-view .item-services__image {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.specialists {
  background-color: #efece8;
}
@supports (
  padding-top: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .specialists {
    padding-top: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem);
  }
}
@supports not (
  padding-top: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .specialists {
    padding-top: calc(3.125rem + 4.0625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .specialists {
    padding-bottom: clamp(
      1.5625rem,
      1.1149475524rem + 2.2377622378vw,
      3.5625rem
    );
  }
}
@supports not (
  padding-bottom: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .specialists {
    padding-bottom: calc(1.5625rem + 2 * (100vw - 20rem) / 89.375);
  }
}
.specialists__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem;
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
.specialists__head:not(:last-child) {
  margin-bottom: 2.5rem;
}
.mhz-loaded .specialists__head._watcher-view {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.specialists__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.specialists__body {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-grid-columns: 0.955fr (1fr) [2] 0.955fr;
  grid-template-columns: 0.955fr repeat(2, 1fr) 0.955fr;
}
.item-specialists {
  border-top: 1px solid #b0a99f;
  border-bottom: 1px solid #b0a99f;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.mhz-loaded ._watcher-view .item-specialists {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.item-specialists__image {
  position: relative;
  padding-bottom: 125%;
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialists__image:not(:last-child) {
    margin-bottom: clamp(
      0.9375rem,
      0.7976398601rem + 0.6993006993vw,
      1.5625rem
    );
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialists__image:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
.item-specialists__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
    .item-specialists__image img {
    max-height: 250px;
  }
}

@media screen and (min-width: 1080px) {
    .item-specialists__image img {
    max-height: 280px;
  }
}

@media screen and (min-width: 1180px) {
    .item-specialists__image img {
    max-height: 300px;
  }
}

@media screen and (min-width: 1250px) {
    .item-specialists__image img {
    max-height: 320px;
  }
}

@media screen and (min-width: 1350px) {
    .item-specialists__image img {
    max-height: 350px;
  }
}

@media screen and (min-width: 1505px) {
    .item-specialists__image img {
    max-height: 380px;
  }
}

@media screen and (min-width: 1675px) {
    .item-specialists__image img {
    max-height: 400px;
  }
}

@media screen and (min-width: 1676px) {
  .item-specialists__image img {
    max-height: 450px;
  }
}

@media screen and (max-width: 991px) {
    .item-specialists__image img {
    max-height: 450px;
  }
}


.item-specialists__name {
  text-transform: uppercase;
  font-weight: 500;
}
@supports (
  font-size: clamp(1.125rem, 1.0410839161rem + 0.4195804196vw, 1.5rem)
) {
  .item-specialists__name {
    font-size: clamp(1.125rem, 1.0410839161rem + 0.4195804196vw, 1.5rem);
  }
}
@supports not (
  font-size: clamp(1.125rem, 1.0410839161rem + 0.4195804196vw, 1.5rem)
) {
  .item-specialists__name {
    font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialists__name:not(:last-child) {
    margin-bottom: clamp(
      0.9375rem,
      0.7976398601rem + 0.6993006993vw,
      1.5625rem
    );
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialists__name:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialists__body:not(:last-child) {
    margin-bottom: clamp(
      0.9375rem,
      0.7976398601rem + 0.6993006993vw,
      1.5625rem
    );
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialists__body:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
@supports (font-size: clamp(1rem, 0.972027972rem + 0.1398601399vw, 1.125rem)) {
  .item-specialists__profession {
    font-size: clamp(1rem, 0.972027972rem + 0.1398601399vw, 1.125rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.972027972rem + 0.1398601399vw, 1.125rem)
) {
  .item-specialists__profession {
    font-size: calc(1rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.item-specialists__profession:not(:last-child) {
  margin-bottom: 0.625rem;
}
.item-specialists__spec {
  color: #544f48;
  font-size: 0.875rem;
}
.item-specialists__button {
  margin-top: auto;
}
.frames {
  background-color: #efece8;
}
@supports (
  padding-top: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .frames {
    padding-top: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem);
  }
}
@supports not (
  padding-top: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .frames {
    padding-top: calc(1.5625rem + 2 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .frames {
    padding-bottom: clamp(
      1.5625rem,
      1.1149475524rem + 2.2377622378vw,
      3.5625rem
    );
  }
}
@supports not (
  padding-bottom: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .frames {
    padding-bottom: calc(1.5625rem + 2 * (100vw - 20rem) / 89.375);
  }
}
.frames__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem;
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
@supports (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .frames__head:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .frames__head:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded .frames__head._watcher-view {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.frames__track {
  overflow: visible !important;
  padding: 1.25rem 0;
  border-top: 1px solid #b0a99f;
  border-bottom: 1px solid #b0a99f;
}
@supports (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .frames__track:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .frames__track:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.frames__list {
  max-width: 89.125rem;
}
.frames__slide {
  position: relative;
  padding-bottom: 31.46%;
}
.frames__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.frames__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
}
.frames__fractions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
}
@supports (gap: clamp(0.3125rem, 0.1027097902rem + 1.048951049vw, 1.25rem)) {
  .frames__fractions {
    gap: clamp(0.3125rem, 0.1027097902rem + 1.048951049vw, 1.25rem);
  }
}
@supports not (
  gap: clamp(0.3125rem, 0.1027097902rem + 1.048951049vw, 1.25rem)
) {
  .frames__fractions {
    gap: calc(0.3125rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  font-size: clamp(1.125rem, 1.0410839161rem + 0.4195804196vw, 1.5rem)
) {
  .frames__fractions {
    font-size: clamp(1.125rem, 1.0410839161rem + 0.4195804196vw, 1.5rem);
  }
}
@supports not (
  font-size: clamp(1.125rem, 1.0410839161rem + 0.4195804196vw, 1.5rem)
) {
  .frames__fractions {
    font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 89.375);
  }
}
.frames__real {
  color: #556054;
}
.frames__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #b0a99f;
}
@supports (gap: clamp(0.3125rem, 0.1027097902rem + 1.048951049vw, 1.25rem)) {
  .frames__all {
    gap: clamp(0.3125rem, 0.1027097902rem + 1.048951049vw, 1.25rem);
  }
}
@supports not (
  gap: clamp(0.3125rem, 0.1027097902rem + 1.048951049vw, 1.25rem)
) {
  .frames__all {
    gap: calc(0.3125rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
.frames__all::before {
  content: "/";
}
.frames__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.875rem;
}
.frames__arrow svg {
  max-width: 1.5625rem;
  max-height: 0.9375rem;
}
.frames__arrow svg path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.frames__arrow:active path {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  fill: #2d2823;
}
.frames__arrow[disabled] path {
  fill: #b0a99f;
}
@supports (
  padding-top: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .reviews {
    padding-top: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem);
  }
}
@supports not (
  padding-top: clamp(1.5625rem, 1.1149475524rem + 2.2377622378vw, 3.5625rem)
) {
  .reviews {
    padding-top: calc(1.5625rem + 2 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .reviews {
    padding-bottom: clamp(
      3.125rem,
      2.2159090909rem + 4.5454545455vw,
      7.1875rem
    );
  }
}
@supports not (
  padding-bottom: clamp(3.125rem, 2.2159090909rem + 4.5454545455vw, 7.1875rem)
) {
  .reviews {
    padding-bottom: calc(3.125rem + 4.0625 * (100vw - 20rem) / 89.375);
  }
}
.reviews__head {
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
.mhz-loaded .reviews__head._watcher-view {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
@supports (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .reviews__head:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .reviews__head:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.reviews__body {
  padding: 1.25rem 0;
  border-top: 1px solid #b0a99f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--gp);
}
@supports (--gp: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)) {
  .reviews__body {
    --gp: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (--gp: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)) {
  .reviews__body {
    --gp: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.25rem, 0.6905594406rem + 2.7972027972vw, 3.75rem)
) {
  .reviews__body:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.6905594406rem + 2.7972027972vw, 3.75rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.6905594406rem + 2.7972027972vw, 3.75rem)
) {
  .reviews__body:not(:last-child) {
    margin-bottom: calc(1.25rem + 2.5 * (100vw - 20rem) / 89.375);
  }
}
.reviews__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  gap: 0.5rem;
}
@supports (font-size: clamp(1rem, 0.972027972rem + 0.1398601399vw, 1.125rem)) {
  .reviews__more {
    font-size: clamp(1rem, 0.972027972rem + 0.1398601399vw, 1.125rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.972027972rem + 0.1398601399vw, 1.125rem)
) {
  .reviews__more {
    font-size: calc(1rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.item-reviews {
  background-color: #f2f2f1;
  border: 1px solid #d9d4ce;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
@supports (
  padding: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-reviews {
    padding: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem);
  }
}
@supports not (
  padding: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-reviews {
    padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded ._watcher-view .item-reviews {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
.page-reviews .item-reviews {
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}
.page-reviews .item-reviews._hidden {
  position: absolute;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  opacity: 0;
}
.item-reviews__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 500;
  font-size: 0.875rem;
  gap: 0.625rem;
}
.item-reviews__head:not(:last-child) {
  margin-bottom: 0.625rem;
}
.item-reviews__date {
  color: #b0a99f;
}
.item-reviews__stars {
  color: #556054;
  font-size: 1rem;
}
.item-reviews__stars:not(:last-child) {
  margin-bottom: 1.25rem;
}
.item-reviews__text {
  line-height: 1.7142857143;
}
@supports (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-specialists {
    padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem);
  }
}
@supports not (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-specialists {
    padding-top: calc(6.875rem + 3.4375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem)
) {
  .page-specialists {
    padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem);
  }
}
@supports not (
  padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem)
) {
  .page-specialists {
    padding-bottom: calc(3.75rem + 4.375 * (100vw - 20rem) / 89.375);
  }
}
.page-specialists__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem;
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
.mhz-loaded .page-specialists__head._watcher-view {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
@supports (
  margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem)
) {
  .page-specialists__head:not(:last-child) {
    margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem)
) {
  .page-specialists__head:not(:last-child) {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.page-specialists__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.page-specialists__filter {
  text-transform: capitalize;
  background-color: #f2f2f1;
  border: 1px solid #f2f2f1;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #544f48;
}
@supports (
  padding-left: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .page-specialists__filter {
    padding-left: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem);
  }
}
@supports not (
  padding-left: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .page-specialists__filter {
    padding-left: calc(0.875rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-right: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .page-specialists__filter {
    padding-right: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem);
  }
}
@supports not (
  padding-right: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .page-specialists__filter {
    padding-right: calc(0.875rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-top: clamp(0.5625rem, 0.4226398601rem + 0.6993006993vw, 1.1875rem)
) {
  .page-specialists__filter {
    padding-top: clamp(0.5625rem, 0.4226398601rem + 0.6993006993vw, 1.1875rem);
  }
}
@supports not (
  padding-top: clamp(0.5625rem, 0.4226398601rem + 0.6993006993vw, 1.1875rem)
) {
  .page-specialists__filter {
    padding-top: calc(0.5625rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(0.5625rem, 0.4226398601rem + 0.6993006993vw, 1.1875rem)
) {
  .page-specialists__filter {
    padding-bottom: clamp(
      0.5625rem,
      0.4226398601rem + 0.6993006993vw,
      1.1875rem
    );
  }
}
@supports not (
  padding-bottom: clamp(0.5625rem, 0.4226398601rem + 0.6993006993vw, 1.1875rem)
) {
  .page-specialists__filter {
    padding-bottom: calc(0.5625rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
@supports (font-size: clamp(0.8125rem, 0.770541958rem + 0.2097902098vw, 1rem)) {
  .page-specialists__filter {
    font-size: clamp(0.8125rem, 0.770541958rem + 0.2097902098vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.8125rem, 0.770541958rem + 0.2097902098vw, 1rem)
) {
  .page-specialists__filter {
    font-size: calc(0.8125rem + 0.1875 * (100vw - 20rem) / 89.375);
  }
}
.page-specialists__filter:active {
  border-color: #556054;
}
.page-specialists__filter._active {
  background-color: #fff;
  border-color: #d9d4ce;
}
.page-specialists__body {
  display: -ms-grid;
  display: grid;
}
.page-specialists__body:has(._filtered) {
  border-top: 1px solid #b0a99f;
}
.page-specialists__body:has(._filtered) .item-specialist {
  border-top: none;
}
.item-specialist {
  -webkit-transition: all 0.3s ease 0.45s;
  -o-transition: all 0.3s ease 0.45s;
  transition: all 0.3s ease 0.45s;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
  border: 1px solid #b0a99f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@supports (
  padding: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-specialist {
    padding: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem);
  }
}
@supports not (
  padding: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .item-specialist {
    padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
@supports (gap: clamp(1.25rem, 0.1870629371rem + 5.3146853147vw, 6rem)) {
  .item-specialist {
    gap: clamp(1.25rem, 0.1870629371rem + 5.3146853147vw, 6rem);
  }
}
@supports not (gap: clamp(1.25rem, 0.1870629371rem + 5.3146853147vw, 6rem)) {
  .item-specialist {
    gap: calc(1.25rem + 4.75 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded .item-specialist._watcher-view {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.item-specialist._hidden,
.mhz-loaded .item-specialist._watcher-view._hidden {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.item-specialist._abs {
  position: absolute;
  width: 0;
  height: 0;
}
.item-specialist__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.22;
  height: 100%;
}
.item-specialist__image {
  position: relative;
  padding-bottom: 124%;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.8256118881rem + 0.5594405594vw, 1.4375rem)
) {
  .item-specialist__image:not(:last-child) {
    margin-bottom: clamp(
      0.9375rem,
      0.8256118881rem + 0.5594405594vw,
      1.4375rem
    );
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.8256118881rem + 0.5594405594vw, 1.4375rem)
) {
  .item-specialist__image:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.5 * (100vw - 20rem) / 89.375);
  }
}
.item-specialist__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-specialist__name {
  text-transform: uppercase;
  font-weight: 500;
}
@supports (font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem)) {
  .item-specialist__name {
    font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(1rem, 0.9440559441rem + 0.2797202797vw, 1.25rem)
) {
  .item-specialist__name {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialist__name:not(:last-child) {
    margin-bottom: clamp(
      0.9375rem,
      0.7976398601rem + 0.6993006993vw,
      1.5625rem
    );
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialist__name:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
.item-specialist__prodession {
  text-align: center;
  margin-top: auto;
}
@supports (
  font-size: clamp(0.875rem, 0.8190559441rem + 0.2797202797vw, 1.125rem)
) {
  .item-specialist__prodession {
    font-size: clamp(0.875rem, 0.8190559441rem + 0.2797202797vw, 1.125rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.8190559441rem + 0.2797202797vw, 1.125rem)
) {
  .item-specialist__prodession {
    font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
.item-specialist__prodession:not(:last-child) {
  margin-bottom: 0.625rem;
}
.item-specialist__category {
  color: #544f48;
}
@supports (
  font-size: clamp(0.75rem, 0.722027972rem + 0.1398601399vw, 0.875rem)
) {
  .item-specialist__category {
    font-size: clamp(0.75rem, 0.722027972rem + 0.1398601399vw, 0.875rem);
  }
}
@supports not (
  font-size: clamp(0.75rem, 0.722027972rem + 0.1398601399vw, 0.875rem)
) {
  .item-specialist__category {
    font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialist__category:not(:last-child) {
    margin-bottom: clamp(
      0.9375rem,
      0.7976398601rem + 0.6993006993vw,
      1.5625rem
    );
  }
}
@supports not (
  margin-bottom: clamp(0.9375rem, 0.7976398601rem + 0.6993006993vw, 1.5625rem)
) {
  .item-specialist__category:not(:last-child) {
    margin-bottom: calc(0.9375rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
.item-specialist__button {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.text-specialists__content span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
}
.text-specialists__more {
  margin-top: 1.25rem;
  position: relative;
  padding-right: 1.125rem;
  color: #556054;
  font-weight: 500;
  line-height: 1.21875;
}
@supports (font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem)) {
  .text-specialists__more {
    font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem)
) {
  .text-specialists__more {
    font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
.text-specialists__more::after,
.text-specialists__more::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.125rem;
  background-color: #556054;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  top: 50%;
}
.text-specialists__more::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  right: 0;
}
.text-specialists__more::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 0.3125rem;
}
._showmore-active .text-specialists__more::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
._showmore-active .text-specialists__more::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.text-specialists__more:active {
  text-decoration: underline;
}
@supports (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-services {
    padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem);
  }
}
@supports not (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-services {
    padding-top: calc(6.875rem + 3.4375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(3.75rem, 2.2814685315rem + 7.3426573427vw, 10.3125rem)
) {
  .page-services {
    padding-bottom: clamp(
      3.75rem,
      2.2814685315rem + 7.3426573427vw,
      10.3125rem
    );
  }
}
@supports not (
  padding-bottom: clamp(3.75rem, 2.2814685315rem + 7.3426573427vw, 10.3125rem)
) {
  .page-services {
    padding-bottom: calc(3.75rem + 6.5625 * (100vw - 20rem) / 89.375);
  }
}
.page-services__head {
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
.mhz-loaded .page-services__head._watcher-view {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
@supports (
  margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem)
) {
  .page-services__head:not(:last-child) {
    margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem)
) {
  .page-services__head:not(:last-child) {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.table-services {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease 0s;
  -o-transition: opacity 0.5s ease 0s;
  transition: opacity 0.5s ease 0s;
}
.mhz-loaded .table-services._watcher-view {
  opacity: 1;
}
.table-services__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.table-services__category {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border: 1px solid #b0a99f;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2208333333;
  font-size: 1.5rem;
}
@supports (
  padding-left: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__category {
    padding-left: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  padding-left: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__category {
    padding-left: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-right: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__category {
    padding-right: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  padding-right: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__category {
    padding-right: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-top: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__category {
    padding-top: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem);
  }
}
@supports not (
  padding-top: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__category {
    padding-top: calc(0.625rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__category {
    padding-bottom: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem);
  }
}
@supports not (
  padding-bottom: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__category {
    padding-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
.table-services__line_first .table-services__category {
  border-bottom: none;
  color: #544f48;
  font-size: 0.875rem !important;
  text-transform: none;
  font-weight: 400;
}
.table-services__service {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57%;
  flex: 0 0 57%;
  border: 1px solid #b0a99f;
}
.table-services__line_first .table-services__service {
  border-bottom: none;
}
.table-services__row {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 0.9375rem 0;
}
.table-services__row:not(:last-child) {
  border-bottom: 1px solid #b0a99f;
}
.table-services__line_first .table-services__row {
  padding: 0;
  height: 100%;
  border-bottom: none;
}
.table-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
}
@supports (
  padding-left: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__item {
    padding-left: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  padding-left: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__item {
    padding-left: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-right: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__item {
    padding-right: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  padding-right: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .table-services__item {
    padding-right: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-top: clamp(0.625rem, 0.5550699301rem + 0.3496503497vw, 0.9375rem)
) {
  .table-services__item {
    padding-top: clamp(0.625rem, 0.5550699301rem + 0.3496503497vw, 0.9375rem);
  }
}
@supports not (
  padding-top: clamp(0.625rem, 0.5550699301rem + 0.3496503497vw, 0.9375rem)
) {
  .table-services__item {
    padding-top: calc(0.625rem + 0.3125 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(0.625rem, 0.5550699301rem + 0.3496503497vw, 0.9375rem)
) {
  .table-services__item {
    padding-bottom: clamp(
      0.625rem,
      0.5550699301rem + 0.3496503497vw,
      0.9375rem
    );
  }
}
@supports not (
  padding-bottom: clamp(0.625rem, 0.5550699301rem + 0.3496503497vw, 0.9375rem)
) {
  .table-services__item {
    padding-bottom: calc(0.625rem + 0.3125 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-top: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__line_first .table-services__item {
    padding-top: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem);
  }
}
@supports not (
  padding-top: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__line_first .table-services__item {
    padding-top: calc(0.625rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__line_first .table-services__item {
    padding-bottom: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem);
  }
}
@supports not (
  padding-bottom: clamp(0.625rem, 0.4851398601rem + 0.6993006993vw, 1.25rem)
) {
  .table-services__line_first .table-services__item {
    padding-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 89.375);
  }
}
.table-services__key {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40.75rem;
  flex: 0 1 40.75rem;
}
.table-services__name {
  font-weight: 500;
  line-height: 1.22;
}
@supports (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .table-services__name {
    font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .table-services__name {
    font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 89.375);
  }
}
.table-services__line_first .table-services__name {
  color: #544f48;
  font-weight: 400;
  font-size: 0.875rem !important;
}
.table-services__price {
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.22;
}
@supports (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .table-services__price {
    font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.7910839161rem + 0.4195804196vw, 1.25rem)
) {
  .table-services__price {
    font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 89.375);
  }
}
.table-services__line_first .table-services__price {
  color: #544f48;
  font-weight: 400;
  font-size: 0.875rem !important;
}
.table-services__label {
  color: #544f48;
  font-weight: 500;
  line-height: 1.21875;
}
@supports (font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem)) {
  .table-services__label {
    font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.75rem, 0.6940559441rem + 0.2797202797vw, 1rem)
) {
  .table-services__label {
    font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-reviews {
    padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem);
  }
}
@supports not (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-reviews {
    padding-top: calc(6.875rem + 3.4375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem)
) {
  .page-reviews {
    padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem);
  }
}
@supports not (
  padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem)
) {
  .page-reviews {
    padding-bottom: calc(3.75rem + 4.375 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__container {
  overflow: hidden;
}
.page-reviews__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.9375rem;
  -webkit-transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease 0.15s, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s;
  transition: transform 0.3s ease, opacity 0.3s ease 0.15s,
    -webkit-transform 0.3s ease;
  -webkit-transform: translateY(7.5rem);
  -ms-transform: translateY(7.5rem);
  transform: translateY(7.5rem);
  opacity: 0;
}
.mhz-loaded .page-reviews__head._watcher-view {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}
@supports (
  margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem)
) {
  .page-reviews__head:not(:last-child) {
    margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.875rem, 1.5952797203rem + 1.3986013986vw, 3.125rem)
) {
  .page-reviews__head:not(:last-child) {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@supports (gap: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)) {
  .page-reviews__filters {
    gap: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (gap: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)) {
  .page-reviews__filters {
    gap: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__name {
  font-weight: 500;
}
@supports (
  font-size: clamp(0.75rem, 0.722027972rem + 0.1398601399vw, 0.875rem)
) {
  .page-reviews__name {
    font-size: clamp(0.75rem, 0.722027972rem + 0.1398601399vw, 0.875rem);
  }
}
@supports not (
  font-size: clamp(0.75rem, 0.722027972rem + 0.1398601399vw, 0.875rem)
) {
  .page-reviews__name {
    font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__select {
  line-height: 1.21875;
  font-weight: 500;
}
@supports (font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)) {
  .page-reviews__select {
    font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)
) {
  .page-reviews__select {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__select .select__title {
  background-color: #f2f2f1;
  border: 1px solid #d9d4ce;
}
.page-reviews__select .select__value {
  padding: 0.875rem 1.8125rem;
  padding-right: 2.625rem;
  height: auto;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 1.21875;
  font-weight: 500;
}
@supports (font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)) {
  .page-reviews__select .select__value {
    font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)
) {
  .page-reviews__select .select__value {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__select .select__value::after,
.page-reviews__select .select__value::before {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 0.125rem;
  background-color: #556054;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  top: 50%;
}
.page-reviews__select .select__value::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  right: 1.8125rem;
}
.page-reviews__select .select__value::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 2.125rem;
}
.page-reviews__select .select__value:active {
  background-color: #fff;
}
.page-reviews__select ._select-open .select__value::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.page-reviews__select ._select-open .select__value::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.page-reviews__select .select__options {
  top: calc(100% - 0.0625rem);
  background-color: #f2f2f1;
  padding: 0.75rem 0;
}
.page-reviews__select .select__option {
  padding: 0.5rem 1.875rem;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #544f48;
}
.page-reviews__select .select__option:active {
  color: #556054;
}
.page-reviews__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.25rem;
  background-color: #fff;
  padding: 0.9375rem;
  line-height: 1.21875;
  font-weight: 500;
  --bdc: rgba(84, 79, 72, 0.5);
}
@supports (font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)) {
  .page-reviews__button {
    font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)
) {
  .page-reviews__button {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.page-reviews__button:active {
  --bdc: rgba(84, 79, 72, 1);
}
.reviewsPopup__content {
  border-radius: 0;
  background-color: #efece8;
}
.reviewsPopup__close {
  margin-left: auto;
  display: block;
}
.reviewsPopup__close path {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.reviewsPopup__text {
  padding: 0 var(--rwtxtpad) var(--rwtxtpad);
  position: relative;
}
@supports (
  --rwtxtpad: clamp(0.625rem, 0.3452797203rem + 1.3986013986vw, 1.875rem)
) {
  :root {
    --rwtxtpad: clamp(0.625rem, 0.3452797203rem + 1.3986013986vw, 1.875rem);
  }
}
@supports not (
  --rwtxtpad: clamp(0.625rem, 0.3452797203rem + 1.3986013986vw, 1.875rem)
) {
  :root {
    --rwtxtpad: calc(0.625rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup {
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  background-color: #efece8;
  position: relative;
  z-index: 2;
}
.form-reviewsPopup._hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@supports (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .form-reviewsPopup__head:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .form-reviewsPopup__head:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup__title {
  line-height: 1.1388888889;
  font-family: "Montserrat Alternates";
  text-align: center;
  text-transform: uppercase;
}
@supports (
  font-size: clamp(1.5rem, 1.3321678322rem + 0.8391608392vw, 2.25rem)
) {
  .form-reviewsPopup__title {
    font-size: clamp(1.5rem, 1.3321678322rem + 0.8391608392vw, 2.25rem);
  }
}
@supports not (
  font-size: clamp(1.5rem, 1.3321678322rem + 0.8391608392vw, 2.25rem)
) {
  .form-reviewsPopup__title {
    font-size: calc(1.5rem + 0.75 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup__body {
  border-top: 1px solid #b0a99f;
  display: -ms-grid;
  display: grid;
}
@supports (
  padding-top: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .form-reviewsPopup__body {
    padding-top: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  padding-top: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .form-reviewsPopup__body {
    padding-top: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
@supports (gap: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)) {
  .form-reviewsPopup__body {
    gap: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem);
  }
}
@supports not (
  gap: clamp(0.9375rem, 0.5878496503rem + 1.7482517483vw, 2.5rem)
) {
  .form-reviewsPopup__body {
    gap: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup__item {
  position: relative;
  font-weight: 500;
  line-height: 1.21875;
}
@supports (font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)) {
  .form-reviewsPopup__item {
    font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)
) {
  .form-reviewsPopup__item {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup__item .form__error,
.form-reviewsPopup__item .form__info {
  position: absolute;
  left: 0;
  top: calc(100% + 0.1875rem);
  width: 100%;
  color: #544f48;
  font-size: 0.75rem;
}
.form-reviewsPopup__item .form__error {
  color: red;
}
.form-reviewsPopup__item .select__value {
  width: 100% !important;
}
.form-reviewsPopup__item ._form-error .select__value,
.form-reviewsPopup__item._form-error .select__value {
  color: red;
}
.form-reviewsPopup__item ._form-error .select__value::after,
.form-reviewsPopup__item ._form-error .select__value::before,
.form-reviewsPopup__item._form-error .select__value::after,
.form-reviewsPopup__item._form-error .select__value::before {
  background-color: red;
}
.form-reviewsPopup__item_rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.375rem;
}
.form-reviewsPopup__item_rating .rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 0.625rem;
}
.form-reviewsPopup__item_rating .rating__head {
  font-size: 0.8125rem;
  color: #544f48;
  line-height: 1.2230769231;
}
.form-reviewsPopup__item_rating .rating__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
}
.form-reviewsPopup__item_rating .rating__body::before {
  color: #fff;
  text-shadow: -1px 0 1px #b0a99f, 1px 0 0 #b0a99f, 0 -1px 0 #b0a99f,
    0 1px 0 #b0a99f;
}
.form-reviewsPopup__item_rating .rating__active::before {
  color: #b0a99f;
}
.form-reviewsPopup__item_rating .rating__value {
  display: none;
}
.form-reviewsPopup__input {
  padding: 0.875rem;
  width: 100%;
  border: 1px solid #d9d4ce;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #f2f2f1;
  outline: 0;
}
@supports (
  padding-left: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .form-reviewsPopup__input {
    padding-left: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem);
  }
}
@supports not (
  padding-left: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .form-reviewsPopup__input {
    padding-left: calc(0.875rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-right: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .form-reviewsPopup__input {
    padding-right: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem);
  }
}
@supports not (
  padding-right: clamp(0.875rem, 0.6652097902rem + 1.048951049vw, 1.8125rem)
) {
  .form-reviewsPopup__input {
    padding-right: calc(0.875rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup__input._form-error {
  border-color: red;
}
.form-reviewsPopup__input_area {
  resize: vertical;
  padding: 1.375rem;
}
@supports (
  min-height: clamp(10rem, 9.2307692308rem + 3.8461538462vw, 13.4375rem)
) {
  .form-reviewsPopup__input_area {
    min-height: clamp(10rem, 9.2307692308rem + 3.8461538462vw, 13.4375rem);
  }
}
@supports not (
  min-height: clamp(10rem, 9.2307692308rem + 3.8461538462vw, 13.4375rem)
) {
  .form-reviewsPopup__input_area {
    min-height: calc(10rem + 3.4375 * (100vw - 20rem) / 89.375);
  }
}
.form-reviewsPopup__label {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@supports (left: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)) {
  .form-reviewsPopup__label {
    left: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem);
  }
}
@supports not (
  left: clamp(0.9375rem, 0.7277097902rem + 1.048951049vw, 1.875rem)
) {
  .form-reviewsPopup__label {
    left: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 89.375);
  }
}
._form-focus .form-reviewsPopup__label,
._form-input .form-reviewsPopup__label {
  top: 0;
  padding: 0 0.375rem;
  background-color: #efece8;
  color: #544f48;
  font-size: 0.8125rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
._form-error .form-reviewsPopup__label {
  color: red;
}
.form-reviewsPopup__label_area {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  top: 1.375rem;
}
.form-reviewsPopup__agree {
  max-width: 24.5rem;
  font-size: 0.875rem;
  font-weight: 400;
}
.form-reviewsPopup__agree a {
  text-decoration: underline;
}
.form-reviewsPopup__agree a:active {
  text-decoration: none;
}
.form-reviewsPopup__button {
  min-width: 16.25rem;
  margin-left: auto;
}
.success-reviewsPopup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 28.5rem;
  padding: 0.9375rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.success-reviewsPopup__title {
  line-height: 1.1388888889;
  font-family: "Montserrat Alternates";
  text-align: center;
  text-transform: uppercase;
}
@supports (
  font-size: clamp(1.5rem, 1.3321678322rem + 0.8391608392vw, 2.25rem)
) {
  .success-reviewsPopup__title {
    font-size: clamp(1.5rem, 1.3321678322rem + 0.8391608392vw, 2.25rem);
  }
}
@supports not (
  font-size: clamp(1.5rem, 1.3321678322rem + 0.8391608392vw, 2.25rem)
) {
  .success-reviewsPopup__title {
    font-size: calc(1.5rem + 0.75 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .success-reviewsPopup__title:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .success-reviewsPopup__title:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.success-reviewsPopup__text {
  font-weight: 500;
  line-height: 1.21875;
}
@supports (font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)) {
  .success-reviewsPopup__text {
    font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.847027972rem + 0.1398601399vw, 1rem)
) {
  .success-reviewsPopup__text {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .success-reviewsPopup__text:not(:last-child) {
    margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem);
  }
}
@supports not (
  margin-bottom: clamp(1.25rem, 0.9702797203rem + 1.3986013986vw, 2.5rem)
) {
  .success-reviewsPopup__text:not(:last-child) {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 89.375);
  }
}
.success-reviewsPopup__button {
  font-weight: 500;
  color: #556054;
  background-color: #fff;
  --bdc: #556054;
  background-color: #fff;
  padding: 1.4375rem;
  min-width: 17.5rem;
}
@supports (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-contacts {
    padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem);
  }
}
@supports not (
  padding-top: clamp(6.875rem, 6.1057692308rem + 3.8461538462vw, 10.3125rem)
) {
  .page-contacts {
    padding-top: calc(6.875rem + 3.4375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem)
) {
  .page-contacts {
    padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem);
  }
}
@supports not (
  padding-bottom: clamp(3.75rem, 2.770979021rem + 4.8951048951vw, 8.125rem)
) {
  .page-contacts {
    padding-bottom: calc(3.75rem + 4.375 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  .page-contacts__head:not(:last-child) {
    margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  .page-contacts__head:not(:last-child) {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  .page-contacts__info:not(:last-child) {
    margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem);
  }
}
@supports not (
  margin-bottom: clamp(1.5625rem, 1.2128496503rem + 1.7482517483vw, 3.125rem)
) {
  .page-contacts__info:not(:last-child) {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 89.375);
  }
}
.page-contacts__map {
  overflow: hidden;
  height: 0;
  -webkit-transition: all 2.3s ease 0s;
  -o-transition: all 2.3s ease 0s;
  transition: all 2.3s ease 0s;
  position: relative;
}
.page-contacts__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 2.3s ease 0s;
  -o-transition: all 2.3s ease 0s;
  transition: all 2.3s ease 0s;
  -webkit-transform: translate(10%, 10%) scale(1.1);
  -ms-transform: translate(10%, 10%) scale(1.1);
  transform: translate(10%, 10%) scale(1.1);
  opacity: 0.7;
}
@supports (
  height: clamp(18.75rem, 11.1975524476rem + 37.7622377622vw, 52.5rem)
) {
  .page-contacts__map iframe {
    height: clamp(18.75rem, 11.1975524476rem + 37.7622377622vw, 52.5rem);
  }
}
@supports not (
  height: clamp(18.75rem, 11.1975524476rem + 37.7622377622vw, 52.5rem)
) {
  .page-contacts__map iframe {
    height: calc(18.75rem + 33.75 * (100vw - 20rem) / 89.375);
  }
}
@supports (
  height: clamp(18.75rem, 11.1975524476rem + 37.7622377622vw, 52.5rem)
) {
  .mhz-loaded .page-contacts__map._watcher-view {
    height: clamp(18.75rem, 11.1975524476rem + 37.7622377622vw, 52.5rem);
  }
}
@supports not (
  height: clamp(18.75rem, 11.1975524476rem + 37.7622377622vw, 52.5rem)
) {
  .mhz-loaded .page-contacts__map._watcher-view {
    height: calc(18.75rem + 33.75 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded .page-contacts__map._watcher-view iframe {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.info-contacts {
  border-top: 1px solid #b0a99f;
  border-bottom: 1px solid #b0a99f;
}
.info-contacts__column {
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
@supports (
  padding-top: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem)
) {
  .info-contacts__column {
    padding-top: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem);
  }
}
@supports not (
  padding-top: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem)
) {
  .info-contacts__column {
    padding-top: calc(1.5625rem + 2.1875 * (100vw - 47.9375rem) / 72.0625);
  }
}
@supports (
  padding-bottom: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem)
) {
  .info-contacts__column {
    padding-bottom: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem);
  }
}
@supports not (
  padding-bottom: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem)
) {
  .info-contacts__column {
    padding-bottom: calc(1.5625rem + 2.1875 * (100vw - 47.9375rem) / 72.0625);
  }
}
.info-contacts__column:nth-child(2) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.info-contacts__column:nth-child(3) {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.mhz-loaded ._watcher-view .info-contacts__column {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@supports (
  padding-left: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem)
) {
  .info-contacts__column:not(:first-child) {
    padding-left: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem);
  }
}
@supports not (
  padding-left: clamp(1.5625rem, 0.1073287077rem + 3.0355594102vw, 3.75rem)
) {
  .info-contacts__column:not(:first-child) {
    padding-left: calc(1.5625rem + 2.1875 * (100vw - 47.9375rem) / 72.0625);
  }
}
.info-contacts__name {
  color: #544f48;
}
@supports (font-size: clamp(0.875rem, 0.7918473547rem + 0.1734605377vw, 1rem)) {
  .info-contacts__name {
    font-size: clamp(0.875rem, 0.7918473547rem + 0.1734605377vw, 1rem);
  }
}
@supports not (
  font-size: clamp(0.875rem, 0.7918473547rem + 0.1734605377vw, 1rem)
) {
  .info-contacts__name {
    font-size: calc(0.875rem + 0.125 * (100vw - 47.9375rem) / 72.0625);
  }
}
.info-contacts__name:not(:last-child) {
  margin-bottom: 0.625rem;
}
@supports (font-size: clamp(1.5rem, 1.1673894189rem + 0.6938421509vw, 2rem)) {
  .info-contacts__text {
    font-size: clamp(1.5rem, 1.1673894189rem + 0.6938421509vw, 2rem);
  }
}
@supports not (
  font-size: clamp(1.5rem, 1.1673894189rem + 0.6938421509vw, 2rem)
) {
  .info-contacts__text {
    font-size: calc(1.5rem + 0.5 * (100vw - 47.9375rem) / 72.0625);
  }
}
.page-notfound {
  text-align: center;
}
.page-notfound__title {
  color: #fff;
}
@supports (
  font-size: clamp(9.375rem, 8.6756993007rem + 3.4965034965vw, 12.5rem)
) {
  .page-notfound__title {
    font-size: clamp(9.375rem, 8.6756993007rem + 3.4965034965vw, 12.5rem);
  }
}
@supports not (
  font-size: clamp(9.375rem, 8.6756993007rem + 3.4965034965vw, 12.5rem)
) {
  .page-notfound__title {
    font-size: calc(9.375rem + 3.125 * (100vw - 20rem) / 89.375);
  }
}
.page-notfound__title:not(:last-child) {
  margin-bottom: 1.25rem;
}
.page-notfound__text {
  opacity: 0;
  color: #fff;
  line-height: 1.2208333333;
}
@supports (
  font-size: clamp(1.25rem, 1.1940559441rem + 0.2797202797vw, 1.5rem)
) {
  .page-notfound__text {
    font-size: clamp(1.25rem, 1.1940559441rem + 0.2797202797vw, 1.5rem);
  }
}
@supports not (
  font-size: clamp(1.25rem, 1.1940559441rem + 0.2797202797vw, 1.5rem)
) {
  .page-notfound__text {
    font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / 89.375);
  }
}
.mhz-loaded .page-notfound__text {
  -webkit-transition: opacity 0.8s ease 1s;
  -o-transition: opacity 0.8s ease 1s;
  transition: opacity 0.8s ease 1s;
  opacity: 1;
}
.page-notfound__text:not(:last-child) {
  margin-bottom: 2.5rem;
}
.page-notfound__button {
  opacity: 0;
}
.mhz-loaded .page-notfound__button {
  -webkit-transition: opacity 0.8s ease 1.8s;
  -o-transition: opacity 0.8s ease 1.8s;
  transition: opacity 0.8s ease 1.8s;
  opacity: 1;
}
@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.simplebar-content:after,
.simplebar-content:before {
  content: " ";
  display: table;
}
.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}
.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  -o-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}
.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}
.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@font-face {
  font-family: lg;
  src: url(data:font/woff2;base64,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)
      format("woff2"),
    url(data:font/woff;base64,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)
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  font-family: lg !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  outline: 0;
  border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}
.lg-next {
  right: 20px;
}
.lg-next:before {
  content: "\e095";
}
.lg-prev {
  left: 20px;
}
.lg-prev:after {
  content: "\e094";
}
@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.4))
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.4)
  );
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: 0 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
  color: #fff;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-maximize {
  font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}
.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
.lg-sub-html a {
  color: inherit;
}
.lg-sub-html a:hover {
  text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 0.6))
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.6)
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.6)
  );
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.lg-error-msg {
  font-size: 14px;
  color: #999;
}
.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}
.lg-closing .lg-next,
.lg-closing .lg-prev,
.lg-closing .lg-sub-html,
.lg-closing .lg-toolbar {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s,
    color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear,
    -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear,
    -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}
body:not(.lg-from-hash)
  .lg-outer.lg-start-zoom
  .lg-item:not(.lg-zoomable)
  .lg-img-wrap,
body:not(.lg-from-hash)
  .lg-outer.lg-start-zoom
  .lg-item:not(.lg-zoomable)
  .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1),
    -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1),
    -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  -o-transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 250ms cubic-bezier(0, 0, 0.25, 1),
    -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}
body:not(.lg-from-hash)
  .lg-outer.lg-start-zoom
  .lg-item:not(.lg-zoomable).lg-complete
  .lg-img-wrap,
body:not(.lg-from-hash)
  .lg-outer.lg-start-zoom
  .lg-item:not(.lg-zoomable).lg-complete
  .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.lg-group:after {
  content: "";
  display: table;
  clear: both;
}
.lg-container {
  display: none;
  outline: 0;
}
.lg-container.lg-show {
  display: block;
}
.lg-on {
  scroll-behavior: unset;
}
.lg-hide-sub-html .lg-sub-html,
.lg-next,
.lg-pager-outer,
.lg-prev,
.lg-toolbar {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s,
    -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer,
.lg-show-in .lg-prev,
.lg-show-in .lg-toolbar {
  opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: 0;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
  opacity: 1;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide {
  -webkit-transition-duration: inherit !important;
  -o-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  -o-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}
.lg-outer .lg-item {
  will-change: transform, opacity;
  display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url(data:image/gif;base64,R0lGODlhIAAgAPUAADExMf///zQ0NF9fX0JCQjw8PFZWVpiYmIGBgTc3N0RERDIyMoiIiJGRkUdHR2lpaXx8fD8/P3FxcUxMTMvLy7i4uLCwsJmZmXZ2dj09PcLCwqampvT09P///1dXV1xcXE9PT9ra2rKysuXl5cDAwG9vbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAG/0CAcEgkFjgcR3HJJE4SxEGnMygKmkwJxRKdVocFBRRLfFAoj6GUOhQoFAVysULRjNdfQFghLxrODEJ4Qm5ifUUXZwQAgwBvEXIGBkUEZxuMXgAJb1dECWMABAcHDEpDEGcTBQMDBQtvcW0RbwuECKMHELEJF5NFCxm1AAt7cH4NuAOdcsURy0QCD7gYfcWgTQUQB6Zkr66HoeDCSwIF5ucFz3IC7O0CC6zx8YuHhW/3CvLyfPX4+OXozKnDssBdu3G/xIHTpGAgOUPrZimAJCfDPYfDin2TQ+xeBnWbHi37SC4YIYkQhdy7FvLdpwWvjA0JyU/ISyIx4xS6sgfkNS4me2rtVKkgw0JCb8YMZdjwqMQ2nIY8BbcUQNVCP7G4MQq1KRivR7tiDEuEFrggACH5BAkKAAAALAAAAAAgACAAAAb/QIBwSCQmNBpCcckkEgREA4ViKA6azM8BEZ1Wh6LOBls0HA5fgJQ6HHQ6InKRcWhA1d5hqMMpyIkOZw9Ca18Qbwd/RRhnfoUABRwdI3IESkQFZxB4bAdvV0YJQwkDAx9+bWcECQYGCQ5vFEQCEQoKC0ILHqUDBncCGA5LBiHCAAsFtgqoQwS8Aw64f8m2EXdFCxO8INPKomQCBgPMWAvL0n/ff+jYAu7vAuxy8O/myvfX8/f7/Arq+v0W0HMnr9zAeE0KJlQkJIGCfE0E+PtDq9qfDMogDkGmrIBCbNQUZIDosNq1kUsEZJBW0dY/b0ZsLViQIMFMW+RKKgjFzp4fNokPIdki+Y8JNVxA79jKwHAI0G9JGw5tCqDWTiFRhVhtmhVA16cMJTJ1OnVIMo1cy1KVI5NhEAAh+QQJCgAAACwAAAAAIAAgAAAG/0CAcEgkChqNQnHJJCYWRMfh4CgamkzFwBOdVocNCgNbJAwGhKGUOjRQKA1y8XOGAtZfgIWiSciJBWcTQnhCD28Qf0UgZwJ3XgAJGhQVcgKORmdXhRBvV0QMY0ILCgoRmIRnCQIODgIEbxtEJSMdHZ8AGaUKBXYLIEpFExZpAG62HRRFArsKfn8FIsgjiUwJu8FkJLYcB9lMCwUKqFgGHSJ5cnZ/uEULl/CX63/x8KTNu+RkzPj9zc/0/Cl4V0/APDIE6x0csrBJwybX9DFhBhCLgAilIvzRVUriKHGlev0JtyuDvmsZUZlcIiCDnYu7KsZ0UmrBggRP7n1DqcDJEzciOgHwcwTyZEUmIKEMFVIqgyIjpZ4tjdTxqRCMPYVMBYDV6tavUZ8yczpkKwBxHsVWtaqo5tMgACH5BAkKAAAALAAAAAAgACAAAAb/QIBwSCQuBgNBcck0FgvIQtHRZCYUGSJ0IB2WDo9qUaBQKIXbLsBxOJTExUh5mB4iDo0zXEhWJNBRQgZtA3tPZQsAdQINBwxwAnpCC2VSdQNtVEQSEkOUChGSVwoLCwUFpm0QRAMVFBQTQxllCqh0kkIECF0TG68UG2O0foYJDb8VYVa0alUXrxoQf1WmZnsTFA0EhgCJhrFMC5Hjkd57W0jpDsPDuFUDHfHyHRzstNN78PPxHOLk5dwcpBuoaYk5OAfhXHG3hAy+KgLkgNozqwzDbgWYJQyXsUwGXKNA6fnYMIO3iPeIpBwyqlSCBKUqEQk5E6YRmX2UdAT5kEnHKkQ5hXjkNqTPtKAARl1sIrGoxSFNuSEFMNWoVCxEpiqyRlQY165wEHELAgAh+QQJCgAAACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0GxwFwmFJlnlAgaTKpFqEIqFJMBhcEABC5GjkPz0KN2tsvHBH4sJKgdd1NHSXILah9tAmdCC0dUcg5qVEQfiIxHEYtXSACKnWoGXAwHBwRDGUcKBXYFi0IJHmQEEKQHEGGpCnp3AiW1DKFWqZNgGKQNA65FCwV8bQQHJcRtds9MC4rZitVgCQbf4AYEubnKTAYU6eoUGuSpu3fo6+ka2NrbgQAE4eCmS9xVAOW7Yq7IgA4Hpi0R8EZBhDshOnTgcOtfM0cAlTigILFDiAFFNjk8k0GZgAxOBozouIHIOyKbFixIkECmIyIHOEiEWbPJTTQ5FxcVOMCgzUVCWwAcyZJvzy45ADYVZNIwTlIAVfNB7XRVDLxEWLQ4E9JsKq+rTdsMyhcEACH5BAkKAAAALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUYKQ4YKEYSKfVKPaUMZHwMDeQBxh04ABYSFGU4JBpsDBmFHdXMLIKofBEyKCpdgspsOoUsLXaRLCQMgwky+YJ1FC4POg8lVAg7U1Q5drtnHSw4H3t8HDdnZy2Dd4N4Nzc/QeqLW1bnM7rXuV9tEBhQQ5UoCbJDmWKBAQcMDZNhwRVNCYANBChZYEbkVCZOwASEcCDFQ4SEDIq6WTVqQIMECBx06iCACQQPBiSabHDqzRUTKARMhSFCDrc+WNQIcOoRw5+ZIHj8ADqSEQBQAwKKLhIzowEEeGKQ0owIYkPKjHihZoBKi0KFE01b4zg7h4y4IACH5BAkKAAAALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RagJmQgtHaX5XZUUJeQCGChGEin1SkGlubEhDcYdOAAWEhRlOC12HYUd1eqeRokOKCphgrY5MpotqhgWfunqPt4PCg71gpgXIyWSqqq9MBQPR0tHMzM5L0NPSC8PCxVUCyeLX38+/AFfXRA4HA+pjmoFqCAcHDQa3rbxzBRD1BwgcMFIlidMrAxYICHHA4N8DIqpsUWJ3wAEBChQaEBnQoB6RRr0uARjQocMAAA0w4nMz4IOaU0lImkSngYKFc3ZWyTwJAALGK4fnNA3ZOaQCBQ22wPgRQlSIAYwSfkHJMrQkTyEbKFzFydQq15ccOAjUEwQAIfkECQoAAAAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVD29K/AFfRRQUDDt1PmoFqHgPtBLetvMwG7QMes0KxkkIFIQNKDhBgKvCh3gQiqmxt6NDBAAEIEAgUOHCgBBEH9Yg06uWAIQUABihQMACgBEUHTRwoUEOBIcqQI880OIDgm5ABDA8IgUkSwAAyij1/jejAARPPIQwONBCnBAJDCEOOCnFA8cOvEh1CEJEqBMIBEDaLcA3LJIEGDe/0BAEAIfkECQoAAAAsAAAAACAAIAAABv9AgHBILCoUi6JySUwSBUdBUcpUJhSZZ5RYUCSq060QqqACyAVwMXIcks2ZtlrrHYvJ3zn3mHwLjxFqAmZCC0dpfldlRQl5AIYKEYSKfVKQaW5sSENxh04ABYSFGU4LXYdhR3V6p5GiQ4oKmGCtjkymi2qGBZ+6eo+3g8KDvYLDxKrJuXNkys6qr0zNygvHxL/V1sVDDti/BQccA8yrYBAjHR0jc53LRQYU6R0UBnO4RxmiG/IjJUIJFuoVKeCBigBN5QCk43BgFgMKFCYUGDAgFEUQRGIRYbCh2xACEDcAcHDgQDcQFGf9s7VkA0QCI0t2W0DRw68h8ChAEELSJE8xijBvVqCgIU9PjwA+UNzG5AHEB9xkDpk4QMGvARQsEDlKxMCALDeLcA0rqEEDlWCCAAAh+QQJCgAAACwAAAAAIAAgAAAG/0CAcEgsKhSLonJJTBIFR0FRylQmFJlnlFhQJKrTrRCqoALIBXAxchySzZm2Wusdi8nfOfeYfAuPEWoCZkILR2l+V2VFCXkAhgoRhIp9UpBpbmxIQ3GHTgAFhIUZTgtdh2FHdXqnkaJDigqYYK2OTKaLaoYFn7p6j0wOA8PEAw6/Z4PKUhwdzs8dEL9kqqrN0M7SetTVCsLFw8d6C8vKvUQEv+dVCRAaBnNQtkwPFRQUFXOduUoTG/cUNkyYg+tIBlEMAFYYMAaBuCekxmhaJeSeBgiOHhw4QECAAwcCLhGJRUQCg3RDCmyUVmBYmlOiGqmBsPGlyz9YkAlxsJEhqCubABS9AsPgQAMqLQfM0oTMwEZ4QpLOwvMLxAEEXIBG5aczqtaut4YNXRIEACH5BAkKAAAALAAAAAAgACAAAAb/QIBwSCwqFIuicklMEgVHQVHKVCYUmWeUWFAkqtOtEKqgAsgFcDFyHJLNmbZa6x2Lyd8595h8C48RahAQRQtHaX5XZUUJeQAGHR0jA0SKfVKGCmlubEhCBSGRHSQOQwVmQwsZTgtdh0UQHKIHm2quChGophuiJHO3jkwOFB2UaoYFTnMGegDKRQQG0tMGBM1nAtnaABoU3t8UD81kR+UK3eDe4nrk5grR1NLWegva9s9czfhVAgMNpWqgBGNigMGBAwzmxBGjhACEgwcgzAPTqlwGXQ8gMgAhZIGHWm5WjelUZ8jBBgPMTBgwIMGCRgsygVSkgMiHByD7DWDmx5WuMkZqDLCU4gfAq2sACrAEWFSRLjUfWDopCqDTNQIsJ1LF0yzDAA90UHV5eo0qUjB8mgUBACH5BAkKAAAALAAAAAAgACAAAAb/QIBwSCwqFIuickk0FIiCo6A4ZSoZnRBUSiwoEtYipNOBDKOKKgD9DBNHHU4brc4c3cUBeSOk949geEQUZA5rXABHEW4PD0UOZBSHaQAJiEMJgQATFBQVBkQHZKACUwtHbX0RR0mVFp0UFwRCBSQDSgsZrQteqEUPGrAQmmG9ChFqRAkMsBd4xsRLBBsUoG6nBa14E4IA2kUFDuLjDql4peilAA0H7e4H1udH8/Ps7+3xbmj0qOTj5mEWpEP3DUq3glYWOBgAcEmUaNI+DBjwAY+dS0USGJg4wABEXMYyJNvE8UOGISKVCNClah4xjg60WUKyINOCUwrMzVRARMGENWQ4n/jpNTKTm15J/CTK2e0MoD+UKmHEs4onVDVVmyqdpAbNR4cKTjqNSots07EjzzJh1S0IADsAAAAAAAAAAAA=)
    no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide,
.lg-outer.lg-css3 .lg-prev-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-img-wrap:before,
.lg-outer .lg-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}
.lg-outer .lg-empty-html .lg-sub-html,
.lg-outer .lg-empty-html.lg-sub-html {
  display: none;
}
.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  -o-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
  opacity: 1;
}
.lg-css3.lg-no-trans .lg-current,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-prev-slide {
  -webkit-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-current,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-prev-slide {
  -webkit-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s
    cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s,
    -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
    -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s,
    -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s,
    -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
    opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s,
    -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-container {
  display: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}
.lg-inline .lg-backdrop {
  z-index: 1;
}
.lg-inline .lg-outer {
  z-index: 2;
}
.lg-inline .lg-maximize:after {
  content: "\e909";
}
.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  -o-transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
@media (min-width: 29.99875em) {
  ._mmd4dn {
    display: none !important;
  }
  .about__title span:last-child {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .item-specialist__info {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    max-width: 19.75rem;
  }
  .text-specialists {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 55%;
    flex: 0 1 55%;
  }
  .table-services__line:not(:last-child) .table-services__category,
  .table-services__line:not(:last-child) .table-services__service {
    border-bottom: none;
  }
  .table-services__service {
    border-left: none;
  }
  .page-reviews__button {
    min-width: 15.8125rem;
  }
  .form-reviewsPopup__body {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .form-reviewsPopup__item_area {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (min-width: 47.99875em) {
  ._mmd3dn {
    display: none !important;
  }
  .main-footer__center {
    border-left: 1px solid #b1b7ab;
    border-right: 1px solid #b1b7ab;
  }
  .bottom-footer__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333%;
    flex: 0 1 33.333%;
  }
  .bottom-footer__column {
    text-align: center;
  }
  .bottom-footer__column:first-child {
    text-align: left;
  }
  .bottom-footer__column:last-child {
    text-align: right;
  }
  .hero__bg {
    width: 50%;
  }
  .page-reviews__select .select__value {
    width: 15.8125rem;
  }
  .page-contacts__map {
    background-color: #fff;
  }
  .info-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .info-contacts__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.333%;
    flex: 0 1 33.333%;
  }
  .info-contacts__column:not(:last-child) {
    border-right: 1px solid #b0a99f;
  }
}
@media (min-width: 61.99875em) {
  ._mmd2dn {
    display: none !important;
  }
  .menu__close {
    display: none;
  }
  .item-specialists:not(:first-child) {
    padding-left: 1.25rem;
  }
  .item-specialists:not(:last-child) {
    padding-right: 1.25rem;
  }
  .page-specialists__body {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .item-specialist {
    border-top: none;
  }
  .item-specialist:nth-child(2n) {
    border-left: none;
    -webkit-transition-delay: 0.65s;
    -o-transition-delay: 0.65s;
    transition-delay: 0.65s;
  }
  .item-specialist:nth-child(1),
  .item-specialist:nth-child(2) {
    border-top: 1px solid #b0a99f;
  }
  .item-specialist._filtered {
    border-top: 1px solid #b0a99f;
  }
}
@media (min-width: 61.99875em) and (min-width: 61.99875em) {
  .item-specialists:not(:last-child) {
    border-right: 1px solid #b0a99f;
  }
}
@media (min-width: 109.375em) {
  ._mmd1dn {
    display: none !important;
  }
  .section-title {
    font-size: 4rem !important;
  }
  ._content h3 {
    font-size: 1.25rem !important;
  }
  ._content h3:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  ._content ol:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  ._content ul:not(:last-child) {
    margin-bottom: 1.875rem !important;
  }
  .header__button svg {
    display: none;
  }
  .main-footer__uptitle {
    font-size: 1rem !important;
  }
  .main-footer__text {
    font-size: 1.5rem !important;
  }
  .main-footer__center {
    padding-top: 4.375rem !important;
  }
  .main-footer__center {
    padding-bottom: 4.75rem !important;
  }
  .main-footer__logo:not(:last-child) {
    margin-bottom: 3.25rem !important;
  }
  .bottom-footer {
    padding-top: 2.5rem !important;
  }
  .bottom-footer {
    padding-bottom: 2.5rem !important;
  }
  :root {
    --ftrscl: 5rem !important;
  }
  .hero__address {
    font-size: 1.25rem !important;
  }
  .about {
    padding-top: 7.1875rem !important;
  }
  .about {
    padding-bottom: 7.1875rem !important;
  }
  .about__container::before {
    top: 0.75rem !important;
  }
  .about__head:not(:last-child) {
    margin-bottom: 3.75rem !important;
  }
  .about__uptitle {
    font-size: 1.25rem !important;
  }

  .about__title span:first-child {
    padding-top: 1.875rem !important;
  }
  .about__title span img {
    max-height: 9.8125rem !important;
  }
  .about__text {
    font-size: 1.25rem !important;
  }
  .services__container {
    padding-top: 6.25rem !important;
  }
  .services__container {
    padding-bottom: 6.25rem !important;
  }
  .services__title {
    font-size: 4rem !important;
  }
  .item-services {
    padding-top: 1.875rem !important;
  }
  .item-services {
    padding-bottom: 1.875rem !important;
  }
  .item-services:not(:last-child) {
    padding-right: 3.75rem !important;
  }
  .item-services:not(:first-child) {
    padding-left: 3.75rem !important;
  }
  .item-services__title {
    font-size: 1.5rem !important;
  }
  .item-services__title:not(:last-child) {
    margin-bottom: 3.75rem !important;
  }
  .specialists {
    padding-top: 7.1875rem !important;
  }
  .specialists {
    padding-bottom: 3.5625rem !important;
  }
  .item-specialists__image:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .item-specialists__name {
    font-size: 1.5rem !important;
  }
  .item-specialists__name:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .item-specialists__body:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .item-specialists__profession {
    font-size: 1.125rem !important;
  }
  .frames {
    padding-top: 3.5625rem !important;
  }
  .frames {
    padding-bottom: 3.5625rem !important;
  }
  .frames__head:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .frames__track:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .frames__fractions {
    gap: 1.25rem !important;
  }
  .frames__fractions {
    font-size: 1.5rem !important;
  }
  .frames__all {
    gap: 1.25rem !important;
  }
  .reviews {
    padding-top: 3.5625rem !important;
  }
  .reviews {
    padding-bottom: 7.1875rem !important;
  }
  .reviews__head:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .reviews__body {
    --gp: 2.5rem !important;
  }
  .reviews__body:not(:last-child) {
    margin-bottom: 3.75rem !important;
  }
  .reviews__more {
    font-size: 1.125rem !important;
  }
  .item-reviews {
    padding: 1.875rem !important;
  }
  .page-specialists {
    padding-top: 10.3125rem !important;
  }
  .page-specialists {
    padding-bottom: 8.125rem !important;
  }
  .page-specialists__head:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  .page-specialists__filter {
    padding-left: 1.8125rem !important;
  }
  .page-specialists__filter {
    padding-right: 1.8125rem !important;
  }
  .page-specialists__filter {
    padding-top: 1.1875rem !important;
  }
  .page-specialists__filter {
    padding-bottom: 1.1875rem !important;
  }
  .page-specialists__filter {
    font-size: 1rem !important;
  }
  .item-specialist {
    padding: 1.875rem !important;
  }
  .item-specialist {
    gap: 6rem !important;
  }
  .item-specialist__image:not(:last-child) {
    margin-bottom: 1.4375rem !important;
  }
  .item-specialist__name {
    font-size: 1.25rem !important;
  }
  .item-specialist__name:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .item-specialist__prodession {
    font-size: 1.125rem !important;
  }
  .item-specialist__category {
    font-size: 0.875rem !important;
  }
  .item-specialist__category:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .text-specialists__more {
    font-size: 1rem !important;
  }
  .page-services {
    padding-top: 10.3125rem !important;
  }
  .page-services {
    padding-bottom: 10.3125rem !important;
  }
  .page-services__head:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  .table-services__category {
    padding-left: 2.5rem !important;
  }
  .table-services__category {
    padding-right: 2.5rem !important;
  }
  .table-services__category {
    padding-top: 1.25rem !important;
  }
  .table-services__category {
    padding-bottom: 1.25rem !important;
  }
  .table-services__item {
    padding-left: 2.5rem !important;
  }
  .table-services__item {
    padding-right: 2.5rem !important;
  }
  .table-services__item {
    padding-top: 0.9375rem !important;
  }
  .table-services__item {
    padding-bottom: 0.9375rem !important;
  }
  .table-services__line_first .table-services__item {
    padding-top: 1.25rem !important;
  }
  .table-services__line_first .table-services__item {
    padding-bottom: 1.25rem !important;
  }
  .table-services__name {
    font-size: 1.25rem !important;
  }
  .table-services__price {
    font-size: 1.25rem !important;
  }
  .table-services__label {
    font-size: 1rem !important;
  }
  .page-reviews {
    padding-top: 10.3125rem !important;
  }
  .page-reviews {
    padding-bottom: 8.125rem !important;
  }
  .page-reviews__head:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  .page-reviews__filters {
    gap: 2.5rem !important;
  }
  .page-reviews__name {
    font-size: 0.875rem !important;
  }
  .page-reviews__select {
    font-size: 1rem !important;
  }
  .page-reviews__select .select__value {
    font-size: 1rem !important;
  }
  .page-reviews__button {
    font-size: 1rem !important;
  }
  :root {
    --rwtxtpad: 1.875rem !important;
  }
  .form-reviewsPopup__head:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .form-reviewsPopup__title {
    font-size: 2.25rem !important;
  }
  .form-reviewsPopup__body {
    padding-top: 2.5rem !important;
  }
  .form-reviewsPopup__body {
    gap: 2.5rem !important;
  }
  .form-reviewsPopup__item {
    font-size: 1rem !important;
  }
  .form-reviewsPopup__input {
    padding-left: 1.8125rem !important;
  }
  .form-reviewsPopup__input {
    padding-right: 1.8125rem !important;
  }
  .form-reviewsPopup__input_area {
    min-height: 13.4375rem !important;
  }
  .form-reviewsPopup__label {
    left: 1.875rem !important;
  }
  .success-reviewsPopup__title {
    font-size: 2.25rem !important;
  }
  .success-reviewsPopup__title:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .success-reviewsPopup__text {
    font-size: 1rem !important;
  }
  .success-reviewsPopup__text:not(:last-child) {
    margin-bottom: 2.5rem !important;
  }
  .page-contacts {
    padding-top: 10.3125rem !important;
  }
  .page-contacts {
    padding-bottom: 8.125rem !important;
  }
  .page-contacts__head:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  .page-contacts__info:not(:last-child) {
    margin-bottom: 3.125rem !important;
  }
  .page-contacts__map iframe {
    height: 52.5rem !important;
  }
  .mhz-loaded .page-contacts__map._watcher-view {
    height: 52.5rem !important;
  }
  .page-notfound__title {
    font-size: 12.5rem !important;
  }
  .page-notfound__text {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 35em) {
  .about__body::after {
    height: 165%;
  }
}
@media (min-width: 120em) {
  .header__phone {
    font-size: 1.125rem !important;
  }
  .header__time {
    font-size: 1.125rem !important;
  }
  .menu__list {
    gap: 5.1875rem !important;
  }
  .menu__link {
    font-size: 1.125rem !important;
  }
  .info-contacts__column:not(:first-child) {
    padding-left: 3.75rem !important;
  }
}
@media (max-width: 62em) {
  .header__phone {
    font-size: inherit;
  }
  .header__time {
    font-size: inherit;
  }
  .menu__list {
    gap: inherit;
  }
  .menu__link {
    font-size: inherit;
  }
}
@media (max-width: 20em) {
  .section-title {
    font-size: 1.875rem !important;
  }
  ._content h3 {
    font-size: 1rem !important;
  }
  ._content h3:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  ._content ol:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  ._content ul:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .main-footer__uptitle {
    font-size: 0.75rem !important;
  }
  .main-footer__text {
    font-size: 1rem !important;
  }
  .main-footer__center {
    padding-top: 2.1875rem !important;
  }
  .main-footer__center {
    padding-bottom: 2.5rem !important;
  }
  .main-footer__logo:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .bottom-footer {
    padding-top: 0.9375rem !important;
  }
  .bottom-footer {
    padding-bottom: 0.9375rem !important;
  }
  :root {
    --ftrscl: 2.5rem !important;
  }
  .hero__address {
    font-size: 0.875rem !important;
  }
  .about {
    padding-top: 3.125rem !important;
  }
  .about {
    padding-bottom: 3.125rem !important;
  }
  .about__container::before {
    top: 0.5625rem !important;
  }
  .about__head:not(:last-child) {
    margin-bottom: 2.1875rem !important;
  }
  .about__uptitle {
    font-size: 0.875rem !important;
  }
  .about__title {
    font-size: 1.25rem !important;
  }
  .about__title span:first-child {
    padding-top: 0.9375rem !important;
  }
  .about__title span img {
    max-height: 1.4375rem !important;
  }
  .about__text {
    font-size: 1rem !important;
  }
  .services__container {
    padding-top: 1.875rem !important;
  }
  .services__container {
    padding-bottom: 1.875rem !important;
  }
  .services__title {
    font-size: 1.875rem !important;
  }
  .item-services {
    padding-top: 0.9375rem !important;
  }
  .item-services {
    padding-bottom: 0.9375rem !important;
  }
  .item-services:not(:last-child) {
    padding-right: 1.5625rem !important;
  }
  .item-services:not(:first-child) {
    padding-left: 1.5625rem !important;
  }
  .item-services__title {
    font-size: 1rem !important;
  }
  .item-services__title:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .specialists {
    padding-top: 3.125rem !important;
  }
  .specialists {
    padding-bottom: 1.5625rem !important;
  }
  .item-specialists__image:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .item-specialists__name {
    font-size: 1.125rem !important;
  }
  .item-specialists__name:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .item-specialists__body:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .item-specialists__profession {
    font-size: 1rem !important;
  }
  .frames {
    padding-top: 1.5625rem !important;
  }
  .frames {
    padding-bottom: 1.5625rem !important;
  }
  .frames__head:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .frames__track:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .frames__fractions {
    gap: 0.3125rem !important;
  }
  .frames__fractions {
    font-size: 1.125rem !important;
  }
  .frames__all {
    gap: 0.3125rem !important;
  }
  .reviews {
    padding-top: 1.5625rem !important;
  }
  .reviews {
    padding-bottom: 3.125rem !important;
  }
  .reviews__head:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .reviews__body {
    --gp: 1.25rem !important;
  }
  .reviews__body:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .reviews__more {
    font-size: 1rem !important;
  }
  .item-reviews {
    padding: 0.9375rem !important;
  }
  .page-specialists {
    padding-top: 6.875rem !important;
  }
  .page-specialists {
    padding-bottom: 3.75rem !important;
  }
  .page-specialists__head:not(:last-child) {
    margin-bottom: 1.875rem !important;
  }
  .page-specialists__filter {
    padding-left: 0.875rem !important;
  }
  .page-specialists__filter {
    padding-right: 0.875rem !important;
  }
  .page-specialists__filter {
    padding-top: 0.5625rem !important;
  }
  .page-specialists__filter {
    padding-bottom: 0.5625rem !important;
  }
  .page-specialists__filter {
    font-size: 0.8125rem !important;
  }
  .item-specialist {
    padding: 0.9375rem !important;
  }
  .item-specialist {
    gap: 1.25rem !important;
  }
  .item-specialist__image:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .item-specialist__name {
    font-size: 1rem !important;
  }
  .item-specialist__name:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .item-specialist__prodession {
    font-size: 0.875rem !important;
  }
  .item-specialist__category {
    font-size: 0.75rem !important;
  }
  .item-specialist__category:not(:last-child) {
    margin-bottom: 0.9375rem !important;
  }
  .text-specialists__more {
    font-size: 0.75rem !important;
  }
  .page-services {
    padding-top: 6.875rem !important;
  }
  .page-services {
    padding-bottom: 3.75rem !important;
  }
  .page-services__head:not(:last-child) {
    margin-bottom: 1.875rem !important;
  }
  .table-services__category {
    padding-left: 0.9375rem !important;
  }
  .table-services__category {
    padding-right: 0.9375rem !important;
  }
  .table-services__category {
    padding-top: 0.625rem !important;
  }
  .table-services__category {
    padding-bottom: 0.625rem !important;
  }
  .table-services__item {
    padding-left: 0.9375rem !important;
  }
  .table-services__item {
    padding-right: 0.9375rem !important;
  }
  .table-services__item {
    padding-top: 0.625rem !important;
  }
  .table-services__item {
    padding-bottom: 0.625rem !important;
  }
  .table-services__line_first .table-services__item {
    padding-top: 0.625rem !important;
  }
  .table-services__line_first .table-services__item {
    padding-bottom: 0.625rem !important;
  }
  .table-services__name {
    font-size: 0.875rem !important;
  }
  .table-services__price {
    font-size: 0.875rem !important;
  }
  .table-services__label {
    font-size: 0.75rem !important;
  }
  .page-reviews {
    padding-top: 6.875rem !important;
  }
  .page-reviews {
    padding-bottom: 3.75rem !important;
  }
  .page-reviews__head:not(:last-child) {
    margin-bottom: 1.875rem !important;
  }
  .page-reviews__filters {
    gap: 1.25rem !important;
  }
  .page-reviews__name {
    font-size: 0.75rem !important;
  }
  .page-reviews__select {
    font-size: 0.875rem !important;
  }
  .page-reviews__select .select__value {
    font-size: 0.875rem !important;
  }
  .page-reviews__button {
    font-size: 0.875rem !important;
  }
  :root {
    --rwtxtpad: 0.625rem !important;
  }
  .form-reviewsPopup__head:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .form-reviewsPopup__title {
    font-size: 1.5rem !important;
  }
  .form-reviewsPopup__body {
    padding-top: 1.25rem !important;
  }
  .form-reviewsPopup__body {
    gap: 0.9375rem !important;
  }
  .form-reviewsPopup__item {
    font-size: 0.875rem !important;
  }
  .form-reviewsPopup__input {
    padding-left: 0.875rem !important;
  }
  .form-reviewsPopup__input {
    padding-right: 0.875rem !important;
  }
  .form-reviewsPopup__input_area {
    min-height: 10rem !important;
  }
  .form-reviewsPopup__label {
    left: 0.9375rem !important;
  }
  .success-reviewsPopup__title {
    font-size: 1.5rem !important;
  }
  .success-reviewsPopup__title:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .success-reviewsPopup__text {
    font-size: 0.875rem !important;
  }
  .success-reviewsPopup__text:not(:last-child) {
    margin-bottom: 1.25rem !important;
  }
  .page-contacts {
    padding-top: 6.875rem !important;
  }
  .page-contacts {
    padding-bottom: 3.75rem !important;
  }
  .page-contacts__head:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .page-contacts__info:not(:last-child) {
    margin-bottom: 1.5625rem !important;
  }
  .page-contacts__map iframe {
    height: 18.75rem !important;
  }
  .mhz-loaded .page-contacts__map._watcher-view {
    height: 18.75rem !important;
  }
  .page-notfound__title {
    font-size: 9.375rem !important;
  }
  .page-notfound__text {
    font-size: 1.25rem !important;
  }
}
@media (max-width: 109.375em) {
  ._md1dn {
    display: none !important;
  }
  .header__button {
    min-width: 0;
  }
  .header__button span {
    display: none;
  }
  .hero__address {
    right: 0.9375rem;
  }
  .item-reviews__head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 61.99875em) {
  ._md2dn {
    display: none !important;
  }
  .header__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header__phone {
    font-size: 1.25rem !important;
    display: block;
  }
  .header__phone:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
  .header__time {
    font-size: 1.25rem !important;
    display: block;
  }
  .header__time:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
  .menu__close {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    cursor: pointer;
    background-color: rgba(85, 96, 84, 0.4);
    z-index: 1;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: all 0.3s ease 0.15s;
    -o-transition: all 0.3s ease 0.15s;
    transition: all 0.3s ease 0.15s;
  }
  .menu-open .menu__close {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .menu__body {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    height: 100vh;
    overflow-y: auto;
    width: 100%;
    max-width: 31.25rem;
    background-color: #efece8;
    color: #556054;
    padding: 0.9375rem;
    padding-top: 5rem;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu__body > :nth-child(2) {
    margin-top: auto;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 31.25rem;
    height: 5rem;
    background-color: #efece8;
    z-index: 9;
  }
  .menu-open .menu__body {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem !important;
    position: relative;
    z-index: 1;
  }
  .menu__list:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .menu__link {
    font-size: 1.25rem;
  }
  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #556054;
  }
  ._home .icon-menu span,
  ._home .icon-menu::after,
  ._home .icon-menu::before {
    background-color: #fff;
  }
  ._home._header-scroll .icon-menu span,
  ._home._header-scroll .icon-menu::after,
  ._home._header-scroll .icon-menu::before {
    background-color: #556054;
  }
  .menu-open .icon-menu span,
  .menu-open .icon-menu::after,
  .menu-open .icon-menu::before {
    background-color: #556054;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu span {
    width: 0;
  }
  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .specialists__body {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
  .page-specialists__head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .item-specialist:nth-child(n + 2) {
    border-top: none;
  }
  .page-reviews__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
@media (max-width: 47.99875em) {
  ._md3dn {
    display: none !important;
  }
  .main-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main-footer__contacts {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0;
  }
  .main-footer__center {
    border-top: 1px solid #b1b7ab;
    border-bottom: 1px solid #b1b7ab;
  }
  .main-footer__menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0;
  }
  .bottom-footer {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hero__bg {
    width: 100%;
  }
  .mhz-loaded ._watcher-view .hero__green {
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
  }
  .hero__down {
    display: none;
  }
  .specialists__head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .frames__head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-reviews__filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .page-reviews__name {
    display: none;
  }
  .page-reviews__select .select__value {
    width: 100%;
  }
  .page-reviews__button {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .info-contacts__column:not(:last-child) {
    border-bottom: 1px solid #b0a99f;
  }
}
@media (max-width: 47.9375em) {
  .info-contacts__column:not(:first-child) {
    padding-left: inherit;
  }
}
@media (max-width: 29.99875em) {
  ._md4dn {
    display: none !important;
  }
  .about__title {
    text-align: center;
  }
  .about__title span img {
    display: none;
  }
  .specialists__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .item-specialists {
    border-right: 1px solid #b0a99f;
    border-left: 1px solid #b0a99f;
    padding: 1.25rem;
  }
  .frames__navigation {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .item-specialist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .item-specialist__info {
    width: 100%;
  }
  .table-services__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .table-services__line .table-services__service {
    border-top: none;
  }
  .table-services__line:not(:last-child) .table-services__service {
    border-bottom: none;
  }
  .table-services__line_first {
    display: none;
  }
  .table-services__category {
    font-weight: 700;
  }
  .table-services__price::after {
    content: " руб.";
  }
  .form-reviewsPopup__button {
    width: 100%;
  }
}
@media (max-width: 61.99875em) and (min-width: 29.99875em) {
  .item-specialists:nth-child(odd) {
    border-right: 1px solid #b0a99f;
    padding-right: 1.25rem;
  }
  .item-specialists:nth-child(even) {
    padding-left: 1.25rem;
  }
}
@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }
  .btn:hover::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
  }
  [data-lg-id]:hover::before {
    content: "";
    opacity: 1;
  }
  .menu__link:hover {
    text-decoration: underline;
  }
  .main-footer__link:hover {
    text-decoration: underline;
  }
  .main-footer__social:hover {
    background-color: #778076;
  }
  .bottom-footer__column a:hover {
    text-decoration: none;
  }
  .item-services:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .specialists__all:hover {
    text-decoration: underline;
  }
  .frames__arrow:hover path {
    fill: #544f48;
  }
  .reviews__more:hover {
    text-decoration: underline;
  }
  .page-specialists__filter:hover {
    border-color: #778076;
  }
  .text-specialists__more:hover {
    text-decoration: underline;
  }
  .page-reviews__select .select__value:hover {
    border-color: #778076;
  }
  .page-reviews__select .select__option:hover {
    background-color: transparent;
    color: #778076;
  }
  .form-reviewsPopup__input:hover {
    background-color: #fff;
  }
  .form-reviewsPopup__agree a:hover {
    text-decoration: none;
  }
  .info-contacts__column a:hover {
    text-decoration: underline;
  }
}
