@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;
  font-family: 'Montserrat', sans-serif;
}

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;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DIN-Condensed-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "DIN Condensed";
  src: url("../fonts/DINCondensed-Light.ttf");
  font-weight: 300;
}
.main_wrapper {
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: Impact, sans-serif;
}
.main_wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/main-bg.webp") center/cover;
  -webkit-animation: bounce 40s infinite both alternate linear;
  animation: bounce 40s infinite both alternate linear;
}
@media (max-width: 560px) {
  .main_wrapper::before {
    background: url("../images/main-bg-mob.webp") top/cover;
  }
}

.container {
  max-width: 100%;
}

.main-wrapper-block {
  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;
  height: 100%;
}
@media (max-width: 560px) {
  .main-wrapper-block {
    display: block;
    text-align: center;
    height: auto;
  }
}

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

.top-wrapper-block {
  width: 100%;
  z-index: 11;
}

.main-logo {
  text-align: center;
  padding: 2vh 0 2vh 0;
}
@media (max-width: 560px) {
  .main-logo {
    padding: 2vh 0 2vh 0;
  }
}
.main-logo img {
  max-height: 10vh;
}
@media (max-width: 1280px) {
  .main-logo img {
    max-height: 4.8vh;
  }
}
@media (max-width: 860px) {
  .main-logo img {
    max-height: 4.3vh;
  }
}
@media (max-width: 560px) {
  .main-logo img {
    max-height: 6vh;
  }
}

.main__wheel {
  margin-top: 30px;
  margin-left: 14vw;
}
@media (max-width: 860px) {
  .main__wheel {
    margin-left: 0;
  }
}

.wheel-container {
  position: relative;
  max-height: calc(100vh - 100px - 10vh - 100px);
  max-width: calc(100vh - 100px - 10vh - 100px);
}
@media (min-width: 1920px) {
  .wheel-container {
    width: 27vw !important;
    height: 27vw !important;
  }
}
@media (max-width: 860px) {
  .wheel-container {
    width: 90vw !important;
    height: 90vw !important;
    margin: auto;
  }
}
@media (max-width: 430px) and (max-height: 800px) {
  .wheel-container {
    width: 85vw !important;
    height: 85vw !important;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .wheel-container {
    width: 60vw !important;
    height: 60vw !important;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .wheel-container {
    width: 60vw !important;
    height: 60vw !important;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .wheel-container {
    width: 60vw !important;
    height: 60vw !important;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .wheel-container {
    width: 60vw !important;
    height: 60vw !important;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .wheel-container {
    width: 65vw !important;
    height: 65vw !important;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .wheel-container {
    width: 65vw !important;
    height: 65vw !important;
  }
}

.wheel {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-image: url("../images/wheel-bg.webp");
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  left: 0;
  position: relative;
  z-index: 10;
}

.js-wheel.is-animated {
  -webkit-animation: wheelRotation 2s infinite ease;
          animation: wheelRotation 2s infinite ease;
}

.wheel__cursor {
  position: absolute;
  top: 0;
  margin-top: -9%;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 42%;
}
.wheel__cursor img {
  max-height: 50%;
  display: block;
}

.wheel__mini-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  width: 17.5%;
  height: 17.5%;
}

.wheel_mini {
  display: inline-block;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-image: url("../images/pleambe.webp");
  background-color: transparent;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-animation: blink-reverse 1s infinite;
          animation: blink-reverse 1s infinite;
}

.wheel__btn-wrapper {
  position: absolute;
  bottom: -22%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 15;
  width: 100%;
}
@media (max-width: 560px) {
  .wheel__btn-wrapper {
    bottom: -24%;
  }
}
@media (max-width: 430px) {
  .wheel__btn-wrapper {
    bottom: -21%;
  }
}
@media (max-width: 400px) {
  .wheel__btn-wrapper {
    bottom: -23%;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .wheel__btn-wrapper {
    bottom: -10vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .wheel__btn-wrapper {
    bottom: -30%;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .wheel__btn-wrapper {
    bottom: -30%;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .wheel__btn-wrapper {
    bottom: -30%;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .wheel__btn-wrapper {
    bottom: -30%;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .wheel__btn-wrapper {
    bottom: -30%;
  }
}

.hero-btn {
  display: block;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color:#0d0d0d;
  font-family: "Montserrat";
  font-size: 2.5vh;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  padding: 2vh 3.8vh;
  border-radius: 11.3vh;
  background: -webkit-gradient(linear, left bottom, left top, from(#816812), to(#cfaa24)), #cfaa24;
  background: linear-gradient(0deg, #cfaa24 0%, #816812 100%), #816812;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
  -webkit-transition: all 0.6s ease-in-out;
  margin: 0 auto;
  transition: all 0.6s ease-in-out;
}
.hero-btn:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#67530c), to(#cfaa24)), #cfaa24;
    background: linear-gradient(0deg, #cfaa24 0%, #67530c 100%), #67530c;
    -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .hero-btn {
    font-size: 2vh;
    padding: 1.8vh 3.2vh;
  }
}

.hero-btn.is-animated {
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}

.decor__zevs1 {
  z-index: 7;
  position: absolute;
  bottom: -28vh;
  left: 7vw;
  opacity: 1;
  -webkit-animation: girl 2.5s ease-in-out infinite;
          animation: girl 2.5s ease-in-out infinite;
}
@media (max-width: 1600px) {
  .decor__zevs1 {
    left: 21vw;
  }
}
@media (max-width: 1440px) {
  .decor__zevs1 {
    left: 0vw;
  }
}
@media (max-width: 1280px) {
  .decor__zevs1 {
    left: 14vw;
  }
}
@media (max-width: 1140px) {
  .decor__zevs1 {
    left: 9vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__zevs1 {
    left: 18vw;
  }
}
@media (max-width: 991px) {
  .decor__zevs1 {
    left: 1vw;
  }
}
@media (max-width: 860px) {
  .decor__zevs1 {
    left: -18vw;
  }
}
@media (max-width: 680px) {
  .decor__zevs1 {
    left: -25vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__zevs1 {
    left: -18vw;
    bottom: -18vh;
    z-index: 5;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__zevs1 {
    left: -21vw;
    bottom: -21vh;
    z-index: 5;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__zevs1 {
    bottom: -22vh;
    left: -22vw;
    z-index: 5;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__zevs1 {
    left: -23vw;
    bottom: -23vh;
    z-index: 5;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__zevs1 {
    left: -30vw;
    bottom: -22vh;
    z-index: 5;
  }
}
@media (max-width: 560px) {
  .decor__zevs1 {
    display: none;
  }
}
.decor__zevs1 img {
  max-height: 130vh;
}
.decor__zevs2 {
  display: none;
}
@media (max-width: 560px) {
  .decor__zevs2 {
    display: block;
    z-index: 7;
    position: absolute;
    left: 20vw;
    bottom: -55vh;
    -webkit-animation: girl 2.5s ease-in-out infinite;
            animation: girl 2.5s ease-in-out infinite;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .decor__zevs2 {
    left: 16vw;
    bottom: -50vh;
  }
}
@media (max-width: 430px) {
  .decor__zevs2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    left: 1vw;
    bottom: -39vh;
  }
}
@media (max-width: 400px) {
  .decor__zevs2 {
    bottom: -37vh;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__zevs2 {
    bottom: -46vh;
  }
}
@media (max-width: 360px) and (max-height: 740px) {
  .decor__zevs2 {
    bottom: -41vh;
  }
}
@media (max-width: 344px) and (max-height: 882px) {
  .decor__zevs2 {
    bottom: -30vh;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__zevs2 {
    bottom: -50vh;
    left: 24vw;
  }
}
.decor__zevs2 img {
  max-height: 90vh;
}
@media (max-width: 430px) {
  .decor__zevs2 img {
    max-height: 90vh;
  }
}
.decor__smoke_left {
  opacity: 1;
  z-index: 2;
  position: absolute;
  bottom: -3vh;
  left: -4vw;
  -webkit-animation: box 2.5s ease-in-out infinite;
          animation: box 2.5s ease-in-out infinite;
}
@media (max-width: 560px) {
  .decor__smoke_left {
    display: none;
  }
}
.decor__smoke_left img {
  max-height: 75vh;
}
.decor__smoke_right {
  opacity: 1;
  z-index: 8;
  position: absolute;
  bottom: -1vh;
  right: -2vw;
  -webkit-animation: box2 2.5s ease-in-out infinite;
          animation: box2 2.5s ease-in-out infinite;
}
@media (max-width: 1600px) {
  .decor__smoke_right {
    right: -2vw;
  }
}
@media (max-width: 1140px) {
  .decor__smoke_right {
    right: -10vw;
  }
}
@media (max-width: 991px) {
  .decor__smoke_right {
    right: -15vw;
  }
}
@media (max-width: 560px) {
  .decor__smoke_right {
    display: none;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__smoke_right {
    right: -20vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__smoke_right {
    right: -30vw;
  }
}
.decor__smoke_right img {
  max-height: 75vh;
}
.decor__smoke_mob {
  display: none;
}
@media (max-width: 560px) {
  .decor__smoke_mob {
    display: block;
    position: absolute;
    bottom: -20vh;
    left: -1vw;
    right: 0;
    z-index: 6;
    opacity: 1;
    width: 120vw;
  }
}
@media (max-width: 480px) {
  .decor__smoke_mob {
    bottom: -20vh;
  }
}
@media (max-width: 430px) {
  .decor__smoke_mob {
    bottom: -5vh;
  }
}
@media (max-width: 375px) and (max-height: 667px) {
  .decor__smoke_mob {
    bottom: -8vh;
  }
}
@media (max-width: 360px) and (max-height: 740px) {
  .decor__smoke_mob {
    bottom: -10vh;
  }
}
@media (max-width: 344px) and (max-height: 882px) {
  .decor__smoke_mob {
    bottom: -2vh;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__smoke_mob {
    bottom: -12vh;
  }
}
.decor__smoke_mob img {
  width: 110vw;
  -webkit-animation: smoke2 2.5s ease-in-out infinite;
          animation: smoke2 2.5s ease-in-out infinite;
}

.modal {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  min-width: 320px;
  text-align: center;
  font-size: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  overflow: hidden;
  -webkit-transition: opacity 1s, visibility 1s, z-index 0.3s;
  transition: opacity 1s, visibility 1s, z-index 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
}

.modal__container {
  max-width: 1200px;
  width: 100%;
  padding: 10px;
  min-height: 540px;
  text-align: center;
  /* background-color: #fff; */
  border-radius: 40px;
  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;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 700px;
  background-image: url(../images/smoke_modal.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  background-position-y: 4vh;
}
@media (max-width: 860px) {
  .modal__container {
    background-position-y: 13vh;
  }
}
@media (max-width: 680px) {
  .modal__container {
    background-size: 130%;
  }
}
@media (max-width: 560px) {
  .modal__container {
    background-size: 160%;
    background-position-y: 8vh;
  }
}
@media (max-width: 480px) {
  .modal__container {
    background-size: 180%;
    background-position-y: 10vh;
  }
}
@media (max-width: 430px) {
  .modal__container {
    background-position-y: 15vh;
  }
}
@media (max-width: 400px) {
  .modal__container {
    background-position-y: 20vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .modal__container {
    background-position-y: 4vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .modal__container {
    background-position-y: 7vh;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .modal__container {
    background-position-y: 10vh;
  }
}

.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 30px;
  text-align: center;
  z-index: 5;
  position: relative;
  top: 10vh;
  max-width: 600px;
  width: 600px;
  height: 860px;
}
@media (max-width: 480px) {
  .modal__content {
    top: 12vh;
    padding: 0px 10px;
  }
}
.modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg_content.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media (max-width: 560px) {
  .modal__content::before {
    top: 1%;
    background-position-x: 50%;
    background-size: 110%;
  }
}
@media (max-width: 480px) {
  .modal__content::before {
    top: 5%;
    background-size: 120%;
  }
}
@media (max-width: 430px) {
  .modal__content::before {
    top: 10%;
  }
}
@media (max-width: 400px) {
  .modal__content::before {
    top: 8%;
    background-size: 140%;
  }
}
@media (max-width: 360px) {
  .modal__content::before {
    top: 10%;
  }
}

.modal__title,
.modal__subtitle {
  color: #fff;
  text-align: center;
  text-shadow: 5px -1px 37.8px #f0d;
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .modal__title,
  .modal__subtitle {
    font-size: 14px;
  }
}
@media (max-width: 430px) {
  .modal__title,
  .modal__subtitle {
    font-size: 12px;
  }
}

.modal__subtitle .amount {
  color: #ffff;
  font-family: "Montserrat";
  font-size: 35px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
    text-shadow:
    0 0 5px #cfaa24,
    0 0 10px #cfaa24,
    0 0 20px #cfaa24,
    0 0 40px #cfaa24,
    0 0 80px #cfaa24,
    0 0 90px #cfaa24,
    0 0 100px #cfaa24,
    0 0 150px #cfaa24;
}
@media (max-width: 480px) {
  .modal__subtitle .amount {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .modal__subtitle .amount {
    font-size: 25px;
  }
}

.modal__desc {
  color: #fff;
  font-family: "Montserrat";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 480px) {
  .modal__desc {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .modal__desc {
    font-size: 18px;
  }
}

a.modal-btn {
  border-radius: 72px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: normal;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: 900;
  padding: 16px 34px;
  display: block;
  background: #cfaa24;
  color: #010001;
  margin-top: 25px;
  cursor: pointer;
}
@media (max-width: 480px) {
  a.modal-btn {
    font-size: 14px;
    padding: 15px 30px;
  }
}
@media (max-width: 430px) {
  a.modal-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}

@-webkit-keyframes girl {
  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 girl {
  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 box2 {
  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 box2 {
  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);
  }
}
@-webkit-keyframes plane-left {
  0% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
  50% {
    -webkit-transform: translate(5px, 5px) scale(1.05);
            transform: translate(5px, 5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
}
@keyframes plane-left {
  0% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
  50% {
    -webkit-transform: translate(5px, 5px) scale(1.05);
            transform: translate(5px, 5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(-5px, -5px) scale(1);
            transform: translate(-5px, -5px) scale(1);
  }
}
@-webkit-keyframes plane-right {
  0% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
  50% {
    -webkit-transform: translate(-5px, -5px) scale(1.05);
            transform: translate(-5px, -5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
}
@keyframes plane-right {
  0% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
  50% {
    -webkit-transform: translate(-5px, -5px) scale(1.05);
            transform: translate(-5px, -5px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(5px, 5px) scale(1);
            transform: translate(5px, 5px) scale(1);
  }
}
@-webkit-keyframes bg_top {
  0% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  50% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
}
@keyframes bg_top {
  0% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
  50% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  100% {
    -webkit-transform: translate(0px, -20px);
            transform: translate(0px, -20px);
  }
}
@-webkit-keyframes donat_decor {
  0% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
  50% {
    -webkit-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
  }
  100% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
}
@keyframes donat_decor {
  0% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
  50% {
    -webkit-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
  }
  100% {
    -webkit-transform: translate(15%, 0px);
            transform: translate(15%, 0px);
  }
}
@-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);
  }
}
@-webkit-keyframes blink-reverse {
  0% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@keyframes blink-reverse {
  0% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
@-webkit-keyframes palm {
  0% {
    -webkit-transform: translate(0, -7px) scale(1.05);
            transform: translate(0, -7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(0, -7px) scale(1.05);
            transform: translate(0, -7px) scale(1.05);
  }
}
@keyframes palm {
  0% {
    -webkit-transform: translate(0, -7px) scale(1.05);
            transform: translate(0, -7px) scale(1.05);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1);
            transform: translate(0px, 0px) scale(1);
  }
  100% {
    -webkit-transform: translate(0, -7px) scale(1.05);
            transform: translate(0, -7px) scale(1.05);
  }
}
@-webkit-keyframes smoke2 {
  0% {
    -webkit-transform: translate(0, -7px) scale(1);
            transform: translate(0, -7px) scale(1);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1.05);
            transform: translate(0px, 0px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(0, -7px) scale(1);
            transform: translate(0, -7px) scale(1);
  }
}
@keyframes smoke2 {
  0% {
    -webkit-transform: translate(0, -7px) scale(1);
            transform: translate(0, -7px) scale(1);
  }
  50% {
    -webkit-transform: translate(0px, 0px) scale(1.05);
            transform: translate(0px, 0px) scale(1.05);
  }
  100% {
    -webkit-transform: translate(0, -7px) scale(1);
            transform: translate(0, -7px) scale(1);
  }
}
@-webkit-keyframes wheelRotation {
  0%, to {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
@keyframes wheelRotation {
  0%, to {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}