html {
  font-size: 1.25vw;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 0.521vw;
  }
}

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

* {
  box-sizing: border-box;
}

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

.wrapper {
  width: 100%;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  padding: 0 20rem;
}
@media screen and (max-width: 1023px) {
  .container {
    padding: 0 2rem;
  }
}

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

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

.btn {
  display: inline-flex;
  min-width: 40rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
  height: 7.2rem;
  font-size: 3.2rem;
  font-family: "Bebas Neue Cyrillic";
  text-transform: uppercase;
  line-height: 1;
  color: white;
  background: #1E7EB1;
  border-radius: 0.8rem;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  border: 0;
}
.btn:hover {
  background: #289cda;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFFFFF;
  border-radius: 1rem;
  padding: 3rem 4rem;
}

.heading {
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 4rem;
  font-family: "Bebas Neue Cyrillic";
  text-align: center;
  text-transform: uppercase;
}

.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: #1E7EB1;
  box-shadow: 0 0 5px #1E7EB1;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}

.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.8);
  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: black;
  border-radius: 0.8rem;
  position: relative;
  width: 52rem;
  max-height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 1023px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 25vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.modal__heading {
  font-family: "Bebas Neue Cyrillic";
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1;
  position: relative;
  padding-bottom: 2rem;
  color: white;
  text-align: center;
}

.form__title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.form-control {
  position: relative;
  margin-bottom: 0.4rem;
  width: 100%;
}
.form .error {
  color: red;
  font-size: 1.4rem;
  position: absolute;
  display: none;
  top: 0.4rem;
  right: 1.2rem;
}
.form-input {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.2rem;
  height: 4.3rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
  color: #0E0E0E;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}
.form-input::placeholder {
  opacity: 0.6;
}
.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%;
}
.form-fields {
  display: flex;
  column-gap: 1.2rem;
}
.form-check {
  margin-bottom: 1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  column-gap: 1rem;
}
.form-check svg {
  width: 1.6rem;
  flex-shrink: 0;
}

@keyframes tape {
  0% {
    margin-left: 0;
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.tape-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(103deg, #808080 11.4%, #939393 25.25%, #C0C0C0 36.74%, #E0E0E0 40.12%, #C3C3C3 60.39%, #A1A1A1 76.61%);
  z-index: 2;
  height: 4.5rem;
  display: flex;
  align-items: center;
}
.tape-wrap .tape-text {
  display: inline-flex;
  align-items: center;
  column-gap: 0.8rem;
  width: auto;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #0E0E0E;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}
.tape-wrap .tape-text span {
  display: inline-block;
}
.tape-wrap .tape-text svg {
  width: 1.8rem;
  flex-shrink: 0;
}

.header {
  background: url("../images/bg1.webp") center top no-repeat;
  background-size: cover;
  padding: 4rem 0;
}
.header__block {
  display: flex;
  column-gap: 4rem;
}
.header__video {
  position: relative;
  width: 87rem;
  flex-shrink: 0;
}
.header__video img {
  width: 100%;
}
.header__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header__form {
  padding: 2rem;
  background: black;
}
.header__subtitle {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.header__heading {
  font-size: 4rem;
  line-height: 1;
  font-family: "Bebas Neue Cyrillic";
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.header__text {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 500;
}
.header__label {
  display: inline-flex;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.8rem 2.4rem;
  border-radius: 10rem;
  border: 2px solid #ACE2FF;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 100px 0px #1E7EB1;
}
.header__label span {
  animation: 0.8s ease-out infinite alternate pulse;
}

.ticket {
  background: url("../images/bg2.webp") center top no-repeat;
  background-size: cover;
  padding-top: 6rem;
}
.ticket__block1 {
  display: flex;
  column-gap: 4rem;
  margin-bottom: 4rem;
}
.ticket__img {
  width: 87rem;
  flex-shrink: 0;
}
.ticket__text {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}
.ticket__list {
  list-style: none;
  padding: 0;
  margin: 0 0 5.3rem;
}
.ticket__list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  column-gap: 0.4rem;
  background: white;
  border-radius: 10rem;
  font-size: 1.8rem;
  padding-right: 3rem;
  line-height: 1;
  color: black;
  letter-spacing: -0.1rem;
}
.ticket__list li svg {
  width: 4.3rem;
  flex-shrink: 0;
}
.ticket__list li:last-child {
  margin-bottom: 0;
}
.ticket__info {
  padding-right: 4rem;
  text-align: right;
  position: relative;
}
.ticket__arrow {
  position: absolute;
  left: 0;
  top: -2.2rem;
  width: 35.8rem;
}
.ticket__label {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  border: 1px solid #FFF;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 100px 0px rgba(30, 126, 177, 0.7);
  border-radius: 10rem;
  font-size: 2.4rem;
}
.ticket__label span {
  animation: 0.8s ease-out infinite alternate pulse;
}
.ticket__block2 {
  display: flex;
  column-gap: 2rem;
}
.ticket__title {
  font-size: 4rem;
  font-family: "Bebas Neue Cyrillic";
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  text-align: center;
  line-height: 1;
}
.ticket__slider {
  width: 87rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ticket__slider .slick-arrow {
  width: 4rem;
  flex-shrink: 0;
  cursor: pointer;
}
.ticket__slider img {
  border-radius: 0.8rem;
}
.ticket__slider .slick-dots {
  bottom: 2rem;
  display: flex;
  justify-content: center;
}
.ticket__slider .slick-dots li {
  width: 8px;
  height: 8px;
  font-size: 0;
  background: white;
  border-radius: 50%;
  margin: 0 4px;
}
.ticket__slider .slick-dots li.slick-active {
  background: #696464;
}

@media screen and (min-width: 1024px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
  }
  .btn {
    height: 8.8rem;
    font-size: 4rem;
    padding: 2rem 4rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-check__item {
    margin-bottom: 2rem;
    padding-left: 5.6rem;
    font-size: 2.4rem;
  }
  .list-check__item:before {
    width: 4rem;
    height: 4rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 6rem 1rem 10rem;
    font-size: 2.4rem;
    line-height: 1.2;
    backdrop-filter: none;
  }
  .list-num__item:before {
    font-size: 5rem;
    line-height: 7.5rem;
    height: 7rem;
    width: 7rem;
    top: 1rem;
    left: 1rem;
  }
  .form__title {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
  }
  .form-input {
    height: 7.6rem;
    padding: 2.4rem;
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
  }
  .form-btn {
    height: 8.8rem;
    font-size: 4rem;
    padding: 2rem 4rem;
  }
  .form-check {
    margin-bottom: 1.6rem;
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }
  .box {
    padding: 4rem 2rem;
  }
  .header {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: none;
  }
  .header__block {
    flex-direction: column;
    row-gap: 2.4rem;
  }
  .header__video {
    width: 100%;
  }
  .header__form {
    padding: 1.6rem;
    background: #272727;
  }
  .header__subtitle {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
  }
  .header__heading {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
  }
  .header__text {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
    position: relative;
  }
  .header__label {
    position: absolute;
    right: 0;
    top: -8rem;
    padding: 1.6rem 4.8rem;
    font-size: 2.4rem;
  }
  .ticket {
    padding: 8rem 0;
    background: none;
  }
  .ticket__block1 {
    flex-direction: column;
  }
  .ticket__img {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .ticket__info {
    padding: 0;
    margin-bottom: 4.8rem;
  }
  .ticket__label {
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
  }
  .ticket__text {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .ticket__list {
    margin-bottom: 4.8rem;
  }
  .ticket__list li {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
    column-gap: 0.8rem;
  }
  .ticket__list li:last-child {
    margin-bottom: 0;
  }
  .ticket__list li svg {
    width: 6rem;
  }
  .ticket__block2 {
    flex-direction: column-reverse;
  }
  .ticket__slider {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .ticket__slider .slick-arrow {
    width: 6rem;
  }
  .ticket__slider .slick-dots {
    bottom: 3rem;
  }
  .ticket__title {
    font-size: 4.8rem;
    margin-bottom: 1.6rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  line-height: 1.1;
  background: #0E0E0E;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: #aad8f1;
  border-color: #aad8f1;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 1023px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 1023px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/

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