@import url('https://fonts.googleapis.com/css2?family=Work+Sans:400,500,600,700,800,900&display=swap');

html,body {
    width:100vw;
    height: 100vh;
    margin: 0;
    font-family: 'Work Sans';
    overflow: hidden;
}

nav{
    background: transparent !important;
    box-shadow: none !important;
}
nav ul{
    background: transparent !important;
}
nav .menu-btn i{
    color: #fff !important;
}
nav .btn{
    color: #fff !important;
    border-color: #fff !important;
}
nav .btn:hover{
    color: #9645FF !important;
    border-color: #9645FF !important;
}
nav ul li a{
    color: #fff !important;
}
nav .arrow{
    border-color: #fff !important;
}
nav ul ul{
    box-shadow: none !important;
    background: transparent !important;
}

#videoBG {
    position:fixed;
    z-index: -1;
}
#videoBG-mobile{
    position: fixed;
    z-index: -1;
    display: none;
}
@media (min-aspect-ratio: 16/9) {
    #videoBG {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    #videoBG { 
        width: auto;
        height: 100%;
    }
}
@media (min-aspect-ratio: 9/16) {
    #videoBG-mobile {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 9/16) {
    #videoBG-mobile { 
        width: auto;
        height: 100%;
    }
}
@media (max-width: 767px) {
    #videoBG {
        display: none;
    }
    #videoBG-mobile{
        display: block;
    }
    /* body {
        background: url('../images/launching/video-first-frame.png');
        background-size: cover;
    } */
}

@media (max-width: 1000px){
    nav{
      padding: 0 40px 0 50px;
    }
  }
@media (max-width: 950.99px) {
    nav .menu-btn i{
      display: block;
    }
    #click:checked ~ .menu-btn i:before{
      content: "\f00d";
    }
    nav ul{
      position: fixed;
      top: 80px;
      left: -100%;
      background: rgb(255, 255, 255);
      height: 100vh;
      width: 100%;
      padding-left: 0;
      z-index: 999;
      text-align: center;
      display: block;
      transition: all 0.3s ease;
    }
    nav .btn{
        color: #000 ;
        border-color: #000 ;
        display: none;
    }
    #Setmore_button_iframe{
        width: 40%;
        margin-top: 10px;
    }
    #click:checked ~ ul{
      left: 0;
    }
    nav ul li{
      width: 100%;
      margin: 20px 0;
    }
    nav ul li a{
      width: 100%;
      margin-left: -100%;
      display: block;
      color: #111;
      padding: 10px 0;
      font-size: 20px;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    #click:checked ~ ul li a{
      margin-left: 0px;
    }
    nav ul li a.active,
    nav ul li a:hover{
      background: none;
      color: #9645FF !important;
    }
    .overlay-content h2{
        font-size: 6vh !important;
    }
  }
  
  @keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
  
    50% {
        background-position: 100% 50%;
    }
  
    100% {
        background-position: 0% 50%;
    }
  }

.overlay-content{
    position: absolute;
    z-index: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay-content h2{
    color: #fff;
    margin: auto;
    font-size: 10vh;
    font-weight: 900;
}
.header-buttons{
    width: 100%;
    margin-top: 1rem;
}
.btn {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 10px;
    padding: 0.8rem 2rem;
    text-transform: none;
    margin: auto 10px;
  }
  
  .btn-solid {
    background-color: #9645FF !important;
    border: 2px solid #fff;
    color: white !important;
    border-style: solid;
  }
  .btn-solid:hover{
      background: #fff !important;
      color: #9645FF !important;
  }
  
  .btn-outline {
    background-color: #ffffff00;
    border: 2px solid #fff;
    color: white;
    color: #fff !important;
    border-style: solid;
  }
  .btn-outline:hover{
      border-color: #9645FF;
      color: #9645FF !important;
  }