@font-face {
  font-family: Federov2-Regular;
  src:
    url(../fonts/federov2/federov2_regular.woff2) format("woff2"),
    url(/fonts/federov2_regular.woff) format("woff"),
    url(/fonts/federov2_regular.ttf) format("ttf");
  font-weight: 400;
}
@font-face {
  font-family: Inter;
  src:
    url(../fonts/inter/Inter-VariableFont_opsz,wght.woff2)
      format("woff2-variations"),
    url(../fonts/inter/Inter-VariableFont_opsz,wght.woff)
      format("woff-variations"),
    url(../fonts/inter/Inter-VariableFont_opsz,wght.ttf)
      format("ttf-variations");
  font-weight: 100 900;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
* {
  letter-spacing: -0.02em;
}
html,
body {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-gutter: stable;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #fcfcfc;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: #080808;
  overflow-x: hidden;
}
body:after {
  pointer-events: none;
  z-index: 3;
  content: "";
  position: fixed;
  left: -50%;
  top: -50%;
  right: 0;
  bottom: 0;
  will-change: auto;
  background-image: url(../images/noise.png);
  background-size: 100px;
  width: 200%;
  height: 200%;
  animation: noise 1.2s steps(3) both infinite;
  opacity: 0.3;
}
body.page-white {
  background-color: #fcfcfc;
}
body main {
  flex-grow: 1;
  padding-top: 128px;
}
@media screen and (min-width: 768px) {
  body main {
    padding-top: 186px;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.locked {
  overflow: hidden;
}
.cky-box-bottom-left {
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 12px !important;
}
@media screen and (min-width: 768px) {
  .cky-box-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
  }
}
.cky-btn {
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  color: #fcfcfc !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease-in-out !important;
  border: 1px solid transparent !important;
}
@keyframes noise {
  0% {
    transform: translate3d(1%, -1%, 0);
  }
  10% {
    transform: translate3d(-5%, -2%, 0);
  }
  20% {
    transform: translate3d(10%, 5%, 0);
  }
  30% {
    transform: translate3d(5%, -11%, 0);
  }
  40% {
    transform: translate3d(-12%, -5%, 0);
  }
  50% {
    transform: translate3d(10%, 9%, 0);
  }
  60% {
    transform: translate3d(15%, 0, 0);
  }
  70% {
    transform: translate3d(-10%, 8%, 0);
  }
  80% {
    transform: translate3d(10%, 2%, 0);
  }
  90% {
    transform: translate3d(1%, 5%, 0);
  }
  to {
    transform: translate3d(0, 8%, 0);
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.header {
  z-index: 2;
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  transition: top 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header {
    top: 30px;
  }
}
.header--scrolled {
  top: 10px;
}
@media screen and (min-width: 768px) {
  .header--scrolled {
    top: 16px;
  }
}
.header__bar {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #191919b3;
  border-radius: 12px;
  padding: 8px;
}
@media screen and (min-width: 1080px) {
  .header__bar {
    padding: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: transparent;
  }
}
@media screen and (min-width: 1080px) {
  .header__bar-left,
  .header__bar-middle,
  .header__bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .header__bar-left,
  .header__bar-right {
    padding: 8px;
    background-color: #191919b3;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
  }
}
.header__bar-left {
  padding-right: 30px;
}
.header__bar-right {
  padding-left: 30px;
  position: relative;
}
.header__call {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #a6a6a6;
  color: #fcfcfc;
  transition: all 0.3s ease-in-out;
}
.header__call svg {
  width: 19px;
  height: 19px;
}
@media (hover: hover) {
  .header__call:hover {
    border-color: #fcfcfc;
  }
}
.header__call:focus-visible {
  border-color: #fcfcfc;
}
@media screen and (min-width: 768px) {
  .header__call {
    display: none;
  }
}
.header__school {
  display: none;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .header__school:hover {
    color: #a6a6a6;
  }
}
.header__school:focus-visible {
  color: #a6a6a6;
}
@media screen and (min-width: 1080px) {
  .header__school {
    display: flex;
    color: #fcfcfc;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
  }
}
.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 40px;
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 210px;
    height: 54px;
  }
}
.header__burger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #fcfcfc;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  border: none;
  transition: all 0.3s ease-in-out;
}
.header__burger:before,
.header__burger:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #080808;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .header__burger:hover {
    background-color: #d7d7d7;
  }
}
.header__burger:focus-visible {
  background-color: #d7d7d7;
}
@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__menu-button {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid #a6a6a6;
  padding: 0;
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  width: 97px;
  height: 44px;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .header__menu-button:hover {
    border-color: #fcfcfc;
  }
}
.header__menu-button:focus-visible {
  border-color: #fcfcfc;
}
@media screen and (min-width: 768px) {
  .header__menu-button {
    display: flex;
  }
}
.header .header__appointment {
  display: none;
  min-width: 190px;
}
@media screen and (min-width: 768px) {
  .header .header__appointment {
    display: inline-flex;
  }
}
.header__menu--opened .header__burger {
  position: relative;
}
.header__menu--opened .header__burger:before,
.header__menu--opened .header__burger:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 1.25px;
}
.header__menu--opened .header__burger:before {
  transform: rotate(45deg) translate(-8px) translateY(8px);
}
.header__menu--opened .header__burger:after {
  transform: rotate(-45deg) translate(-8px) translateY(-8px);
}
.header__contacts {
  display: none;
}
@media screen and (min-width: 1080px) {
  .header__contacts {
    display: block;
  }
}
.header__contacts-trigger {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  padding: 0;
  background-color: transparent;
  border: none;
}
.header__contacts-trigger svg {
  width: 8px;
  height: 6px;
  transition: all 0.3s ease-in-out;
}
.header__contacts-trigger:hover + .header__contacts-info {
  display: block;
}
@media (hover: hover) {
  .header__contacts-trigger:hover:not(.focus-visible) svg {
    transform: rotate(180deg);
  }
}
.header__contacts-info {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  padding: 30px;
  max-width: 262px;
  border-radius: 12px;
  background-color: #191919f2;
}
@media (hover: hover) {
  .header__contacts-info:hover {
    display: block;
    animation: fadeout 0.3s ease-in-out;
  }
}
.header__contacts-info:focus-visible {
  display: block;
  animation: fadeout 0.3s ease-in-out;
}
.header__contacts-info:before {
  z-index: 0;
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 60%;
  height: 70px;
}
.header__contacts-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header__contacts-group:not(:last-of-type) {
  margin-bottom: 24px;
}
.header__contacts-link {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .header__contacts-link:hover {
    color: #a6a6a6;
  }
}
.header__contacts-link:focus-visible {
  color: #a6a6a6;
}
.header__contacts-text {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 120%;
}
@keyframes fadeout {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (min-width: 1080px) {
  .page-white .header__logo {
    color: #2f2f2f;
  }
}
.page-white .header__menu--opened .header__logo {
  color: #fcfcfc;
}
.wrapper {
  min-width: 360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  max-width: 1360px;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}
.footer {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 75px;
  }
}
.footer__inner {
  padding: 40px 0 24px;
  border-top: 1px solid #2f2f2f;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 50px;
  }
}
.footer__container {
  display: grid;
  grid-template-areas: "nav nav" "contacts socials" "worktime woktime" "address address" "appointment appointment" "map map" "logo logo";
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    grid-template-areas: "nav contacts" "address worktime" "appointment socials" "map map" "logo logo";
    gap: 50px 72px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__container {
    grid-template-areas: "nav contacts worktime socials" "appointment address map map" "logo logo map map";
  }
}
.footer__group-title {
  display: block;
  color: #616161;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__link,
.footer__text {
  display: block;
  color: #fcfcfc;
  font-size: 14px;
  line-height: 130%;
}
.footer__link:not(:last-of-type),
.footer__text:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .footer__link,
  .footer__text {
    font-size: 16px;
  }
}
.footer__link {
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer__link:hover {
    color: #a6a6a6;
  }
}
.footer__link:focus-visible {
  color: #a6a6a6;
}
.footer__link:active {
  color: #fcfcfc;
}
.footer .footer__social-icons {
  margin-top: 16px;
}
.footer__group-navigation {
  grid-area: nav;
}
.footer__group-contacts {
  grid-area: contacts;
}
.footer__group-socials {
  grid-area: socials;
}
.footer__group-worktime {
  grid-area: worktime;
}
.footer__group-address {
  grid-area: address;
  max-width: 233px;
}
.footer__group-address .footer__text {
  white-space: pre-wrap;
}
.footer__navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}
.footer__appointment {
  grid-area: appointment;
  align-self: end;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .footer__appointment {
    width: 233px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__appointment {
    align-self: start;
  }
}
.footer__map {
  grid-area: map;
  border-radius: 12px;
  width: 100%;
  height: 319px;
}
@media screen and (min-width: 768px) {
  .footer__map {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__map {
    margin-bottom: 0;
    width: 508px;
    height: 319px;
  }
}
.footer__logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  color: #616161;
  grid-area: logo;
}
@media screen and (min-width: 1440px) {
  .footer__logo {
    align-self: end;
    width: 360px;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #2f2f2f;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__privacy,
.footer__dev {
  color: #616161;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
}
.footer__dev {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__dev img {
  width: 33px;
  height: 12px;
  object-fit: contain;
}
.page-white .footer__inner {
  border-color: #d7d7d7;
}
.page-white .footer__link,
.page-white .footer__text {
  color: #080808;
}
@media (hover: hover) {
  .page-white .footer__link:hover {
    color: #a6a6a6;
  }
}
.page-white .footer__link:focus-visible {
  color: #a6a6a6;
}
.page-white .footer__link:active {
  color: #d7d7d7;
}
.page-white .footer__logo {
  color: #a6a6a6;
}
.page-white .footer__bottom {
  border-color: #d7d7d7;
}
.footer-form {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .footer-form {
    margin-top: 90px;
  }
}
.footer-form__inner {
  padding: 40px 0 24px;
  border-top: 1px solid #2f2f2f;
}
@media screen and (min-width: 768px) {
  .footer-form__inner {
    padding-top: 50px;
  }
}
.footer-form__container {
  display: grid;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer-form__container {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .footer-form__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 20px;
  }
}
.footer-form__items {
  display: grid;
  justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .footer-form__items {
    gap: 32px;
  }
}
@media screen and (min-width: 1080px) {
  .footer-form__items {
    display: grid;
    grid-template-columns: max-content 1fr;
  }
}
.footer-form__group {
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .footer-form__group {
    text-align: start;
  }
}
.footer-form__group-title {
  display: block;
  color: #616161;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-form__link,
.footer-form__text {
  display: block;
  color: #fcfcfc;
  font-size: 14px;
  line-height: 130%;
}
.footer-form__link:not(:last-of-type),
.footer-form__text:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .footer-form__link,
  .footer-form__text {
    font-size: 16px;
  }
}
.footer-form__link {
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .footer-form__link:hover {
    color: #a6a6a6;
  }
}
.footer-form__link:focus-visible {
  color: #a6a6a6;
}
.footer-form__link:active {
  color: #fcfcfc;
}
@media screen and (min-width: 1080px) {
  .footer-form__group-contacts {
    order: 3;
  }
}
.footer-form__group-contacts .footer-form__social-icons {
  margin-top: 16px;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .footer-form__group-contacts .footer-form__social-icons {
    justify-content: start;
  }
}
@media screen and (min-width: 1080px) {
  .footer-form__group-worktime {
    order: 1;
  }
}
@media screen and (min-width: 1080px) {
  .footer-form__group-address {
    grid-row: span 2;
    order: 2;
    justify-self: end;
  }
}
.footer-form__group-address .footer__text {
  white-space: pre-wrap;
}
.footer-form__form {
  max-width: 590px;
  margin: 0 auto 60px;
}
.footer-form__form .footer-form__form-title {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .footer-form__form .footer-form__form-title {
    text-align: start;
  }
}
.footer-form__form-text {
  color: #a6a6a6;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin: 0 0 36px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .footer-form__form-text {
    text-align: start;
  }
}
.footer-form__form-text strong {
  color: #fcfcfc;
  font-weight: 500;
}
.footer-form__form-input {
  display: block;
  width: 100%;
  border-radius: 12px;
  padding: 16px;
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  border: 1px solid transparent;
  margin-bottom: 12px;
  background-color: #5556;
}
.footer-form__form-input.wpcf7-not-valid {
  outline: 1px solid rgba(202, 3, 3, 0.6);
}
.footer-form__form-input:last-of-type {
  margin-bottom: 24px;
}
.footer-form__form-input::placeholder {
  color: #a6a6a6;
}
.footer-form__form-input:-webkit-autofill,
.footer-form__form-input:-webkit-autofill:hover,
.footer-form__form-input:-webkit-autofill:focus,
.footer-form__form-input:-webkit-autofill:active {
  -webkit-box-shadow: none;
  -webkit-text-fill-color: #fcfcfc;
}
.footer-form__form-input:-webkit-autofill {
  -webkit-text-fill-color: #fcfcfc;
  transition: background-color 5000s ease-in-out 0s;
}
@media (hover: hover) {
  .footer-form__form-input:hover {
    outline: none;
  }
}
.footer-form__form-input:focus-visible {
  outline: none;
}
@media screen and (min-width: 1080px) {
  .footer-form__form-input {
    max-width: 480px;
  }
}
.footer-form__form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.footer-form__form-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
}
.footer-form__form-checkbox a {
  text-decoration: underline;
}
.footer-form__form-checkbox:not(:last-of-type) {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .footer-form__form-checkbox {
    font-size: 13px;
  }
}
@media (hover: hover) {
  .footer-form__form-checkbox:hover
    .order-modal__input-checkbox-indicator:after {
    opacity: 0.4;
  }
  .footer-form__form-checkbox:hover .order-modal__input-checkbox-indicator {
    border-color: #d7d7d7;
  }
}
.footer-form__form-checkbox:focus-visible
  .order-modal__input-checkbox-indicator:after {
  opacity: 0.4;
}
.footer-form__form-checkbox:focus-visible
  .order-modal__input-checkbox-indicator {
  border-color: #d7d7d7;
}
.footer-form__form-checkbox:has(input:checked)
  .footer-form__form-checkbox-indicator:after {
  opacity: 1;
  background-color: #a6a6a6;
}
.footer-form__form-checkbox:has(input:checked)
  .footer-form__form-checkbox-indicator {
  border-color: #a6a6a6;
}
.footer-form__form-checkbox-indicator {
  flex-shrink: 0;
  display: flex;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.footer-form__form-checkbox-indicator:after {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"%3E%3Cpath d="M11 1L4.125 8L1 4.81818" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.footer-form__form .footer-form__form-button-price {
  margin-top: 32px;
}
@media screen and (min-width: 1080px) {
  .footer-form__form .footer-form__form-button-price {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .footer-form__form {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .footer-form__form {
    margin: 0;
    grid-row: span 2;
  }
}
.footer-form__map {
  border-radius: 12px;
  width: 100%;
  height: 353px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .footer-form__map {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .footer-form__map {
    margin-top: 0;
  }
}
.footer-form__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #2f2f2f;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-form__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-form__privacy,
.footer-form__dev {
  color: #616161;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
}
.footer-form__dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-form__dev img {
  width: 33px;
  height: 12px;
  object-fit: contain;
}
.title {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-family: Federov2-Regular, Arial, sans-serif;
  line-height: 100%;
  font-weight: 400;
  margin: 0;
}
.title__extra-large {
  font-size: 50px;
}
@media screen and (min-width: 768px) {
  .title__extra-large {
    font-size: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .title__extra-large {
    font-size: 90px;
  }
}
.title__large {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .title__large {
    font-size: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .title__large {
    font-size: 90px;
  }
}
.title__medium {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .title__medium {
    font-size: 50px;
  }
}
.title__medium-small {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .title__medium-small {
    font-size: 46px;
  }
}
.title__small {
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .title__small {
    font-size: 32px;
  }
}
.title__extra-small {
  font-size: 16px;
}
.title span {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .title:not(:has(span:nth-of-type(3))) span:last-of-type {
    margin-left: 99px;
  }
}
@media screen and (min-width: 1440px) {
  .title:not(:has(span:nth-of-type(3))) span:last-of-type {
    margin-left: 320px;
  }
}
@media screen and (min-width: 768px) {
  .title:has(span:nth-of-type(3)) span:first-of-type {
    margin-left: 71px;
  }
}
@media screen and (min-width: 1080px) {
  .title:has(span:nth-of-type(3)) span:first-of-type {
    margin-left: 175px;
  }
}
@media screen and (min-width: 768px) {
  .title:has(span:nth-of-type(3)) span:nth-of-type(2) {
    margin-left: 145px;
  }
}
@media screen and (min-width: 1080px) {
  .title:has(span:nth-of-type(3)) span:nth-of-type(2) {
    margin-left: 419px;
  }
}
.button {
  position: relative;
  cursor: pointer;
  display: inline-block;
  color: #fcfcfc;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 15px 18px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.button:before,
.button:after {
  z-index: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: -1px;
  bottom: -1px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transition: all 0.3s ease-in-out;
  width: 6px;
  margin: auto;
}
.button:before {
  left: -1px;
  border-left: 1px solid currentColor;
  border-radius: 12px 0 0 12px;
}
.button:after {
  right: -1px;
  border-right: 1px solid currentColor;
  border-radius: 0 12px 12px 0;
}
@media (hover: hover) {
  .button:hover:before,
  .button:hover:after {
    width: calc(50% + 1px);
  }
}
.button:focus-visible:before,
.button:focus-visible:after {
  width: calc(50% + 1px);
}
.button:active {
  color: #a6a6a6;
}
.button--white {
  color: #080808;
}
.button--white:active {
  background-color: #080808;
  color: #fcfcfc;
}
.page-white .button.button--accept-white {
  color: #080808;
}
.page-white .button.button--accept-white:active {
  background-color: #080808;
  color: #fcfcfc;
}
.text {
  margin: 0;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
}
.flip-text {
  overflow: hidden;
}
.flip-text__content {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.flip-text__content:before {
  position: absolute;
  top: 100%;
  color: var(--SlideTextColor);
  content: " " attr(data-text);
  transform: translateZ(0);
}
@media (hover: hover) {
  .flip-text:hover .flip-text__content {
    transform: translateY(-100%);
  }
}
.flip-text:focus-visible .flip-text__content {
  transform: translateY(-100%);
}
.swiper-nav {
  display: none;
}
@media screen and (min-width: 1080px) {
  .swiper-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
}
.swiper-nav__prev,
.swiper-nav__next {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  color: #fcfcfc;
  border: 1px solid #fcfcfc;
  padding: 12px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.swiper-nav__prev:disabled,
.swiper-nav__next:disabled {
  color: #a6a6a6;
  border-color: #a6a6a6;
}
@media (hover: hover) {
  .swiper-nav__prev:not(:disabled):hover,
  .swiper-nav__next:not(:disabled):hover {
    color: #a6a6a6;
    border-color: #a6a6a6;
  }
}
.swiper-nav__prev:not(:disabled):focus-visible,
.swiper-nav__next:not(:disabled):focus-visible {
  color: #a6a6a6;
  border-color: #a6a6a6;
}
.swiper-nav__prev:not(:disabled):active,
.swiper-nav__next:not(:disabled):active {
  color: #2f2f2f;
  border-color: #2f2f2f;
}
.swiper-nav__prev svg {
  transform: rotate(-135deg);
}
.swiper-nav__next svg {
  transform: rotate(45deg);
}
.swiper-nav-rounded {
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.swiper-nav-rounded__prev,
.swiper-nav-rounded__next {
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fcfcfc;
  border: none;
  padding: 12px;
  background-color: #fcfcfc1a;
  transition: all 0.3s ease-in-out;
}
.swiper-nav-rounded__prev svg,
.swiper-nav-rounded__next svg {
  width: 24px;
  height: 24px;
}
.swiper-nav-rounded__prev:disabled,
.swiper-nav-rounded__next:disabled {
  opacity: 0.5;
  color: #a6a6a6;
}
@media (hover: hover) {
  .swiper-nav-rounded__prev:not(:disabled):hover,
  .swiper-nav-rounded__next:not(:disabled):hover {
    background-color: #fcfcfc33;
  }
}
.swiper-nav-rounded__prev:not(:disabled):focus-visible,
.swiper-nav-rounded__next:not(:disabled):focus-visible {
  background-color: #fcfcfc33;
}
.swiper-nav-rounded__prev:not(:disabled):active,
.swiper-nav-rounded__next:not(:disabled):active {
  opacity: 0.8;
}
.swiper-nav-rounded__prev svg {
  transform: rotate(0);
}
.swiper-nav-rounded__next svg {
  transform: rotate(180deg);
}
.button-simple {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #2f2f2f;
  border-radius: 12px;
  padding: 12px 24px;
  background: #fcfcfc;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .button-simple:hover:not(.button-simple--transparent) {
    background: #d7d7d7;
  }
}
.button-simple:focus-visible:not(.button-simple--transparent) {
  background: #d7d7d7;
}
.button-simple__big {
  padding: 24px;
}
.button-simple--transparent {
  background-color: transparent;
  border-color: #fcfcfc;
  color: #fcfcfc;
}
@media (hover: hover) {
  .button-simple--transparent:hover {
    color: #080808;
    border-color: #d7d7d7;
    background-color: #d7d7d7;
  }
}
.button-simple--transparent:focus-visible {
  color: #080808;
  border-color: #d7d7d7;
  background-color: #d7d7d7;
}
.button-simple--black {
  color: #fcfcfc;
  background-color: #080808;
}
@media (hover: hover) {
  .button-simple--black:hover {
    color: #080808;
  }
}
.button-simple--black:focus-visible {
  color: #080808;
}
.button-underline {
  position: relative;
  cursor: pointer;
  color: #616161;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  padding: 0;
  background: transparent;
  border: none;
  transition: color 0.3s ease-in-out;
}
.button-underline:before,
.button-underline:after {
  position: absolute;
  content: "";
  pointer-events: none;
  left: 0;
  bottom: -2px;
  display: block;
  background-color: currentColor;
  width: 100%;
  height: 1px;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.button-underline:before {
  transform: scaleX(0);
  transform-origin: left;
}
.button-underline:after {
  transform-origin: right;
  transition-delay: 0.1s;
}
@media (hover: hover) {
  .button-underline:hover {
    color: #d7d7d7;
  }
  .button-underline:hover:before {
    transform: scaleX(1);
    transition-delay: 0.1s;
  }
  .button-underline:hover:after {
    transform: scaleX(0);
    transition-delay: 0s;
  }
}
.button-underline:focus-visible {
  color: #d7d7d7;
}
.button-underline:focus-visible:before {
  transform: scaleX(1);
  transition-delay: 0.1s;
}
.button-underline:focus-visible:after {
  transform: scaleX(0);
  transition-delay: 0s;
}
.button-underline:active {
  color: #fcfcfc;
}
.radio-control {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #d7d7d766;
  border-radius: 12px;
  padding: 12px 16px;
  color: #080808;
  font-size: 14px;
}
.radio-control__indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  outline: 1px solid #080808;
}
.radio-control__indicator:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #080808;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.radio-control input:checked ~ .radio-control__indicator:before {
  opacity: 1;
}
@media (hover: hover) {
  .radio-control:hover:not(:has(input:checked))
    .radio-control__indicator:before {
    opacity: 0.5;
  }
}
.radio-control:focus-visible:not(:has(input:checked))
  .radio-control__indicator:before {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .radio-control {
    font-size: 16px;
  }
}
.socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.socials__link {
  display: flex;
  gap: 5px;
  color: #fcfcfc;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .socials__link:hover {
    color: #a6a6a6;
  }
}
.socials__link:focus-visible {
  color: #a6a6a6;
}
.socials__discaimer {
  color: #d7d7d7;
  font-size: 10px;
  line-height: 100%;
  font-weight: 300;
  margin-top: 6px;
}
.page-white .socials:not(.socials--dont-accept-white) .socials__link {
  color: #080808;
}
@media (hover: hover) {
  .page-white .socials:not(.socials--dont-accept-white) .socials__link:hover {
    color: #a6a6a6;
  }
}
.page-white
  .socials:not(.socials--dont-accept-white)
  .socials__link:focus-visible {
  color: #a6a6a6;
}
.cta-goods__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .cta-goods__inner {
    padding: 75px 0;
  }
}
.cta-goods--inner-sm .cta-goods__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .cta-goods--inner-sm .cta-goods__inner {
    padding: 60px 0;
  }
}
.cta-goods__title {
  text-align: center;
  max-width: 886px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .cta-goods__title {
    margin: 0 auto 50px;
  }
}
.cta-goods__items {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .cta-goods__items {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-goods__item {
  position: relative;
  padding: 16px;
  border-radius: 12px;
  min-height: 324px;
  background-color: #0f0f0f;
}
.cta-goods__item img {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.34;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .cta-goods__item:hover img {
    opacity: 0.46;
  }
}
.cta-goods__item:focus-visible img {
  opacity: 0.46;
}
@media screen and (min-width: 768px) {
  .cta-goods__item {
    padding: 50px;
    min-height: 504px;
  }
}
.cta-goods__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.cta-goods__item-number,
.cta-goods__item-title,
.cta-goods__item-text {
  max-width: 266px;
  text-align: center;
}
.cta-goods__item-number {
  color: #616161;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .cta-goods__item-number {
    font-size: 24px;
    line-height: 120%;
  }
}
.cta-goods__item-text {
  margin: auto 0;
  max-width: 340px;
  text-transform: none;
}
.cta-goods__order-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fcfcfc;
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  padding: 12px;
  background-color: transparent;
  border: none;
  border-top: 1px solid #616161;
  transition: all 0.3s ease-in-out;
}
.cta-goods__order-button svg {
  width: 25px;
  height: 25px;
}
@media (hover: hover) {
  .cta-goods__order-button:hover {
    color: #a6a6a6;
  }
}
.cta-goods__order-button:focus-visible {
  color: #a6a6a6;
}
.cta-goods__order-button-text {
  width: 100%;
  align-items: flex-start;
}
.callback__inner {
  padding: 50px 0;
  margin: 0 -16px;
}
@media screen and (min-width: 768px) {
  .callback__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 768px) {
  .callback__inner {
    margin: 0;
  }
}
.callback__card-container {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 16px;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .callback__card-container {
    padding: 64px 100px;
  }
}
@media screen and (min-width: 1080px) {
  .callback__card-container {
    padding: 112px 200px;
  }
}
.callback__card {
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #38383866;
  padding: 40px 20px;
  transform: translateZ(0);
}
@media screen and (min-width: 768px) {
  .callback__card {
    padding: 40px;
  }
}
.callback__title {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .callback__title {
    margin-bottom: 24px;
  }
}
.callback__text {
  text-transform: none;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .callback__text {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .callback__text {
    margin-bottom: 56px;
  }
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .contact-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr) max-content;
    gap: 16px 30px;
  }
}
.contact-form .wpcf7-form-control-wrap input {
  height: 100%;
}
.contact-form__input {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  background-color: transparent;
  padding: 0 0 10px;
  border: none;
  border-bottom: 1px solid #a6a6a6;
  width: 100%;
  margin-bottom: 30px;
}
.contact-form__input::placeholder {
  color: #fcfcfc;
}
.contact-form__input:-webkit-autofill,
.contact-form__input:-webkit-autofill:hover,
.contact-form__input:-webkit-autofill:focus,
.contact-form__input:-webkit-autofill:active {
  -webkit-box-shadow: none;
  -webkit-text-fill-color: #fcfcfc;
}
.contact-form__input:-webkit-autofill {
  -webkit-text-fill-color: #fcfcfc;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form__input:focus {
  outline: none;
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .contact-form__input {
    margin: 0;
  }
}
.contact-form__submit {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .contact-form__submit {
    margin-bottom: 20px;
    max-width: 177px;
  }
}
@media screen and (min-width: 1080px) {
  .contact-form__submit {
    margin: 0;
  }
}
.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #a6a6a6;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
.contact-form__privacy a {
  position: relative;
  text-decoration: underline;
}
.contact-form__privacy a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
}
.contact-form__privacy .wpcf7-form-control-wrap {
  width: 0;
  height: 0;
}
@media (hover: hover) {
  .contact-form__privacy:hover {
    color: #d7d7d7;
  }
  .contact-form__privacy:hover .contact-form__privacy-indicator:after {
    opacity: 0.4;
  }
  .contact-form__privacy:hover .contact-form__privacy-indicator {
    border-color: #d7d7d7;
  }
}
.contact-form__privacy:focus-visible {
  color: #d7d7d7;
}
.contact-form__privacy:focus-visible .contact-form__privacy-indicator:after {
  opacity: 0.4;
}
.contact-form__privacy:focus-visible .contact-form__privacy-indicator {
  border-color: #d7d7d7;
}
.contact-form__privacy:has(input:checked)
  .contact-form__privacy-indicator:after {
  opacity: 1;
  background-color: #a6a6a6;
}
.contact-form__privacy:has(input:checked) .contact-form__privacy-indicator {
  border-color: #a6a6a6;
}
.contact-form__privacy-indicator {
  flex-shrink: 0;
  display: flex;
  border: 1px solid #a6a6a6;
  border-radius: 2px;
  width: 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
}
.contact-form__privacy-indicator:after {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"%3E%3Cpath d="M11 1L4.125 8L1 4.81818" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 10px;
}
.contact-form .wpcf7 .wpcf7-response-output {
  grid-column: span 2;
  border: none;
  padding: 0;
  margin: 10px 0 0;
}
@media screen and (min-width: 1080px) {
  .contact-form .wpcf7 .wpcf7-response-output {
    margin: 0;
  }
}
.faq__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    padding: 75px 0;
  }
}
.faq__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .faq__title {
    margin-left: 46px;
  }
}
@media screen and (min-width: 768px) {
  .faq__title {
    margin-left: 145px;
  }
}
@media screen and (min-width: 1080px) {
  .faq__title {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .faq__title {
    margin-left: 153px;
  }
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: faq-item;
}
.faq__item {
  counter-increment: faq-item;
  border-bottom: 1px solid #2f2f2f;
  transition: all 0.3s ease-in-out;
}
.faq__item:first-of-type {
  border-top: 1px solid #2f2f2f;
}
@media (hover: hover) {
  .faq__item:hover {
    background-color: #0f0f0f;
  }
}
.faq__item:focus-visible {
  background-color: #0f0f0f;
}
.faq__item-button {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr min-content;
  gap: 10px;
  background-color: transparent;
  color: #fcfcfc;
  border: none;
  width: 100%;
  padding: 24px 10px;
}
@media screen and (min-width: 768px) {
  .faq__item-button {
    grid-template-columns: 46px 1fr min-content;
  }
  .faq__item-button:before {
    content: "/ " counter(faq-item);
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    text-align: start;
  }
}
@media screen and (min-width: 768px) {
  .faq__item-button {
    padding: 30px 10px;
  }
}
@media screen and (min-width: 1440px) {
  .faq__item-button {
    grid-template-columns: 153px 1fr min-content;
  }
}
.faq__item-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: start;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .faq__item-title {
    margin-left: 79px;
    font-size: 20px;
    max-width: 440px;
  }
}
@media screen and (min-width: 1080px) {
  .faq__item-title {
    max-width: 490px;
  }
}
@media screen and (min-width: 1440px) {
  .faq__item-title {
    margin-left: 300px;
  }
}
.faq__item-indicator {
  width: 23px;
  height: 23px;
  position: relative;
}
.faq__item-indicator:before,
.faq__item-indicator:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fcfcfc;
  transition: all 0.3s ease-in-out;
}
.faq__item-indicator:before {
  width: 1px;
}
.faq__item-indicator:after {
  height: 1px;
}
.faq__item-indicator.hidden {
  display: none;
}
.faq__item--opened {
  background-color: #0f0f0f;
}
.faq__item--opened .faq__item-wrapper {
  grid-template-rows: 1fr;
}
.faq__item--opened .faq__item-indicator:before {
  transform: scaleY(0);
}
.faq__item-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
  overflow: hidden;
  margin-top: -8px;
}
@media screen and (min-width: 768px) {
  .faq__item-wrapper {
    margin: 0;
  }
}
.faq__item-content {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .faq__item-content {
    padding-left: 145px;
  }
}
@media screen and (min-width: 1440px) {
  .faq__item-content {
    padding-left: 473px;
  }
}
.faq__item-text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #a6a6a6;
  padding: 0 10px 24px;
}
@media screen and (min-width: 768px) {
  .faq__item-text {
    max-width: 440px;
    font-size: 16px;
    padding: 0 0 30px;
  }
}
@media screen and (min-width: 1080px) {
  .faq__item-text {
    max-width: 490px;
  }
}
.faq__more {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .faq__more {
    margin-top: 50px;
    margin-left: 145px;
  }
}
@media screen and (min-width: 1440px) {
  .faq__more {
    margin-left: 473px;
  }
}
.menu {
  z-index: 1;
  position: fixed;
  top: -100vh;
  right: 0;
  left: 0;
  height: 100vh;
  -webkit-backdrop-filter: blur(80px);
  backdrop-filter: blur(80px);
  background-color: #080808cc;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.menu--opened {
  top: 0;
  overflow-y: scroll;
  scrollbar-width: none;
}
.menu__inner {
  padding: 120px 0 100px;
}
@media screen and (min-width: 768px) {
  .menu__inner {
    padding: 150px 0;
  }
}
.menu__top {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid #616161;
}
@media screen and (min-width: 768px) {
  .menu__top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding-bottom: 72px;
  }
}
.menu__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 10px;
}
@media screen and (min-width: 768px) {
  .menu__nav {
    gap: 24px 10px;
  }
}
.menu__nav-link {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .menu__nav-link:hover {
    color: #a6a6a6;
  }
}
.menu__nav-link:focus-visible {
  color: #a6a6a6;
}
.menu__nav-link:active {
  color: #fcfcfc;
}
@media screen and (min-width: 768px) {
  .menu__nav-link {
    font-size: 16px;
    line-height: 120%;
  }
}
.menu__close {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  padding: 3px;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease-in-out;
}
.menu__close:before,
.menu__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 35px;
  transform: translate(-50%, -50%);
  background-color: #fcfcfc;
}
.menu__close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.menu__close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .menu__close:hover {
    transform: rotate(180deg);
  }
}
.menu__close:focus-visible {
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .menu__close {
    top: 0;
    right: 0;
    display: flex;
    position: absolute;
  }
}
.menu__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 10px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .menu__bottom {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "contacts worktime socials" "contacts adderss socials";
    gap: 36px 10px;
    padding-top: 72px;
  }
}
@media screen and (min-width: 768px) {
  .menu__contacts {
    grid-area: contacts;
  }
}
@media screen and (min-width: 768px) {
  .menu__socials {
    grid-area: socials;
  }
}
.menu__address {
  max-width: 233px;
}
@media screen and (min-width: 768px) {
  .menu__address {
    grid-area: adderss;
  }
}
@media screen and (min-width: 768px) {
  .menu__worktime {
    grid-area: worktime;
  }
}
.menu__group-title {
  display: block;
  color: #616161;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .menu__group-title {
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 20px;
  }
}
.menu__link,
.menu__text {
  display: block;
  color: #fcfcfc;
  font-size: 14px;
  line-height: 130%;
}
.menu__link:not(:last-of-type),
.menu__text:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .menu__link,
  .menu__text {
    font-size: 16px;
    line-height: 100%;
  }
}
.menu__link {
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .menu__link:hover {
    color: #a6a6a6;
  }
}
.menu__link:focus-visible {
  color: #a6a6a6;
}
.menu__link:active {
  color: #fcfcfc;
}
.menu .menu__social-icons {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .menu .menu__social-icons {
    margin-top: 20px;
  }
}
.menu__appointment {
  grid-column: span 2;
}
@media screen and (min-width: 768px) {
  .menu__appointment {
    display: none;
  }
}
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #616161;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.social-icons__item svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .social-icons__item:hover {
    border-color: #fcfcfc;
  }
}
.social-icons__item:focus-visible {
  border-color: #fcfcfc;
}
.social-icons__item:active {
  border-color: #2f2f2f;
}
.page-white
  .social-icons:not(.social-icons--dont-accept-white)
  .social-icons__item {
  color: #080808;
}
@media (hover: hover) {
  .page-white
    .social-icons:not(.social-icons--dont-accept-white)
    .social-icons__item:hover {
    border-color: #080808;
  }
}
.page-white
  .social-icons:not(.social-icons--dont-accept-white)
  .social-icons__item:focus-visible {
  border-color: #080808;
}
.page-white
  .social-icons:not(.social-icons--dont-accept-white)
  .social-icons__item:active {
  color: #2f2f2f;
  border-color: #2f2f2f;
}
.breadcrumbs {
  z-index: 1;
  position: relative;
}
.breadcrumbs__inner {
  padding-bottom: 4px;
}
.breadcrumbs__inner span {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
}
.breadcrumbs__inner > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.breadcrumbs__inner > span > span:not(:last-of-type) {
  color: #a6a6a6;
}
.breadcrumbs__inner a {
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .breadcrumbs__inner a:hover {
    color: #fcfcfc;
  }
}
.breadcrumbs__inner a:focus-visible {
  color: #fcfcfc;
}
.page-white .breadcrumbs__inner span {
  color: #080808;
}
.page-white .breadcrumbs__inner > span > span:not(:last-of-type) {
  color: #a6a6a6;
}
@media (hover: hover) {
  .page-white .breadcrumbs__inner a:hover {
    color: #080808;
  }
}
.page-white .breadcrumbs__inner a:focus-visible {
  color: #080808;
}
.pagination__items {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
}
.pagination .page-numbers {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcfcfc;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.pagination .page-numbers svg {
  width: 16px;
  height: 16px;
}
.pagination .page-numbers.prev {
  margin-right: 6px;
}
.pagination .page-numbers.next {
  margin-left: 6px;
}
.pagination .page-numbers.next svg {
  transform: rotate(180deg);
}
.pagination .page-numbers.current {
  cursor: auto;
  position: relative;
  overflow: visible;
}
.pagination .page-numbers.current:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  background-color: #2f2f2f;
  border-radius: 6px;
}
.popup {
  pointer-events: none;
  position: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #0000;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  padding: 70px 16px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  overflow-y: scroll;
  scrollbar-width: none;
}
@media screen and (min-width: 1080px) {
  .popup {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.popup--opened {
  pointer-events: auto;
  opacity: 1;
  background-color: #0d0d0de6;
}
.popup--opened .popup__inner {
  opacity: 1;
  animation: slideIn 0.3s ease-in-out;
}
.popup__inner {
  opacity: 0;
  position: relative;
  background-color: #fcfcfc;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.popup__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 10px;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid #a6a6a6;
  transition: all 0.3s ease-in-out;
}
.popup__close-button:before,
.popup__close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 28px;
  transform: translate(-50%, -50%);
  background-color: #080808;
}
.popup__close-button:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup__close-button:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .popup__close-button {
    top: 24px;
    right: 24px;
  }
}
.first-time {
  width: 100%;
  max-width: 539px;
}
@media screen and (min-width: 1080px) {
  .first-time {
    display: grid;
    grid-template-columns: 539px 1fr;
    max-width: 1083px;
  }
}
.first-time__content {
  color: #080808;
  padding: 60px 20px;
}
@media screen and (min-width: 768px) {
  .first-time__content {
    padding: 70px 50px;
  }
}
@media screen and (min-width: 1080px) {
  .first-time__content {
    padding: 70px 70px 70px 36px;
  }
}
.first-time__title {
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .first-time__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.first-time__text {
  margin-bottom: 20px;
  text-transform: none;
}
.first-time__text:last-of-type {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .first-time__text:last-of-type {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .first-time__text {
    margin-bottom: 24px;
  }
}
.first-time__image {
  border-radius: 12px;
}
@media screen and (min-width: 1080px) {
  .first-time__image {
    order: -1;
    height: 100%;
    object-fit: cover;
  }
}
.about-loyalty {
  width: 100%;
  max-width: 539px;
}
@media screen and (min-width: 1080px) {
  .about-loyalty {
    display: grid;
    grid-template-columns: 539px 1fr;
    max-width: 1083px;
  }
}
.about-loyalty__content {
  color: #080808;
  padding: 60px 20px;
}
@media screen and (min-width: 768px) {
  .about-loyalty__content {
    padding: 70px 50px;
  }
}
@media screen and (min-width: 1080px) {
  .about-loyalty__content {
    padding: 70px 70px 70px 36px;
  }
}
.about-loyalty__title {
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about-loyalty__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.about-loyalty__text,
.about-loyalty__phone {
  margin-bottom: 16px;
  text-transform: none;
}
@media screen and (min-width: 768px) {
  .about-loyalty__text,
  .about-loyalty__phone {
    margin-bottom: 24px;
  }
}
.about-loyalty__text {
  max-width: 332px;
}
.about-loyalty__text:last-of-type {
  margin-bottom: 24px;
}
.about-loyalty__phone {
  display: flex;
}
.about-loyalty__image {
  border-radius: 12px;
}
@media screen and (min-width: 1080px) {
  .about-loyalty__image {
    order: -1;
    height: 100%;
    object-fit: cover;
  }
}
.order-modal {
  pointer-events: none;
  position: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #0000;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  padding: 70px 16px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  overflow-y: scroll;
}
@media screen and (min-width: 1080px) {
  .order-modal {
    align-items: center;
  }
  .order-modal:has([data-group="order-form"]:not(.hidden)) {
    align-items: flex-start;
  }
}
.order-modal--opened {
  pointer-events: auto;
  opacity: 1;
  background-color: #0d0d0de6;
}
.order-modal--opened .order-modal__inner {
  opacity: 1;
  animation: slideIn 0.3s ease-in-out;
}
.order-modal__inner {
  opacity: 0;
  position: relative;
  background-color: #fcfcfc;
  border-radius: 12px;
  width: 100%;
  max-width: 552px;
  padding: 60px 20px 40px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .order-modal__inner {
    max-width: 552px;
    padding: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .order-modal__inner {
    max-width: 830px;
    padding: 70px 70px 50px;
  }
}
@media screen and (min-width: 1440px) {
  .order-modal__inner {
    overflow-y: auto;
  }
}
.order-modal__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 10px;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid #a6a6a6;
  transition: all 0.3s ease-in-out;
}
.order-modal__close-button:before,
.order-modal__close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 28px;
  transform: translate(-50%, -50%);
  background-color: #080808;
}
.order-modal__close-button:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.order-modal__close-button:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .order-modal__close-button {
    top: 24px;
    right: 24px;
  }
}
.order-modal__content {
  color: #080808;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .order-modal__content {
    margin-bottom: 60px;
  }
}
.order-modal__group-heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .order-modal__group-heading {
    margin-bottom: 50px;
  }
}
.order-modal__group-title {
  white-space: pre-wrap;
  font-size: 24px;
  line-height: 120%;
}
.order-modal__group-subtitle {
  font-size: 16px;
  line-height: 130%;
  margin-top: 16px;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .order-modal__group-subtitle {
    margin-top: 30px;
  }
}
.order-modal__selectors-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .order-modal__selectors-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.order-modal__selectors-wrapper--tripple {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 1080px) {
  .order-modal__selectors-wrapper--tripple {
    grid-template-columns: repeat(3, 1fr);
  }
}
.order-modal__selector {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 189px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.order-modal__selector--dotted {
  position: relative;
  font-size: 20px;
  line-height: 130%;
  height: 114px;
}
.order-modal__selector--dotted:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fcfcfc;
  outline: 1px solid #fcfcfc;
  outline-offset: 5px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .order-modal__selector--dotted {
    height: 132px;
  }
}
@media (hover: hover) {
  .order-modal__selector--dotted:hover:not(:has(input:checked)):before {
    background-color: #080808;
    outline: 1px solid #080808;
  }
}
.order-modal__selector--dotted:focus-visible:not(:has(input:checked)):before {
  background-color: #080808;
  outline: 1px solid #080808;
}
.order-modal__selector--small {
  height: 120px;
}
@media screen and (min-width: 768px) {
  .order-modal__selector--small {
    height: 100px;
  }
}
.order-modal__selector:has(input:focus) {
  border-color: #2f2f2f;
}
.order-modal__selector:has(input:checked) {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
  color: #fcfcfc;
}
.order-modal__selector ul {
  font-size: 16px;
  line-height: 130%;
  margin: 0;
  padding-left: 1em;
  width: fit-content;
}
@media (hover: hover) {
  .order-modal__selector:hover {
    border-color: #080808;
  }
}
.order-modal__selector:focus-visible {
  border-color: #080808;
}
.order-modal__bottom {
  position: relative;
}
.order-modal__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .order-modal__details {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    margin: 0 auto;
  }
}
.order-modal__quantity {
  color: #616161;
  font-size: 12px;
  line-height: 100%;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .order-modal__quantity {
    font-size: 14px;
  }
}
.order-modal__price {
  color: #080808;
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .order-modal__price {
    font-size: 24px;
  }
}
.order-modal__controls {
  display: flex;
  align-items: center;
}
.order-modal__prev,
.order-modal__next,
.order-modal__submit {
  min-width: 137px;
}
.order-modal__prev {
  color: #a6a6a6;
  margin-right: auto;
}
.order-modal__next {
  margin-left: auto;
}
.order-modal__submit {
  position: relative;
  height: 48px;
  margin-left: auto;
}
.order-modal__fieldset {
  margin-bottom: 30px;
}
.order-modal__fieldset-title {
  color: #080808;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  margin-bottom: 16px;
}
.order-modal__input-wrapper:not(:last-of-type) {
  margin-bottom: 10px;
}
.order-modal__input-wrapper--error {
  position: relative;
}
.order-modal__input-wrapper--error:after {
  content: attr(data-error);
  position: absolute;
  top: 4px;
  right: 16px;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  color: #ca0303;
}
.order-modal__input-wrapper--error .order-modal__input {
  border: 1px solid rgba(202, 3, 3, 0.4);
}
.order-modal__input-wrapper--error .order-modal__input-checkbox-indicator {
  border: 1px solid #ca0303;
}
.order-modal__input {
  display: block;
  width: 100%;
  border-radius: 12px;
  background-color: #d7d7d766;
  padding: 16px;
  font-size: 16px;
  line-height: 130%;
  border: 1px solid transparent;
}
.order-modal__input::placeholder {
  color: #a6a6a6;
}
.order-modal__input-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (hover: hover) {
  .order-modal__input-checkbox:hover
    .order-modal__input-checkbox-indicator:after {
    opacity: 0.4;
  }
  .order-modal__input-checkbox:hover .order-modal__input-checkbox-indicator {
    border-color: #d7d7d7;
  }
}
.order-modal__input-checkbox:focus-visible
  .order-modal__input-checkbox-indicator:after {
  opacity: 0.4;
}
.order-modal__input-checkbox:focus-visible
  .order-modal__input-checkbox-indicator {
  border-color: #d7d7d7;
}
.order-modal__input-checkbox:has(input:checked)
  .order-modal__input-checkbox-indicator:after {
  opacity: 1;
  background-color: #a6a6a6;
}
.order-modal__input-checkbox:has(input:checked)
  .order-modal__privacy-indicator {
  border-color: #a6a6a6;
}
.order-modal__input-checkbox-indicator {
  flex-shrink: 0;
  display: flex;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.order-modal__input-checkbox-indicator:after {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"%3E%3Cpath d="M11 1L4.125 8L1 4.81818" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.order-modal .order-modal__loyalty-name[data-capitalize="true"] {
  display: inline-block;
}
.order-modal .order-modal__loyalty-name[data-capitalize="true"]:first-letter {
  text-transform: uppercase;
}
.order-modal__radio-wrapper {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 1080px) {
  .order-modal__radio-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.notification {
  z-index: 2;
  position: fixed;
  bottom: -100vh;
  right: 10px;
  width: 328px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .notification {
    right: 20px;
    width: 410px;
  }
}
.notification--opened {
  bottom: 10px;
}
@media screen and (min-width: 768px) {
  .notification--opened {
    bottom: 20px;
  }
}
.notification__inner {
  position: relative;
  background-color: #fcfcfc;
  border-radius: 12px;
  padding: 12px 24px 12px 12px;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .notification__inner {
    padding: 4px 24px 4px 12px;
    grid-template-columns: 100px 1fr;
  }
}
.notification__inner--small {
  grid-template-columns: 1fr;
}
.notification__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.notification__title {
  color: #080808;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .notification__title {
    font-size: 18px;
  }
}
.notification__text {
  color: #080808;
  font-size: 12px;
  line-height: 120%;
  margin-bottom: 12px;
}
.notification__text span {
  display: inline-block;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .notification__text {
    font-size: 14px;
  }
}
.notification__close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 10px;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease-in-out;
}
.notification__close-button:before,
.notification__close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 20px;
  transform: translate(-50%, -50%);
  background-color: #080808;
}
.notification__close-button:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.notification__close-button:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 740px;
}
.hero:after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #08080800, #080808);
}
@media screen and (min-width: 768px) {
  .hero {
    min-height: 1024px;
  }
}
@media screen and (min-width: 1080px) {
  .hero {
    min-height: 900px;
  }
}
.hero__background {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.hero__background-swiper {
  width: 100%;
}
.hero__background-swiper .swiper-slide {
  opacity: 0;
}
.hero__background-swiper.swiper-initialized .swiper-slide {
  opacity: 1;
}
.hero__background-swiper img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
}
.hero__background-swiper:first-child {
  overflow: visible;
}
.hero__background-swiper:first-child .swiper-slide:first-child {
  opacity: 1;
}
.hero__background-swiper:first-child img {
  left: 0;
}
.hero__background-swiper:last-child img {
  right: 0;
}
.hero__inner {
  padding: 0 0 46px;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    padding: 0 54px 133px 0;
  }
}
@media screen and (min-width: 1080px) {
  .hero__inner {
    padding: 0 30px 56px 54px;
  }
}
.hero__title {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .hero__title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .hero__title {
    margin-bottom: 60px;
  }
}
.hero__cta {
  display: flex;
  flex-direction: column;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .hero__cta {
    margin-left: 145px;
  }
}
@media screen and (min-width: 1080px) {
  .hero__cta {
    margin-left: 91px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__cta {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-left: 419px;
  }
}
.hero__text-container {
  max-width: 370px;
  margin-bottom: 38px;
}
@media screen and (min-width: 1440px) {
  .hero__text-container {
    margin-bottom: 0;
    max-width: 339px;
  }
}
.hero__text:not(:last-of-type) {
  margin-bottom: 16px;
}
@media screen and (min-width: 1080px) {
  .hero__text:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.hero__buttons {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}
@media screen and (min-width: 1080px) {
  .hero__buttons {
    min-width: 340px;
  }
}
.hero__appointment {
  max-width: 176px;
}
.massages__inner {
  padding: 100px 0 50px;
}
@media screen and (min-width: 768px) {
  .massages__inner {
    padding: 75px 0;
  }
}
.massages__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  position: relative;
  counter-reset: massage-counter;
}
.massages__list li {
  counter-increment: massage-counter;
  position: relative;
}
.massages__list li:nth-child(odd) .massages__preview {
  transform: translateY(-50%) rotate(7deg);
}
.massages__list li:nth-child(2n) .massages__preview {
  transform: translateY(-50%) rotate(-7deg);
}
.massages__list li:nth-child(2n-1) .massages__preview {
  left: 154px;
}
.massages__list li:nth-child(4n-1) .massages__preview {
  left: 110px;
}
.massages__list li:nth-child(6n-1) .massages__preview {
  left: 139px;
}
.massages__list li:nth-child(2n) .massages__preview {
  right: 168px;
}
.massages__list li:nth-child(4n) .massages__preview {
  right: 220px;
}
.massages__list li:nth-child(6n) .massages__preview {
  right: 200px;
}
@media screen and (min-width: 768px) {
  .massages__list {
    margin-bottom: 50px;
  }
}
.massages__link {
  cursor: pointer;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  padding: 32px 10px;
  border-bottom: 1px solid #2f2f2f;
  color: #616161;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.massages__link:before {
  content: "/ " counter(massage-counter);
  font-size: 14px;
}
.massages__link:first-of-type {
  border-top: 1px solid #2f2f2f;
}
@media (hover: hover) {
  .massages__link:hover {
    color: #fcfcfc;
    background-color: #0f0f0f;
  }
  .massages__link:hover + .massages__preview {
    opacity: 1;
  }
  .massages__link:hover .massages__icon {
    color: #fcfcfc;
  }
}
.massages__link:focus-visible {
  color: #fcfcfc;
  background-color: #0f0f0f;
}
.massages__link:focus-visible + .massages__preview {
  opacity: 1;
}
.massages__link:focus-visible .massages__icon {
  color: #fcfcfc;
}
@media screen and (min-width: 768px) {
  .massages__link {
    font-size: 24px;
    grid-template-columns: 46px 1fr;
    gap: 89px;
  }
  .massages__link:before {
    font-size: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .massages__link {
    grid-template-columns: 46px 1fr min-content;
    gap: 89px;
  }
}
@media screen and (min-width: 1440px) {
  .massages__link {
    grid-template-columns: 153px 1fr min-content;
    gap: 310px;
  }
}
.massages__link-text {
  align-items: flex-start;
}
.massages__icon {
  display: none;
  width: 25px;
  height: 25px;
  color: #0f0f0f;
  transition: color 0.3s ease-in-out;
}
@media screen and (min-width: 1080px) {
  .massages__icon {
    display: block;
  }
}
.massages__buttons-container {
  display: flex;
  gap: 26px;
  margin: 0 auto;
  width: 100%;
  max-width: 390px;
}
.massages__button {
  padding: 16px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .massages__button {
    padding: 18px 32px;
  }
}
.massages__preview {
  pointer-events: none;
  display: none;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 270px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  animation-delay: 0.3s;
}
@media screen and (min-width: 1080px) {
  .massages__preview {
    display: block;
  }
}
.about-preview__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .about-preview__inner {
    padding: 75px 0;
  }
}
.about-preview__heading {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .about-preview__heading {
    margin-left: 46px;
  }
}
@media screen and (min-width: 1440px) {
  .about-preview__heading {
    margin-left: 153px;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__heading {
    margin-bottom: 50px;
  }
}
.about-preview__heading-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .about-preview__heading-inner {
    gap: 20px;
    margin-left: 99px;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__heading-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1440px) {
  .about-preview__heading-inner {
    margin-left: 320px;
  }
}
.about-preview__title {
  margin-bottom: 24px;
}
.about-preview__text {
  text-transform: none;
  max-width: 414px;
}
@media screen and (min-width: 768px) {
  .about-preview__more {
    min-width: 177px;
    width: fit-content;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__content {
    display: grid;
    grid-template-columns: 1fr 370px;
    column-gap: 20px;
    grid-template-areas: "main second" "main nav" "main metro";
  }
}
.about-preview__swiper-main.swiper {
  margin: 0 -16px 20px;
  padding: 0 16px;
  grid-area: main;
}
@media screen and (min-width: 768px) {
  .about-preview__swiper-main.swiper {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__swiper-main.swiper {
    margin: 0;
    padding: 0;
  }
}
.about-preview__swiper-main.swiper .swiper-slide img {
  height: 312px;
  object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .about-preview__swiper-main.swiper .swiper-slide img {
    height: 403px;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__swiper-main.swiper .swiper-slide img {
    height: 450px;
  }
}
.about-preview__swiper-main.swiper .swiper-pagination-bullets {
  bottom: 8px !important;
}
.about-preview__swiper-main.swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #d7d7d7;
  margin: 0 2.5px !important;
}
.about-preview__swiper-main.swiper
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fcfcfc;
}
@media screen and (min-width: 768px) {
  .about-preview__swiper-main.swiper {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__swiper-main.swiper {
    margin-bottom: 0;
  }
}
.about-preview__ya-badge {
  z-index: 2;
  position: absolute;
  top: 10px;
  left: 26px;
  width: 44px;
}
@media screen and (min-width: 768px) {
  .about-preview__ya-badge {
    left: 30px;
    width: 65px;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__ya-badge {
    left: 10px;
    width: 77px;
  }
}
.about-preview .about-preview__swiper-second.swiper {
  display: none;
  grid-area: second;
}
.about-preview .about-preview__swiper-second.swiper .swiper-slide img {
  height: 280px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 1080px) {
  .about-preview .about-preview__swiper-second.swiper {
    display: block;
    width: 100%;
    max-height: 580px;
    height: 100%;
  }
}
.about-preview__swiper-nav {
  grid-area: nav;
  width: min-content;
  margin-left: auto;
}
.about-preview__metro {
  grid-area: metro;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .about-preview__metro {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1080px) {
  .about-preview__metro {
    flex-direction: column;
    gap: 6px;
  }
}
.about-preview__metro-item {
  display: flex;
  align-items: center;
  height: 29px;
}
.about-preview__metro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #616161;
  border-radius: 50%;
  aspect-ratio: 1;
  color: #616161;
  width: 29px;
  height: 29px;
}
.about-preview__metro-icon svg {
  width: 15px;
  height: 15px;
}
.about-preview__metro-text {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #616161;
  border-radius: 12px;
  height: 29px;
  padding: 8px 12px;
  min-width: 112px;
  color: #fcfcfc;
  font-size: 12px;
  line-height: 100%;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .about-preview__metro-text {
    font-size: 14px;
    padding: 6px 20px;
    min-width: 144px;
  }
}
.about-hero__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .about-hero__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 768px) {
  .about-hero__inner {
    display: grid;
    grid-template-columns: 1fr 328px;
    column-gap: 48px;
  }
}
@media screen and (min-width: 1080px) {
  .about-hero__inner {
    grid-template-columns: 630px 1fr;
    column-gap: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .about-hero__inner {
    column-gap: 160px;
  }
}
.about-hero__title {
  margin-bottom: 40px;
}
.about-hero__title:not(:has(span:nth-of-type(3))) span:last-of-type {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .about-hero__title {
    margin-bottom: 50px;
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 1440px) {
  .about-hero__title:not(:has(span:nth-of-type(3))) span:last-of-type {
    margin-left: 230px;
  }
}
.about-hero__image {
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-hero__image {
    order: 3;
    width: 328px;
  }
}
@media screen and (min-width: 1080px) {
  .about-hero__text-container {
    display: grid;
    grid-template-columns: 230px 1fr;
  }
}
.about-hero__subtitle {
  display: block;
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1080px) {
  .about-hero__subtitle {
    margin: 0;
  }
}
.about-hero__text {
  white-space: pre-wrap;
  text-transform: none;
}
.about-approach {
  position: relative;
  background-image: url(../images/about-approach.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 50px 0;
}
.about-approach:before,
.about-approach:after {
  z-index: 0;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
}
.about-approach:before {
  top: 0;
  height: 450px;
  background: linear-gradient(180deg, #080808, #08080800);
}
@media screen and (min-width: 768px) {
  .about-approach:before {
    height: 545px;
  }
}
@media screen and (min-width: 1080px) {
  .about-approach:before {
    height: 570px;
  }
}
@media screen and (min-width: 1080px) {
  .about-approach:after {
    bottom: 0;
    height: 300px;
    background: linear-gradient(180deg, #08080800, #080808);
  }
}
@media screen and (min-width: 768px) {
  .about-approach {
    margin: 75px 0;
  }
}
.about-approach__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
}
@media screen and (min-width: 768px) {
  .about-approach__inner {
    padding: 155px 0;
  }
}
@media screen and (min-width: 1080px) {
  .about-approach__inner {
    padding: 175px 0;
  }
}
.about-approach__card {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  padding: 40px 20px;
  background-color: #fcfcfc;
  border-radius: 12px;
  color: #080808;
}
@media screen and (min-width: 768px) {
  .about-approach__card {
    padding: 50px 30px;
    max-width: 479px;
  }
}
.about-approach__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .about-approach__title {
    margin-bottom: 50px;
  }
}
.about-approach__text {
  white-space: pre-wrap;
  text-transform: none;
}
.about-numbers__inner {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about-numbers__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 768px) {
  .about-numbers__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1440px) {
  .about-numbers__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-numbers__inner li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  background-color: #0f0f0f;
  padding: 20px;
  height: 255px;
}
.about-numbers__inner li.about-numbers__placeholder {
  display: none;
  background-color: transparent;
}
@media screen and (min-width: 1440px) {
  .about-numbers__inner li.about-numbers__placeholder {
    display: block;
  }
}
.about-numbers__number {
  font-size: 90px;
  line-height: 130%;
  font-weight: 500;
}
.about-numbers__text {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
}
.blog-latest__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .blog-latest__inner {
    padding: 75px 0;
  }
}
.blog-latest__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .blog-latest__title {
    margin-left: 46px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-latest__title {
    margin-left: 153px;
  }
}
@media screen and (min-width: 768px) {
  .blog-latest__title {
    margin-bottom: 50px;
  }
}
.blog-latest__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .blog-latest__list {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .blog-latest__more {
    margin-left: 145px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-latest__more {
    margin-left: 473px;
  }
}
.blog-preview {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #2f2f2f;
  padding: 24px 0;
  transition: background-color 0.3s ease-in-out;
}
.blog-preview:first-of-type {
  border-top: 1px solid #2f2f2f;
}
@media (hover: hover) {
  .blog-preview:hover {
    background-color: #0f0f0f;
  }
  .blog-preview:hover .blog-preview__icon {
    opacity: 1;
  }
}
.blog-preview:focus-visible {
  background-color: #0f0f0f;
}
.blog-preview:focus-visible .blog-preview__icon {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .blog-preview {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-preview {
    grid-template-columns: 123px 300px 550px 1fr;
    grid-template-areas: "date img title icon" "date img time icon";
    padding: 30px 10px;
  }
}
.blog-preview__date {
  grid-row: span 3;
}
@media screen and (min-width: 1440px) {
  .blog-preview__date {
    grid-area: date;
    margin: 0;
  }
}
.blog-preview__date,
.blog-preview__reading-time {
  display: inline-block;
  color: #616161;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .blog-preview__date,
  .blog-preview__reading-time {
    font-size: 16px;
  }
}
.blog-preview__title {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .blog-preview__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-preview__title {
    grid-area: title;
    margin: 0;
  }
}
.blog-preview__image {
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .blog-preview__image {
    width: 258px;
    height: 148px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-preview__image {
    grid-area: img;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .blog-preview__reading-time {
    grid-area: time;
    align-self: end;
    margin: 0;
  }
}
.blog-preview__icon {
  display: none;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 1440px) {
  .blog-preview__icon {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    opacity: 0;
  }
}
.page-white .blog-preview {
  border-color: #d7d7d7;
}
.page-white .blog-preview .blog-preview__icon {
  color: #080808;
}
@media (hover: hover) {
  .page-white .blog-preview:hover {
    background-color: #d7d7d74d;
  }
}
.page-white .blog-preview:focus-visible {
  background-color: #d7d7d74d;
}
.page-white .blog-preview__date,
.page-white .blog-preview__reading-time {
  color: #a6a6a6;
}
.page-white .blog-preview__title {
  color: #080808;
}
.blog-archive__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .blog-archive__inner {
    padding: 75px 0;
  }
}
.blog-archive__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .blog-archive__title {
    margin-left: 46px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-archive__title {
    margin-left: 153px;
  }
}
@media screen and (min-width: 768px) {
  .blog-archive__title {
    margin-bottom: 50px;
  }
}
.blog-archive__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
@media screen and (min-width: 768px) {
  .blog-archive__list {
    margin-bottom: 50px;
  }
}
.blog-info__inner {
  padding: 50px 0 40px;
}
@media screen and (min-width: 768px) {
  .blog-info__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "title title" "author details" "preview preview";
    gap: 50px;
    padding: 75px 0 50px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-info__inner {
    grid-template-columns: 270px 728px;
    grid-template-areas: "author title" "author details" "author preview";
  }
}
.blog-info__title {
  color: #080808;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .blog-info__title {
    grid-area: title;
    margin: 0;
  }
}
.blog-info__details {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #616161;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .blog-info__details {
    grid-area: details;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 16px;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .blog-info__details {
    align-items: flex-start;
  }
}
.blog-info__author {
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-template-areas: "img name" "img role";
  gap: 4px 10px;
  margin-bottom: 20px;
  color: #080808;
  font-size: 14px;
  line-height: 130%;
}
.blog-info__author img {
  grid-area: img;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .blog-info__author {
    grid-area: author;
    font-size: 16px;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .blog-info__author {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "name" "role";
    gap: 0;
    height: fit-content;
  }
  .blog-info__author img {
    width: 105px;
    height: 133px;
    object-fit: cover;
    margin-bottom: 16px;
  }
}
.blog-info__name {
  grid-area: name;
}
@media screen and (min-width: 1440px) {
  .blog-info__name {
    margin-bottom: 4px;
  }
}
.blog-info__role {
  grid-area: role;
  color: #616161;
}
.blog-info__preview {
  border-radius: 12px;
  height: 348px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .blog-info__preview {
    grid-area: preview;
    height: 380px;
  }
}
.blog-content__inner {
  color: #080808;
  font-size: 16px;
  line-height: 140%;
  padding-bottom: 50px;
  max-width: 991px;
}
@media screen and (min-width: 768px) {
  .blog-content__inner {
    font-size: 18px;
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-content__inner {
    padding-left: 320px;
  }
}
.blog-content p {
  margin: 16px 0;
}
@media screen and (min-width: 768px) {
  .blog-content p {
    margin: 18px 0;
  }
}
.blog-content ul {
  padding-left: 30px;
}
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .blog-content h2,
  .blog-content h3,
  .blog-content h4,
  .blog-content h5,
  .blog-content h6 {
    font-size: 24px;
    margin-top: 50px;
  }
}
.blog-content img {
  border-radius: 12px;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .blog-content img {
    margin: 50px 0;
  }
}
.blog-content a {
  text-decoration: underline;
}
.blog-related__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .blog-related__inner {
    padding: 75px 0;
  }
}
.blog-related__title {
  color: #080808;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .blog-related__title {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-related__title {
    margin-left: 320px;
  }
}
.blog-related__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .blog-related__list {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .blog-related__more {
    margin-left: 145px;
  }
}
@media screen and (min-width: 1440px) {
  .blog-related__more {
    margin-left: 473px;
  }
}
.review-actual__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .review-actual__inner {
    padding: 75px 0;
  }
}
.review-actual__heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .review-actual__heading {
    margin-left: 46px;
  }
}
@media screen and (min-width: 1440px) {
  .review-actual__heading {
    margin-left: 153px;
  }
}
.review-actual__heading .review-actual__more {
  display: none;
}
@media screen and (min-width: 768px) {
  .review-actual__heading {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .review-actual__heading {
    display: flex;
    align-items: flex-end;
  }
  .review-actual__heading .review-actual__more {
    flex-shrink: 0;
    display: inline-block;
    width: max-content;
  }
}
.review-actual__content {
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .review-actual__content {
    display: grid;
    grid-template-columns: 3fr minmax(auto, 315px);
    gap: 20px;
    margin-bottom: 0;
  }
}
.review-actual .review-actual__swiper {
  margin: 0 -16px;
  padding: 0 16px;
  cursor: grab;
}
@media screen and (min-width: 768px) {
  .review-actual .review-actual__swiper {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  .review-actual .review-actual__swiper {
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1080px) {
  .review-actual .review-actual__swiper {
    width: 100%;
  }
}
.review-actual .swiper-slide {
  width: auto !important;
}
.review-actual .swiper-slide .review-actual__text {
  width: 296px;
}
.review-actual .swiper-slide .review-actual__video {
  width: 280px;
  height: 347px;
}
@media screen and (min-width: 1080px) {
  .review-actual .swiper-slide:has(.review-actual__add) {
    display: none;
  }
}
.review-actual .swiper-slide .review-actual__add {
  display: flex;
  width: 315px;
  height: 292px;
}
.review-actual__add {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2f2f2f;
  width: 100%;
  max-height: 292px;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  aspect-ratio: 1;
}
@media (hover: hover) {
  .review-actual__add:hover {
    border: 1px solid #fcfcfc;
  }
}
.review-actual__add:focus-visible {
  border: 1px solid #fcfcfc;
}
.review-actual__add:active {
  color: #a6a6a6;
  border-color: #a6a6a6;
}
@media screen and (min-width: 1080px) {
  .review-actual__add {
    display: flex;
    width: 100%;
    height: 100%;
  }
}
.review-actual__more {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .review-actual__more {
    margin-left: 145px;
    width: fit-content;
  }
}
@media screen and (min-width: 1080px) {
  .review-actual__more {
    display: none;
  }
}
.review-video {
  cursor: pointer;
  position: relative;
  width: 100%;
  aspect-ratio: 0.8;
}
.review-video video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.review-video__play {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.review-video__info {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.review-video__hidden {
  opacity: 0;
}
.review-video__name {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 4px;
}
.review-video__social {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  margin-bottom: 16px;
}
.review-video__subscribers {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
}
.review-text {
  padding: 20px;
  border-radius: 12px;
  background-color: #0f0f0f;
  height: fit-content;
}
.review-text__info {
  display: grid;
  grid-template-columns: 1fr 67px;
  grid-template-areas: "name date-photo" "socials date-photo" "subscribers-rating date-photo";
  gap: 4px 20px;
  margin-bottom: 40px;
}
.review-text__name {
  grid-area: name;
  font-size: 16px;
  line-height: 130%;
}
.review-text__socials,
.review-text__subscribers {
  color: #a6a6a6;
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
}
.review-text__socials {
  grid-area: socials;
}
.review-text__subscribers {
  grid-area: subscribers-rating;
  padding-top: 12px;
}
.review-text__rating {
  grid-area: subscribers-rating;
  display: flex;
  align-items: center;
  gap: 2px;
}
.review-text__rating-item {
  width: 18px;
  height: 18px;
}
.review-text__photo {
  grid-area: date-photo;
  border-radius: 12px;
}
.review-text__date {
  grid-area: date-photo;
  color: #a6a6a6;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
}
.review-text__content-wrapper {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.review-text__content {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  padding: 18px 12px 0 24px;
  background-image: url(../images/quote.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 20px 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.review-text__more {
  margin-left: 24px;
}
.review-text__content--opened {
  display: block;
}
.reviews-archive__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .reviews-archive__inner {
    padding: 75px 0;
  }
}
.reviews-archive__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .reviews-archive__heading {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .reviews-archive__heading {
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 30px;
  }
}
.reviews-archive__add {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reviews-archive__add {
    order: 3;
    width: fit-content;
  }
}
@media screen and (min-width: 1080px) {
  .reviews-archive__add {
    order: 2;
    align-self: end;
    height: fit-content;
  }
}
.reviews-archive__filter {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
@media screen and (min-width: 1080px) {
  .reviews-archive__filter {
    order: 3;
  }
}
.reviews-archive__point {
  color: #616161;
  font-size: 16px;
  line-height: 130%;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.reviews-archive__point--active {
  color: #fcfcfc;
}
.reviews-archive__toggler {
  cursor: pointer;
  display: inline-flex;
  border-radius: 8px;
  width: 38px;
  height: 14px;
  padding: 2px;
  background-color: #616161;
  border: none;
}
.reviews-archive__toggler:before {
  content: "";
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fcfcfc;
  transition: all 0.3s ease-in-out;
}
.reviews-archive__toggler--switched:before {
  margin-left: 24px;
}
@media (hover: hover) {
  .reviews-archive__toggler:hover:before {
    background-color: #a6a6a6;
  }
}
.reviews-archive__toggler:focus-visible:before {
  background-color: #a6a6a6;
}
.reviews-archive__list {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .reviews-archive__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .reviews-archive__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.master-preview__profile {
  position: relative;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .master-preview__profile {
    margin-bottom: 20px;
  }
}
.master-preview__image {
  width: 100%;
  height: 347px;
  object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .master-preview__image {
    height: 390px;
  }
}
.master-preview__profile-link {
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 18px;
  left: 18px;
  right: 18px;
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
  background-color: #191919b3;
  border: none;
  color: #fcfcfc;
  padding: 16px 12px;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
}
.master-preview__profile-link svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .master-preview__profile-link:hover {
    color: #a6a6a6;
  }
}
.master-preview__profile-link:focus-visible {
  color: #a6a6a6;
}
.master-preview__profile-link:active {
  color: #fcfcfc;
  background-color: #191919;
}
.master-preview__book {
  width: 100%;
}
.masters-archive__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .masters-archive__inner {
    padding-top: 80px 0 75px;
  }
}
.masters-archive__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .masters-archive__title {
    margin-bottom: 50px;
  }
}
.masters-archive__list {
  display: grid;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .masters-archive__list {
    gap: 50px 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .masters-archive__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.masters-archive__more {
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .master-info {
    margin-top: -16px;
  }
}
.master-info__inner {
  position: relative;
  padding: 10px 0 50px;
}
@media screen and (min-width: 768px) {
  .master-info__inner {
    display: grid;
    grid-template-columns: 1fr 370px;
    column-gap: 50px;
    padding: 0 0 75px;
  }
}
@media screen and (min-width: 1080px) {
  .master-info__inner {
    padding: 0 0 24px;
    grid-template-columns: 1fr 492px;
  }
}
.master-info__image {
  border-radius: 12px;
  margin-bottom: 10px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .master-info__image {
    grid-row: span 3;
    margin: 0;
    height: 470px;
  }
}
@media screen and (min-width: 1080px) {
  .master-info__image {
    height: 600px;
  }
}
@media screen and (min-width: 768px) {
  .master-info__inner-container {
    order: -1;
    padding-top: 66px;
  }
}
.master-info__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .master-info__title {
    margin-bottom: 50px;
  }
}
.master-info__text-container {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .master-info__text-container {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .master-info__text-container {
    display: grid;
    grid-template-columns: 143px 450px;
    column-gap: 10px;
  }
}
.master-info__description {
  color: #616161;
  margin-bottom: 20px;
}
@media screen and (min-width: 1440px) {
  .master-info__description {
    margin: 0;
    grid-row: span 2;
  }
}
.master-info__position,
.master-info__text {
  text-transform: none;
  white-space: pre-wrap;
}
.master-info__position {
  margin-bottom: 16px;
}
@media screen and (min-width: 1440px) {
  .master-info__appointment {
    margin-left: 153px;
  }
}
.master-reviews__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .master-reviews__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 1080px) {
  .master-reviews__inner {
    padding: 24px 0 75px;
  }
}
.master-reviews__heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .master-reviews__heading {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .master-reviews__heading {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .master-reviews__heading {
    margin-left: 153px;
  }
}
.master-reviews__content {
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .master-reviews__content {
    display: grid;
    grid-template-columns: 3fr minmax(auto, 315px);
    gap: 20px;
    margin-bottom: 0;
  }
}
.master-reviews .master-reviews__swiper {
  margin: 0 -16px;
  padding: 0 16px;
  cursor: grab;
}
@media screen and (min-width: 768px) {
  .master-reviews .master-reviews__swiper {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  .master-reviews .master-reviews__swiper {
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1080px) {
  .master-reviews .master-reviews__swiper {
    width: 100%;
  }
}
.master-reviews .swiper-slide {
  width: auto !important;
}
.master-reviews .swiper-slide .review-actual__text {
  width: 296px;
}
@media screen and (min-width: 1080px) {
  .master-reviews .swiper-slide .review-actual__text {
    width: 384px;
  }
}
.master-reviews .swiper-slide .review-actual__video {
  width: 280px;
  height: 347px;
}
@media screen and (min-width: 1080px) {
  .master-reviews .swiper-slide:has(.review-actual__add) {
    display: none;
  }
}
.master-reviews .swiper-slide .review-actual__add {
  display: flex;
  width: 315px;
  height: 292px;
}
.master-reviews__add {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #2f2f2f;
  width: 100%;
  max-height: 292px;
  font-size: 16px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  aspect-ratio: 1;
}
@media (hover: hover) {
  .master-reviews__add:hover {
    border: 1px solid #fcfcfc;
  }
}
.master-reviews__add:focus-visible {
  border: 1px solid #fcfcfc;
}
.master-reviews__add:active {
  color: #a6a6a6;
  border-color: #a6a6a6;
}
@media screen and (min-width: 1080px) {
  .master-reviews__add {
    display: flex;
    width: 100%;
    height: 100%;
  }
}
.masters-swiper__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .masters-swiper__inner {
    padding: 75px 0;
  }
}
.masters-swiper__heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .masters-swiper__heading {
    margin-left: 46px;
  }
}
@media screen and (min-width: 1440px) {
  .masters-swiper__heading {
    margin-left: 153px;
  }
}
@media screen and (min-width: 1080px) {
  .masters-swiper__heading {
    margin-bottom: 50px;
  }
}
.masters-swiper .masters-swiper__swiper {
  margin: 0 -16px;
  padding: 0 16px;
  cursor: grab;
}
@media screen and (min-width: 768px) {
  .masters-swiper .masters-swiper__swiper {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  .masters-swiper .masters-swiper__swiper {
    margin: 0;
    padding: 0;
  }
}
.masters-swiper .masters-swiper__slide {
  width: 280px;
}
@media screen and (min-width: 768px) {
  .masters-swiper .masters-swiper__slide {
    width: 315px;
  }
}
@media screen and (min-width: 1080px) {
  .masters-swiper .masters-swiper__slide {
    width: auto;
  }
  .masters-swiper .masters-swiper__slide:nth-child(2n) {
    margin-top: 80px;
  }
}
.discounts__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .discounts__inner {
    padding: 75px 0;
  }
}
.discounts__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .discounts__title {
    margin-bottom: 50px;
  }
}
.discounts__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .discounts__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.discounts__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 40px;
  background-size: cover;
  height: 324px;
}
.discounts__item:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 12px;
  background-color: #0f0f0f;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .discounts__item {
    aspect-ratio: auto;
    height: 371px;
    padding: 90px;
  }
}
.discounts__item:hover:before {
  opacity: 0;
}
.discounts__item:hover .discounts__text {
  background-color: #191919b3;
}
.discounts__text {
  text-transform: none;
  text-align: center;
  border-radius: 12px;
  background-color: transparent;
  padding: 20px;
  transition: background-color 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
}
@media screen and (min-width: 768px) {
  .discounts__text {
    font-size: 20px;
    padding: 36px;
  }
}
.contacts-info__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .contacts-info__inner {
    padding: 75px 0;
  }
}
.contacts-info__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contacts-info__title {
    margin-bottom: 50px;
  }
}
.contacts-info__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "contacts socials" "address address" "worktime worktime" "requisites requisites";
  gap: 40px 6px;
}
@media screen and (min-width: 768px) {
  .contacts-info__items {
    grid-template-areas: "contacts address" "worktime worktime" "socials requisites";
    gap: 50px 8px;
  }
}
@media screen and (min-width: 1080px) {
  .contacts-info__items {
    grid-template-columns: 180px 290px 150px 1fr;
    grid-template-areas: "contacts address socials requisites" "worktime worktime worktime worktime";
    gap: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .contacts-info__items {
    grid-template-columns: 180px 290px 150px 1fr;
    justify-content: space-between;
    gap: 100px;
    width: 100%;
  }
}
.contacts-info__group-contacts {
  grid-area: contacts;
}
.contacts-info__group-socials {
  grid-area: socials;
}
.contacts-info__group-address {
  grid-area: address;
  max-width: 250px;
}
.contacts-info__group-worktime {
  grid-area: worktime;
}
.contacts-info__group-requisites {
  grid-area: requisites;
}
.contacts-info__group-title {
  display: block;
  color: #616161;
  font-size: 14px;
  line-height: 100%;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contacts-info__link,
.contacts-info__text {
  display: block;
  color: #fcfcfc;
  font-size: 14px;
  line-height: 130%;
}
.contacts-info__link:not(:last-of-type),
.contacts-info__text:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .contacts-info__link,
  .contacts-info__text {
    font-size: 16px;
  }
}
.contacts-info__link {
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) {
  .contacts-info__link:hover {
    color: #a6a6a6;
  }
}
.contacts-info__link:focus-visible {
  color: #a6a6a6;
}
.contacts-info__link:active {
  color: #fcfcfc;
}
.contacts-info .contacts-info__social-icons {
  margin-top: 16px;
}
.contacts-map__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .contacts-map__inner {
    padding: 75px 0;
  }
}
.contacts-map__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contacts-map__title {
    margin-bottom: 50px;
  }
}
.contacts-map__items {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .contacts-map__items {
    grid-template-columns: 42% 58%;
  }
}
.contacts-map__info {
  counter-reset: contact-items;
  background-color: #0f0f0f;
  border-radius: 12px;
  padding: 50px 24px;
}
@media screen and (min-width: 768px) {
  .contacts-map__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 50px 30px;
  }
}
@media screen and (min-width: 1080px) {
  .contacts-map__info {
    display: block;
    padding: 50px 64px;
  }
}
.contacts-map__info-group {
  counter-increment: contact-items;
}
.contacts-map__info-group:not(:last-of-type) {
  margin-bottom: 40px;
}
.contacts-map__info-group-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 130%;
  max-width: 360px;
  margin-bottom: 16px;
}
.contacts-map__info-group-title:before {
  content: counter(contact-items);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 140%;
  background-color: #2f2f2f;
  border-radius: 6px;
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .contacts-map__info-group-title {
    font-size: 16px;
  }
}
.contacts-map__info-group-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  padding-left: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1080px) {
  .contacts-map__info-group-text {
    margin-bottom: 4px;
  }
}
.contacts-map__info-metro {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #664b2d;
  border: 1px solid #2f2f2f;
  border-radius: 4px;
  background: #19191959;
  opacity: 0.5;
}
.contacts-map__info-metro--orange {
  color: #f77d31;
  background: #191919b3;
  opacity: 1;
}
.contacts-map__info-metro--lime {
  color: #a6db61;
  border: 1px solid #2f2f2f;
  opacity: 1;
}
.contacts-map__info-metro svg {
  width: 19px;
  height: 19px;
}
.contacts-map__info-additional {
  font-size: 14px;
  line-height: 120%;
  font-weight: 300;
  margin-left: 55px;
}
.contacts-map__map {
  border-radius: 12px;
  width: 100%;
  min-height: 413px;
}
.massages-list__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .massages-list__inner {
    padding: 75px 0;
  }
}
.massages-list__title {
  margin-bottom: 40px;
}
.massages-list__title:not(:has(span:nth-of-type(3))) span:last-of-type {
  margin: 0;
}
@media screen and (min-width: 1440px) {
  .massages-list__title:not(:has(span:nth-of-type(3))) span:last-of-type {
    margin-left: 320px;
  }
}
@media screen and (min-width: 1440px) {
  .massages-list__title {
    margin-bottom: 50px;
    margin-left: 153px;
  }
}
.massages-list__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: massages-list;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.massages-item {
  counter-increment: massages-list;
  padding: 30px 0;
  border-bottom: 1px solid #2f2f2f;
}
.massages-item:first-of-type {
  border-top: 1px solid #2f2f2f;
}
.massages-item:before {
  content: "/ " counter(massages-list);
  display: inline-block;
  color: #616161;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 10px;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .massages-item:before {
    margin: 0;
    grid-row: span 3;
  }
}
@media screen and (min-width: 1440px) {
  .massages-item:before {
    grid-row: span 1;
  }
}
@media screen and (min-width: 768px) {
  .massages-item {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 24px;
    padding: 30px 16px 30px 10px;
  }
}
@media screen and (min-width: 1440px) {
  .massages-item {
    grid-template-columns: 119px 1fr 247px 372px;
    align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .massages-item--no-info {
    grid-template-columns: 439px 1fr 372px;
    align-items: center;
  }
}
.massages-item__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .massages-item__title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .massages-item__title {
    margin: 0;
  }
}
.massages-item__info {
  display: flex;
  gap: 10px;
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  margin-bottom: 20px;
}
.massages-item__info span:first-of-type {
  margin-bottom: 2px;
}
.massages-item__info span:last-of-type {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .massages-item__info {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .massages-item__info {
    margin: 0;
  }
}
.massages-item__buttons {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .massages-item__buttons {
    gap: 24px;
    max-width: 552px;
  }
}
@media screen and (min-width: 1080px) {
  .massages-item__buttons {
    gap: 20px;
  }
}
.massages-item__more,
.massages-item__appointment {
  flex-grow: 1;
}
.massages-item.hidden {
  display: none;
}
.massages-additional__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .massages-additional__inner {
    padding: 75px 0;
  }
}
.massages-additional__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 1440px) {
  .massages-additional__title {
    margin-bottom: 50px;
    margin-left: 153px;
  }
}
.massages-additional__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: massages-addittional;
}
.massages-additional__item {
  counter-increment: massages-addittional;
  border-bottom: 1px solid #2f2f2f;
  transition: all 0.3s ease-in-out;
}
.massages-additional__item:first-of-type {
  border-top: 1px solid #2f2f2f;
}
@media (hover: hover) {
  .massages-additional__item:hover {
    background-color: #0f0f0f;
  }
}
.massages-additional__item:focus-visible {
  background-color: #0f0f0f;
}
.massages-additional__button-trigger {
  cursor: pointer;
  display: grid;
  grid-template-areas: "number indicator" "title indicator" "info indicator";
  grid-template-columns: 1fr 25px;
  gap: 10px;
  color: #fcfcfc;
  text-align: start;
  background-color: transparent;
  border: none;
  width: 100%;
  padding: 50px 10px;
}
.massages-additional__button-trigger:before {
  content: "/ " counter(massages-addittional);
  grid-area: number;
  color: #616161;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: start;
}
@media screen and (min-width: 768px) {
  .massages-additional__button-trigger {
    grid-template-areas: "number title info indicator";
    grid-template-columns: 26px 1fr 1fr 25px;
  }
}
@media screen and (min-width: 1440px) {
  .massages-additional__button-trigger {
    grid-template-columns: 133px 1fr 1fr 25px;
  }
}
.massages-additional__item-title {
  grid-area: title;
  color: #fcfcfc;
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.massages-additional__info {
  grid-area: info;
  color: #a6a6a6;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .massages-additional__info {
    font-size: 16px;
  }
}
.massages-additional__item-indicator {
  grid-area: indicator;
  width: 23px;
  height: 23px;
  position: relative;
}
.massages-additional__item-indicator:before,
.massages-additional__item-indicator:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fcfcfc;
  transition: all 0.3s ease-in-out;
}
.massages-additional__item-indicator:before {
  width: 1px;
}
.massages-additional__item-indicator:after {
  height: 1px;
}
.massages-additional__item-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
  overflow: hidden;
}
.massages-additional__item-content {
  padding: 0 10px;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .massages-additional__item-content {
    padding-left: 153px;
  }
}
.massages-additional__item-text {
  color: #fcfcfc;
  font-size: 14px;
  line-height: 120%;
  margin-bottom: 30px;
  max-width: 457px;
}
.massages-additional__item-button {
  min-width: 176px;
  margin-bottom: 30px;
}
.massages-additional__item--opened {
  background-color: #0f0f0f;
}
.massages-additional__item--opened .massages-additional__item-wrapper {
  grid-template-rows: 1fr;
}
.massages-additional__item--opened .massages-additional__item-indicator:before {
  transform: scaleY(0);
}
.massage-info__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .massage-info__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 1080px) {
  .massage-info__inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    grid-template-areas: "text image" "buttons buttons";
    gap: 50px;
  }
}
.massage-info__text-container {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .massage-info__text-container {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .massage-info__text-container {
    grid-area: text;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .massage-info__text-container {
    display: grid;
    grid-template-columns: 143px 1fr;
    column-gap: 10px;
  }
}
.massage-info__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .massage-info__title {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .massage-info__title {
    grid-column: span 2;
  }
}
.massage-info__subtitle {
  display: inline-block;
  color: #616161;
  text-transform: none;
  margin-bottom: 20px;
}
@media screen and (min-width: 1440px) {
  .massage-info__subtitle {
    grid-row: span 2;
  }
}
.massage-info__description {
  margin-bottom: 30px;
}
.massage-info__text-wrapper {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-bottom: 16px;
}
.massage-info__text {
  text-transform: none;
  max-width: 523px;
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.massage-info__text--opened {
  display: block;
}
.massage-info__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.massage-info__items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #616161;
}
.massage-info__items li:first-of-type {
  border-top: 1px solid #616161;
}
.massage-info__items li span:first-of-type,
.massage-info__items li span:last-of-type {
  color: #fcfcfc;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
.massage-info__items li span:first-of-type {
  text-transform: uppercase;
}
.massage-info__items li span:last-of-type {
  opacity: 0.7;
}
@media screen and (min-width: 1080px) {
  .massage-info__items {
    max-width: 490px;
  }
}
.massage-info__buttons-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .massage-info__buttons-container {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .massage-info__buttons-container {
    grid-area: buttons;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .massage-info__buttons-container {
    margin-left: 153px;
  }
}
.massage-info__appointment,
.massage-info__gift-button {
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .massage-info__appointment,
  .massage-info__gift-button {
    width: fit-content;
    min-width: 220px;
  }
}
@media screen and (min-width: 1080px) {
  .massage-info__subscription {
    margin-left: auto;
  }
}
.massage-info__subscription,
.massage-info__certificate {
  text-transform: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .massage-info__subscription,
  .massage-info__certificate {
    flex: 1;
  }
}
@media screen and (min-width: 1080px) {
  .massage-info__subscription,
  .massage-info__certificate {
    width: 220px;
    flex: initial;
  }
}
.massage-info__image {
  height: 375px;
  border-radius: 12px;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .massage-info__image {
    grid-area: image;
    height: 482px;
  }
}
@media screen and (min-width: 1440px) {
  .massage-info__image {
    height: 442px;
  }
}
.loyalty-hero__inner {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .loyalty-hero__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 1080px) {
  .loyalty-hero__inner {
    display: grid;
    grid-template-columns: 426px 1fr;
    gap: 120px;
  }
}
@media screen and (min-width: 1440px) {
  .loyalty-hero__inner {
    padding-left: 153px;
  }
}
.loyalty-hero__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 428px;
}
@media screen and (min-width: 768px) {
  .loyalty-hero__info {
    gap: 50px;
  }
}
.loyalty-hero__info-text-wrapper {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-bottom: 16px;
}
.loyalty-hero__info-text {
  text-transform: none;
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.loyalty-hero__info-text--opened {
  display: block;
}
.loyalty-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .loyalty-hero__buttons {
    flex-direction: row;
  }
}
.loyalty-hero__buttons:has(:nth-child(2)) .loyalty-hero__order-button {
  flex-grow: 1;
}
.loyalty-hero__loyalty-button {
  padding-left: 20px;
  padding-right: 20px;
}
.loyalty-hero__order-button {
  padding-top: 18px;
  padding-bottom: 18px;
}
.loyalty-hero__image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.loyalty-hero__image-container:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  width: 323px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #464646;
  filter: blur(300px);
  margin: auto;
}
@media screen and (min-width: 768px) {
  .loyalty-hero__image-container {
    gap: 40px;
  }
  .loyalty-hero__image-container:before {
    width: 497px;
  }
}
@media screen and (min-width: 1080px) {
  .loyalty-hero__image-container {
    margin-top: -97px;
    gap: 60px;
  }
  .loyalty-hero__image-container:before {
    top: 0;
    width: 450px;
  }
}
.loyalty-hero__image {
  max-width: 308px;
}
@media screen and (min-width: 768px) {
  .loyalty-hero__image {
    max-width: 547px;
  }
}
.loyalty-hero__disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1080px) {
  .loyalty-hero__disclaimer {
    margin-top: 32px;
  }
}
.loyalty-hero__disclaimer-text {
  color: #a6a6a6;
  text-transform: none;
  text-align: center;
  max-width: 413px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .loyalty-hero__disclaimer-text {
    font-size: 16px;
  }
}
.loyalty-info__inner {
  padding: 50px 0;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .loyalty-info__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 768px) {
  .loyalty-info__inner {
    gap: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .loyalty-info__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
.loyalty-info__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 657px;
}
@media screen and (min-width: 768px) {
  .loyalty-info__info {
    gap: 50px;
  }
}
.loyalty-info .loyalty-info__title:not(:has(span:nth-of-type(3))) span {
  margin-left: 0;
}
.loyalty-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.loyalty-info__list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .loyalty-info__list li {
    flex-direction: row;
    gap: 24px;
  }
}
.loyalty-info__item-title {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .loyalty-info__item-title {
    width: 204px;
  }
}
.loyalty-info__opening-text {
  flex: 1;
}
.loyalty-info__text-wrapper {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.loyalty-info__text-wrapper .loyalty-info__item-text {
  white-space: pre-wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.loyalty-info__text-wrapper .loyalty-info__item-text--opened {
  display: block;
}
.loyalty-info__item-text {
  flex: 1;
  text-transform: none;
}
.loyalty-info__more-button {
  margin-top: 16px;
}
.loyalty-info__sublist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.loyalty-info__sublist li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.loyalty-info__sublist li:before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fcfcfc;
}
.loyalty-info__order {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .loyalty-info__order {
    flex-direction: row;
  }
}
.loyalty-info__order-button {
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .loyalty-info__order-button {
    max-width: 396px;
  }
}
.loyalty-info__image {
  position: relative;
  height: fit-content;
}
.loyalty-info__image img {
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .loyalty-info__image img {
    height: 490px;
  }
}
.loyalty-info__disclaimer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  max-width: 472px;
  padding: 20px;
  border-radius: 12px;
  background-color: #191919b3;
}
@media screen and (min-width: 768px) {
  .loyalty-info__disclaimer {
    bottom: 30px;
    padding: 24px 40px;
  }
}
.loyalty-info__disclaimer:not(
  :has(.loyalty-info__disclaimer-text:nth-child(2))
) {
  text-align: center;
}
.loyalty-info__disclaimer-text {
  display: block;
  font-size: 14px;
  line-height: 130%;
}
.loyalty-list__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .loyalty-list__inner {
    padding: 75px 0;
  }
}
.loyalty-list__title {
  margin-bottom: 40px;
}
.loyalty-list__title:not(:has(span:nth-of-type(3))) span:last-of-type {
  margin: 0;
}
@media screen and (min-width: 1440px) {
  .loyalty-list__title:not(:has(span:nth-of-type(3))) span:last-of-type {
    margin-left: 320px;
  }
}
@media screen and (min-width: 1440px) {
  .loyalty-list__title {
    margin-bottom: 50px;
    margin-left: 153px;
  }
}
.loyalty-list__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: massages-list;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.loyalty-list__more-button {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .loyalty-list__more-button {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .loyalty-list__more-button {
    display: block;
    margin-left: 473px;
  }
}
.gift-selector__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .gift-selector__inner {
    padding: 75px 0;
    max-width: 732px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1080px) {
  .gift-selector__inner {
    margin-bottom: 100px;
  }
}
.gift-selector__title {
  color: #080808;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .gift-selector__title {
    margin-bottom: 50px;
  }
}
.gift-selector__buttons-wrapper {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .gift-selector__buttons-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gift-selector__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 182px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  background-color: #fcfcfc;
  transition: all 0.3s ease-in-out;
  color: #080808;
}
@media (hover: hover) {
  .gift-selector__button:hover {
    color: #fcfcfc;
    background-color: #2f2f2f;
    border-color: #2f2f2f;
  }
}
.gift-selector__button:focus-visible {
  color: #fcfcfc;
  background-color: #2f2f2f;
  border-color: #2f2f2f;
}
@media screen and (min-width: 768px) {
  .gift-selector__button {
    height: 225px;
  }
}
.loyalty-program-info__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
  max-width: 815px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .loyalty-program-info__inner {
    padding: 50px 0 75px;
  }
}
.loyalty-program-info__image {
  width: 218px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .loyalty-program-info__image {
    width: 290px;
  }
}
.loyalty-program-info__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -2%;
}
.loyalty-program-info__details-item-name {
  color: #a6a6a6;
}
.loyalty-program-info__details-item-text {
  color: #fcfcfc;
}
.loyalty-program-info__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loyalty-program-info__buttons a {
  min-width: 300px;
}
.loyalty-program-conditions__inner {
  padding: 50px 0 75px;
}
@media screen and (min-width: 768px) {
  .loyalty-program-conditions__inner {
    padding: 75px 0;
  }
}
.loyalty-program-conditions__title {
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .loyalty-program-conditions__title {
    margin-bottom: 50px;
  }
}
.loyalty-program-conditions__items {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .loyalty-program-conditions__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .loyalty-program-conditions__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.loyalty-program-conditions__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background-color: #0f0f0f;
  min-height: 270px;
  height: fit-content;
}
@media screen and (min-width: 1080px) {
  .loyalty-program-conditions__item:nth-child(odd) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .loyalty-program-conditions__item {
    min-height: 286px;
  }
}
@media screen and (min-width: 1080px) {
  .loyalty-program-conditions__item {
    min-height: 255px;
  }
}
.loyalty-program-conditions__item-title {
  color: #fcfcfc;
  font-size: 90px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.02em;
}
.loyalty-program-conditions__item-title span {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .loyalty-program-conditions__item-title span {
    margin-left: 10px;
  }
}
.loyalty-program-conditions__item-text {
  color: #a6a6a6;
  text-transform: none;
  white-space: pre-wrap;
}
.l-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 690px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-hero {
    margin-bottom: 60px;
  }
}
.l-hero:after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #08080800, #080808);
}
@media screen and (min-width: 768px) {
  .l-hero {
    min-height: 900px;
  }
}
.l-hero__background {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.l-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-hero__inner {
  display: flex;
  flex-direction: column;
  max-width: 762px;
  margin: 0 auto;
  padding-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .l-hero__inner {
    padding-bottom: 174px;
  }
}
@media screen and (min-width: 1080px) {
  .l-hero__inner {
    padding-bottom: 220px;
  }
}
.l-hero__title {
  text-align: center;
  margin-bottom: 16px;
}
.l-hero__text {
  color: #fcfcfc;
  text-align: center;
  margin-bottom: 28px;
}
.l-hero__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .l-hero__badges {
    flex-direction: row;
  }
}
.l-hero__list {
  display: grid;
  gap: 12px;
  margin: 0 0 44px;
  padding-left: 1.5rem;
  color: #a6a6a6;
  font-size: 14px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .l-hero__list {
    font-size: 16px;
    margin: 0 auto 44px;
  }
}
.l-hero__button {
  min-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-hero__button {
    min-width: 300px;
  }
}
.l-bc-hero {
  position: relative;
  display: flex;
  margin-bottom: 50px;
  height: 100dvh;
  padding-top: 108px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-bc-hero {
    margin-bottom: 60px;
    padding-top: 186px;
    padding-bottom: 173px;
  }
}
.l-bc-hero:after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #08080800, #080808);
}
.l-bc-hero__background {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.l-bc-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-bc-hero__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-bc-hero__inner {
    justify-content: space-between;
    gap: 20px;
  }
}
.l-bc-hero__breadcrumbs {
  color: #fcfcfc;
  font-size: 14px;
  margin-bottom: 30px;
}
.l-bc-hero__breadcrumbs span {
  line-height: 120%;
  font-weight: 300;
}
.l-bc-hero__breadcrumbs > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.l-bc-hero__breadcrumbs > span > span:not(:last-of-type) {
  color: #a6a6a6;
}
.l-bc-hero__breadcrumbs a {
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .l-bc-hero__breadcrumbs a:hover {
    color: #fcfcfc;
  }
}
.l-bc-hero__breadcrumbs a:focus-visible {
  color: #fcfcfc;
}
.l-bc-hero__title {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .l-bc-hero__title {
    margin-bottom: 41px;
  }
}
.l-bc-hero__text {
  font-size: 16px;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .l-bc-hero__text {
    font-size: 24px;
    margin-left: 99px;
  }
}
@media screen and (min-width: 1440px) {
  .l-bc-hero__text {
    margin-left: 320px;
  }
}
.l-bc-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .l-bc-hero__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: end;
  }
}
.l-bc-hero__content ul {
  margin: 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .l-bc-hero__content ul {
    font-size: 18px;
    gap: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .l-bc-hero__col-right {
    margin-left: auto;
    max-width: 370px;
  }
}
.l-bc-hero__appointment {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-bc-hero__appointment {
    margin-top: 50px;
  }
}
.l-bc-hero__appointment-button {
  flex-grow: 1;
}
.l-bc-hero__appointment-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 10px;
  width: max-content;
  font-size: 18px;
  padding-left: 20px;
  border-left: 1px solid #616161;
}
.l-bc-hero__appointment-price-previous {
  color: #616161;
  text-decoration: line-through;
}
.discount-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #191919b3;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 8px 12px 8px 14px;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #a6a6a6;
}
.discount-price__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #18b875;
}
.discount-price__icon svg {
  width: 24px;
  height: 24px;
}
.discount-price__icon svg:last-of-type {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.6;
  filter: blur(8px);
}
.location-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #191919b3;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 8px 12px 8px 14px;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #a6a6a6;
}
.location-badge__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #f77d31;
}
.location-badge__icon svg {
  width: 24px;
  height: 24px;
}
.location-badge__icon svg:last-of-type {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.6;
  filter: blur(4px);
}
.info-section__inner {
  display: grid;
  gap: 40px;
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .info-section__inner {
    gap: 50px;
    padding: 60px 0;
  }
}
@media screen and (min-width: 1080px) {
  .info-section__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.info-section__title {
  text-align: center;
  justify-self: center;
  max-width: 810px;
  margin: 0 auto 32px;
}
@media screen and (min-width: 1080px) {
  .info-section__title {
    grid-column: 1/-1;
    margin: 0 auto 50px;
  }
}
.info-section__text h1,
.info-section__text h2,
.info-section__text h3,
.info-section__text h4,
.info-section__text h5,
.info-section__text h6 {
  font-family: Federov2-Regular, Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #666;
}
.info-section__text h1 strong,
.info-section__text h2 strong,
.info-section__text h3 strong,
.info-section__text h4 strong,
.info-section__text h5 strong,
.info-section__text h6 strong {
  color: #fcfcfc;
  font-weight: 400;
}
.info-section__text h1:not(:last-child),
.info-section__text h2:not(:last-child),
.info-section__text h3:not(:last-child),
.info-section__text h4:not(:last-child),
.info-section__text h5:not(:last-child),
.info-section__text h6:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .info-section__text h1,
  .info-section__text h2,
  .info-section__text h3,
  .info-section__text h4,
  .info-section__text h5,
  .info-section__text h6 {
    font-size: 46px;
  }
}
@media screen and (min-width: 1080px) {
  .info-section__text h1,
  .info-section__text h2,
  .info-section__text h3,
  .info-section__text h4,
  .info-section__text h5,
  .info-section__text h6 {
    text-align: start;
  }
}
.info-section__text p {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  margin: 0;
}
.info-section__text p:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .info-section__text p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1080px) {
  .info-section__text p {
    text-align: start;
  }
}
.info-section__text ul,
.info-section__text ol {
  margin: 0;
  display: grid;
  gap: 24px;
  list-style: none;
  padding: 0;
  color: #a6a6a6;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.info-section__text ul strong,
.info-section__text ol strong {
  color: #fcfcfc;
  font-weight: 500;
}
.info-section__text ul:not(:last-child),
.info-section__text ol:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .info-section__text ul,
  .info-section__text ol {
    gap: 20px;
  }
}
.info-section__text ol {
  counter-reset: custom-counter;
}
.info-section__text ol li {
  counter-increment: custom-counter;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .info-section__text ol li {
    align-items: center;
  }
}
.info-section__text ol li:before {
  content: counter(custom-counter);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 42px;
  height: 42px;
  color: #fcfcfc;
  font-size: 20px;
  line-height: 140%;
  background-color: #2f2f2f;
}
@media screen and (min-width: 768px) {
  .info-section__text ol li:before {
    align-items: center;
  }
}
.info-section__text ul {
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .info-section__text ul {
    gap: 20px;
  }
}
.info-section__text ul li {
  position: relative;
  background-color: #0f0f0f;
  padding: 58px 20px 40px;
  border-radius: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info-section__text ul li {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 31px 24px;
    text-align: start;
  }
}
.info-section__text ul li:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  margin: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  color: #fcfcfc;
  font-size: 20px;
  line-height: 140%;
  background-color: #2f2f2f;
  background-image: url('data:image/svg+xml,<svg width="46" height="46" viewBox="0 0 46 46" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M37.7738 12.0592C37.9523 12.2372 38.0939 12.4487 38.1905 12.6816C38.2872 12.9144 38.3369 13.1641 38.3369 13.4162C38.3369 13.6683 38.2872 13.9179 38.1905 14.1508C38.0939 14.3836 37.9523 14.5951 37.7738 14.7732L20.5238 32.0232C20.3458 32.2017 20.1343 32.3433 19.9014 32.4399C19.6685 32.5365 19.4189 32.5863 19.1668 32.5863C18.9147 32.5863 18.6651 32.5365 18.4322 32.4399C18.1994 32.3433 17.9879 32.2017 17.8098 32.0232L10.1431 24.3565C9.78324 23.9966 9.58105 23.5085 9.58105 22.9995C9.58105 22.4905 9.78324 22.0024 10.1431 21.6425C10.503 21.2826 10.9912 21.0804 11.5001 21.0804C12.0091 21.0804 12.4972 21.2826 12.8571 21.6425L19.1668 27.956L35.0598 12.0592C35.2379 11.8807 35.4494 11.7391 35.6822 11.6425C35.9151 11.5458 36.1647 11.4961 36.4168 11.4961C36.6689 11.4961 36.9185 11.5458 37.1514 11.6425C37.3843 11.7391 37.5958 11.8807 37.7738 12.0592Z" fill="%23FCFCFC"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 46px;
}
@media screen and (min-width: 768px) {
  .info-section__text ul li:before {
    margin: 0;
    position: static;
  }
}
.info-section__gallery {
  position: relative;
  overflow: hidden;
}
.info-section__gallery img {
  border-radius: 12px;
}
.info-section__slide {
  padding: 12px;
  background-color: #0f0f0f;
  border-radius: 12px;
}
.info-section__single-swiper img {
  width: 100%;
  object-fit: cover;
  height: 420px;
}
@media screen and (min-width: 768px) {
  .info-section__single-swiper img {
    height: 562px;
  }
}
.info-section__quote {
  padding: 20px 20px 28px;
  border-radius: 12px;
  background-color: #0f0f0f;
}
@media screen and (min-width: 768px) {
  .info-section__quote {
    padding: 30px 50px 50px 30px;
  }
}
.info-section__quote-heading {
  display: flex;
  align-items: center;
  grid-template-columns: min-content 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .info-section__quote-heading {
    margin-bottom: 8px;
    gap: 40px;
  }
}
.info-section__quote img {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .info-section__quote img {
    width: 89px;
    height: 89px;
  }
}
.info-section__quote-author {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .info-section__quote-author {
    font-size: 20px;
  }
}
.info-section__quote-position {
  color: #a6a6a6;
  font-size: 14px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .info-section__quote-position {
    font-size: 16px;
  }
}
.info-section__quote-text {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  margin: 0;
}
.info-section__quote-text strong {
  color: #fcfcfc;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .info-section__quote-text {
    padding-left: 128px;
  }
}
.info-section__button-wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .info-section__button-wrapper {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .info-section__button-wrapper {
    grid-column: 1/-1;
  }
}
.button-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.button-price__button {
  min-width: 300px;
}
.l-features {
  margin: 50px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-features {
    margin: 60px 0;
  }
}
.l-features__background {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 883px;
}
.l-features__background:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #080808, #08080808 51.77%, #080808);
}
.l-features__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .l-features__inner {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1080px) {
  .l-features__inner {
    padding-bottom: 120px;
  }
}
.l-features__title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .l-features__title {
    margin-bottom: 100px;
  }
}
.l-features__cards {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-features__cards {
    display: block;
    column-count: 2;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .l-features__cards {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
  }
}
.l-features__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 32px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: #0f0f0f99;
}
@media screen and (min-width: 768px) {
  .l-features__card {
    break-inside: avoid;
    height: 255px;
    margin-bottom: 20px;
  }
  .l-features__card:first-of-type {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .l-features__card {
    width: 25%;
    margin-bottom: 0;
  }
  .l-features__card:nth-child(odd) {
    margin-top: 50px;
  }
}
.l-features__card-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .l-features__card-title {
    font-size: 60px;
  }
}
.l-features__card-text {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .l-features__card-text {
    font-size: 18px;
  }
}
.ya-reviews {
  position: relative;
  margin: 50px 0;
}
@media screen and (min-width: 768px) {
  .ya-reviews {
    margin: 60px 0;
  }
}
.ya-reviews__background {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 883px;
}
.ya-reviews__background:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #080808, #08080808 51.77%, #080808);
}
.ya-reviews__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ya-reviews__inner {
  display: grid;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .ya-reviews__inner {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1080px) {
  .ya-reviews__inner {
    padding-bottom: 120px;
  }
}
.ya-reviews__title {
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .ya-reviews__title {
    margin-bottom: 24px;
  }
}
.ya-reviews__text {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  max-width: 574px;
  margin: 0 0 30px;
}
.ya-reviews__text strong {
  color: #fcfcfccc;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .ya-reviews__text {
    margin: 0 0 48px;
  }
}
.ya-reviews__reveiews {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .ya-reviews__reveiews {
    margin-bottom: 48px;
  }
}
.l-callback {
  color: #080808;
  padding: 63px 22px 48px;
  max-width: 570px;
}
@media screen and (min-width: 768px) {
  .l-callback {
    padding: 68px 38px 48px 54px;
  }
}
.l-callback__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 80%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-callback__title {
    font-size: 30px;
    line-height: 120%;
  }
}
.l-callback__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 24px;
  white-space: pre-wrap;
}
@media screen and (min-width: 768px) {
  .l-callback__text {
    font-size: 16px;
  }
}
.l-callback__input {
  display: block;
  width: 100%;
  border-radius: 12px;
  background-color: #d7d7d766;
  padding: 16px;
  font-size: 16px;
  line-height: 130%;
  border: 1px solid transparent;
}
.l-callback__input.wpcf7-not-valid {
  outline: 1px solid rgba(202, 3, 3, 0.6);
}
.l-callback__input:not(:last-of-type) {
  margin-bottom: 12px;
}
.l-callback__input:last-of-type {
  margin-bottom: 24px;
}
.l-callback__input::placeholder {
  color: #a6a6a6;
}
.l-callback .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.l-callback__input-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-callback__input-checkbox a {
  text-decoration: underline;
}
.l-callback__input-checkbox:not(:last-of-type) {
  margin-bottom: 12px;
}
@media (hover: hover) {
  .l-callback__input-checkbox:hover
    .l-callback__input-checkbox-indicator:after {
    opacity: 0.4;
  }
  .l-callback__input-checkbox:hover .order-modal__input-checkbox-indicator {
    border-color: #d7d7d7;
  }
}
.l-callback__input-checkbox:focus-visible
  .l-callback__input-checkbox-indicator:after {
  opacity: 0.4;
}
.l-callback__input-checkbox:focus-visible
  .order-modal__input-checkbox-indicator {
  border-color: #d7d7d7;
}
.l-callback__input-checkbox:has(input:checked)
  .l-callback__input-checkbox-indicator:after {
  opacity: 1;
  background-color: #a6a6a6;
}
.l-callback__input-checkbox:has(input:checked) .l-callback__privacy-indicator {
  border-color: #a6a6a6;
}
.l-callback__input-checkbox-indicator {
  flex-shrink: 0;
  display: flex;
  border: 1px solid #a6a6a6;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.l-callback__input-checkbox-indicator:after {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="9" viewBox="0 0 12 9" fill="none"%3E%3Cpath d="M11 1L4.125 8L1 4.81818" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.l-callback__button {
  margin-top: 32px;
  width: 100%;
}
.steps {
  position: relative;
  padding: 50px 0;
}
.steps:after {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #080808, #08080808 51.77%, #080808);
}
@media screen and (min-width: 768px) {
  .steps {
    padding: 60px 0;
  }
}
.steps__background {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.steps__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps__inner {
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .steps__inner {
    padding: 208px 0;
  }
}
@media screen and (min-width: 1080px) {
  .steps__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .steps__text-container {
    margin-left: 147px;
  }
}
@media screen and (min-width: 1080px) {
  .steps__cta-sticky {
    position: sticky;
    top: 150px;
    height: fit-content;
  }
}
.steps__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .steps__title {
    margin-bottom: 50px;
  }
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .steps__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .steps__list {
    margin: 0;
  }
}
.steps__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: #0f0f0f99;
  border-radius: 12px;
  padding: 20px;
  min-height: 234px;
}
@media screen and (min-width: 768px) {
  .steps__card {
    min-height: 255px;
  }
}
.steps__card-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.steps__card-number {
  color: #fcfcfc;
  font-weight: 500;
  font-size: 42px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .steps__card-number {
    font-size: 60px;
  }
}
.steps__card-time {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
.steps__card-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fcfcfc;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .steps__card-title {
    font-size: 24px;
  }
}
.steps__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #a6a6a6;
}
.steps__cta {
  width: 100%;
  max-width: 300px;
}
.steps__cta--min-lg {
  display: none;
}
@media screen and (min-width: 1080px) {
  .steps__cta--min-lg {
    display: block;
  }
}
.steps__cta--max-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .steps__cta--max-lg {
    display: none;
  }
}
.steps__cta-button {
  width: 100%;
}
.steps__cta div {
  font-size: 18px;
  line-height: 140%;
  color: #d7d7d7;
  margin-top: 20px;
}
.effects__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .effects__inner {
    padding: 60px 0;
  }
}
.effects__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .effects__title {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .effects__title {
    margin-left: 51px;
  }
}
.effects__cards,
.effects__cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .effects__cards-col:last-of-type {
    margin-top: 57px;
  }
}
@media screen and (min-width: 768px) {
  .effects__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.effects__card {
  border-radius: 12px;
  padding: 25px 25px 50px;
  background: #0f0f0f;
}
@media screen and (min-width: 768px) {
  .effects__card {
    min-height: 255px;
    padding-bottom: 0;
  }
}
.effects__card-number {
  color: #616161;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .effects__card-number {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.effects__card-title {
  margin-bottom: 40px;
}
.effects__card-text {
  color: #a6a6a6;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.effects__card-icon {
  display: flex;
  width: 20px;
  height: 20px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAASBJREFUeAHtUsuRgkAQnRms4moIbARrCLsRuHukoGqZDNgI1AjUCLjwORqCGoGGgBlwhAPge5ZjKSe4eLB8VU0PPa9fdb8aId54fUh+oiga27a9lVL+uq6bDxHIssxp23ZTVdW31rpQLPKAVOBiKYZjxt6rhlCmCrF/pJ8kSeY9hQS56AswnTa1m6DneUdcaqw96yNKDrnoCTFdbuqyS4zjOFRKcXWS2LQ3vtIv/E/rug6QJxTDIOv7/lFX0LKsTxBzxA5NXMlJ0/RyhzODXq0QY9x/IT8IPkyIxhBpCU8+zBpYbcLVKNA0TeD7/ol1vAwHL+OA2gK1leh6eMW06wm9hWCByI0YQQ7FYM+fGAp4FzH6cEd9SGVZLpAK8cZTcAY0MZSMcWgeYQAAAABJRU5ErkJggg==);
  background-size: contain;
  border: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .effects__card-icon {
    width: 40px;
    height: 40px;
  }
}
.effects__card--result {
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media (hover: hover) {
  .effects__card--result:hover:not(.focus-visible) .effects__card-icon {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAVdJREFUeAHtUsttg0AQ5ROBuNFBSAdJB7iDRFz4CBkqiF2BoQOnAhwJxAkZKkhSQVKC0wFHOAB54yxopQQrx1jySKuFmXlv3syOIFzs35k4F0iSRNc0bTkMwy1+DfLhu8ZViqL45jjO4U+ERKQoygqgR0ZSSpJ0BPd9b8BvUgH4Y8/zopOEeZ4bAO0B0ruuW/u+Xwq/WJZlAXI2pBjFHni1V3ziSNa27SIMwwPfOlNbERjKdvC/qqr6QhiE7n4oRNUIZEueDIpNkBCgZoQ6rgUIP1gxA6TvwG1RKCafNKqgFvAZjWSMIMHZuq57Qwc5O5z9GKdcxNdQuSKOiRABmsU9QM/8PIXv162mdkTxiXxFUVyPPmpfluWAOCZCMtu2K4GzpmkooUZ1nZuxSbdlWZ98Lo+d3UOyNE1pfTZQX7IdDGgEUBXPYU4SkrEVoVc+LjU/loudiX0BnYiv6xvWWYcAAAAASUVORK5CYII=);
  }
  .effects__card--result:hover:not(.focus-visible) > div {
    background: transparent;
  }
}
@media (hover: none) {
  .effects__card--result:focus-within > div {
    background: transparent;
  }
}
.effects__card--result > div {
  height: 100%;
  min-height: 129px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  background-color: #0f0f0f;
  transition: all 0.3s ease-in-out;
}
.l-massages__inner {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .l-massages__inner {
    padding: 60px 0;
  }
}
.l-massages__heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-massages__heading {
    margin-bottom: 50px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .l-massages__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
.l-massages__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .l-massages__cards {
    display: none;
  }
}
.l-massages__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 25px 25px 50px;
  background: #0f0f0f;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-massages__card {
    padding: 50px;
  }
}
.l-massages__card-number {
  color: #616161;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l-massages__card-number {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.l-massages__card-title {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-massages__card-title {
    margin-bottom: 37px;
  }
}
.l-massages__card-text {
  color: #a6a6a6;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-massages__card-text {
    font-size: 18px;
  }
}
.l-massages__card-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 40px;
}
.l-massages__card-details-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #a6a6a6;
}
.l-massages__card-details-sesion {
  color: #fcfcfc;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.l-massages__card-details-time {
  color: #a6a6a6;
}
.l-massages__card-details-price {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 2px;
  color: #d7d7d7;
  font-size: 18px;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .l-massages__card-details-price {
    font-size: 24px;
  }
}
.l-massages__card-details-old-price {
  color: #616161;
  font-size: 16px;
  line-height: 130%;
  text-decoration: line-through;
}
.l-massages__card-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.l-massages__cta {
  display: flex;
  border-radius: 12px;
  min-height: 375px;
  background-size: cover;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .l-massages__cta {
    min-height: 626px;
    padding: 50px;
    align-items: end;
  }
}
@media screen and (min-width: 1080px) {
  .l-massages__cta {
    min-height: 100%;
  }
}
.l-massages__wrapper {
  display: none;
}
@media screen and (min-width: 1080px) {
  .l-massages__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .l-massages__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-massages__swiper {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .l-massages__swiper {
    grid-column: span 2;
  }
}
.l-massages__swiper-nav {
  display: none;
}
@media screen and (min-width: 1080px) {
  .l-massages__swiper-nav {
    display: flex;
    width: fit-content;
  }
}
.l-popup-content {
  padding: 60px 20px 25px;
  color: #080808;
  max-width: 570px;
}
@media screen and (min-width: 768px) {
  .l-popup-content {
    padding: 60px 40px 48px;
  }
}
.l-popup-content__text {
  margin-bottom: 40px;
}
.l-popup-content h2,
.l-popup-content h3,
.l-popup-content h4,
.l-popup-content h5,
.l-popup-content h6 {
  color: #000;
  font-weight: 500;
  font-size: 26px;
  line-height: 80%;
  margin: 0 0 20px;
  padding-right: 40px;
}
@media screen and (min-width: 768px) {
  .l-popup-content h2,
  .l-popup-content h3,
  .l-popup-content h4,
  .l-popup-content h5,
  .l-popup-content h6 {
    font-size: 30px;
    line-height: 120%;
  }
}
.l-popup-content ul,
.l-popup-content ol {
  margin: 0 0 20px;
  padding-left: 1.5rem;
}
.l-popup-content p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}
.l-popup-content__button {
  width: 100%;
}
.l-cta {
  position: relative;
  background-size: cover;
}
.l-cta:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #080808, #08080808 25%, #080808);
}
.l-cta__inner {
  z-index: 0;
  position: relative;
  padding: 70px 0 88px;
}
@media screen and (min-width: 768px) {
  .l-cta__inner {
    padding: 117px 0 88px;
  }
}
.l-cta__card {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1063px;
  margin: 0 auto;
  padding: 25px;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: #0f0f0f99;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .l-cta__card {
    padding: 58px 40px;
  }
}
@media screen and (min-width: 1080px) {
  .l-cta__card {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: end;
    gap: 80px;
  }
}
.l-cta__card-title {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-cta__card-title {
    margin-bottom: 50px;
  }
  .l-cta__card-title span:last-of-type {
    margin-left: 71px !important;
  }
}
@media screen and (min-width: 1440px) {
  .l-cta__card-title span:last-of-type {
    margin-left: 175px !important;
  }
}
.l-cta__card-text {
  color: #fcfcfc;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .l-cta__card-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    margin-left: 71px;
  }
}
@media screen and (min-width: 1440px) {
  .l-cta__card-text {
    margin-left: 175px;
  }
}
.l-cta__action {
  display: flex;
  flex-direction: column;
}
.l-cta__price {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
  margin-left: auto;
  margin-bottom: 12px;
  color: #d7d7d7;
  font-size: 18px;
  line-height: 100%;
}
.l-cta__old-price {
  text-decoration: line-through;
  color: #616161;
}
.l-cta__button {
  min-width: 260px;
}
.l-finisher__inner {
  padding: 50px 0 100px;
}
@media screen and (min-width: 768px) {
  .l-finisher__inner {
    padding: 60px 0 120px;
  }
}
.l-finisher__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-finisher__title {
    margin-left: 46px;
  }
}
@media screen and (min-width: 768px) {
  .l-finisher__title {
    margin-bottom: 50px;
    margin-left: 145px;
  }
}
@media screen and (min-width: 1440px) {
  .l-finisher__title {
    margin-left: 153px;
  }
}
@media screen and (min-width: 1080px) {
  .l-finisher__content-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 53px;
  }
}
.l-finisher__content-wrapper img {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 1.32;
  object-fit: cover;
  margin-right: 53px;
  border-radius: 12px;
}
@media screen and (min-width: 1080px) {
  .l-finisher__content-wrapper img {
    display: block;
  }
}
.l-finisher__content {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-finisher__content {
    margin-bottom: 30px;
  }
}
.l-finisher__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #d7d7d7;
}
@media screen and (min-width: 768px) {
  .l-finisher__content p {
    font-size: 18px;
    line-height: 140%;
  }
}
.l-finisher__content p:not(:first-child) {
  margin-top: 20px;
}
.l-finisher__content p:has(em) {
  padding: 10px 0 10px 20px;
  border-left: 1px solid #a6a6a6;
}
.l-finisher__content em {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-finisher__content em {
    font-size: 20px;
  }
}
.l-finisher__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  border-radius: 12px;
  padding: 25px;
  background-color: #0f0f0f;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .l-finisher__cta {
    padding: 40px;
    margin-bottom: 50px;
  }
}
.l-finisher__cta-button {
  min-width: 260px;
}
.l-finisher__other-title {
  margin-bottom: 40px;
}
.l-finisher__other-cards {
  display: flex;
  gap: 15px;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .l-finisher__other-cards {
    flex-wrap: wrap;
    overflow: hidden;
  }
}
.l-finisher__other-card {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: Federov2-Regular, Arial, sans-serif;
  color: #fcfcfc;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 25px;
  max-width: 280px;
  background-color: #0f0f0f;
}
@media (hover: hover) {
  .l-finisher__other-card:hover svg {
    transform: rotate(45deg);
  }
}
.l-finisher__other-card:focus-visible svg {
  transform: rotate(45deg);
}
.l-finisher__other-card svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1440px) {
  .l-finisher__other-card {
    max-width: max-content;
  }
}
.page-home,
.page-404 {
  padding: 0;
}
.page-404__inner {
  position: relative;
  padding: 100px 0 50px;
}
@media screen and (min-width: 768px) {
  .page-404__inner {
    padding: 115px 0 75px;
  }
}
@media screen and (min-width: 1080px) {
  .page-404__inner {
    padding: 125px 0 75px;
  }
}
.page-404__title {
  font-family: Federov2-Regular, Arial, sans-serif;
  font-size: 197px;
  line-height: 140%;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-404__title {
    font-size: 395px;
  }
}
@media screen and (min-width: 1080px) {
  .page-404__title {
    font-size: 500px;
    line-height: 1;
  }
}
.page-404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: absolute;
  top: 285px;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-404__container {
    top: 305px;
    gap: 130px;
  }
}
@media screen and (min-width: 1080px) {
  .page-404__container {
    top: 290px;
    gap: 140px;
  }
}
.page-404__card {
  -webkit-backdrop-filter: blur(70px);
  backdrop-filter: blur(70px);
  background: #30303099;
  border-radius: 12px;
  padding: 20px;
  max-width: 414px;
}
@media screen and (min-width: 768px) {
  .page-404__card {
    padding: 24px;
  }
}
.page-404__text {
  text-align: center;
  margin: 0;
  font-size: 14px;
  line-height: 130%;
}
.page-404__text:first-of-type {
  max-width: 332px;
  margin: 0 auto;
}
.page-404__text:not(:last-of-type) {
  margin-bottom: 10px;
}
.page-404__text a {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page-404__text {
    font-size: 16px;
  }
  .page-404__text:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.page-404__home-button {
  min-width: 233px;
}
.page-privacy__content-inner {
  padding: 50px 0;
  color: #080808;
}
@media screen and (min-width: 768px) {
  .page-privacy__content-inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 1440px) {
  .page-privacy__content-inner {
    padding-left: 320px;
    width: 792px;
  }
}
.page-privacy__content-title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .page-privacy__content-title {
    margin-bottom: 50px;
  }
}
.page-privacy__content-text {
  white-space: pre-wrap;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}
.page-privacy__content-text p {
  margin-top: 0;
}
@media screen and (min-width: 1440px) {
  .page-privacy__content-text {
    width: 792px;
  }
}
.page-thanks__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  color: #080808;
  margin: 0 auto;
  max-width: 582px;
}
@media screen and (min-width: 768px) {
  .page-thanks__content-inner {
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1080px) {
  .page-thanks__content-inner {
    max-width: 880px;
  }
}
.page-thanks__content-image {
  margin-bottom: 10px;
  max-width: 541px;
}
.page-thanks__content-title {
  margin-bottom: 24px;
  text-align: center;
}
.page-thanks__content-text {
  max-width: 220px;
  text-align: center;
  text-transform: none;
}
.page-school__inner {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .page-school__inner {
    padding: 75px 0;
  }
}
@media screen and (min-width: 768px) {
  .page-school__inner {
    gap: 50px;
  }
}
.page-school img {
  max-width: 203px;
  aspect-ratio: 1.05;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .page-school img {
    max-width: 260px;
  }
}
.page-school__title {
  text-align: center;
  max-width: 476px;
  font-size: 32px;
}
.page-landing {
  padding: 0;
}
@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translateZ(0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.master-preview__position {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 130%;
  color: #a6a6a6;
  font-weight: 400;
}
.footer__map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcfcfc;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  background-color: #0f0f0f;
  border: 1px solid #2f2f2f;
  transition:
    color 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
}
.footer__map-link:hover {
  color: #a6a6a6;
  background-color: #191919;
}
.contacts-map__map-link {
  margin-top: 24px;
}
