* {
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: "Tusker";
    src: url("../assets/fonts/TuskerGrotesk-6800Super.ttf");
    font-weight: 600;
}

body {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

h1 {
  font-family: "arial";
  font-size: 110px;
  color: #ffffff;
  line-height: 130px;
  margin-bottom: 28px;
}

h2 {
  font-family: "TTNorms";
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
}

video {
  position: relative;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
}

.video_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.image_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

.lineThrough {
  text-decoration: line-through;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
}

.content {
  position: absolute;
  text-align: center;
  padding: 30px;
  width: 100%;
  /* height: 100%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content .tagline {
    font-family: "Tusker", "Mochiy Pop One", sans-serif;
    color: #FFFFFF;
    font-size: 7vw;
    line-height: 1.1em;
}

@media (max-width: 900px) {
  h1 {
    font-size: 100px;
    line-height: 90px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 26px;
  }
  /* .content {
        margin: 170px 50px 0;
    } */
}

@media (max-width: 770px) {
  h1 {
    font-size: 70px;
    line-height: 64px;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 20px;
  }
  /* .content {
        margin: 170px 50px 0;
    } */
}

@media (max-width: 440px) {
  h1 {
    font-size: 56px;
    line-height: 58px;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 18px;
  }
  /* .content {
        margin: 200px 50px 0;
    } */
}

@media (max-width: 360px) {
  h1 {
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 16px;
  }
}

.btn {
  width: 180px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "TTNorms", sans-serif;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  position: relative;
  margin: 50px;
}
.btn::before {
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  z-index: -1;
}
.btn::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  /* background: #FFF; */
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.btn:hover .btn__mover {
  transform: translateY(-36px);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.btn__wrapper {
  width: 100%;
  height: 36px;
  overflow: hidden;
}

.btn__mover {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.btn__text {
  padding: 10px 0px;
  display: inline-block;
}

/* .btn--topLeft::after {
    top: -10px !important;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s !important; }
  
  .btn--top::after {
    top: -15px !important;
    bottom: initial;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s !important; }
  
  .btn--bottomLeft::after {
    right: initial;
    left: -15px !important;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s !important; }
  
  .btn--bottomRight::after {
    right: -15px !important;
    left: initial;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s !important; }
  
  .btn--bottom::after {
    bottom: -15px !important;
    top: initial;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s !important; }
  
  .btn--topRight::after {
    top: 0px;
    right: 0px; }
  
  .btn--topRight:hover::after {
    top: -10px;
    right: -5px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
  
  .btn--goToRight::after {
    right: 0px;
    transition: none; }
  
  .btn--goToLeft::after {
    left: 0px;
    transition: none; }
  
  .btn--goToRightStep2::after {
    right: 0px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
  
  .btn--goToLeftStep2::after {
    left: 0px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
  
  .btn--goToBottom::after {
    bottom: 0px;
    transition: none; }
  
  .btn--goToTop::after {
    top: 0px;
    transition: none; }
  
  .btn--goToBottomStep2::after {
    bottom: 0px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s; }
  
  .btn--goToTopStep2::after {
    top: 0px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s; } */

/* .btn__detector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    overflow: hidden; }
  
  .btn__detector__inner {
    position: absolute;
    width: 50%;
    height: 100%;
    opacity: 0.5; }
    .btn__detector__inner--left {
      top: 0;
      left: 0;
      z-index: 10; }
      @media only screen and (min-device-width: 200px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
        .btn__detector__inner--left {
          display: none; } }
    .btn__detector__inner--right {
      top: 0;
      right: 0;
      z-index: 10; }
      @media only screen and (min-device-width: 200px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
        .btn__detector__inner--right {
          display: none; } }
    .btn__detector__inner--top {
      width: 100%;
      height: 50%;
      left: 0;
      top: 0;
      z-index: 20; }
      .btn__detector__inner--top:hover {
        z-index: 8; }
      @media only screen and (min-device-width: 200px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
        .btn__detector__inner--top {
          height: 100%; } }
    .btn__detector__inner--bottom {
      width: 100%;
      height: 50%;
      left: 0;
      bottom: 0;
      z-index: 20; }
      .btn__detector__inner--bottom:hover {
        z-index: 8; }
      @media only screen and (min-device-width: 200px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait), only screen and (min-device-width: 320px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 360px) and (max-device-width: 640px) and (orientation: portrait), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
        .btn__detector__inner--bottom {
          display: none; } } */

.btn__container {
  text-align: center;
  margin: 30px 0px;
}
.btn__container .btn__module {
  display: inline-block;
}
.btn__container .btn__module .btn {
  width: 100%;
  margin: auto;
}
.btn__container .btn__module .btn .btn__wrapper {
  margin: 0 40px;
  min-width: 160px;
}
@media (max-width: 460px) {
  .btn__container .btn__module .btn .btn__wrapper {
    margin: 0 24px;
  }
}

@media screen and (orientation: landscape) {
  img {
    max-height: 50vh;
  }
}

@media screen and (orientation: portrait) {
   .content {
    top: 42%;
  }
  img {
    max-width: 60vw;
  }

    .content .tagline {
        font-size: 11vw;
    }
}
