@charset "UTF-8";
/*-- Абсолютное позиционирование  по центру*/
/*
 * Функция возвращающая null вместо error если значение в списке не найдено
 * @param {List} $list - список
 * @param {Number}$index - индекс эелемента
 */
/*
 * Функция возвращающая z-index елемента
 * @requiered  $z-layers список слоев;
 * @param {List, Map} $z-layers - массив со именами и значениями z-index;
 * @param {String} $name - елемент;
 * https://codepen.io/jakob-e/pen/KpdBzY
 */
/*
  Более короткая версия функции z-index;
  @param {String, List}
  @return {Number}
 */
/*
  Функция обрезающая единицы измерения и возвращающая число
  @param {Number}
  @return {Number}
 */
/*Функция замены чего-либо в строке
  @author Hugo Giraudel
  @param {String} $string - строка в которой ищем
  @param {String} $search - то что нужно заменить
  @param {String} $replace ('') - то на что нужно заменить
  @return {String} - обновленная строка
*/
/*
  Функция возвращающая значение в em
  **ВСЕГДА ДОЛЖНО БЫТЬ КАК МИНИМУМ 2 ВХОДНЫХ ПАРАМЕТРА**
  - сколько угодно значений может быть передано в функцию
  - последний параметр всегда указывает в каком контексте надо считать em'ы
  @list, @Number $values - значения
  @return EM

  Примеры :
    font-size: em($h1-font-size, 16);
    font-size: em($h1-font-size, $context); Указание контекста(шрифта родителя)
    border-bottom: em(1px solid black) => .0625em solid black) ;
    box-shadow: em(0 0 2px #ccc, inset 0 0 5px #eee, $h1-font-size) => 0 0 .125em #ccc, inset 0 0 .3125em #eee; // Множественные значения

  source: https://github.com/pierreburel/sass-em;
 */
/*
  Функция возвращающая факториал
  @param {Number} $number - число
  @return {Number} - число
 */
/*
  Pi
 */
/*
  Функция вычсисления радианы
  @param {Number} $angle - угол
  @return {Number} - радиан
 */
/*
  Функция возвразающая синус угла
  @param {Number} $angle - угол
  @return {Number} - синус угла
 */
/*
  Функция возвразающая косинус угла
  @param {Number} $angle - угол
  @return {Number} - синус угла
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea {
  -webkit-user-select: auto;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

img {
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Regular.ttf");
  font-weight: 400;
}
body {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 560px) {
  body {
    background-image: url("../images/bg_mobil.jpg");
  }
}
body::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background-image: url("../images/bg_modal_fon.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1.5s ease-in-out 1.5s;
  transition: all 1.5s ease-in-out 1.5s;
}
@media (max-width: 860px) {
  body::before {
    background-image: url("../images/bg_modal_fon_mobil.png");
  }
}
body::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url("../images/bg_modal.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1.5s ease-in-out 1.5s;
  transition: all 1.5s ease-in-out 1.5s;
}
@media (max-width: 860px) {
  body::after {
    background-image: url("../images/bg_modal_mobil.png");
  }
}
body.show-result::after {
  opacity: 1;
}
body.show-result::before {
  opacity: 1;
}
body.show-forma::before {
  opacity: 0;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.main-wrapper {
  height: 100vh;
  font-size: 10px;
  position: relative;
  overflow: hidden;
  font-family: Impact, sans-serif;
  padding-left: 80px;
  padding-right: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1600px) {
  .main-wrapper {
    font-size: 9.5px;
  }
}
@media (max-width: 1440px) {
  .main-wrapper {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 9px;
  }
}
@media (max-width: 1280px) {
  .main-wrapper {
    font-size: 7.5px;
  }
}
@media (max-width: 1140px) {
  .main-wrapper {
    font-size: 6.5px;
  }
}
@media (max-width: 1024px) {
  .main-wrapper {
    font-size: 6px;
  }
}
@media (max-width: 991px) {
  .main-wrapper {
    font-size: 5.5px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 860px) {
  .main-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 33px;
    padding-right: 33px;
    gap: 20px;
    font-size: 6px;
  }
}
@media (max-width: 560px) {
  .main-wrapper {
    font-size: 1.1vw;
  }
}

.main-wrapper.show-modal .modal {
  opacity: 1;
  visibility: visible;
}

.main-wrapper.show-result .slot-container__win-line {
  display: block;
  opacity: 1;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 20;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 860px) {
  .main {
    -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;
    gap: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    width: auto;
  }
}

.main-wrapper.show-result .main {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out 1.5s;
  transition: all 0.5s ease-in-out 1.5s;
}

.header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 12vh;
  z-index: 20;
}
@media (max-width: 860px) {
  .header_box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 9vh;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .header_box {
    margin-top: 1vh;
  }
}

.show-result .header_box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
  margin-top: 10vh;
}

.logo {
  margin-left: 6vw;
}
.logo img {
  max-height: 55px;
}
@media (max-width: 1440px) {
  .logo img {
    max-height: 48px;
  }
}
@media (max-width: 1280px) {
  .logo img {
    max-height: 36px;
  }
}
@media (max-width: 560px) {
  .logo img {
    max-height: 34px;
  }
}

.show-result .logo {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  margin-left: 0;
}

.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 12;
  margin-top: -18vh;
}
@media (max-width: 1140px) {
  .content {
    margin-top: -12vh;
  }
}
@media (max-width: 1024px) {
  .content {
    margin-top: -8vh;
  }
}
@media (max-width: 991px) {
  .content {
    margin-top: -6vh;
  }
}
@media (max-width: 860px) {
  .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
  }
}
.content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content__title {
  text-align: center;
  color: #fff;
  font-family: Impact;
  font-size: 74px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__title {
    font-size: 70px;
  }
}
@media (max-width: 1280px) {
  .content__title {
    font-size: 64px;
  }
}
@media (max-width: 1140px) {
  .content__title {
    font-size: 58px;
  }
}
@media (max-width: 860px) {
  .content__title {
    font-size: 50px;
  }
}
@media (max-width: 340px) {
  .content__title {
    font-size: 38px;
  }
}
.content__subtitle {
  text-align: center;
  margin-top: 3px;
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 0px;
}
@media (max-width: 1440px) {
  .content__subtitle {
    font-size: 39px;
  }
}
@media (max-width: 1280px) {
  .content__subtitle {
    font-size: 33px;
  }
}
@media (max-width: 860px) {
  .content__subtitle {
    letter-spacing: 1px;
    font-size: 32px;
  }
}
@media (max-width: 340px) {
  .content__subtitle {
    font-size: 22px;
  }
}
.content__subtitle2 {
  text-align: center;
  color: #fff;
  font-family: Impact;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__subtitle2 {
    font-size: 68px;
  }
}
@media (max-width: 1280px) {
  .content__subtitle2 {
    font-size: 62px;
  }
}
@media (max-width: 1140px) {
  .content__subtitle2 {
    font-size: 56px;
  }
}
@media (max-width: 860px) {
  .content__subtitle2 {
    font-size: 48px;
  }
}
@media (max-width: 340px) {
  .content__subtitle2 {
    font-size: 38px;
  }
}
.content__desc {
  margin-bottom: 30px;
  color: #2a3471;
  text-align: center;
  font-family: "DIN Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 15px;
  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;
}
.content__desc span {
  background: #ffbc09;
  padding-top: 10px;
  padding-bottom: 4px;
}
.content__desc span:first-child {
  padding-left: 10px;
  text-align: center;
}
@media (max-width: 1140px) {
  .content__desc span:first-child {
    padding: 0px;
    letter-spacing: 5px;
    width: 100%;
  }
}
.content__desc span:last-child {
  padding-right: 10px;
  text-align: center;
}
@media (max-width: 1140px) {
  .content__desc span:last-child {
    padding: 0px;
    letter-spacing: 5px;
    width: 80%;
  }
}
@media (max-width: 1440px) {
  .content__desc {
    font-size: 20px;
    padding-bottom: 6px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1140px) {
  .content__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 860px) {
  .content__desc {
    padding-top: 8px;
    padding-bottom: 5px;
    font-size: 20px;
    margin-top: 0;
  }
}
@media (max-width: 340px) {
  .content__desc {
    font-size: 14px;
  }
}
.content__btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  -webkit-box-shadow: 0px 0px 7.35736px 0px #fff;
          box-shadow: 0px 0px 7.35736px 0px #fff;
  color: #f69420;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 15px;
  background: #fff;
}
@media (max-width: 1440px) {
  .content__btn {
    font-size: 20px;
    padding: 20px 30px;
  }
}
@media (max-width: 1140px) {
  .content__btn {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .content__btn {
    padding: 15px 25px;
  }
}
@media (max-width: 991px) {
  .content__btn {
    font-size: 2.3em;
  }
}
@media (max-width: 560px) {
  .content__btn {
    font-size: 3.3em;
  }
}

@-webkit-keyframes blink {
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@keyframes blink {
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.slot-content-wrapper {
  position: relative;
  z-index: 9;
  display: block;
}
@media (max-width: 860px) {
  .slot-content-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  .slot-content-wrapper {
    left: auto;
  }
}

.slot-wrap {
  width: 80.5em;
  height: 55.375em;
  background: url(../images/slot_bg.png) no-repeat center/contain;
  margin: 0 auto;
  padding-left: 6.5em;
  padding-right: 6.5em;
  padding-top: 6.5em;
  padding-bottom: 6.5em;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.slot-container {
  width: 100%;
  height: 100%;
  border-radius: 1.875em;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.slot-container__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0em 0.312em;
  background-position: center top;
  background-repeat: repeat-y;
  height: 100%;
  background-size: 15.8em;
}

.slot_btn {
  display: none;
}
@media (max-width: 860px) {
  .slot_btn {
    margin: 5px auto 0 auto;
    display: block;
    color: #29263a;
    text-align: center;
    font-family: "Montserrat";
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 186px;
    border-radius: 96px;
    background: -webkit-gradient(linear, left bottom, left top, from(#e4672d), to(#e4672d)), #ff9e2c;
    background: linear-gradient(0deg, #e4672d 0%, #e4672d 100%), #ff9e2c;
    -webkit-box-shadow: 0px 0px 10px 0px #ff5f15;
            box-shadow: 0px 0px 10px 0px #ff5f15;
    padding: 16px 36px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: blink 1s infinite;
            animation: blink 1s infinite;
  }
  .slot_btn:hover {
    -webkit-box-shadow: 0 5px 10px #ff5f15, inset 2px 6px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 0 5px 10px #ff5f15, inset 2px 6px 10px rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 560px) {
  .slot_btn {
    font-size: 18px;
    padding: 13px 30px;
  }
}
@media (max-width: 340px) {
  .slot_btn {
    font-size: 16px;
  }
}

.slot-container__item--1 {
  background-image: url("../images/slot_col_1.png");
}

.slot-container__item--2 {
  background-image: url("../images/slot_col_2.png");
}

.slot-container__item--3 {
  background-image: url("../images/slot_col_3.png");
}

.slot-container__item--4 {
  background-image: url("../images/slot_col_4.png");
}

.slot-container__item--5 {
  background-image: url("../images/slot_col_5.png");
}

.slot-container__item--6 {
  background-image: url("../images/slot_col_6.png");
}

.slot-container__win-line {
  top: 48%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  height: 12em;
  width: 100%;
  position: absolute;
  -webkit-box-shadow: 0em 0em 1.5625em 0em gold inset;
  box-shadow: 0em 0em 1.5625em 0em gold inset;
  display: none;
  opacity: 0;
  -webkit-animation: blinking 0.5s infinite ease alternate;
  animation: blinking 0.5s infinite ease alternate;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.slot-container__item--1,
.slot-container__item--3,
.slot-container__item--5,
.slot-container__item--7 {
  -webkit-animation: slots 2.5s infinite ease-in-out;
          animation: slots 2.5s infinite ease-in-out;
}

.slot-container__item--2,
.slot-container__item--4,
.slot-container__item--6 {
  -webkit-animation: slots-reverse 2.5s infinite ease-in-out;
          animation: slots-reverse 2.5s infinite ease-in-out;
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinking {
  0% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slots {
  0% {
    background-position-y: 3%;
  }
  50% {
    background-position-y: -3%;
  }
  100% {
    background-position-y: 3%;
  }
}
@keyframes slots {
  0% {
    background-position-y: 3%;
  }
  50% {
    background-position-y: -3%;
  }
  100% {
    background-position-y: 3%;
  }
}
@-webkit-keyframes slots-reverse {
  0% {
    background-position-y: -3%;
  }
  50% {
    background-position-y: 3%;
  }
  100% {
    background-position-y: -3%;
  }
}
@keyframes slots-reverse {
  0% {
    background-position-y: -3%;
  }
  50% {
    background-position-y: 3%;
  }
  100% {
    background-position-y: -3%;
  }
}
.decor__item1 {
  position: absolute;
  left: 28vw;
  right: auto;
  top: auto;
  bottom: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 0;
  opacity: 1;
  -webkit-animation: fly 2s infinite both alternate ease-in-out;
  animation: fly 2s infinite both alternate ease-in-out;
}
@media (max-width: 1440px) {
  .decor__item1 {
    right: -8%;
    bottom: 7vh;
  }
}
@media (max-width: 860px) {
  .decor__item1 {
    display: none;
  }
}
.decor__item1 img {
  max-height: 78vh;
}
.decor__item5 {
  position: absolute;
  right: -7vw;
  bottom: 14vh;
  z-index: 0;
  -webkit-animation: box 2.5s ease-in-out infinite;
          animation: box 2.5s ease-in-out infinite;
}
.decor__item5 img {
  max-height: 50vh;
}
@media (max-width: 1440px) {
  .decor__item5 img {
    max-height: 29vh;
  }
}
@media (max-width: 860px) {
  .decor__item5 img {
    display: none;
  }
}
.decor__item4 {
  position: absolute;
  left: 0vw;
  bottom: -11vh;
}
.decor__item4 img {
  max-height: 40vh;
  -webkit-animation: decor2 3s infinite ease-in-out;
          animation: decor2 3s infinite ease-in-out;
}
@media (max-width: 860px) {
  .decor__item4 {
    max-height: 32vh;
  }
}
.decor__item3 {
  position: absolute;
  left: 11vw;
  bottom: -4vh;
  z-index: 1;
}
@media (max-width: 860px) {
  .decor__item3 {
    left: auto;
    right: -6%;
    bottom: -6vh;
  }
}
.decor__item3 img {
  max-height: 38vh;
  -webkit-animation: decor1 3s infinite ease-in-out;
          animation: decor1 3s infinite ease-in-out;
}
@media (max-width: 860px) {
  .decor__item3 img {
    max-height: 28vh;
  }
}

.show-result .decor__item1 {
  -webkit-transition: opacity 0.5s ease-in-out, right 0.5s ease-in-out 1s, left 0.5s ease-in-out 1s;
  transition: opacity 0.5s ease-in-out, right 0.5s ease-in-out 1s, left 0.5s ease-in-out 1s;
  opacity: 0;
}

.show-modal .decor__item1 {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  opacity: 1;
  bottom: -24vh;
  left: auto;
  top: auto;
  right: -10vw;
}
.show-modal .decor__item5 {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  right: -10vw;
  bottom: -14vh;
}
.show-modal .decor__item4 {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  left: -3vw;
}
.show-modal .decor__item3 {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  left: 8vw;
}
@media (max-width: 860px) {
  .show-modal .decor__item3 {
    left: auto;
    right: -6%;
    bottom: -6vh;
  }
}

@-webkit-keyframes zevs {
  0% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}

@keyframes zevs {
  0% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}
@-webkit-keyframes smoke {
  0% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
}
@keyframes smoke {
  0% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
}
@-webkit-keyframes lightning-up {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightning-up {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes lightning-down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lightning-down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fly {
  0% {
    -webkit-transform: translateX(1.875em);
    transform: translateX(1.875em);
  }
  100% {
    -webkit-transform: translateX(-10, 16);
    transform: translateX(-10, 16);
  }
}
@keyframes fly {
  0% {
    -webkit-transform: translateX(1.875em);
    transform: translateX(1.875em);
  }
  100% {
    -webkit-transform: translateX(-10, 16);
    transform: translateX(-10, 16);
  }
}
@-webkit-keyframes box {
  0% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
}
@keyframes box {
  0% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
}
@-webkit-keyframes decor2 {
  0% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
}
@keyframes decor2 {
  0% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(-7px, 7px) scale(1.05);
            transform: translate(-7px, 7px) scale(1.05);
  }
}
@-webkit-keyframes decor1 {
  0% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
}
@keyframes decor1 {
  0% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(7px, -7px) scale(1.05);
            transform: translate(7px, -7px) scale(1.05);
  }
}
.modal {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Oswald;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.modal__wrapper {
  margin: 0 auto;
  z-index: 20;
}
.modal__content {
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@media (max-width: 860px) {
  .modal__content {
    top: 40%;
    width: 70%;
  }
}
@media (max-width: 680px) {
  .modal__content {
    width: 90%;
  }
}
@media (max-width: 560px) {
  .modal__content {
    top: 45%;
  }
}
@media (max-width: 480px) {
  .modal__content {
    top: 35%;
  }
}
.modal__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10vh 0px 20vh 0;
}
@media (max-width: 860px) {
  .modal__logo {
    margin-bottom: 90px;
  }
}
.modal__logo img {
  max-height: 90px;
}
@media (max-width: 1440px) {
  .modal__logo img {
    max-height: 80px;
  }
}
@media (max-width: 860px) {
  .modal__logo img {
    max-height: 52px;
  }
}
.modal__desc {
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
  font-family: "Impact";
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 40%;
  letter-spacing: 2.455px;
  text-transform: uppercase;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .modal__desc {
    font-size: 64px;
  }
}
@media (max-width: 1320px) {
  .modal__desc {
    font-size: 60px;
  }
}
@media (max-width: 1180px) {
  .modal__desc {
    font-size: 50px;
  }
}
@media (max-width: 860px) {
  .modal__desc {
    font-size: 44px;
  }
}
@media (max-width: 560px) {
  .modal__desc {
    font-size: 30px;
  }
}
@media (max-width: 340px) {
  .modal__desc {
    font-size: 28px;
  }
}
.modal__prize {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.modal__prize img {
  max-height: 22vh;
}
@media (max-width: 1280px) {
  .modal__prize img {
    max-height: 20vh;
  }
}
@media (max-width: 860px) {
  .modal__prize img {
    max-height: 18vh;
    -webkit-transform: rotate(-1deg);
        -ms-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
}
@media (max-width: 560px) {
  .modal__prize img {
    max-height: 11vh;
  }
}

.show-modal .modal__desc,
.show-modal .modal__prize {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.8s ease-in-out 1s;
  transition: all 0.8s ease-in-out 1s;
}

.confeti2,
.confeti {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

@-webkit-keyframes prize {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes prize {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#go-to-forma {
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  -webkit-box-shadow: 0px 0px 7.35736px 0px #fff;
          box-shadow: 0px 0px 7.35736px 0px #fff;
  color: #f69420;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 15px;
  background: #fff;
  margin-top: 25px;
}
@media (max-width: 1440px) {
  #go-to-forma {
    font-size: 20px;
    padding: 20px 30px;
  }
}
@media (max-width: 1140px) {
  #go-to-forma {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  #go-to-forma {
    padding: 15px 25px;
  }
}
@media (max-width: 991px) {
  #go-to-forma {
    font-size: 2.3em;
  }
}
@media (max-width: 560px) {
  #go-to-forma {
    font-size: 3.3em;
  }
}

.modal.show-forma .modal__content {
  -webkit-transform: translateY(1000%);
      -ms-transform: translateY(1000%);
          transform: translateY(1000%);
  opacity: 0;
}

.modal.show-forma .wrapper_form {
  -webkit-transform: translate(-50%, -60%);
      -ms-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.wrapper_form {
  -webkit-transform: translate(-50%, -1000%);
      -ms-transform: translate(-50%, -1000%);
          transform: translate(-50%, -1000%);
  opacity: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1024px) and (max-height: 600px) {
  .wrapper_form {
    top: 60%;
  }
}
@media (max-width: 860px) {
  .wrapper_form {
    min-width: 400px;
  }
}
@media (max-width: 560px) {
  .wrapper_form {
    min-width: 330px;
    top: 50%;
  }
}
@media (max-width: 330px) {
  .wrapper_form {
    min-width: 90%;
  }
}

.title_form {
  color: #fff;
  font-family: "DIN Condensed";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .title_form {
    font-size: 50px;
  }
}
@media (max-width: 560px) {
  .title_form {
    margin-bottom: 28px;
    font-size: 46px;
  }
}
@media (max-width: 360px) {
  .title_form {
    font-size: 36px;
  }
}
@media (max-width: 320px) {
  .title_form {
    font-size: 30px;
  }
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}

.label-email,
.label-password {
  width: 100%;
}

.form__label-input input {
  color: rgba(42, 52, 113, 0.7);
  font-family: "DIN Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  background: #ffbc09;
  border: none;
  width: 100%;
  padding: 20px 57px 18px 24px;
}
.form__label-input input:focus {
  background: #fff;
}
@media (max-width: 560px) {
  .form__label-input input {
    font-size: 15px;
    padding: 14px 40px 13px 18px;
  }
}

.form__label-input input:focus {
  outline: none;
}

.label-password {
  position: relative;
}
.label-password .btn_pass {
  position: absolute;
  right: 10px;
  bottom: 18px;
  border: none;
  background: transparent;
}
.label-password .btn_pass.active::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  right: 3px;
  height: 2px;
  background: #77959d;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media (max-width: 560px) {
  .label-password .btn_pass.active::after {
    top: 12px;
    left: 4px;
    right: 5px;
  }
}
@media (max-width: 560px) {
  .label-password .btn_pass {
    right: 8px;
    bottom: 9px;
  }
  .label-password .btn_pass img {
    width: 24px;
    height: 24px;
  }
}

.label-checkbox {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.label-checkbox input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.checkmark {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  top: 3px;
  left: 2px;
  height: 25px;
  width: 25px;
  padding: 3px;
  background: #ff9e2c;
  border-radius: 5px;
}
@media (max-width: 560px) {
  .checkmark {
    height: 20px;
    width: 20px;
  }
}

.label-checkbox input:checked + .checkmark::after {
  display: block;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.label-checkbox .checkmark::after {
  border: 2px solid #fff;
  left: 8px;
  top: 3px;
  border-width: 0 3px 3px 0;
  width: 6px;
  height: 11px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 560px) {
  .label-checkbox .checkmark::after {
    width: 5px;
    height: 7px;
    left: 6px;
  }
}

.checkbox-desc {
  color: #fff;
  font-family: "Inter";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 14px;
}
@media (max-width: 560px) {
  .checkbox-desc {
    font-size: 9px;
  }
}
.checkbox-desc button {
  font-weight: 800;
  border: none;
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.form__btn {
  color: #f69420;
  text-align: center;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 140px;
  border-radius: 96.209px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 7.35736px 0px #fff;
          box-shadow: 0px 0px 7.35736px 0px #fff;
  padding: 16px 40px;
  border-radius: 15px;
  border: none;
  margin-top: 15px;
}
@media (max-width: 1140px) {
  .form__btn {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .form__btn {
    padding: 16px 36px;
  }
}
@media (max-width: 560px) {
  .form__btn {
    padding: 14px 40px;
    font-size: 20px;
  }
}

.sound_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}