@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Unbounded:regular,500,700,900&display=swap");
/*-- Абсолютное позиционирование  по центру*/
/*
 * Функция возвращающая 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;
}

img {
  max-width: 100%;
}

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

body {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: url("../images/bg.webp") right/cover no-repeat;
}
@media (max-width: 1440px) {
  body {
    background-position-x: 35%;
  }
}
@media (max-width: 860px) {
  body {
    background-position-x: 45%;
  }
}
@media (max-width: 560px) {
  body {
    background: url("../images/bg_mobil.webp") bottom/cover no-repeat;
  }
}

.main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: 100vw;
  font-size: 8px;
  position: relative;
  overflow: hidden;
  font-family: "Unbounded", sans-serif;
  padding-left: 90px;
}
@media (max-width: 1440px) {
  .main-wrapper {
    padding-left: 60px;
  }
}
@media (max-width: 860px) {
  .main-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 15px;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .main-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .main-wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6vh;
  }
}

.content {
  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;
  position: relative;
  z-index: 30;
}
.content__wrapper {
  -ms-flex-item-align: start;
      align-self: flex-start;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
@media (max-width: 860px) {
  .content__wrapper {
    gap: 10px;
  }
}
.content__logo {
  margin-bottom: 8vh;
  display: block;
}
@media (max-width: 860px) {
  .content__logo {
    margin-top: 8vh;
    margin-bottom: 5vh;
  }
}
@media (max-width: 560px) {
  .content__logo {
    margin-top: 6vh;
    margin-bottom: 3vh;
  }
}
.content__logo img {
  max-height: 5vh;
}
@media (max-width: 860px) {
  .content__logo img {
    max-height: 4.5vh;
  }
}
.content__box {
  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;
  width: 100%;
  position: relative;
  z-index: 4;
}
.content__title {
  color: #fff;
  text-align: center;
  font-family: "Unbounded";
  font-size: 3.8461538462vh;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__title {
    font-size: 3.6057692308vh;
  }
}
@media (max-width: 1140px) {
  .content__title {
    font-size: 3.3653846154vh;
  }
}
@media (max-width: 860px) {
  .content__title {
    font-size: 2.8846153846vh;
  }
}
@media (max-width: 560px) {
  .content__title {
    font-size: 2.4038461538vh;
  }
}
@media (max-width: 350px) {
  .content__title {
    font-size: 2.1634615385vh;
  }
}
.content__subtitle {
  color: #ffea21;
  font-family: "Unbounded";
  font-size: 13.2211538462vh;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2.386px 2.386px 5.966px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__subtitle {
    font-size: 12.0192307692vh;
  }
}
@media (max-width: 1140px) {
  .content__subtitle {
    font-size: 11.4182692308vh;
  }
}
@media (max-width: 860px) {
  .content__subtitle {
    font-size: 9.6153846154vh;
  }
}
@media (max-width: 560px) {
  .content__subtitle {
    font-size: 8.1730769231vh;
  }
}
@media (max-width: 350px) {
  .content__subtitle {
    font-size: 7.2115384615vh;
  }
}
.content__desc {
  color: #fff;
  font-family: "Unbounded";
  font-size: 5.0480769231vh;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .content__desc {
    font-size: 4.5673076923vh;
  }
}
@media (max-width: 1140px) {
  .content__desc {
    font-size: 4.3269230769vh;
  }
}
@media (max-width: 860px) {
  .content__desc {
    font-size: 3.6057692308vh;
  }
}
@media (max-width: 560px) {
  .content__desc {
    font-size: 3.125vh;
  }
}
@media (max-width: 350px) {
  .content__desc {
    font-size: 2.7644230769vh;
  }
}
.content__btn {
  text-decoration: none;
  border-radius: 11.7788461538vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#eb22bc), to(#9e00ff));
  background: linear-gradient(180deg, #eb22bc 0%, #9e00ff 100%);
  color: #fff;
  font-family: "Unbounded";
  font-size: 3.125vh;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 7.2115384615vh;
  padding: 3.125vh 6.4903846154vh;
  z-index: 10;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}
@media (any-hover: hover) {
  .content__btn:hover {
    -webkit-box-shadow: 0 0 10px #eb22bc;
            box-shadow: 0 0 10px #eb22bc;
    color: #dddbdb;
  }
}
@media (max-width: 1440px) {
  .content__btn {
    font-size: 2.8846153846vh;
    padding: 2.8846153846vh 6.25vh;
  }
}
@media (max-width: 1140px) {
  .content__btn {
    font-size: 2.7644230769vh;
    padding: 2.7644230769vh 6.3701923077vh;
  }
}
@media (max-width: 860px) {
  .content__btn {
    font-size: 2.6442307692vh;
    padding: 2.4038461538vh 5.7692307692vh;
    margin-top: 3.6057692308vh;
  }
}
@media (max-width: 560px) {
  .content__btn {
    font-size: 2.4038461538vh;
    padding: 2.1634615385vh 5.5288461538vh;
  }
}

.decor__egg-container {
  position: absolute;
  z-index: 20;
  bottom: -18vh;
  right: 5vw;
  cursor: pointer;
  height: 150%;
  max-height: 120vh;
  width: 50%;
  -webkit-animation: up 2.5s ease-in-out infinite;
          animation: up 2.5s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 1660px) {
  .decor__egg-container {
    right: 4vw;
  }
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__egg-container {
    right: 6vw;
  }
}
@media (max-width: 1440px) {
  .decor__egg-container {
    right: 2vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__egg-container {
    right: 6vw;
  }
}
@media (max-width: 1140px) {
  .decor__egg-container {
    right: -4vw;
    bottm: -20vh;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__egg-container {
    right: 2vw;
  }
}
@media (max-width: 860px) {
  .decor__egg-container {
    right: -5vw;
    bottom: -25vh;
    max-height: 110vh;
  }
}
@media (max-width: 680px) {
  .decor__egg-container {
    right: -8vw;
    bottom: -30vh;
  }
}
@media (max-width: 560px) {
  .decor__egg-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    max-height: 70vh;
    right: 0;
    bottom: -5vh;
  }
}
@media (max-width: 480px) {
  .decor__egg-container {
    max-height: 60vh;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__egg-container {
    width: 60%;
    bottom: -30vh;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__egg-container {
    width: 60%;
    bottom: -30vh;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__egg-container {
    width: 60%;
    bottom: -32vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__egg-container {
    width: 60%;
    bottom: -30vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__egg-container {
    width: 60%;
    bottom: -30vh;
  }
}
.decor__egg-container .egg {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  will-change: opacity;
}
.decor__egg-container .egg.active {
  opacity: 1;
}
.decor__egg-container .egg.egg-shake-animation {
  -webkit-animation: egg-shaking 1.2s ease-in-out infinite;
          animation: egg-shaking 1.2s ease-in-out infinite;
}
.decor__egg-container .egg-transition-second {
  -webkit-animation: second-egg-animation 0.7s ease forwards;
          animation: second-egg-animation 0.7s ease forwards;
}
.decor__egg-container .egg-transition-third {
  -webkit-animation: crack-egg-animation 0.8s ease-in-out forwards;
          animation: crack-egg-animation 0.8s ease-in-out forwards;
}
.decor__egg-container .egg-transition-bunny {
  -webkit-animation: bunny-hatch-animation 1s ease-out forwards;
          animation: bunny-hatch-animation 1s ease-out forwards;
}
.decor__eggs-top {
  position: absolute;
  z-index: 10;
  top: -1vh;
  right: 2vw;
  -webkit-animation: down 2.5s ease-in-out infinite;
          animation: down 2.5s ease-in-out infinite;
}
.decor__eggs-top--circle {
  z-index: 11;
  mix-blend-mode: screen;
}
@media (max-width: 1660px) {
  .decor__eggs-top {
    right: -1;
  }
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__eggs-top {
    right: 6vw;
  }
}
@media (max-width: 1440px) {
  .decor__eggs-top {
    right: -6vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__eggs-top {
    right: 2vw;
  }
}
@media (max-width: 1280px) {
  .decor__eggs-top {
    right: -10vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__eggs-top {
    right: -2vw;
  }
}
@media (max-width: 1140px) {
  .decor__eggs-top {
    top: 2vh;
    right: -12vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__eggs-top {
    right: -1vw;
  }
}
@media (max-width: 991px) {
  .decor__eggs-top {
    top: 4vh;
    right: -20vw;
  }
}
@media (max-width: 860px) {
  .decor__eggs-top {
    top: 34vh;
    right: -12vw;
  }
}
@media (max-width: 680px) {
  .decor__eggs-top {
    top: 45vh;
    right: -23vw;
  }
}
@media (max-width: 560px) {
  .decor__eggs-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 110%;
    right: 0;
    top: 42vh;
  }
}
@media (max-width: 480px) {
  .decor__eggs-top {
    top: 50vh;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__eggs-top {
    top: 45vh;
    right: -19vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__eggs-top {
    top: 45vh;
    right: -21vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__eggs-top {
    top: 45vh;
    right: -24vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__eggs-top {
    top: 41vh;
    right: -23vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__eggs-top {
    top: 41vh;
    right: -18vw;
  }
}
.decor__eggs-top img {
  max-height: 70vh;
}
@media (max-width: 1140px) {
  .decor__eggs-top img {
    max-height: 55vh;
  }
}
@media (max-width: 860px) {
  .decor__eggs-top img {
    max-height: 40vh;
  }
}
@media (max-width: 560px) {
  .decor__eggs-top img {
    max-height: 60vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__eggs-top img {
    max-height: 40vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__eggs-top img {
    max-height: 40vh;
  }
}
.decor__eggs-bottom {
  position: absolute;
  z-index: 6;
  bottom: -2vh;
  right: 6vw;
  -webkit-animation: decor1 2.5s ease-in-out infinite;
          animation: decor1 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) {
  .decor__eggs-bottom {
    right: 4vw;
  }
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__eggs-bottom {
    right: 6vw;
  }
}
@media (max-width: 1440px) {
  .decor__eggs-bottom {
    right: -2vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__eggs-bottom {
    right: 4vw;
  }
}
@media (max-width: 1280px) {
  .decor__eggs-bottom {
    right: -6vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__eggs-bottom {
    right: 2vw;
  }
}
@media (max-width: 1140px) {
  .decor__eggs-bottom {
    bottom: 2vh;
    right: -8vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__eggs-bottom {
    right: 1vw;
  }
}
@media (max-width: 991px) {
  .decor__eggs-bottom {
    bottom: 3vh;
    right: -14vw;
  }
}
@media (max-width: 860px) {
  .decor__eggs-bottom {
    right: -10vw;
  }
}
@media (max-width: 680px) {
  .decor__eggs-bottom {
    bottom: -2vh;
    right: -24vw;
  }
}
@media (max-width: 560px) {
  .decor__eggs-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 120%;
    right: auto;
    left: -44vw;
    bottom: 9vh;
  }
}
@media (max-width: 480px) {
  .decor__eggs-bottom {
    bottom: 3vh;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__eggs-bottom {
    bottom: 1vh;
    right: -19vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__eggs-bottom {
    bottom: -1vh;
    right: -24vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__eggs-bottom {
    bottom: -1vh;
    right: -25vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__eggs-bottom {
    bottom: 1vh;
    right: -23vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__eggs-bottom {
    bottom: 1vh;
    right: -19vw;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__eggs-bottom {
    left: -40vw;
    bottom: 4vh;
  }
}
.decor__eggs-bottom img {
  max-height: 48vh;
}
@media (max-width: 1140px) {
  .decor__eggs-bottom img {
    max-height: 40vh;
  }
}
@media (max-width: 860px) {
  .decor__eggs-bottom img {
    max-height: 30vh;
  }
}
@media (max-width: 560px) {
  .decor__eggs-bottom img {
    max-height: 50vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__eggs-bottom img {
    max-height: 30vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__eggs-bottom img {
    max-height: 30vh;
  }
}
.decor__smoke-right {
  position: absolute;
  z-index: 7;
  bottom: -2vh;
  right: -1vw;
  -webkit-animation: movie-right 2.5s ease-in-out infinite;
          animation: movie-right 2.5s ease-in-out infinite;
}
.decor__smoke-right img {
  max-height: 100vh;
}
.decor__box-right {
  z-index: 12;
  position: absolute;
  bottom: -35vh;
  right: -10vw;
  -webkit-animation: decor2 2.5s ease-in-out infinite;
          animation: decor2 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) {
  .decor__box-right {
    right: -13vw;
    bottom: -38vh;
  }
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__box-right {
    right: -6vw;
  }
}
@media (max-width: 1440px) {
  .decor__box-right {
    right: -21vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__box-right {
    right: -10vw;
  }
}
@media (max-width: 1280px) {
  .decor__box-right {
    right: -24vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__box-right {
    right: -13vw;
  }
}
@media (max-width: 1140px) {
  .decor__box-right {
    right: -28vw;
    bottom: -30vh;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__box-right {
    right: -17vw;
  }
}
@media (max-width: 991px) {
  .decor__box-right {
    right: -33vw;
  }
}
@media (max-width: 860px) {
  .decor__box-right {
    right: -30vw;
    bottom: -24vh;
  }
}
@media (max-width: 680px) {
  .decor__box-right {
    right: -44vw;
  }
}
@media (max-width: 560px) {
  .decor__box-right {
    right: -22vw;
    bottom: -15vh;
  }
}
@media (max-width: 480px) {
  .decor__box-right {
    right: -27vw;
  }
}
@media (max-width: 430px) {
  .decor__box-right {
    right: -35vw;
    bottom: -17vh;
  }
}
@media screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .decor__box-right {
    bottom: -25vh;
    right: -40vw;
  }
}
@media screen and (device-width: 820px) and (device-height: 1180px) and (orientation: portrait) {
  .decor__box-right {
    bottom: -25vh;
    right: -45vw;
  }
}
@media screen and (device-width: 853px) and (device-height: 1280px) and (orientation: portrait) {
  .decor__box-right {
    bottom: -25vh;
    right: -45vw;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__box-right {
    bottom: -25vh;
    right: -60vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__box-right {
    bottom: -25vh;
    right: -48vw;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__box-right {
    right: -12vw;
    bottom: -16vh;
  }
}
.decor__box-right img {
  max-height: 85vh;
}
@media (max-width: 1140px) {
  .decor__box-right img {
    max-height: 70vh;
  }
}
@media (max-width: 860px) {
  .decor__box-right img {
    max-height: 55vh;
  }
}
@media (max-width: 560px) {
  .decor__box-right img {
    max-height: 45vh;
  }
}
.decor__box-left {
  z-index: 12;
  position: absolute;
  bottom: -14vh;
  right: 32vw;
  -webkit-animation: decor1 2.5s ease-in-out infinite;
          animation: decor1 2.5s ease-in-out infinite;
}
@media (max-width: 1660px) {
  .decor__box-left {
    right: 28vw;
  }
}
@media (max-width: 1660px) and (max-height: 750px) {
  .decor__box-left {
    right: 30vw;
  }
}
@media (max-width: 1440px) {
  .decor__box-left {
    right: 27vw;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  .decor__box-left {
    right: 29vw;
  }
}
@media (max-width: 1280px) {
  .decor__box-left {
    right: 26vw;
  }
}
@media (max-width: 1280px) and (max-height: 750px) {
  .decor__box-left {
    right: 32vw;
  }
}
@media (max-width: 1140px) {
  .decor__box-left {
    right: 22vw;
  }
}
@media (max-width: 1140px) and (max-height: 750px) {
  .decor__box-left {
    right: 30vw;
  }
}
@media (max-width: 991px) {
  .decor__box-left {
    right: 19vw;
  }
}
@media (max-width: 860px) {
  .decor__box-left {
    right: 19vw;
    bottom: -14vh;
  }
}
@media (max-width: 680px) {
  .decor__box-left {
    right: 10vw;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__box-left {
    right: 27vw;
    bottom: -7vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__box-left {
    right: 28vw;
    bottom: -8vh;
  }
}
@media (max-width: 560px) {
  .decor__box-left {
    right: auto;
    left: -14vw;
    bottom: -9vh;
  }
}
@media (max-width: 540px) and (max-height: 720px) and (min-width: 539px) and (min-height: 719px) {
  .decor__box-left {
    left: -4vw;
    bottom: -10vh;
  }
}
.decor__box-left img {
  max-height: 55vh;
}
@media (max-width: 1140px) {
  .decor__box-left img {
    max-height: 45vh;
  }
}
@media (max-width: 860px) {
  .decor__box-left img {
    max-height: 40vh;
  }
}
@media screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .decor__box-left img {
    max-height: 35vh;
  }
}
@media screen and (device-width: 912px) and (device-height: 1368px) and (orientation: portrait) {
  .decor__box-left img {
    max-height: 35vh;
  }
}
@media (max-width: 560px) {
  .decor__box-left img {
    max-height: 35vh;
  }
}
.decor__smoke {
  position: absolute;
  z-index: 15;
  bottom: -1vh;
  right: -1vw;
  -webkit-animation: movie-left 2.5s ease-in-out infinite;
          animation: movie-left 2.5s ease-in-out infinite;
}
@media (max-width: 560px) {
  .decor__smoke {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 105%;
  }
}
.decor__smoke img {
  max-height: 110vh;
}
@media (max-width: 560px) {
  .decor__smoke img {
    max-height: 100vh;
    width: 100%;
  }
}

@-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 streak {
  0% {
    -webkit-transform: scale(0.9) rotate(-2deg);
            transform: scale(0.9) rotate(-2deg);
  }
  50% {
    -webkit-transform: scale(1) rotate(2deg);
            transform: scale(1) rotate(2deg);
  }
  100% {
    -webkit-transform: scale(0.9) rotate(-2deg);
            transform: scale(0.9) rotate(-2deg);
  }
}
@keyframes streak {
  0% {
    -webkit-transform: scale(0.9) rotate(-2deg);
            transform: scale(0.9) rotate(-2deg);
  }
  50% {
    -webkit-transform: scale(1) rotate(2deg);
            transform: scale(1) rotate(2deg);
  }
  100% {
    -webkit-transform: scale(0.9) rotate(-2deg);
            transform: scale(0.9) rotate(-2deg);
  }
}
@-webkit-keyframes up {
  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 up {
  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 down {
  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 down {
  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 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 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 movie-right {
  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 movie-right {
  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 movie-left {
  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 movie-left {
  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 second-egg-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(0.8);
            transform: translateX(-50%) scale(0.8);
  }
  40% {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
@keyframes second-egg-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(0.8);
            transform: translateX(-50%) scale(0.8);
  }
  40% {
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
@-webkit-keyframes crack-egg-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(1) rotate(0);
            transform: translateX(-50%) scale(1) rotate(0);
  }
  20% {
    -webkit-transform: translateX(-50%) scale(1.05) rotate(-3deg);
            transform: translateX(-50%) scale(1.05) rotate(-3deg);
  }
  40% {
    -webkit-transform: translateX(-50%) scale(1.05) rotate(3deg);
            transform: translateX(-50%) scale(1.05) rotate(3deg);
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.1) rotate(-2deg);
            transform: translateX(-50%) scale(1.1) rotate(-2deg);
  }
  80% {
    -webkit-transform: translateX(-50%) scale(1.1) rotate(2deg);
            transform: translateX(-50%) scale(1.1) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1) rotate(0);
            transform: translateX(-50%) scale(1) rotate(0);
  }
}
@keyframes crack-egg-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(1) rotate(0);
            transform: translateX(-50%) scale(1) rotate(0);
  }
  20% {
    -webkit-transform: translateX(-50%) scale(1.05) rotate(-3deg);
            transform: translateX(-50%) scale(1.05) rotate(-3deg);
  }
  40% {
    -webkit-transform: translateX(-50%) scale(1.05) rotate(3deg);
            transform: translateX(-50%) scale(1.05) rotate(3deg);
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.1) rotate(-2deg);
            transform: translateX(-50%) scale(1.1) rotate(-2deg);
  }
  80% {
    -webkit-transform: translateX(-50%) scale(1.1) rotate(2deg);
            transform: translateX(-50%) scale(1.1) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1) rotate(0);
            transform: translateX(-50%) scale(1) rotate(0);
  }
}
@-webkit-keyframes egg-shaking {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-52%) rotate(-2deg);
            transform: translateX(-52%) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  75% {
    -webkit-transform: translateX(-48%) rotate(2deg);
            transform: translateX(-48%) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
}
@keyframes egg-shaking {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-52%) rotate(-2deg);
            transform: translateX(-52%) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  75% {
    -webkit-transform: translateX(-48%) rotate(2deg);
            transform: translateX(-48%) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
}
@-webkit-keyframes bunny-hatch-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(0.8);
            transform: translateX(-50%) scale(0.8);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(0.9);
            transform: translateX(-50%) scale(0.9);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes bunny-hatch-animation {
  0% {
    -webkit-transform: translateX(-50%) scale(0.8);
            transform: translateX(-50%) scale(0.8);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(-50%) scale(0.9);
            transform: translateX(-50%) scale(0.9);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}