@import url("https://fonts.googleapis.com/css?family=Montserrat&subset=latin-ext");
.fadeIn {
  animation: a .5s forwards
}

@keyframes a {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.fadeInUp {
  animation: b .6s forwards
}

@keyframes b {
  0% {
    opacity: 0;
    transform: translate3d(0, 10rem, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInDown {
  animation: c .6s forwards
}

@keyframes c {
  0% {
    opacity: 0;
    transform: translate3d(0, -10rem, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInLeft {
  animation: d .4s forwards
}

@keyframes d {
  0% {
    opacity: 0;
    transform: translate3d(-10rem, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeInRight {
  animation: e .5s forwards
}

@keyframes e {
  0% {
    opacity: 0;
    transform: translate3d(.5rem, 0, 0)
  }
  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

.fadeOut {
  animation: f .5s forwards
}

@keyframes f {
  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

.fadeOutRight {
  animation: g .5s forwards
}

@keyframes g {
  0% {
    opacity: 1;
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    transform: translate3d(.5rem, 0, 0)
  }
}

.growUp {
  animation: h .2s linear forwards
}

@keyframes h {
  0% {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.moveLeft {
  animation: i 1s forwards ease
}

@keyframes i {
  0% {
    left: 0
  }
  to {
    left: -100%
  }
}

.kenburnsZoomIn,
.vegas-animation-kenburnsZoomIn {
  animation: j 1s ease forwards
}

@keyframes j {
  0% {
    transform-origin: 50% 50%;
    transform: scale(1)
  }
  to {
    transform: scale(1.2);
    opacity: 0
  }
}

.falldownAnim {
  animation: k 1s linear infinite
}

@keyframes k {
  0% {
    border-color: #fff;
    transform: translate(0)
  }
  20% {
    border-color: #fff;
    transform: translate(.5rem, .5rem)
  }
  20.1%,
  to {
    border-color: #444
  }
}

body {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase
}

h1 {
  font-size: 4rem;
  line-height: 1.1
}

h2,
h3 {
  font-size: 2rem
}

h2,
h3,
h4 {
  line-height: 1.1
}

h4 {
  font-size: 1.8rem
}

h5,
h6 {
  line-height: 1.1
}

h5,
h6,
p {
  font-size: 1.6rem
}

p {
  text-align: left
}

h1,
h2,
h6,
li,
p {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .4), 0 1px 0 rgba(0, 0, 0, .4), -1px 0 0 rgba(0, 0, 0, .4), 1px 0 0 rgba(0, 0, 0, .4)
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  font-size: 62.5%
}

body,
html {
  width: 100%;
  height: 100%
}

body {
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  color: #333;
  z-index: 0;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.clearfix:after {
  content: "";
  display: block;
  clear: both
}

.btn,
.transition {
  transition: all .25s ease
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

.adult {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 1rem;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem
}

ul {
  list-style-type: disc;
  margin-left: 2rem
}

ul li {
  font-size: 1.6rem;
  margin-bottom: .2rem
}

.main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  z-index: 1
}

.main-bg {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%
}

.main-bg,
.main-bg:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.main-bg:after {
  content: "";
  display: block;
  position: fixed;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4) 15%, #5c415d 85%);
  z-index: 0
}

.main-bg__item {
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.main-bg__item.active {
  display: block
}

.btnbox {
  width: 100%
}

.btn,
.btnbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center
}

.btn {
  width: 8rem;
  height: 8rem;
  padding: 0;
  margin: 0 2rem;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .1rem;
  border-radius: 5rem;
  cursor: pointer;
  color: #333
}

.btn,
.btn svg {
  position: relative
}

.btn svg {
  width: 3rem;
  fill: #ccc
}

.btn--primary {
  background: #fff357;
  background-image: linear-gradient(#ffee94, #fff357);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3)
}

.btn--primary:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, .3)
}

.btn--primary:active {
  box-shadow: none
}

.btn--primary svg {
  left: .3rem;
  fill: #333
}

.btn--accent {
  background-color: hsla(0, 0%, 100%, .1);
  transform: scale(.8)
}

.btn--accent:hover {
  background-color: hsla(0, 0%, 100%, .3)
}

.btn--block {
  width: 80%;
  height: 5.4rem;
  max-width: 30rem
}

.stepbox {
  position: relative;
  z-index: 3;
  overflow: hidden
}

.step,
.stepbox {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0
}

.step {
  position: absolute;
  display: none;
  color: #fff
}

.step:first-child {
  display: block
}

.step__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 4rem 1rem;
  max-width: 40rem;
  left: 50%;
  transform: translateX(-50%)
}

.step__header {
  margin-bottom: 1rem;
  opacity: 0
}

.step__body {
  margin-bottom: 2rem;
  opacity: 0
}

.step__footer {
  opacity: 0
}

.bg {
  position: fixed!important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%
}

.bg,
.bg:after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0
}

.bg:after {
  content: "";
  display: block;
  position: fixed;
  background-image: linear-gradient(145deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4) 25%, #5c415d 65%)
}

.bg__item {
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

.bg__item.active {
  display: block
}

@media (min-width:360px) {
  html {
    font-size: 75%
  }
}

@media (min-width:768px) {
  html {
    font-size: 87.5%
  }
}

@media (min-width:1024px) {
  .main {
    position: relative;
    width: 80%;
    max-width: 65rem;
    height: 40rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
    border-radius: 3px;
    overflow: hidden
  }
  .main-bg {
    display: block;
    background-size: contain;
    background-position: 0 0
  }
  .main-bg:after {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4) 25%, #5c415d 35%)
  }
  .main-bg__item {
    background-size: contain;
    background-position: 0 0
  }
  .bg:after {
    background: rgba(0, 0, 0, .4)
  }
  .bg__item {
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transform: scale(1.1)
  }
  .stepbox {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 50%
  }
  .step__inner {
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 1rem 1rem 0
  }
  .btn {
    width: 6rem;
    height: 6rem;
    margin: 0 1rem;
    font-size: 1.2rem
  }
  .btn--block {
    width: 60%;
    height: 4.6rem;
    max-width: 24rem
  }
  h1 {
    font-size: 3rem
  }
  p {
    font-size: 1.4rem
  }
}

@media (min-width:1300px) {
  html {
    font-size: 100%
  }
}