* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background: #131313;
    height: 80px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 35px;
}

#navbar__logo {
    background-color: #dacc15;
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3.5rem;
    font-weight: 600;
    font-style:italic;
}

/*#navbar__t3st {
    display: flex;
    align-items: center;
    margin: -20%;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-right: 50px;
    
} */


.navbar__menu {
   display: flex;
   align-items: center;
   list-style: none;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #636363;  /* fallback for old browsers */
  background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
  
  color: rgb(0, 0, 0);
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.navbar__links:hover {
    color: #e2e600;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}



@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }


    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position:absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: -1;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    #navbar__t3st {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        background: #fff;  
    }

    
    .navbar__item {
        width: 100px;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }



    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu {
        position:absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

   #mobile-menu.is-active .bar:nth-child(2) {
       opacity: 0;
   }

   #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #1b1b1b, #505050); 
    /* background-image: url(https://i.ibb.co/LSPvnDc/Habobi-Test-Even-Smaller.png); */
    background-image: url(https://i.postimg.cc/15t34CPs/Habobi-Test-Smaller.png);
    padding: 200px 0;
    justify-content: center;
    align-items: center;
    background-repeat:no-repeat;
    background-size: 100%;
    background-position:unset;
}


/* Hero image scaling */
@media screen and (max-width: 1500px) {

    .hero { 
        background: linear-gradient(to right, #1b1b1b, #505050); 
        /* background-image: url(https://i.ibb.co/LSPvnDc/Habobi-Test-Even-Smaller.png); */
        background-image: url(https://i.postimg.cc/15t34CPs/Habobi-Test-Smaller.png);
        padding: 200px 0;
        justify-content: center;
        align-items: center;
        background-repeat:no-repeat;
        background-size: 110% 100%;
        background-position: right;
    }
}


.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 90%;
    text-align: center;
    padding: 30px;
}

.hero__heading {
    font-size: 100px;
    margin-bottom: 24px;
    color: #fff;
}

.hero__heading span {
    background: #636363;  /* fallback for old browsers */
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent;
}

.hero__description {
    font-size: 45px;
    background: #636363;  /* fallback for old browsers */
    background-image: linear-gradient(to top, #f5cb26 0%, #f0c723 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
    margin-top: 1rem;
}

.highlight {
    border-bottom: 4px solid rgb(204, 185, 14);
}



@media screen and (max-width: 768px) {
    .hero__heading {
        font-size: 60px;
    }

    .hero__description {
        font-size: 40px;
    }
}

.main {
    background: #131313;
    padding: 10rem 0;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content {
    color: #fff;
    width: 800px;
}


    

.main__content h1 {
   font-size: 3.5rem;
   background-color: #dacc15;
   background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
   background-size: 100%;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   -webkit-text-fill-color: transparent;
   -moz-text-fill-color: transparent; 
   text-transform: uppercase;
   margin-bottom: 35px;
}

.main__content h2 {
    font-size: 3rem;
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to right, #ffffff, #c5c5c5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
}

.main__content h3 {
    font-size: 2.6rem;
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to right, #ffffff, #a5a5a5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
    margin-top: 2rem;
}

.main__content p {
    margin-top: 7rem;
    font-size: 1.2rem;
    font-weight: 900;
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to left, #ffffff, #c0c0c0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
    margin-bottom: -1.2rem;
}

.main__btn {
    font-size: 1.8rem;
    background: #3a3a3a;
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    color: rgb(14, 14, 14);
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    outline: none;

}

.main__btn a {
    position:relative;
    z-index: 2;
    color: rgb(22, 22, 22);
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    transition: all 0.30s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 4px;
    background: radial-gradient(#fbd32b 0%, #caa616 100%);
}

.main__btn:hover {
    color: rgba(255, 255, 255, 0.067);
}

.main__btn:hover:after {
    width: 100%;
}

.main__img--container {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;


}

 .main__img--vid {
    margin: 85px;
    margin-right: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    
} 


#card-2 {
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to left, #dbdbdb, #858585); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
} 

@media screen and (max-width: 1920px) {

    .main__content  {
        margin-left: -850px;
        justify-items: center;
        align-items: center;
        
    }

    .main__img--container {
        margin-left: -50px;
        justify-content: center;
    }

    .main__img--vid {
        margin-right: 1000px;
        position:sticky;
    }
}


/* Mobile */

@media screen and (max-width: 1100px) {
    .main__container {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 90%; 
    }


        

    .hero {
        background: linear-gradient(to right, #1b1b1b, #505050); 
        /* background-image: url(https://i.ibb.co/LSPvnDc/Habobi-Test-Even-Smaller.png); */
        background-image: url(https://i.postimg.cc/15t34CPs/Habobi-Test-Smaller.png);
        padding: 200px 0;
        justify-content: center;
        align-items: center;
        background-repeat:no-repeat;
        background-size: 175% 100%;
        background-position: right;
    }
    

    .main__img--container {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .main__img--vid {
        display: flex;

        justify-content: center;
        text-align: center;
        margin-bottom: 4rem;
        align-items: center;
        margin-right: 85px;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2rem;
        margin-top: 2rem;
    
    }

    .main__content h2 {
        font-size: 2.5rem;

    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}


@media screen and (max-width: 480px) {
    .main__Img--card {
        width: 250px;
        height: 250px;

    }


    .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__content p {
        margin-top: 2rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }

    .hero {
        background: linear-gradient(to right, #1b1b1b, #505050); 
        /* background-image: url(https://i.ibb.co/LSPvnDc/Habobi-Test-Even-Smaller.png); */
        background-image: url(https://i.postimg.cc/15t34CPs/Habobi-Test-Smaller.png);
        padding: 200px 0;
        justify-content: center;
        align-items: center;
        background-repeat:no-repeat;
        background-size: 200% 100%;
        background-position: right;
    }
    

}

/* mobile end */


/* Roster =  Services */

.services {
    background: #131313;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10rem 0;
}

.services h1 {
    background-color: #dacc15;
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-bottom: 5rem;
    font-size: 3.5rem;

}

.services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;

}


/* Roster Cards */
.services__card {
    margin: 35px;
    height: 475px;
    width: 325px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(255, 255, 255);
    background-image: url(https://i.postimg.cc/pXTfMJ3h/Habobi-Test-Even-Smaller.png); /* PLACEHOLDER */
    background-size: cover;
    background-position: right;
    transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    background-repeat: no-repeat;
}

.services__card:nth-child(2) {
  /* background-image:  Image goes here */
}

.services__card:nth-child(3) {
   /* background-image:  Image goes here */
}

.services__card:nth-child(4) {
   /* background-image:  Image goes here */
}

.services__card h2 {
    padding-left: 8px;
}

.services__card p {
    padding-left: 10px;
    margin-top: 5px;
}

.services__btn {
    display: flex;
    padding-left: 8px;
    margin-top: 14px;
    cursor: pointer;
}

.services__card button {
    color: rgb(19, 19, 19);
    padding: 9px 8px;
    border: none;
    outline: none;
    border-radius: 4px;
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    font-size: 1rem;

}

.services__card button:hover {
   cursor: pointer;
   color: rgb(88, 88, 88);
   background-image: linear-gradient(to right, #f5cb26 0%, #fbd32b 100%);
   transition: 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);

}

.services__card:hover {
    transform: scale(1.075);
    transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);

}

@media screen and (max-width: 1300px) {
    .services__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .services__wrapper {
        grid-template-columns: 1fr;
    }
}





.main__content--featured {
    color: #fff;
    width: 1000px;
    text-align: left;




}


    

.main__content--featured h1 {
   font-size: 4.5rem;
   background-color: #dacc15;
   background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
   background-size: 100%;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   -webkit-text-fill-color: transparent;
   -moz-text-fill-color: transparent; 
   text-transform: uppercase;
   margin-bottom: 35px;

}

.main__content--featured h2 {
    font-size: 3rem;
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to right, #ffffff, #5e5e5e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
}

.main__content--featured h3 {
    font-size: 2.3rem;
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to right, #ffffff, #5e5e5e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
    margin-top: 2rem;
}

.main__content--featured p {
    margin-top: 7rem;
    font-size: 1.2rem;
    font-weight: 900;
    background: #ffffff;  /* fallback for old browsers */
    background: linear-gradient(to left, #ffffff, #c0c0c0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fil-color: transparent; 
    margin-bottom: -1.2rem;
}

.main__btn--2 {
    font-size: 1.8rem;
    background: #3a3a3a;
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    padding: 20px 60px;
    border: none;
    border-radius: 4px;
    color: rgb(14, 14, 14);
    margin-top: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    outline: none;
}

.main__btn--2 a {
    position:relative;
    z-index: 2;
    color: rgb(22, 22, 22);
    text-decoration: none;
}

.main__btn--2:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    transition: all 0.30s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 4px;
    background: radial-gradient(#fbd32b 0%, #caa616 100%);
}

.main__btn--2:hover {
    color: rgba(255, 255, 255, 0.067);
}

.main__btn--2:hover:after {
    width: 100%;
}

.main__container--2 {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
justify-content: center;
margin: 0 auto;
height: 90%;
z-index: 1;
width: 100%;
max-width: 1300px;
padding: 0 100px;


}


/* .signup__container  {
    margin-left: 700px;
    width: 500px;
    height: 3500px;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
} */

#form {
    align-items: center;
    justify-content: center;
    width: 500px;
    margin-left: 300px;
    display: grid;


}

#email {

    background-color: rgba(75, 75, 75, 0.021);
    width: 425px;
    height: 75px;
    color: #fff;

    

}



#ubisoftAccount {

    background-color: rgba(75, 75, 75, 0.021);
    width: 425px;
    height: 75px;
    margin-top: 60px;
    color: #fff;


}

#submit__btn {
    font-size: 1.5rem;
    background: #3a3a3a;
    background-image: linear-gradient(to top, #f5cb26 0%, #fbd32b 100%);
    padding: 10px 50px;
    border: none;
    border-radius: 4px;
    color: rgb(14, 14, 14);
    margin-top: 4rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    outline: none;
    align-items: center;
    text-align: center;

}

/* IGNORE
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
  }

  .popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
*/

input[type=submit] {
    width: 43%;  
    margin-left: 123px;
}

#submit__btn a {
    position:relative;
    z-index: 2;
    color: rgb(22, 22, 22);
    text-decoration: none;
}

#submit___btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #494949;
    transition: all 0.30s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 4px;
    background: radial-gradient(#fbd32b 0%, #caa616 100%);
}

#submit__btn:hover {
    color: rgb(122, 122, 122);
    background: radial-gradient(#fbd32b 0%, #caa616 100%);
    transition: all 1.9s ease;
}

#submit__btn:hover:after {
    width: 100%;
}

input[type=text], textarea, select {
    color: #e2e600;
    background-image: linear-gradient(to right, rgb(31, 31, 31) 0%, #292929 100%);
    font-size: 1rem;
    border-radius: 3px;
    border-color: #fbd32b;
    border-width: 2px;
    padding: 8px;
}

input[type=email], textarea, select {
    color: #e2e600;
    background-image: linear-gradient(to right, rgb(31, 31, 31) 0%, #292929 100%);
    font-size: 1rem;
    border-radius: 3px;
    border-color: #fbd32b;
    border-width: 2px;
    padding: 8px;
}


/* Sign up resolution support */

@media screen and (max-width: 1920px) {

}







/* FOOTER */

