@-webkit-keyframes loaderanim {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes loaderanim {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes bg {
  0%, 20%, 60%, 100% {
    background-position: 0% 10%;
    opacity: 1;
  }
  40% {
    background-position: 0% 0%;
    opacity: 0.9;
  }
  80% {
    background-position: 0% 10%;
    opacity: 0.9;
  }
}
@keyframes bg {
  0%, 20%, 60%, 100% {
    background-position: 0% 10%;
    opacity: 1;
  }
  40% {
    background-position: 0% 0%;
    opacity: 0.9;
  }
  80% {
    background-position: 0% 10%;
    opacity: 0.9;
  }
}
@-webkit-keyframes light {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes light {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes shadow {
  0% {
    -webkit-box-shadow: 0px 0px 40px #ea5b0c;
            box-shadow: 0px 0px 40px #ea5b0c;
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px rgba(234, 91, 12, 0);
            box-shadow: 0px 0px 0px rgba(234, 91, 12, 0);
  }
  100% {
    -webkit-box-shadow: 0px 0px 40px #ea5b0c;
            box-shadow: 0px 0px 40px #ea5b0c;
  }
}
@keyframes shadow {
  0% {
    -webkit-box-shadow: 0px 0px 40px #ea5b0c;
            box-shadow: 0px 0px 40px #ea5b0c;
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px rgba(234, 91, 12, 0);
            box-shadow: 0px 0px 0px rgba(234, 91, 12, 0);
  }
  100% {
    -webkit-box-shadow: 0px 0px 40px #ea5b0c;
            box-shadow: 0px 0px 40px #ea5b0c;
  }
}
body {
  margin: 0;
  background: url(../img/bg.jpg) center bottom no-repeat;
  background-size: cover;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(35.62%, rgba(0, 0, 0, 0.33)));
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.33) 35.62%);
  background-size: 200% 200%;
  z-index: -1;
}

.container {
  max-width: 1370px;
  margin-left: auto;
  margin-right: auto;
  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;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  z-index: 99;
  visibility: visible;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  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;
}
.loader-wrapper .loader {
  max-width: 320px;
  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;
}
.loader-wrapper .logo {
  margin-right: -32px;
  margin-bottom: 32px;
}
.loader-wrapper .dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loader-wrapper .dots span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  max-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url(../img/dot.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 8px;
}
.loader-wrapper .dots span:nth-child(1) {
  -webkit-animation: loaderanim 2.3s linear alternate infinite;
          animation: loaderanim 2.3s linear alternate infinite;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loader-wrapper .dots span:nth-child(2) {
  -webkit-animation: loaderanim 2.3s linear alternate infinite;
          animation: loaderanim 2.3s linear alternate infinite;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.loader-wrapper .dots span:nth-child(3) {
  -webkit-animation: loaderanim 2.3s linear alternate infinite;
          animation: loaderanim 2.3s linear alternate infinite;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.loaded .loader-wrapper {
  opacity: 0;
  visibility: hidden;
}

.layer {
  position: absolute;
  display: none;
}
.layer.stone {
  display: block;
  top: 0;
  z-index: 1;
  right: -353px;
}
.layer.light {
  display: block;
  z-index: 2;
  right: -137px;
  bottom: -361px;
  -webkit-animation: light 3s linear infinite;
          animation: light 3s linear infinite;
}
.layer.stone2 {
  display: block;
  z-index: 3;
  right: 158px;
  top: 433px;
}
.layer.bomb1 {
  display: block;
  top: 302px;
  right: 676px;
  z-index: 3;
}
.layer.bomb2 {
  display: block;
  z-index: 5;
  right: 40px;
  bottom: -76px;
}
.layer.pumpkin1 {
  display: block;
  z-index: 3;
  right: 180px;
  bottom: 40px;
}
.layer.pumpkin2 {
  display: block;
  z-index: 3;
  right: -159px;
  bottom: -140px;
}
.layer.pumpkin3 {
  display: block;
  z-index: 3;
  right: 820px;
  bottom: -215px;
}
.layer.pumpkin4 {
  display: block;
  z-index: 3;
  right: 573px;
  bottom: -115px;
}
.layer.man {
  display: block;
  z-index: 6;
  bottom: -220px;
  right: 197px;
}
.layer.stone1 {
  display: block;
  z-index: 7;
  right: 510px;
  bottom: -58px;
}

.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;
  text-align: center;
}
.content .logo {
  max-width: 212px;
  margin-bottom: 80px;
}
.content .logo img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1 {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 56px;
  line-height: 56px;
  color: #FAD514;
  padding: 0;
  margin: 0 0 100px 0;
}
h1 span {
  display: block;
  font-size: 32px;
  color: #fff;
}

.promo-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
.promo-code span {
  margin-left: 16px;
  padding: 7px 16px;
  background-color: rgba(255, 255, 255, 0.23);
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 60px;
}
.promo-code span:focus, .promo-code span:hover {
  background-color: rgba(2, 253, 238, 0.46);
}
.promo-code span.active:before {
  opacity: 1;
}
.promo-code span:before {
  position: absolute;
  content: attr(attr-text);
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  left: 0;
  right: 0;
  top: -20px;
  text-transform: none;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.claim {
  display: block;
  width: 100%;
  max-width: 242px;
  text-decoration: none;
  outline: none;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 30px;
  padding: 15px 0;
  color: #fff;
  border-radius: 60px;
  text-transform: uppercase;
  border: 2px solid #EA5B0C;
  background-color: #EA5B0C;
  -webkit-animation: shadow 10s ease-in-out infinite;
          animation: shadow 10s ease-in-out infinite;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-bottom: 72px;
}
.claim:hover {
  -webkit-animation: none;
          animation: none;
  background: transparent;
  color: #FAD514;
  border-color: #FAD514;
  -webkit-box-shadow: 0px 0px 0px rgba(234, 91, 12, 0);
          box-shadow: 0px 0px 0px rgba(234, 91, 12, 0);
}

.terms {
  position: relative;
  max-width: 511px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.terms p {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  top: -32px;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 18px;
  background: transparent;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.terms a {
  position: relative;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  z-index: 3;
  outline: none;
  padding-right: 18px;
}
.terms a:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 6px;
  background: url(../img/arrow.svg) no-repeat;
  top: 50%;
  margin-top: -2px;
  right: 0;
}
.terms a.active ~ p {
  background-color: rgba(2, 253, 238, 0.46);
  padding: 40px 16px 16px;
  max-height: 1000px;
  opacity: 1;
}
.terms a.active:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 1600px) {
  .content .logo {
    margin-bottom: 64px;
  }

  .content {
    z-index: 10;
  }

  h1 {
    margin-bottom: 6px;
  }

  .layer {
    position: absolute;
    display: none;
    height: auto;
  }
  .layer.stone {
    display: block;
    top: 0;
    z-index: 1;
    right: -553px;
  }
  .layer.light {
    display: block;
    z-index: 2;
    right: -137px;
    bottom: -161px;
    max-width: 1000px;
    -webkit-animation: light 3s linear infinite;
            animation: light 3s linear infinite;
  }
  .layer.stone2 {
    display: block;
    z-index: 3;
    right: 58px;
    top: 433px;
    max-width: 102px;
  }
  .layer.bomb1 {
    display: block;
    top: 302px;
    right: 476px;
    z-index: 3;
    max-width: 245px;
  }
  .layer.bomb2 {
    display: block;
    z-index: 5;
    right: 40px;
    max-width: 245px;
    bottom: -76px;
  }
  .layer.pumpkin1 {
    display: block;
    z-index: 3;
    right: 180px;
    bottom: 40px;
  }
  .layer.pumpkin2 {
    display: block;
    z-index: 3;
    right: -159px;
    bottom: -140px;
  }
  .layer.pumpkin3 {
    display: block;
    z-index: 3;
    right: 720px;
    bottom: -165px;
    max-width: 280px;
  }
  .layer.pumpkin4 {
    display: block;
    z-index: 3;
    right: 473px;
    bottom: -115px;
    max-width: 300px;
  }
  .layer.man {
    display: block;
    z-index: 6;
    bottom: -200px;
    right: 97px;
    max-width: 650px;
  }
  .layer.stone1 {
    display: block;
    z-index: 7;
    right: 410px;
    bottom: 38px;
    max-width: 140px;
  }
}
@media (max-width: 1200px) {
  .layer {
    position: absolute;
    display: none;
    height: auto;
    -webkit-transform: none !important;
            transform: none !important;
  }
  .layer.stone {
    display: block;
    top: 0;
    z-index: 1;
    right: -353px;
    max-height: 767px;
    width: auto;
  }
  .layer.light {
    display: block;
    z-index: 2;
    right: -337px;
    bottom: -461px;
    max-width: 990px;
    -webkit-animation: light 3s linear infinite;
            animation: light 3s linear infinite;
  }
  .layer.stone2 {
    display: block;
    z-index: 3;
    right: 28px;
    top: 433px;
    max-width: 64px;
  }
  .layer.bomb1 {
    display: block;
    top: 402px;
    right: 276px;
    z-index: 3;
    max-width: 145px;
  }
  .layer.bomb2 {
    display: block;
    z-index: 5;
    right: 40px;
    max-width: 145px;
    bottom: -24px;
  }
  .layer.pumpkin1 {
    display: none;
  }
  .layer.pumpkin2 {
    display: block;
    z-index: 3;
    right: -259px;
    bottom: -190px;
  }
  .layer.pumpkin3 {
    display: block;
    z-index: 3;
    right: 420px;
    bottom: -165px;
    max-width: 280px;
  }
  .layer.pumpkin4 {
    display: block;
    z-index: 3;
    right: 300px;
    bottom: -48px;
    max-width: 200px;
  }
  .layer.man {
    display: block;
    z-index: 6;
    bottom: -200px;
    right: 32px;
    max-width: 450px;
  }
  .layer.stone1 {
    display: block;
    z-index: 7;
    right: 210px;
    bottom: -20px;
    max-width: 140px;
  }

  .claim {
    margin-bottom: 32px;
    max-width: 180px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .content {
    padding-left: 16px;
    padding-right: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 400px;
  }
  .content .logo {
    max-width: 120px;
    margin-bottom: 32px;
  }

  h1 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 32px;
  }
  h1 span {
    font-size: 18px;
  }
}
@media (width: 1024px) and (height: 1366px) {
  .layer.man {
    display: block;
    z-index: 6;
    bottom: -200px;
    right: 23%;
    max-width: 550px;
  }

  .layer.stone {
    display: none;
  }

  .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .layer.bomb1 {
    top: auto;
    bottom: 300px;
    right: 700px;
  }

  h1 {
    font-size: 54px;
    line-height: 54px;
  }

  h1 span {
    font-size: 32px;
    line-height: 32px;
  }

  .content {
    max-width: 500px;
  }

  .layer.light {
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    right: auto;
  }

  .layer.pumpkin4 {
    right: 100px;
  }

  .layer.stone2 {
    top: auto;
    bottom: 300px;
    right: 200px;
  }

  .layer.stone1 {
    right: 510px;
  }
}
@media (max-width: 991px) {
  .container {
    padding-top: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .layer.bomb1 {
    top: auto;
    bottom: 120px;
  }

  .layer.stone2 {
    top: auto;
    bottom: 130px;
  }

  .layer.stone {
    right: 0px;
    top: auto;
    bottom: 0;
    max-height: 400px;
    display: none;
  }
}
@media (max-width: 812px) {
  .wrapper:before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(18.87%, #000000), color-stop(56.87%, rgba(0, 0, 0, 0.5)), color-stop(69.9%, rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, #000000 18.87%, rgba(0, 0, 0, 0.5) 56.87%, rgba(0, 0, 0, 0) 69.9%);
  }

  .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 482px;
  }

  .layer.stone {
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    right: auto;
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 577px) {
  .container {
    padding-top: 48px;
    padding-bottom: 400px;
  }

  .layer.man {
    max-width: 375px;
    right: 50%;
    -webkit-transform: translateX(50%) !important;
            transform: translateX(50%) !important;
  }

  .layer.stone1 {
    max-width: 80px;
    bottom: 0;
  }

  .layer.bomb1 {
    right: 200px;
  }

  .layer.pumpkin4 {
    right: 309px;
    bottom: -85px;
    max-width: 200px;
  }
}