html {
  font-size: 1.3vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.51vw;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 2rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #0E0E0E;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html *,
html,
body *,
body {
  scrollbar-color: inherit !important;
  scrollbar-width: auto;
}
html *::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  box-shadow: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 5rem 0;
}

.container {
  padding: 0 12rem;
  width: 100%;
}

.slick-list {
  cursor: grab;
}

.no-br {
  white-space: nowrap;
}

.underline {
  text-decoration: underline;
}

.text--color {
  color: #3892FF;
}
.text--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 3.2rem 10rem;
  height: 9.3rem;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: black;
  background: #d3a84b;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
  text-decoration: none;
}
.btn img {
  width: 4rem;
}
.btn svg {
  width: 7.6rem;
}
.btn span {
  position: relative;
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, #D3A84B 0%, #E5BF67 30%, #C79738 60%, #D3A84B 100%);
  animation: blink 6s linear infinite;
}
.btn:hover {
  background: #d3a84b;
}

.heading {
  font-size: 6.4rem;
  margin-bottom: 3.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  font-weight: normal;
}

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #3892FF;
  box-shadow: 0 0 5px #3892FF;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: item;
}
.list-num__item {
  margin-bottom: 2rem;
  height: 9rem;
  padding: 1.5rem 5rem 1.5rem 12.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #3892FF;
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: white;
  position: relative;
  width: 81rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 20vh;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: white;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  z-index: 10;
}
.modal__title {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1.2rem;
  color: #0E0E0E;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__title {
    font-size: 3.2rem;
  }
}
.modal__text {
  margin-bottom: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__text {
    font-size: 2.8rem;
  }
}

.form {
  text-align: center;
}
.form .placeholder {
  font-size: 2.4rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 2rem;
  transition: all 0.3s ease-out;
  pointer-events: none;
  color: #fff;
}
.form-control {
  position: relative;
  margin-bottom: 1.2rem;
}
.form-control.active .placeholder {
  top: 0;
  font-size: 2rem;
}
.form .error {
  color: red;
  font-size: 1.6rem;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
}
.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #AEAEAE;
  padding: 1.2rem;
  height: 6rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #737373;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  -webkit-box-shadow: inset 0 0 0 50px white;
  -webkit-text-fill-color: #7b7b7b;
}
.form-input.err {
  color: red;
  -webkit-text-fill-color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.form-input:focus {
  outline: none;
}
.form-btn {
  width: 100%;
  min-width: 100%;
  margin-top: 4rem;
}
.form__agreement {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.8rem;
  color: #474747;
}

.grecaptcha-badge {
  display: none !important;
}

.language {
  position: fixed;
  z-index: 100;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #3F3F3F;
  color: white;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 1.7rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}
.language:hover .language__arrow {
  transform: rotate(0deg);
}
.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.language__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .language__item {
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

.video {
  position: relative;
  display: block;
}
.video:hover .play {
  background: white;
  color: #0E0E0E;
}

.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  background: rgba(239, 239, 239, 0.2);
  backdrop-filter: blur(10px);
  padding: 2.6rem 4rem;
  display: inline-flex;
  align-items: center;
  column-gap: 2rem;
  height: 8rem;
  font-weight: bold;
  transition: all 0.3s ease-out;
  color: #EDF5FF;
  white-space: nowrap;
}
.btn-play svg {
  width: 2.4rem;
  flex-shrink: 0;
}
.btn-play svg path {
  stroke: currentColor;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape-back {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blink {
  0% {
    left: -200%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@media screen and (min-width: 1025px) {
  .js-animate {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    opacity: 0;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.4s ease-out 0.4s, transform 0.4s ease-out 0.4s;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.4s ease-out 0.6s, transform 0.4s ease-out 0.6s;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.4s ease-out 0.8s, transform 0.4s ease-out 0.8s;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.4s ease-out 1s, transform 0.4s ease-out 1s;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.4s ease-out 1.2s, transform 0.4s ease-out 1.2s;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.4s ease-out 1.4s, transform 0.4s ease-out 1.4s;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.4s ease-out 1.6s, transform 0.4s ease-out 1.6s;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.4s ease-out 1.8s, transform 0.4s ease-out 1.8s;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.4s ease-out 2s, transform 0.4s ease-out 2s;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.4s ease-out 2.2s, transform 0.4s ease-out 2.2s;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.4s ease-out 2.4s, transform 0.4s ease-out 2.4s;
  }
  .js-animate.animate--delay-13 {
    transition: all 0.4s ease-out 2.6s, transform 0.4s ease-out 2.6s;
  }
  .js-animate.animate--delay-14 {
    transition: all 0.4s ease-out 2.8s, transform 0.4s ease-out 2.8s;
  }
  .js-animate.animate--delay-15 {
    transition: all 0.4s ease-out 3s, transform 0.4s ease-out 3s;
  }
  .js-animate.animate--delay-16 {
    transition: all 0.4s ease-out 3.2s, transform 0.4s ease-out 3.2s;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.from-bottom {
    transform: translateY(200px);
  }
  .js-animate.zoom-in {
    transform: scale(0.5);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom, .js-animate.visible.from-top, .js-animate.visible.from-left, .js-animate.visible.from-right, .js-animate.visible.zoom-out, .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right, .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.js-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.js-video video {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.js-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.js-video__play svg {
  width: 1.2rem;
}
.js-video__play .play {
  display: none;
}
.js-video__play.off {
  opacity: 1;
}
.js-video__play.off .pause {
  display: none;
}
.js-video__play.off .play {
  display: block;
}

.gradient-text {
  background: linear-gradient(92.69deg, #E5BF67 1.85%, #C79738 97.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #E5BF67;
  display: table;
}

h1 {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: 400;
  font-size: 8rem;
  line-height: 9rem;
}

.heading {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: 400;
  font-size: 7rem;
  text-transform: uppercase;
  line-height: 9.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 6rem;
}
.heading span {
  display: inline !important;
}

.header {
  background-image: url(../img/bg1.jpg);
  background-position: center center;
  background-size: cover;
  color: white;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.header .container {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.header__date {
  display: flex;
  padding: 2rem 3.5rem;
  background: black;
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #d3a84b;
  margin-bottom: 4rem;
  font-weight: 600;
}
.header h1 {
  margin-bottom: 2rem;
  max-width: 75rem;
}
.header__text {
  font-size: 3.6rem;
  line-height: 4.8rem;
  font-weight: 600;
  max-width: 67rem;
  margin-bottom: 4rem;
}
.header__btn {
  display: flex;
  padding: 2.1rem 7.5rem;
  font-size: 3.2rem;
  line-height: 3.8rem;
  text-transform: uppercase;
  background: linear-gradient(92.69deg, #E5BF67 1.85%, #C79738 97.32%);
  color: black;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
}
.header__btn:hover {
  background: #d3a84b;
}
.header__video {
  margin-top: 4rem;
  width: 100%;
  max-width: 65rem;
  height: 36rem;
  position: relative;
}
.header__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  border-top: 1px solid #464646;
  padding-top: 9.5rem;
  background: #0E0E0E;
  color: white;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer__block {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 10rem;
}
.footer__col {
  width: 75rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.footer__btns {
  display: flex;
  width: 100%;
  gap: 1.8rem;
}
.footer__btns a {
  width: 100%;
}
.footer__btn {
  padding: 1.2rem;
  gap: 1.2rem;
  height: 6rem;
  border: 1px solid white;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 1.6rem;
  min-width: 30rem;
}
.footer__btn:hover {
  text-decoration: none;
  background: black;
  color: white;
}
.footer__btn svg {
  width: 1.6rem;
  flex-shrink: 0;
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social li {
  flex-shrink: 0;
  display: flex;
  border-radius: 50%;
}
.footer__social li a {
  display: flex;
  line-height: 0;
}
.footer__social li a:not(.footer__btn) {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.footer__social li svg {
  width: 4rem;
  flex-shrink: 0;
}
.footer__copyright {
  padding-bottom: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #464646;
}
.footer__copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1025px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .main__section {
    padding: 4rem 0;
  }
  .main__section-left {
    padding: 0 2rem;
  }
  .main__section-right {
    padding: 0 2rem;
  }
  .heading {
    font-size: 6.4rem;
    margin-bottom: 2.4rem;
  }
  .btn {
    min-width: 100%;
    height: 12rem;
    font-size: 3.2rem;
    padding: 4rem 2rem;
  }
  .btn svg {
    width: 9rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.4rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 8rem;
    font-size: 2.4rem;
  }
  .form-btn {
    font-size: 2.8rem;
    height: 9rem;
  }
  .form__agreement {
    font-size: 2.2rem;
  }
  .form__checkbox {
    width: 4rem;
  }
  .message {
    display: none;
  }
  .btn-play {
    padding: 2.4rem;
    column-gap: 1.5rem;
    height: 9rem;
    font-weight: normal;
    font-size: 2.4rem;
  }
  .btn-play svg {
    width: 2.8rem;
  }
  .header {
    background-image: url("../img/bg1-mob.jpg");
    background-position: top center;
    background-size: 100% auto;
    background-color: black;
    background-repeat: no-repeat;
    min-height: inherit;
    display: block;
    padding-top: 0;
    padding-bottom: 30px;
  }
  .header .container {
    align-items: stretch;
  }
  .header__date {
    padding: 15px;
    height: 50px;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30rem;
    justify-content: center;
    align-items: center;
  }
  .header h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .header__text {
    font-size: 20px;
    line-height: 1.2;
    width: 100%;
    min-width: 260px;
    margin-bottom: 40px;
  }
  .header__btn {
    height: 60px;
    padding: 17px;
    font-size: 20px;
    line-height: 24px;
    justify-content: center;
    align-items: center;
  }
  .header__video {
    margin-top: 40px;
    max-width: 100%;
    height: 0;
    padding-top: 55.5%;
  }
  .footer {
    padding-top: 8rem;
  }
  .footer__block {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
  }
  .footer__col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .footer__title {
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer__btns {
    display: flex;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer__btns a {
    width: 100%;
  }
  .footer__btn {
    margin-bottom: 0;
    padding: 2.4rem;
    gap: 2rem;
    border-radius: 1.6rem;
    font-size: 2.4rem;
    min-width: 100%;
    height: 8rem;
  }
  .footer__btn:hover {
    text-decoration: none;
    background: black;
    color: white;
  }
  .footer__btn svg {
    width: 3.2rem;
    flex-shrink: 0;
  }
  .footer__social {
    gap: 2.4rem;
    flex-wrap: wrap;
  }
  .footer__social li:has(.footer__btn) {
    min-width: 100%;
  }
  .footer__social li svg {
    width: 7rem;
  }
  .footer__copyright {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .footer__copyright .container {
    gap: 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }
}

/*# sourceMappingURL=main.css.map */
