@charset "UTF-8";

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src:
    url("../fonts/Gilroy-Medium.woff2") format("woff2"),
    url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src:
    url("../fonts/Gilroy-Regular.woff2") format("woff2"),
    url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src:
    url("../fonts/Gilroy-RegularItalic.woff2") format("woff2"),
    url("../fonts/Gilroy-RegularItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src:
    url("../fonts/Gilroy-SemiBold.woff2") format("woff2"),
    url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  font-display: swap;
  src:
    url("../fonts/Gilroy-Light.woff2") format("woff2"),
    url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #fff;
  line-height: 1;
  font-family: "Gilroy";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Gilroy";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  overflow: auto;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.wrapper {
  background-color: #001131;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*="__container"] {
  max-width: 95rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
}

@supports (padding-right: clamp(0.625rem, 0.15625rem + 2.34375vw, 2.5rem)) {
  [class*="__container"] {
    padding-right: clamp(0.625rem, 0.15625rem + 2.34375vw, 2.5rem);
  }
}

@supports not (padding-right: clamp(0.625rem, 0.15625rem + 2.34375vw, 2.5rem)) {
  [class*="__container"] {
    padding-right: calc(0.625rem + 1.875 * (100vw - 20rem) / 80);
  }
}

@supports (padding-left: clamp(0.625rem, 0.15625rem + 2.34375vw, 2.5rem)) {
  [class*="__container"] {
    padding-left: clamp(0.625rem, 0.15625rem + 2.34375vw, 2.5rem);
  }
}

@supports not (padding-left: clamp(0.625rem, 0.15625rem + 2.34375vw, 2.5rem)) {
  [class*="__container"] {
    padding-left: calc(0.625rem + 1.875 * (100vw - 20rem) / 80);
  }
}

[class*="-ibg"] {
  position: relative;
}

[class*="-ibg"] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

[class*="-ibg_contain"] img {
  -o-object-fit: contain;
  object-fit: contain;
}

.button {
  position: relative;
  z-index: 5;
  padding: 0.5rem 1.5rem;
  color: #001131;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ebddc8), to(#dbc095));
  background: linear-gradient(180deg, #ebddc8 0%, #dbc095 100%);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(220, 184, 122, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(220, 184, 122, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@supports (font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem)) {
  .button {
    font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem);
  }
}

@supports not (font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem)) {
  .button {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / 80);
  }
}

.button_transp {
  color: #ebddc8;
  border: 2px solid #ebddc8;
  background: transparent;
}

.header {
  -webkit-transition: top 1s ease;
  transition: top 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid #424141;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@supports (padding-top: clamp(0.625rem, 0.3125rem + 1.5625vw, 1.875rem)) {
  .header__container {
    padding-top: clamp(0.625rem, 0.3125rem + 1.5625vw, 1.875rem);
  }
}

@supports not (padding-top: clamp(0.625rem, 0.3125rem + 1.5625vw, 1.875rem)) {
  .header__container {
    padding-top: calc(0.625rem + 1.25 * (100vw - 20rem) / 80);
  }
}

@supports (padding-bottom: clamp(0.3125rem, -0.078125rem + 1.953125vw, 1.875rem)) {
  .header__container {
    padding-bottom: clamp(0.3125rem, -0.078125rem + 1.953125vw, 1.875rem);
  }
}

@supports not (padding-bottom: clamp(0.3125rem, -0.078125rem + 1.953125vw, 1.875rem)) {
  .header__container {
    padding-bottom: calc(0.3125rem + 1.5625 * (100vw - 20rem) / 80);
  }
}

@supports (width: clamp(5rem, 4.46875rem + 2.65625vw, 7.125rem)) {
  .header__logo img {
    width: clamp(5rem, 4.46875rem + 2.65625vw, 7.125rem);
  }
}

@supports not (width: clamp(5rem, 4.46875rem + 2.65625vw, 7.125rem)) {
  .header__logo img {
    width: calc(5rem + 2.125 * (100vw - 20rem) / 80);
  }
}

@supports (height: clamp(2.3125rem, 2.140625rem + 0.859375vw, 3rem)) {
  .header__logo img {
    height: clamp(2.3125rem, 2.140625rem + 0.859375vw, 3rem);
  }
}

@supports not (height: clamp(2.3125rem, 2.140625rem + 0.859375vw, 3rem)) {
  .header__logo img {
    height: calc(2.3125rem + 0.6875 * (100vw - 20rem) / 80);
  }
}

.header._header-scroll {
  position: fixed;
  top: -200%;
}

.header._header-show {
  -webkit-transition: top 0.7s ease;
  transition: top 0.7s ease;
  top: 0;
}

.menu-open .page {
  -webkit-filter: blur(4px);
  filter: blur(4px);
}

.menu-open .menu__body {
  left: 0;
}

.menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: 500;
}

@supports (gap: clamp(1.5rem, 1.09375rem + 2.03125vw, 3.125rem)) {
  .menu__list {
    gap: clamp(1.5rem, 1.09375rem + 2.03125vw, 3.125rem);
  }
}

@supports not (gap: clamp(1.5rem, 1.09375rem + 2.03125vw, 3.125rem)) {
  .menu__list {
    gap: calc(1.5rem + 1.625 * (100vw - 20rem) / 80);
  }
}

.menu__link {
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-align: center;
}

.menu__link._watcher-view {
  color: #d7a14b;
}

.icon-menu {
  display: none;
}

.footer {
  background-color: #000;
}

@supports (padding-top: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.5rem)) {
  .footer {
    padding-top: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.5rem);
  }
}

@supports not (padding-top: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.5rem)) {
  .footer {
    padding-top: calc(1.25rem + 1.25 * (100vw - 20rem) / 80);
  }
}

@supports (padding-bottom: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem)) {
  .footer {
    padding-bottom: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem);
  }
}

@supports not (padding-bottom: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem)) {
  .footer {
    padding-bottom: calc(1rem + 0.25 * (100vw - 20rem) / 80);
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.25rem;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@supports (width: clamp(5rem, 4.46875rem + 2.65625vw, 7.125rem)) {
  .footer__logo img {
    width: clamp(5rem, 4.46875rem + 2.65625vw, 7.125rem);
  }
}

@supports not (width: clamp(5rem, 4.46875rem + 2.65625vw, 7.125rem)) {
  .footer__logo img {
    width: calc(5rem + 2.125 * (100vw - 20rem) / 80);
  }
}

@supports (height: clamp(2.3125rem, 2.140625rem + 0.859375vw, 3rem)) {
  .footer__logo img {
    height: clamp(2.3125rem, 2.140625rem + 0.859375vw, 3rem);
  }
}

@supports not (height: clamp(2.3125rem, 2.140625rem + 0.859375vw, 3rem)) {
  .footer__logo img {
    height: calc(2.3125rem + 0.6875 * (100vw - 20rem) / 80);
  }
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@supports (gap: clamp(1rem, 0.875rem + 0.625vw, 1.5rem)) {
  .footer__social {
    gap: clamp(1rem, 0.875rem + 0.625vw, 1.5rem);
  }
}

@supports not (gap: clamp(1rem, 0.875rem + 0.625vw, 1.5rem)) {
  .footer__social {
    gap: calc(1rem + 0.5 * (100vw - 20rem) / 80);
  }
}

.footer__port {
  text-decoration: underline !important;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-policy {
  text-decoration: underline !important;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.main-block {
  position: relative;
}

.main-block img {
  position: absolute;
}

.no-webp .main-block__bg {
  background-image: url("../img/main-block/bg.jpg");
}

.main-block__bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
  min-height: 43.75rem;
  height: 45vw;
}

.main-block__gr {
  position: absolute;
  left: 0;
  bottom: 0rem;
  width: 100vw;
  height: 31.25rem;
}
@media (min-width: 1330px) {
  .main-block__gr {
    bottom: -80px;
  }
}

.main-block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
}

.main-block__content {
  position: relative;
  z-index: 10;
  padding: 1.5625rem;
  max-width: 53.125rem;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@supports (padding-top: clamp(6.25rem, 3.4375rem + 14.0625vw, 17.5rem)) {
  .main-block__content {
    padding-top: clamp(6.25rem, 3.4375rem + 14.0625vw, 17.5rem);
  }
}

@supports not (padding-top: clamp(6.25rem, 3.4375rem + 14.0625vw, 17.5rem)) {
  .main-block__content {
    padding-top: calc(6.25rem + 11.25 * (100vw - 20rem) / 80);
  }
}

.main-block__content._watcher-view {
  opacity: 1;
}

.main-block__title {
  text-transform: uppercase;
  font-weight: 600;
}

@supports (font-size: clamp(1.5rem, 0.9375rem + 2.8125vw, 3.75rem)) {
  .main-block__title {
    font-size: clamp(1.5rem, 0.9375rem + 2.8125vw, 3.75rem);
  }
}

@supports not (font-size: clamp(1.5rem, 0.9375rem + 2.8125vw, 3.75rem)) {
  .main-block__title {
    font-size: calc(1.5rem + 2.25 * (100vw - 20rem) / 80);
  }
}

.main-block__title_2 {
  margin-top: 0.5rem;
  color: #dcb87a;
}

.main-block__title:not(:last-child) {
  margin-bottom: 1rem;
}

.main-block__subtitle {
  text-transform: uppercase;
  font-weight: 400;
}

@supports (font-size: clamp(1rem, 0.875rem + 0.625vw, 1.5rem)) {
  .main-block__subtitle {
    font-size: clamp(1rem, 0.875rem + 0.625vw, 1.5rem);
  }
}

@supports not (font-size: clamp(1rem, 0.875rem + 0.625vw, 1.5rem)) {
  .main-block__subtitle {
    font-size: calc(1rem + 0.5 * (100vw - 20rem) / 80);
  }
}

@supports (margin-bottom: clamp(1.25rem, 0.625rem + 3.125vw, 3.75rem)) {
  .main-block__subtitle {
    margin-bottom: clamp(1.25rem, 0.625rem + 3.125vw, 3.75rem);
  }
}

@supports not (margin-bottom: clamp(1.25rem, 0.625rem + 3.125vw, 3.75rem)) {
  .main-block__subtitle {
    margin-bottom: calc(1.25rem + 2.5 * (100vw - 20rem) / 80);
  }
}

.main-block__actions {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@supports (gap: clamp(1rem, 0.75rem + 1.25vw, 2rem)) {
  .main-block__actions {
    gap: clamp(1rem, 0.75rem + 1.25vw, 2rem);
  }
}

@supports not (gap: clamp(1rem, 0.75rem + 1.25vw, 2rem)) {
  .main-block__actions {
    gap: calc(1rem + 1 * (100vw - 20rem) / 80);
  }
}

.main-block__btn {
  position: relative;
  z-index: 10;
}

.main-block__micro {
  position: relative;
  left: 3%;
  opacity: 0.8;
}

.main-block__micro-div {
  position: absolute;
  height: 100vh;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-animation: rotateX 4s infinite;
  animation: rotateX 4s infinite;
  left: -3%;
}

@supports (width: clamp(18.75rem, -1.1363636364rem + 63.6363636364vw, 62.5rem)) {
  .main-block__micro-div {
    width: clamp(18.75rem, -1.1363636364rem + 63.6363636364vw, 62.5rem);
  }
}

@supports not (width: clamp(18.75rem, -1.1363636364rem + 63.6363636364vw, 62.5rem)) {
  .main-block__micro-div {
    width: calc(18.75rem + 43.75 * (100vw - 31.25rem) / 68.75);
  }
}

@supports (width: clamp(18.75rem, -1.1363636364rem + 63.6363636364vw, 62.5rem)) {
  .main-block__micro {
    width: clamp(18.75rem, -1.1363636364rem + 63.6363636364vw, 62.5rem);
  }
}

@supports not (width: clamp(18.75rem, -1.1363636364rem + 63.6363636364vw, 62.5rem)) {
  .main-block__micro {
    width: calc(18.75rem + 43.75 * (100vw - 31.25rem) / 68.75);
  }
}

.main-block__bgl {
  top: 5%;
  left: 0;
}

@supports (width: clamp(6.25rem, 1.09375rem + 25.78125vw, 26.875rem)) {
  .main-block__bgl {
    width: clamp(6.25rem, 1.09375rem + 25.78125vw, 26.875rem);
  }
}

@supports not (width: clamp(6.25rem, 1.09375rem + 25.78125vw, 26.875rem)) {
  .main-block__bgl {
    width: calc(6.25rem + 20.625 * (100vw - 20rem) / 80);
  }
}

.main-block__bgr {
  top: 5%;
  right: 0;
}

@supports (width: clamp(8.125rem, 2.96875rem + 25.78125vw, 28.75rem)) {
  .main-block__bgr {
    width: clamp(8.125rem, 2.96875rem + 25.78125vw, 28.75rem);
  }
}

@supports not (width: clamp(8.125rem, 2.96875rem + 25.78125vw, 28.75rem)) {
  .main-block__bgr {
    width: calc(8.125rem + 20.625 * (100vw - 20rem) / 80);
  }
}

.main-block__bgrt {
  top: 5%;
  right: 0;
}

@supports (width: clamp(9.375rem, 3.59375rem + 28.90625vw, 32.5rem)) {
  .main-block__bgrt {
    width: clamp(9.375rem, 3.59375rem + 28.90625vw, 32.5rem);
  }
}

@supports not (width: clamp(9.375rem, 3.59375rem + 28.90625vw, 32.5rem)) {
  .main-block__bgrt {
    width: calc(9.375rem + 23.125 * (100vw - 20rem) / 80);
  }
}

.main-block__bgt {
  top: 0%;
  left: 10%;
}

@supports (width: clamp(12.5rem, 3.125rem + 46.875vw, 50rem)) {
  .main-block__bgt {
    width: clamp(12.5rem, 3.125rem + 46.875vw, 50rem);
  }
}

@supports not (width: clamp(12.5rem, 3.125rem + 46.875vw, 50rem)) {
  .main-block__bgt {
    width: calc(12.5rem + 37.5 * (100vw - 20rem) / 80);
  }
}

.js-spanize-0,
.js-spanize-1,
.js-spanize-2,
.js-spanize-4,
.js-spanize-3 {
  -webkit-transform: translate(0, -300%);
  -ms-transform: translate(0, -300%);
  transform: translate(0, -300%);
  text-transform: uppercase;
  opacity: 0;
  -webkit-transition: -webkit-transform 4s ease;
  transition: -webkit-transform 4s ease;
  transition: transform 4s ease;
  transition:
    transform 4s ease,
    -webkit-transform 4s ease;
}

.js-spanize-0.open,
.js-spanize-1.open,
.js-spanize-2.open,
.js-spanize-4.open,
.js-spanize-3.open {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 4s ease;
  transition: -webkit-transform 4s ease;
  transition: transform 4s ease;
  transition:
    transform 4s ease,
    -webkit-transform 4s ease;
}

.js-spanize-3 {
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.mast__title {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.mast__title span {
  -webkit-animation: letter-glow 0.7s 0s ease both;
  animation: letter-glow 0.7s 0s ease both;
}

.mast__title span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.mast__title span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.mast__title span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.mast__title span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.mast__title span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.mast__title span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.mast__title span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.mast__title span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.mast__title span:nth-child(9) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.mast__title span:nth-child(10) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.mast__title span:nth-child(11) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.mast__title span:nth-child(12) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.mast__title span:nth-child(13) {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.mast__title span:nth-child(14) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.mast__title span:nth-child(15) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.mast__title span:nth-child(16) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.mast__title span:nth-child(17) {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}

.mast__title span:nth-child(18) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.mast__title span:nth-child(19) {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}

.mast__title span:nth-child(20) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.mast__title span:nth-child(21) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

.mast__title span:nth-child(22) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.mast__title span:nth-child(23) {
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.mast__title span:nth-child(24) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.mast__title span:nth-child(25) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.mast__text span {
  -webkit-animation: letter-glow 0.7s 0s ease both;
  animation: letter-glow 0.7s 0s ease both;
}

.mast__text span:nth-child(1) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.mast__text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.mast__text span:nth-child(3) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.mast__text span:nth-child(4) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.mast__text span:nth-child(5) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.mast__text span:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.mast__text span:nth-child(7) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.mast__text span:nth-child(8) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.mast__text span:nth-child(9) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

.mast__text span:nth-child(10) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.mast__text span:nth-child(11) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.mast__text span:nth-child(12) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.mast__text span:nth-child(13) {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.mast__text span:nth-child(14) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.mast__text span:nth-child(15) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.mast__text span:nth-child(16) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.mast__text span:nth-child(17) {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}

.mast__text span:nth-child(18) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.mast__text span:nth-child(19) {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}

.mast__text span:nth-child(20) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.mast__text span:nth-child(21) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

.mast__text span:nth-child(22) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.mast__text span:nth-child(23) {
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.mast__text span:nth-child(24) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.mast__text span:nth-child(25) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.mast__text span:nth-child(26) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.mast__text span:nth-child(27) {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s;
}

.mast__text span:nth-child(28) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.mast__text span:nth-child(29) {
  -webkit-animation-delay: 1.45s;
  animation-delay: 1.45s;
}

.mast__text span:nth-child(30) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.mast__text span:nth-child(31) {
  -webkit-animation-delay: 1.55s;
  animation-delay: 1.55s;
}

.mast__text span:nth-child(32) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.mast__text span:nth-child(33) {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}

.mast__text span:nth-child(34) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.mast__text span:nth-child(35) {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.mast__text span:nth-child(36) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.mast__text span:nth-child(37) {
  -webkit-animation-delay: 1.85s;
  animation-delay: 1.85s;
}

.mast__text span:nth-child(38) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.mast__text span:nth-child(39) {
  -webkit-animation-delay: 1.95s;
  animation-delay: 1.95s;
}

.mast__text span:nth-child(40) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.mast__text span:nth-child(41) {
  -webkit-animation-delay: 2.05s;
  animation-delay: 2.05s;
}

.mast__text span:nth-child(42) {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.mast__text span:nth-child(43) {
  -webkit-animation-delay: 2.15s;
  animation-delay: 2.15s;
}

.mast__text span:nth-child(44) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.mast__text span:nth-child(45) {
  -webkit-animation-delay: 2.25s;
  animation-delay: 2.25s;
}

.mast__text span:nth-child(46) {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}

.mast__text span:nth-child(47) {
  -webkit-animation-delay: 2.35s;
  animation-delay: 2.35s;
}

.mast__text span:nth-child(48) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.mast__text span:nth-child(49) {
  -webkit-animation-delay: 2.45s;
  animation-delay: 2.45s;
}

.mast__text span:nth-child(50) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.mast__text span:nth-child(51) {
  -webkit-animation-delay: 2.55s;
  animation-delay: 2.55s;
}

.mast__text span:nth-child(52) {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}

.mast__text span:nth-child(53) {
  -webkit-animation-delay: 2.65s;
  animation-delay: 2.65s;
}

.mast__text span:nth-child(54) {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

.mast__text span:nth-child(55) {
  -webkit-animation-delay: 2.75s;
  animation-delay: 2.75s;
}

.mast__text span:nth-child(56) {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

.mast__text span:nth-child(57) {
  -webkit-animation-delay: 2.85s;
  animation-delay: 2.85s;
}

.mast__text span:nth-child(58) {
  -webkit-animation-delay: 2.9s;
  animation-delay: 2.9s;
}

.mast__text span:nth-child(59) {
  -webkit-animation-delay: 2.95s;
  animation-delay: 2.95s;
}

.mast__text span:nth-child(60) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.mast__text span:nth-child(61) {
  -webkit-animation-delay: 3.05s;
  animation-delay: 3.05s;
}

.mast__text span:nth-child(62) {
  -webkit-animation-delay: 3.1s;
  animation-delay: 3.1s;
}

.mast__text span:nth-child(63) {
  -webkit-animation-delay: 3.15s;
  animation-delay: 3.15s;
}

.mast__text span:nth-child(64) {
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}

.mast__text span:nth-child(65) {
  -webkit-animation-delay: 3.25s;
  animation-delay: 3.25s;
}

.mast__text span:nth-child(66) {
  -webkit-animation-delay: 3.3s;
  animation-delay: 3.3s;
}

.mast__text span:nth-child(67) {
  -webkit-animation-delay: 3.35s;
  animation-delay: 3.35s;
}

.mast__text span:nth-child(68) {
  -webkit-animation-delay: 3.4s;
  animation-delay: 3.4s;
}

.mast__text span:nth-child(69) {
  -webkit-animation-delay: 3.45s;
  animation-delay: 3.45s;
}

.mast__text span:nth-child(70) {
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
}

.mast__text span:nth-child(71) {
  -webkit-animation-delay: 3.55s;
  animation-delay: 3.55s;
}

.mast__text span:nth-child(72) {
  -webkit-animation-delay: 3.6s;
  animation-delay: 3.6s;
}

.mast__text span:nth-child(73) {
  -webkit-animation-delay: 3.65s;
  animation-delay: 3.65s;
}

.mast__text span:nth-child(74) {
  -webkit-animation-delay: 3.7s;
  animation-delay: 3.7s;
}

.mast__text span:nth-child(75) {
  -webkit-animation-delay: 3.75s;
  animation-delay: 3.75s;
}

.mast__text span:nth-child(76) {
  -webkit-animation-delay: 3.8s;
  animation-delay: 3.8s;
}

.mast__text span:nth-child(77) {
  -webkit-animation-delay: 3.85s;
  animation-delay: 3.85s;
}

.mast__text span:nth-child(78) {
  -webkit-animation-delay: 3.9s;
  animation-delay: 3.9s;
}

.mast__text span:nth-child(79) {
  -webkit-animation-delay: 3.95s;
  animation-delay: 3.95s;
}

.mast__text span:nth-child(80) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.mast__text span:nth-child(81) {
  -webkit-animation-delay: 4.05s;
  animation-delay: 4.05s;
}

.mast__text span:nth-child(82) {
  -webkit-animation-delay: 4.1s;
  animation-delay: 4.1s;
}

.mast__text span:nth-child(83) {
  -webkit-animation-delay: 4.15s;
  animation-delay: 4.15s;
}

.mast__text span:nth-child(84) {
  -webkit-animation-delay: 4.2s;
  animation-delay: 4.2s;
}

.mast__text span:nth-child(85) {
  -webkit-animation-delay: 4.25s;
  animation-delay: 4.25s;
}

.mast__text span:nth-child(86) {
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
}

.mast__text span:nth-child(87) {
  -webkit-animation-delay: 4.35s;
  animation-delay: 4.35s;
}

.mast__text span:nth-child(88) {
  -webkit-animation-delay: 4.4s;
  animation-delay: 4.4s;
}

.mast__text span:nth-child(89) {
  -webkit-animation-delay: 4.45s;
  animation-delay: 4.45s;
}

.mast__text span:nth-child(90) {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}

.mast__text span:nth-child(91) {
  -webkit-animation-delay: 4.55s;
  animation-delay: 4.55s;
}

.mast__text span:nth-child(92) {
  -webkit-animation-delay: 4.6s;
  animation-delay: 4.6s;
}

.mast__text span:nth-child(93) {
  -webkit-animation-delay: 4.65s;
  animation-delay: 4.65s;
}

.mast__text span:nth-child(94) {
  -webkit-animation-delay: 4.7s;
  animation-delay: 4.7s;
}

.mast__text span:nth-child(95) {
  -webkit-animation-delay: 4.75s;
  animation-delay: 4.75s;
}

.mast__text span:nth-child(96) {
  -webkit-animation-delay: 4.8s;
  animation-delay: 4.8s;
}

.mast__text span:nth-child(97) {
  -webkit-animation-delay: 4.85s;
  animation-delay: 4.85s;
}

.mast__text span:nth-child(98) {
  -webkit-animation-delay: 4.9s;
  animation-delay: 4.9s;
}

.mast__text span:nth-child(99) {
  -webkit-animation-delay: 4.95s;
  animation-delay: 4.95s;
}

.mast__text span:nth-child(100) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.mast__text span:nth-child(101) {
  -webkit-animation-delay: 5.05s;
  animation-delay: 5.05s;
}

.mast__text span:nth-child(102) {
  -webkit-animation-delay: 5.1s;
  animation-delay: 5.1s;
}

.mast__text span:nth-child(103) {
  -webkit-animation-delay: 5.15s;
  animation-delay: 5.15s;
}

.mast__text span:nth-child(104) {
  -webkit-animation-delay: 5.2s;
  animation-delay: 5.2s;
}

.mast__text span:nth-child(105) {
  -webkit-animation-delay: 5.25s;
  animation-delay: 5.25s;
}

.mast__text span:nth-child(106) {
  -webkit-animation-delay: 5.3s;
  animation-delay: 5.3s;
}

.mast__text span:nth-child(107) {
  -webkit-animation-delay: 5.35s;
  animation-delay: 5.35s;
}

.mast__text span:nth-child(108) {
  -webkit-animation-delay: 5.4s;
  animation-delay: 5.4s;
}

.mast__text span:nth-child(109) {
  -webkit-animation-delay: 5.45s;
  animation-delay: 5.45s;
}

.mast__text span:nth-child(110) {
  -webkit-animation-delay: 5.5s;
  animation-delay: 5.5s;
}

.mast__text span:nth-child(111) {
  -webkit-animation-delay: 5.55s;
  animation-delay: 5.55s;
}

.mast__text span:nth-child(112) {
  -webkit-animation-delay: 5.6s;
  animation-delay: 5.6s;
}

.mast__text span:nth-child(113) {
  -webkit-animation-delay: 5.65s;
  animation-delay: 5.65s;
}

.mast__text span:nth-child(114) {
  -webkit-animation-delay: 5.7s;
  animation-delay: 5.7s;
}

.mast__text span:nth-child(115) {
  -webkit-animation-delay: 5.75s;
  animation-delay: 5.75s;
}

.mast__text span:nth-child(116) {
  -webkit-animation-delay: 5.8s;
  animation-delay: 5.8s;
}

.mast__text span:nth-child(117) {
  -webkit-animation-delay: 5.85s;
  animation-delay: 5.85s;
}

.mast__text span:nth-child(118) {
  -webkit-animation-delay: 5.9s;
  animation-delay: 5.9s;
}

.mast__text span:nth-child(119) {
  -webkit-animation-delay: 5.95s;
  animation-delay: 5.95s;
}

.mast__text span:nth-child(120) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.mast__text span:nth-child(121) {
  -webkit-animation-delay: 6.05s;
  animation-delay: 6.05s;
}

.mast__text span:nth-child(122) {
  -webkit-animation-delay: 6.1s;
  animation-delay: 6.1s;
}

.mast__text span:nth-child(123) {
  -webkit-animation-delay: 6.15s;
  animation-delay: 6.15s;
}

.mast__text span:nth-child(124) {
  -webkit-animation-delay: 6.2s;
  animation-delay: 6.2s;
}

.mast__text span:nth-child(125) {
  -webkit-animation-delay: 6.25s;
  animation-delay: 6.25s;
}

.mast__text span:nth-child(126) {
  -webkit-animation-delay: 6.3s;
  animation-delay: 6.3s;
}

.mast__text span:nth-child(127) {
  -webkit-animation-delay: 6.35s;
  animation-delay: 6.35s;
}

.mast__text span:nth-child(128) {
  -webkit-animation-delay: 6.4s;
  animation-delay: 6.4s;
}

.mast__text span:nth-child(129) {
  -webkit-animation-delay: 6.45s;
  animation-delay: 6.45s;
}

.mast__text span:nth-child(130) {
  -webkit-animation-delay: 6.5s;
  animation-delay: 6.5s;
}

.mast__text span:nth-child(131) {
  -webkit-animation-delay: 6.55s;
  animation-delay: 6.55s;
}

.mast__text span:nth-child(132) {
  -webkit-animation-delay: 6.6s;
  animation-delay: 6.6s;
}

.mast__text span:nth-child(133) {
  -webkit-animation-delay: 6.65s;
  animation-delay: 6.65s;
}

.mast__text span:nth-child(134) {
  -webkit-animation-delay: 6.7s;
  animation-delay: 6.7s;
}

.mast__text span:nth-child(135) {
  -webkit-animation-delay: 6.75s;
  animation-delay: 6.75s;
}

.mast__text span:nth-child(136) {
  -webkit-animation-delay: 6.8s;
  animation-delay: 6.8s;
}

.mast__text span:nth-child(137) {
  -webkit-animation-delay: 6.85s;
  animation-delay: 6.85s;
}

.mast__text span:nth-child(138) {
  -webkit-animation-delay: 6.9s;
  animation-delay: 6.9s;
}

.mast__text span:nth-child(139) {
  -webkit-animation-delay: 6.95s;
  animation-delay: 6.95s;
}

.mast__text span:nth-child(140) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.mast__text span:nth-child(141) {
  -webkit-animation-delay: 7.05s;
  animation-delay: 7.05s;
}

.mast__text span:nth-child(142) {
  -webkit-animation-delay: 7.1s;
  animation-delay: 7.1s;
}

.mast__text span:nth-child(143) {
  -webkit-animation-delay: 7.15s;
  animation-delay: 7.15s;
}

.mast__text span:nth-child(144) {
  -webkit-animation-delay: 7.2s;
  animation-delay: 7.2s;
}

.mast__text span:nth-child(145) {
  -webkit-animation-delay: 7.25s;
  animation-delay: 7.25s;
}

.mast__text span:nth-child(146) {
  -webkit-animation-delay: 7.3s;
  animation-delay: 7.3s;
}

.mast__text span:nth-child(147) {
  -webkit-animation-delay: 7.35s;
  animation-delay: 7.35s;
}

.mast__text span:nth-child(148) {
  -webkit-animation-delay: 7.4s;
  animation-delay: 7.4s;
}

.mast__text span:nth-child(149) {
  -webkit-animation-delay: 7.45s;
  animation-delay: 7.45s;
}

.mast__text span:nth-child(150) {
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

.mast__text span:nth-child(151) {
  -webkit-animation-delay: 7.55s;
  animation-delay: 7.55s;
}

.mast__text span:nth-child(152) {
  -webkit-animation-delay: 7.6s;
  animation-delay: 7.6s;
}

.mast__text span:nth-child(153) {
  -webkit-animation-delay: 7.65s;
  animation-delay: 7.65s;
}

.mast__text span:nth-child(154) {
  -webkit-animation-delay: 7.7s;
  animation-delay: 7.7s;
}

.mast__text span:nth-child(155) {
  -webkit-animation-delay: 7.75s;
  animation-delay: 7.75s;
}

.mast__text span:nth-child(156) {
  -webkit-animation-delay: 7.8s;
  animation-delay: 7.8s;
}

.mast__text span:nth-child(157) {
  -webkit-animation-delay: 7.85s;
  animation-delay: 7.85s;
}

.mast__text span:nth-child(158) {
  -webkit-animation-delay: 7.9s;
  animation-delay: 7.9s;
}

.mast__text span:nth-child(159) {
  -webkit-animation-delay: 7.95s;
  animation-delay: 7.95s;
}

.mast__text span:nth-child(160) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.mast__text span:nth-child(161) {
  -webkit-animation-delay: 8.05s;
  animation-delay: 8.05s;
}

.mast__text span:nth-child(162) {
  -webkit-animation-delay: 8.1s;
  animation-delay: 8.1s;
}

.mast__text span:nth-child(163) {
  -webkit-animation-delay: 8.15s;
  animation-delay: 8.15s;
}

.mast__text span:nth-child(164) {
  -webkit-animation-delay: 8.2s;
  animation-delay: 8.2s;
}

.mast__text span:nth-child(165) {
  -webkit-animation-delay: 8.25s;
  animation-delay: 8.25s;
}

.mast__text span:nth-child(166) {
  -webkit-animation-delay: 8.3s;
  animation-delay: 8.3s;
}

.mast__text span:nth-child(167) {
  -webkit-animation-delay: 8.35s;
  animation-delay: 8.35s;
}

.mast__text span:nth-child(168) {
  -webkit-animation-delay: 8.4s;
  animation-delay: 8.4s;
}

.mast__text span:nth-child(169) {
  -webkit-animation-delay: 8.45s;
  animation-delay: 8.45s;
}

.mast__text span:nth-child(170) {
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}

.mast__text span:nth-child(171) {
  -webkit-animation-delay: 8.55s;
  animation-delay: 8.55s;
}

.mast__text span:nth-child(172) {
  -webkit-animation-delay: 8.6s;
  animation-delay: 8.6s;
}

.mast__text span:nth-child(173) {
  -webkit-animation-delay: 8.65s;
  animation-delay: 8.65s;
}

.mast__text span:nth-child(174) {
  -webkit-animation-delay: 8.7s;
  animation-delay: 8.7s;
}

.mast__text span:nth-child(175) {
  -webkit-animation-delay: 8.75s;
  animation-delay: 8.75s;
}

.mast__text span:nth-child(176) {
  -webkit-animation-delay: 8.8s;
  animation-delay: 8.8s;
}

.mast__text span:nth-child(177) {
  -webkit-animation-delay: 8.85s;
  animation-delay: 8.85s;
}

.mast__text span:nth-child(178) {
  -webkit-animation-delay: 8.9s;
  animation-delay: 8.9s;
}

.mast__text span:nth-child(179) {
  -webkit-animation-delay: 8.95s;
  animation-delay: 8.95s;
}

.mast__text span:nth-child(180) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

@-webkit-keyframes letter-glow {
  0% {
    color: #dcb87a;
    -webkit-transform: translate(0, 1000%);
    transform: translate(0, 1000%);
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }

  66% {
    color: #dcb87a;
    -webkit-transform: translate(0, 500%);
    transform: translate(0, 500%);
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }

  77% {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    opacity: 0.9;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@keyframes letter-glow {
  0% {
    color: #dcb87a;
    -webkit-transform: translate(0, 1000%);
    transform: translate(0, 1000%);
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }

  66% {
    color: #dcb87a;
    -webkit-transform: translate(0, 500%);
    transform: translate(0, 500%);
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }

  77% {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    opacity: 0.9;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}

@supports (padding-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .event {
    padding-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem);
  }
}

@supports not (padding-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .event {
    padding-top: calc(3.75rem + 3.75 * (100vw - 20rem) / 80);
  }
}

@supports (padding-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .event {
    padding-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem);
  }
}

@supports not (padding-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .event {
    padding-bottom: calc(3.75rem + 3.75 * (100vw - 20rem) / 80);
  }
}

.event__container {
  position: relative;
  z-index: 2;
}

.event__title {
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

@supports (font-size: clamp(1.25rem, 0.8125rem + 2.1875vw, 3rem)) {
  .event__title {
    font-size: clamp(1.25rem, 0.8125rem + 2.1875vw, 3rem);
  }
}

@supports not (font-size: clamp(1.25rem, 0.8125rem + 2.1875vw, 3rem)) {
  .event__title {
    font-size: calc(1.25rem + 1.75 * (100vw - 20rem) / 80);
  }
}

@supports (margin-bottom: clamp(1.25rem, 0.3125rem + 4.6875vw, 5rem)) {
  .event__title {
    margin-bottom: clamp(1.25rem, 0.3125rem + 4.6875vw, 5rem);
  }
}

@supports not (margin-bottom: clamp(1.25rem, 0.3125rem + 4.6875vw, 5rem)) {
  .event__title {
    margin-bottom: calc(1.25rem + 3.75 * (100vw - 20rem) / 80);
  }
}

.event__body {
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  counter-reset: article;
}

.event__item {
  cursor: pointer;
  -webkit-transition: -webkit-box-flex 0.3s ease;
  transition: -webkit-box-flex 0.3s ease;
  transition: flex 0.3s ease;
  transition:
    flex 0.3s ease,
    -webkit-box-flex 0.3s ease,
    -ms-flex 0.3s ease;
}

.item-event {
  position: relative;
  position: relative;
}

.item-event::before {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  left: 0.625rem;
  background-image: url("../img/event/arrow.svg");
  width: 5rem;
  height: 0.9375rem;
}

.item-event__image-ibg {
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  transition: filter 0.4s ease;
  transition:
    filter 0.4s ease,
    -webkit-filter 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.item-event__title {
  padding-top: 0.5rem;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  padding-left: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@supports (font-size: clamp(1.125rem, 1.03125rem + 0.46875vw, 1.5rem)) {
  .item-event__title {
    font-size: clamp(1.125rem, 1.03125rem + 0.46875vw, 1.5rem);
  }
}

@supports not (font-size: clamp(1.125rem, 1.03125rem + 0.46875vw, 1.5rem)) {
  .item-event__title {
    font-size: calc(1.125rem + 0.375 * (100vw - 20rem) / 80);
  }
}

.item-event__title::before {
  counter-increment: article;
  content: counter(article, decimal-leading-zero);
  display: block;
}

.item-event__text {
  max-width: 18.75rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  padding-left: 0.5rem;
  padding-right: 1.25rem;
}

.item-event__more {
  position: absolute;
  left: 0.625rem;
  bottom: 2.8125rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

body::-webkit-scrollbar {
  width: 12px;
  /* ширина всей полосы прокрутки */
}

body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.8);
  /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
  background-color: #001131;
  /* цвет бегунка */
  border-radius: 20px;
  /* округлось бегунка */
  border: 1px solid rgb(58, 57, 57);
}

.no-webp .planner {
  background-image: url("../img/main-block/bg.jpg");
}

.planner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
  min-height: 57vw;
}

@supports (padding-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .planner {
    padding-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem);
  }
}

@supports not (padding-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .planner {
    padding-top: calc(3.75rem + 3.75 * (100vw - 20rem) / 80);
  }
}

@supports (padding-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .planner {
    padding-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem);
  }
}

@supports not (padding-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .planner {
    padding-bottom: calc(3.75rem + 3.75 * (100vw - 20rem) / 80);
  }
}

.planner__container {
  text-align: center;
}

.planner__title {
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

@supports (font-size: clamp(1.25rem, 0.8125rem + 2.1875vw, 3rem)) {
  .planner__title {
    font-size: clamp(1.25rem, 0.8125rem + 2.1875vw, 3rem);
  }
}

@supports not (font-size: clamp(1.25rem, 0.8125rem + 2.1875vw, 3rem)) {
  .planner__title {
    font-size: calc(1.25rem + 1.75 * (100vw - 20rem) / 80);
  }
}

.planner__title:not(:last-child) {
  margin-bottom: 3.75rem;
}

.planner__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flip-card {
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  cursor: pointer;
  margin: 20px;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  z-index: 10;
}

._watcher-view .flip-card {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

._watcher-view .flip-card:nth-child(1) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

._watcher-view .flip-card:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

._watcher-view .flip-card:nth-child(3) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

._watcher-view .flip-card:nth-child(4) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

@supports (margin-bottom: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem)) {
  .flip-card {
    margin-bottom: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem);
  }
}

@supports not (margin-bottom: clamp(2.5rem, 1.5625rem + 4.6875vw, 6.25rem)) {
  .flip-card {
    margin-bottom: calc(2.5rem + 3.75 * (100vw - 20rem) / 80);
  }
}

.no-webp .flip-card__front {
  background-image: url("../img/event/01.jpg");
}

.flip-card__front {
  min-height: 500px;
  height: auto;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 20px;
  -webkit-box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

@supports (width: clamp(19.375rem, 9.75rem + 14vw, 23.75rem)) {
  .flip-card__front {
    width: clamp(19.375rem, 9.75rem + 14vw, 23.75rem);
  }
}

@supports not (width: clamp(19.375rem, 9.75rem + 14vw, 23.75rem)) {
  .flip-card__front {
    width: calc(19.375rem + 4.375 * (100vw - 68.75rem) / 31.25);
  }
}

.no-webp .flip-card__back {
  background-image: url("../img/event/01.jpg");
}

.flip-card__back {
  min-height: 500px;
  height: auto;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition:
    transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 20px;
  -webkit-box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

@supports (width: clamp(19.375rem, 9.75rem + 14vw, 23.75rem)) {
  .flip-card__back {
    width: clamp(19.375rem, 9.75rem + 14vw, 23.75rem);
  }
}

@supports not (width: clamp(19.375rem, 9.75rem + 14vw, 23.75rem)) {
  .flip-card__back {
    width: calc(19.375rem + 4.375 * (100vw - 68.75rem) / 31.25);
  }
}

.no-webp .flip-card:nth-of-type(2) .flip-card__front,
.no-webp .flip-card:nth-of-type(2) .flip-card__back {
  background-image: url("../img/event/04.jpg");
}

.no-webp .flip-card:nth-of-type(3) .flip-card__front,
.no-webp .flip-card:nth-of-type(3) .flip-card__back {
  background-image: url("../img/event/05.jpg");
}

.flip-card__front::after,
.flip-card__back::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  border-radius: 20px;
}

.flip-card__front::after {
  opacity: 0.3;
}

.flip-card__front .flip-card__inner,
.flip-card__back .flip-card__inner {
  width: 100%;
  padding: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  z-index: 2;
}

.flip-card__inner .flip-card__icon {
  width: 180px;
  margin-bottom: 20px;
}

.flip-card__inner h4 {
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}

@supports (font-size: clamp(1.625rem, 1.5625rem + 0.3125vw, 1.875rem)) {
  .flip-card__inner h4 {
    font-size: clamp(1.625rem, 1.5625rem + 0.3125vw, 1.875rem);
  }
}

@supports not (font-size: clamp(1.625rem, 1.5625rem + 0.3125vw, 1.875rem)) {
  .flip-card__inner h4 {
    font-size: calc(1.625rem + 0.25 * (100vw - 20rem) / 80);
  }
}

.flip-card__inner p {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
}

.flip-card._active .flip-card__front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.flip-card._active .flip-card__back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

@supports (margin-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .subscribe {
    margin-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem);
  }
}

@supports not (margin-top: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .subscribe {
    margin-top: calc(3.75rem + 3.75 * (100vw - 20rem) / 80);
  }
}

@supports (margin-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .subscribe {
    margin-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem);
  }
}

@supports not (margin-bottom: clamp(3.75rem, 2.8125rem + 4.6875vw, 7.5rem)) {
  .subscribe {
    margin-bottom: calc(3.75rem + 3.75 * (100vw - 20rem) / 80);
  }
}

.subscribe__bg {
  background: #33415a;
  overflow: hidden;
  position: relative;
}

.no-webp .subscribe__bg::before {
  background-image: url("../img/subscribe/subscribe.png");
}

.subscribe__bg::before {
  content: "";
  position: absolute;
  top: 1%;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  right: 0;
  z-index: 0;
  width: 50rem;
  opacity: 0.85;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe__container {
  padding: 5.625rem 0.9375rem;
}

@supports (padding-left: clamp(0.625rem, -7.03125rem + 38.28125vw, 31.25rem)) {
  .subscribe__container {
    padding-left: clamp(0.625rem, -7.03125rem + 38.28125vw, 31.25rem);
  }
}

@supports not (padding-left: clamp(0.625rem, -7.03125rem + 38.28125vw, 31.25rem)) {
  .subscribe__container {
    padding-left: calc(0.625rem + 30.625 * (100vw - 20rem) / 80);
  }
}

.subscribe__text {
  position: relative;
  z-index: 2;
  max-width: 26.875rem;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
}

@supports (font-size: clamp(1.25rem, 1.1875rem + 0.3125vw, 1.5rem)) {
  .subscribe__text {
    font-size: clamp(1.25rem, 1.1875rem + 0.3125vw, 1.5rem);
  }
}

@supports not (font-size: clamp(1.25rem, 1.1875rem + 0.3125vw, 1.5rem)) {
  .subscribe__text {
    font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / 80);
  }
}

@supports (margin-bottom: clamp(1rem, 0.625rem + 1.875vw, 2.5rem)) {
  .subscribe__text {
    margin-bottom: clamp(1rem, 0.625rem + 1.875vw, 2.5rem);
  }
}

@supports not (margin-bottom: clamp(1rem, 0.625rem + 1.875vw, 2.5rem)) {
  .subscribe__text {
    margin-bottom: calc(1rem + 1.5 * (100vw - 20rem) / 80);
  }
}

.subscribe__input {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0.625rem;
  background: transparent;
  border-bottom: 1px solid #b4b4b4;
  outline: none;
}

.subscribe__input ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.subscribe__input ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.subscribe__input :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.subscribe__input ::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.subscribe__input ::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.subscribe__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.subscribe__btn {
  position: relative;
  z-index: 2;
  text-align: center;
}

.gallery {
  position: relative;
}

.gallery__gr {
  position: absolute;
  width: 105vw;
  bottom: -0.625rem;
  left: 0;
}

.gallery__grt {
  position: absolute;
  left: 0;
  top: -0.625rem;
  width: 120vw;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

:root {
  --card-width: 200px;
  --card-height: 300px;
  --card-transition-duration: 800ms;
  --card-transition-easing: ease;
}

.gallery__title {
  margin-bottom: 0;
}

@supports (padding-top: clamp(1.25rem, 0.78125rem + 2.34375vw, 3.125rem)) {
  .gallery__title {
    padding-top: clamp(1.25rem, 0.78125rem + 2.34375vw, 3.125rem);
  }
}

@supports not (padding-top: clamp(1.25rem, 0.78125rem + 2.34375vw, 3.125rem)) {
  .gallery__title {
    padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / 80);
  }
}

.app {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@supports (height: clamp(21.875rem, 11.71875rem + 50.78125vw, 62.5rem)) {
  .app {
    height: clamp(21.875rem, 11.71875rem + 50.78125vw, 62.5rem);
  }
}

@supports not (height: clamp(21.875rem, 11.71875rem + 50.78125vw, 62.5rem)) {
  .app {
    height: calc(21.875rem + 40.625 * (100vw - 20rem) / 80);
  }
}

.app__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -5;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
}

.app__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  opacity: 0.2;
}

.app__bg__image {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
  -ms-transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
  transform: translate(-50%, -50%) translateX(var(--image-translate-offset, 0));
  width: 180%;
  height: 180%;
  -webkit-transition:
    opacity 1000ms ease,
    -webkit-transform 1000ms ease;
  transition:
    opacity 1000ms ease,
    -webkit-transform 1000ms ease;
  transition:
    transform 1000ms ease,
    opacity 1000ms ease;
  transition:
    transform 1000ms ease,
    opacity 1000ms ease,
    -webkit-transform 1000ms ease;
  overflow: hidden;
}

.app__bg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.app__bg__image.current--image {
  opacity: 0.2;
  --image-translate-offset: 0;
}

.app__bg__image.previous--image,
.app__bg__image.next--image {
  opacity: 0;
}

.app__bg__image.previous--image {
  --image-translate-offset: -25%;
}

.app__bg__image.next--image {
  --image-translate-offset: 25%;
}

.cardList {
  position: absolute;
  width: calc(2 * var(--card-width));
  height: auto;
}

.cardList__btn {
  --btn-size: 35px;
  width: var(--btn-size);
  height: var(--btn-size);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}

.cardList__btn.btn--left {
  left: -5%;
}

.cardList__btn.btn--right {
  right: -5%;
}

.cardList__btn .icon {
  width: 100%;
  height: 100%;
}

.cardList__btn .icon svg {
  width: 100%;
  height: 100%;
}

.cardList .cards__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.card {
  --card-translateY-offset: 100vh;
  width: var(--card-width);
  height: var(--card-height);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) translateX(var(--card-translateX-offset)) translateY(var(--card-translateY-offset))
    rotateY(var(--card-rotation-offset)) scale(var(--card-scale-offset));
  transform: translate(-50%, -50%) translateX(var(--card-translateX-offset)) translateY(var(--card-translateY-offset))
    rotateY(var(--card-rotation-offset)) scale(var(--card-scale-offset));
  display: inline-block;
  -webkit-transition: -webkit-transform var(--card-transition-duration) var(--card-transition-easing);
  transition: -webkit-transform var(--card-transition-duration) var(--card-transition-easing);
  transition: transform var(--card-transition-duration) var(--card-transition-easing);
  transition:
    transform var(--card-transition-duration) var(--card-transition-easing),
    -webkit-transform var(--card-transition-duration) var(--card-transition-easing);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  -webkit-transition: opacity var(--card-transition-duration) var(--card-transition-easing);
  transition: opacity var(--card-transition-duration) var(--card-transition-easing);
  opacity: calc(1 - var(--opacity));
}

.card__image {
  position: relative;
  width: 100%;
  height: 100%;
}

.card__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card.current--card {
  --current-card-rotation-offset: 0;
  --card-translateX-offset: 0;
  --card-rotation-offset: var(--current-card-rotation-offset);
  --card-scale-offset: 1.2;
  --opacity: 1;
}

.card.previous--card {
  --card-translateX-offset: calc(-1 * var(--card-width) * 1.1);
  --card-rotation-offset: 25deg;
}

.card.next--card {
  --card-translateX-offset: calc(var(--card-width) * 1.1);
  --card-rotation-offset: -25deg;
}

.card.previous--card,
.card.next--card {
  --card-scale-offset: 0.9;
  --opacity: 0.5;
}

.infoList {
  position: absolute;
  width: calc(3 * var(--card-width));
  height: var(--card-height);
  pointer-events: none;
}

.infoList .info__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.info {
  margin-bottom: calc(var(--card-height) / 8);
  margin-left: calc(var(--card-width) / 1.5);
  -webkit-transform: translateZ(2rem);
  transform: translateZ(2rem);
  -webkit-transition: -webkit-transform var(--card-transition-duration) var(--card-transition-easing);
  transition: -webkit-transform var(--card-transition-duration) var(--card-transition-easing);
  transition: transform var(--card-transition-duration) var(--card-transition-easing);
  transition:
    transform var(--card-transition-duration) var(--card-transition-easing),
    -webkit-transform var(--card-transition-duration) var(--card-transition-easing);
}

.info .text {
  position: relative;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@supports (font-size: clamp(1.375rem, 1.15625rem + 1.09375vw, 2.25rem)) {
  .info .text {
    font-size: clamp(1.375rem, 1.15625rem + 1.09375vw, 2.25rem);
  }
}

@supports not (font-size: clamp(1.375rem, 1.15625rem + 1.09375vw, 2.25rem)) {
  .info .text {
    font-size: calc(1.375rem + 0.875 * (100vw - 20rem) / 80);
  }
}

@supports (margin-bottom: clamp(0.625rem, 0.46875rem + 0.78125vw, 1.25rem)) {
  .info .text {
    margin-bottom: clamp(0.625rem, 0.46875rem + 0.78125vw, 1.25rem);
  }
}

@supports not (margin-bottom: clamp(0.625rem, 0.46875rem + 0.78125vw, 1.25rem)) {
  .info .text {
    margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / 80);
  }
}

.info .name,
.info .location {
  text-transform: uppercase;
}

.info .location {
  font-weight: 800;
}

.info .location {
  --mg-left: 40px;
  --text-size-offset: 0.12;
  font-weight: 600;
  margin-left: var(--mg-left);
  margin-bottom: calc(var(--mg-left) / 2);
  padding-bottom: 0.8rem;
}

.info .location::before,
.info .location::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 0%;
  -webkit-transform: translate(calc(-1 * var(--mg-left)), -50%);
  -ms-transform: translate(calc(-1 * var(--mg-left)), -50%);
  transform: translate(calc(-1 * var(--mg-left)), -50%);
}

.info .location::before {
  top: 50%;
  width: 20px;
  height: 5px;
}

.info .location::after {
  bottom: 0;
  width: 60px;
  height: 2px;
}

.info .description {
  --text-size-offset: 0.065;
  font-weight: 500;
}

@supports (font-size: clamp(1rem, 0.78125rem + 1.09375vw, 1.875rem)) {
  .info .description {
    font-size: clamp(1rem, 0.78125rem + 1.09375vw, 1.875rem);
  }
}

@supports not (font-size: clamp(1rem, 0.78125rem + 1.09375vw, 1.875rem)) {
  .info .description {
    font-size: calc(1rem + 0.875 * (100vw - 20rem) / 80);
  }
}

.info.current--info {
  opacity: 1;
  display: block;
}

.info.previous--info,
.info.next--info {
  opacity: 0;
  display: none;
}

.loading__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  z-index: 200;
}

.loading__wrapper .loader--text {
  color: #fff;
  font-family: "Montserrat";
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.loading__wrapper .loader {
  position: relative;
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.loading__wrapper .loader span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 0, 0);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.support {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.support a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.8rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
}

.support a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.no-webp .form-page {
  background-image: url("../img/form/bg.png");
}

.form-page {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
  min-height: 43.75rem;
  height: 50vw;
}

.form-page__gr {
  position: absolute;
  left: 0;
  top: -0.625rem;
  width: 120vw;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.form-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.form-page__container .color {
  position: absolute;
  -webkit-filter: blur(150px);
  filter: blur(150px);
}

.box {
  position: relative;
}

.no-webp .box::before {
  background-image: url("../img/form/01.png");
}

.box::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-animation: rotateY 4s infinite;
  animation: rotateY 4s infinite;
}

@supports (top: clamp(-12.5rem, -4.6875rem + -7.8125vw, -6.25rem)) {
  .box::before {
    top: clamp(-12.5rem, -4.6875rem + -7.8125vw, -6.25rem);
  }
}

@supports not (top: clamp(-12.5rem, -4.6875rem + -7.8125vw, -6.25rem)) {
  .box::before {
    top: calc(-6.25rem + -6.25 * (100vw - 20rem) / 80);
  }
}

@supports (right: clamp(-27.5rem, -0.9375rem + -26.5625vw, -6.25rem)) {
  .box::before {
    right: clamp(-27.5rem, -0.9375rem + -26.5625vw, -6.25rem);
  }
}

@supports not (right: clamp(-27.5rem, -0.9375rem + -26.5625vw, -6.25rem)) {
  .box::before {
    right: calc(-6.25rem + -21.25 * (100vw - 20rem) / 80);
  }
}

@supports (width: clamp(18.75rem, 13.28125rem + 27.34375vw, 40.625rem)) {
  .box::before {
    width: clamp(18.75rem, 13.28125rem + 27.34375vw, 40.625rem);
  }
}

@supports not (width: clamp(18.75rem, 13.28125rem + 27.34375vw, 40.625rem)) {
  .box::before {
    width: calc(18.75rem + 21.875 * (100vw - 20rem) / 80);
  }
}

@supports (height: clamp(18.75rem, 13.28125rem + 27.34375vw, 40.625rem)) {
  .box::before {
    height: clamp(18.75rem, 13.28125rem + 27.34375vw, 40.625rem);
  }
}

@supports not (height: clamp(18.75rem, 13.28125rem + 27.34375vw, 40.625rem)) {
  .box::before {
    height: calc(18.75rem + 21.875 * (100vw - 20rem) / 80);
  }
}

.box .square {
  position: absolute;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  -webkit-animation: animate 10s linear infinite;
  animation: animate 10s linear infinite;
  -webkit-animation-delay: calc(-1s * var(--i));
  animation-delay: calc(-1s * var(--i));
}

@-webkit-keyframes animate {
  0%,
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  50% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@keyframes animate {
  0%,
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

  50% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

.box .square:nth-child(1) {
  top: -50px;
  right: -60px;
  width: 100px;
  height: 100px;
}

.box .square:nth-child(2) {
  top: 150px;
  left: -100px;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.box .square:nth-child(3) {
  bottom: 50px;
  right: -60px;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.box .square:nth-child(4) {
  bottom: -80px;
  left: 100px;
  width: 50px;
  height: 50px;
}

.box .square:nth-child(5) {
  top: -80px;
  left: 140px;
  width: 60px;
  height: 60px;
}

.container {
  position: relative;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@supports (width: clamp(17.5rem, 14.84375rem + 13.28125vw, 28.125rem)) {
  .container {
    width: clamp(17.5rem, 14.84375rem + 13.28125vw, 28.125rem);
  }
}

@supports not (width: clamp(17.5rem, 14.84375rem + 13.28125vw, 28.125rem)) {
  .container {
    width: calc(17.5rem + 10.625 * (100vw - 20rem) / 80);
  }
}

.form {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.form h2 {
  position: relative;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.form h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: #fff;
}

.form .inputBox {
  width: 100%;
  margin-top: 20px;
}

.form .inputBox input {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form .inputBox input::-webkit-input-placeholder {
  color: #fff;
}

.form .inputBox input::-moz-placeholder {
  color: #fff;
}

.form .inputBox input:-ms-input-placeholder {
  color: #fff;
}

.form .inputBox input::-ms-input-placeholder {
  color: #fff;
}

.form .inputBox input::placeholder {
  color: #fff;
}

.form .inputBox input[type="submit"] {
  background: #fff;
  color: #666;
  max-width: 100px;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 600;
}

.forget {
  margin-top: 5px;
  color: #fff;
}

.forget a {
  color: #fff;
  font-weight: 600;
}

@supports (margin-bottom: clamp(2.5rem, 1.875rem + 3.125vw, 5rem)) {
  .faq__container {
    margin-bottom: clamp(2.5rem, 1.875rem + 3.125vw, 5rem);
  }
}

@supports not (margin-bottom: clamp(2.5rem, 1.875rem + 3.125vw, 5rem)) {
  .faq__container {
    margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 80);
  }
}

.spollers {
  margin-top: 8.75rem;
  position: relative;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.spollers__wrapper {
  position: relative;
  max-width: 62.5rem;
  margin: 0 auto;
}

.spollers__item {
  padding: 1rem 1.5rem;
}

.spollers__title {
  width: 100%;
  text-align: start;
  font-weight: 500;
  color: #dcb87a;
  padding-right: 0.625rem;
  position: relative;
}

@supports (font-size: clamp(1rem, 0.875rem + 0.625vw, 1.5rem)) {
  .spollers__title {
    font-size: clamp(1rem, 0.875rem + 0.625vw, 1.5rem);
  }
}

@supports not (font-size: clamp(1rem, 0.875rem + 0.625vw, 1.5rem)) {
  .spollers__title {
    font-size: calc(1rem + 0.5 * (100vw - 20rem) / 80);
  }
}

.spollers__title::after,
.spollers__title::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #dcb87a;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transition: -webkit-transform 0.3s 0s ease;
  transition: -webkit-transform 0.3s 0s ease;
  transition: transform 0.3s 0s ease;
  transition:
    transform 0.3s 0s ease,
    -webkit-transform 0.3s 0s ease;
}

.spollers__title::after {
  -webkit-transform: rotate(-90deg) !important;
  -ms-transform: rotate(-90deg) !important;
  transform: rotate(-90deg) !important;
}

.spollers__title._spoller-active::after {
  -webkit-transform: rotate(0deg) !important;
  -ms-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
}

.spollers__title._spoller-active:after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.spollers__body {
  padding-bottom: 0.75rem;
  margin-top: 0.875rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@supports (font-size: clamp(0.875rem, 0.78125rem + 0.46875vw, 1.25rem)) {
  .spollers__body {
    font-size: clamp(0.875rem, 0.78125rem + 0.46875vw, 1.25rem);
  }
}

@supports not (font-size: clamp(0.875rem, 0.78125rem + 0.46875vw, 1.25rem)) {
  .spollers__body {
    font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 80);
  }
}

.square1 {
  position: absolute;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  -webkit-animation: animate 10s linear infinite;
  animation: animate 10s linear infinite;
  -webkit-animation-delay: calc(-1s * var(--w));
  animation-delay: calc(-1s * var(--w));
}

.square1-1 {
  top: -50px;
  right: -60px;
  width: 100px;
  height: 100px;
}

.square1-2 {
  top: 150px;
  left: -100px;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.square1-3 {
  bottom: 50px;
  right: -60px;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.square1-4 {
  bottom: -80px;
  left: 100px;
  width: 50px;
  height: 50px;
}

.square1-5 {
  top: -80px;
  left: 140px;
  width: 60px;
  height: 60px;
}

@-webkit-keyframes rotateY {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  50% {
    -webkit-transform: rotateZ(3deg);
    transform: rotateZ(3deg);
  }

  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@keyframes rotateY {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  50% {
    -webkit-transform: rotateZ(3deg);
    transform: rotateZ(3deg);
  }

  100% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@-webkit-keyframes rotateX {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(1.5deg);
    transform: rotate(1.5deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateX {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(1.5deg);
    transform: rotate(1.5deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.5s linear;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */

[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media (min-width: 31.25em) {
  .gallery__title {
    margin-bottom: -3.125rem;
  }

  .cardList {
    width: calc(3 * var(--card-width));
  }
}
@media (min-width: 20em) {
  :root {
    --card-width: 150px;
    --card-height: 225px;
  }
}

@media (min-width: 43.75em) {
  :root {
    --card-width: 200px;
    --card-height: 300px;
  }
}

@media (min-width: 62em) {
  :root {
    --card-width: 250px;
    --card-height: 350px;
  }
}
@media (min-width: 66.25em) {
  :root {
    --card-width: 300px;
    --card-height: 450px;
  }
}

@media (min-width: 68.75em) {
  .event__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 31.25rem;
  }

  .event__item.event_active {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }

  .event__item.event_active .item-event__image-ibg {
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }

  .event__item.event_active .item-event__text {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .event__item.event_active .item-event__more {
    opacity: 1;
  }

  .box {
    -webkit-transform: translate(0, 15%);
    -ms-transform: translate(0, 15%);
    transform: translate(0, 15%);
  }
}

@media (min-width: 83.125em) {
  .gallery__title {
    margin-bottom: -6.875rem;
  }
}

@media (min-width: 25em) {
  .cardList {
    width: calc(2.5 * var(--card-width));
  }
}

@media (max-width: 50em) {
  .main-block__bg {
    min-height: 25rem;
  }

  .main-block__micro {
    display: none;
  }
}

@media (max-width: 25em) {
  .info {
    margin-left: 7.5em;
  }
}

@media (max-width: 93.75em) {
  .subscribe__bg::before {
    left: 0;
  }

  .subscribe__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }
}

@media (max-width: 81.25em) {
  .main-block__micro {
    left: -5%;
  }
}

@media (max-width: 68.75em) {
  .main-block__bg {
    min-height: 37.5rem;
  }

  .planner__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  @supports (width: clamp(18.125rem, 15.15625rem + 14.84375vw, 30rem)) {
    .flip-card__front {
      width: clamp(18.125rem, 15.15625rem + 14.84375vw, 30rem);
    }
  }

  @supports not (width: clamp(18.125rem, 15.15625rem + 14.84375vw, 30rem)) {
    .flip-card__front {
      width: calc(18.125rem + 11.875 * (100vw - 20rem) / 80);
    }
  }

  @supports (width: clamp(18.125rem, 15.15625rem + 14.84375vw, 30rem)) {
    .flip-card__back {
      width: clamp(18.125rem, 15.15625rem + 14.84375vw, 30rem);
    }
  }

  @supports not (width: clamp(18.125rem, 15.15625rem + 14.84375vw, 30rem)) {
    .flip-card__back {
      width: calc(18.125rem + 11.875 * (100vw - 20rem) / 80);
    }
  }
}

@media (max-width: 68.6875em) {
  .event__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .event__item {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .event__item .item-event__title {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%);
  }

  .event__item.event_active {
    height: 25rem;
  }

  .event__item.event_active .item-event__image-ibg {
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }

  .event__item.event_active .item-event__text {
    opacity: 1;
    padding-right: 0.5rem;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .event__item.event_active .item-event__more {
    opacity: 1;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }

  .event__item.event_active::before {
    -webkit-transform: rotate(90deg) scale(0) translate(-25%, 0);
    -ms-transform: rotate(90deg) scale(0) translate(-25%, 0);
    transform: rotate(90deg) scale(0) translate(-25%, 0);
  }

  .item-event__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.875rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .item-event {
    height: 4.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .item-event__text {
    text-align: center;
  }

  .item-event::before {
    -webkit-transform: rotate(90deg) scale(0.5) translate(-25%, 0);
    -ms-transform: rotate(90deg) scale(0.5) translate(-25%, 0);
    transform: rotate(90deg) scale(0.5) translate(-25%, 0);
    top: 50%;
    left: 80%;
  }
}

@media (max-width: 59.375em) {
  .main-block__bg {
    min-height: 31.25rem;
  }

  .main-block__micro {
    left: -15%;
  }
}

@media (max-width: 53.125em) {
  .subscribe__bg::before {
    width: 37.5rem;
    height: 25rem;
  }
}

@media (max-width: 43.75em) {
  .footer__row:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }

  .subscribe__bg::before {
    top: -27%;
  }
}

@media (max-width: 37.5em) {
  .menu__body {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: -110%;
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .menu__item {
    width: 100%;
  }

  .menu__link {
    display: block;
    width: 100%;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .main-block__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .item-event {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .item-event__text {
    text-align: start;
  }
}

@media (max-width: 28.125em) {
  .subscribe__bg::before {
    display: none;
  }

  .subscribe__text {
    text-align: center;
  }
}

@media (max-width: 28.25em) {
  .subscribe__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0.9375rem;
    padding: 3.125rem 0.9375rem;
  }

  .subscribe__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (any-hover: hover) {
  .button:hover {
    border-radius: 4px;
    background: -webkit-gradient(linear, left top, left bottom, from(#d7bc91), to(#d7a14b));
    background: linear-gradient(180deg, #d7bc91 0%, #d7a14b 100%);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(164, 137, 94, 0.25);
    box-shadow: 0px 4px 4px 0px rgba(164, 137, 94, 0.25);
  }

  .button_transp:hover {
    background: transparent;
  }

  .menu__link:hover {
    color: #d7a14b;
  }

  .footer__port:hover {
    color: #dcb87a;
  }

  .footer-policy:hover {
    color: #dcb87a;
  }

  .event__item:hover {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }

  .event__item:hover .item-event__image-ibg {
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }

  .event__item:hover .item-event__text {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .event__item:hover .item-event__more {
    opacity: 1;
  }

  .item-event__more:hover {
    color: #dcb87a;
  }

  .flip-card:hover .flip-card__front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }

  .flip-card:hover .flip-card__back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

.webp .main-block__bg {
  background-image: url(../img/main-block/bg.webp);
}

.webp .planner {
  background-image: url(../img/main-block/bg.webp);
}

.webp .flip-card__front {
  background-image: url(../img/event/01.webp);
}

.webp .flip-card__back {
  background-image: url(../img/event/01.webp);
}

.webp .flip-card:nth-of-type(2) .flip-card__front,
.webp .flip-card:nth-of-type(2) .flip-card__back {
  background-image: url(../img/event/04.webp);
}

.webp .flip-card:nth-of-type(3) .flip-card__front,
.webp .flip-card:nth-of-type(3) .flip-card__back {
  background-image: url(../img/event/05.webp);
}

.webp .subscribe__bg::before {
  background-image: url(../img/subscribe/subscribe.webp);
}

.webp .form-page {
  background-image: url(../img/form/bg.webp);
}

.webp .box::before {
  background-image: url(../img/form/01.webp);
}
