*{
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
}

body{
    background-color: #1C1C1C;
}

/* ---------------------------------------- NAV ---------------------------------------- */

nav{
    width: 90vw;
    position: fixed;
    top: 0;
    padding: 0 5vw;
    height: fit-content;
    z-index: 9999;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: top 0.3s ease-in-out;
}

#mainNav{
    height: 90px;
    display: flex;
    align-items: center;
}

nav ul{
    position: absolute;
    right: 5vw;
}

#homeBtn{
    display: block;
    height: 25px;
    width: 92px;
    background-image: url(../img/icons/Logo_White.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
}

#navLinks{
    float: right;
}

#navLinks li{
    float: left;
    list-style: none;
}

#navLinks a{
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3.2px;
    text-align: center;
    padding:  20px 35px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

#navLinks a:hover{
    transform: scale(1.1);
}

#navLinks li:last-child a{
    margin-right: 0;
}

#underNav{
    height: 70px;
    display: flex;
    align-items: center;
}

#underNavLinks li{
    float: left;
    list-style: none;
}


#underNavLinks li a{
    font-weight: 700;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0.29px;
    text-align: center;
    padding:  20px 35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

#underNavLinks li a:hover{
    color: #D10055 !important;
    opacity: 0.5;
}


/* ---------------------------------------- Wrapper ---------------------------------------- */

.wrapper{
    width: 1600px;
    max-width: 90vw;
    margin: 0 auto;
}

.wrapperPlus{
    width: 1650px;
    max-width: calc(90vw + 50px);
    margin: 0 auto;
}

/* ---------------------------------------- Buttons ---------------------------------------- */

.btnFirst{
    padding: 14px 20px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, #3023AE 5%, #53A0FD 20%, #96D585 39%, #F89735 61%, #D10055 81%, #3023AE 97%);
    background-size: 1000%;
    color: #fff;
    text-transform: uppercase;
    display: block;
    width: fit-content;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;

}

.btnSecond{
    border: white 2px solid;
    padding: 14px 20px;
    border-radius: 10px;
    display: block;
    width: fit-content;
}


/* ---------------------------------------- Fonts ---------------------------------------- */


h1{ 
    font-weight: 300;
    font-size: 70px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;

}

h2{
    font-weight: 300;
    font-size: 50px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
}

h2 small{
    font-size: 25px;
    color: #FFFFFF;
    letter-spacing: 1.3px;
}

h3{
    font-weight: 300;
    font-size: 40px;
    color: #FFFFFF;
    letter-spacing: 0;
}

h3.big{
    font-size: 70px;
}


h4{
    font-weight: 500;
    font-size: 40px;
    color: #FFF;
    letter-spacing: 0.48px;
    line-height: 1.4;
}

h5{
    font-weight: 500;
    font-size: 30px;
    color: #FFF;
    letter-spacing: 0.48px;
    line-height: 1.4;
}

h5 small{
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.48px;
    line-height: 1.4;
    margin-top: -6px;
    display: block;
}

h6{
    font-weight: 500;
    font-size: 20px;
    color: #FFF;
    letter-spacing: 0.48px;
    line-height: 1.4;
}

h6.big{
    font-weight: 500;
    font-size: 25px;
}


@media (max-width:768px){
    h1{
        font-size: 45px;
    }

    h2{
        font-size: 35px;
    }

    h2 small{
        font-size: 18px;
        line-height: 1.4;
    }

    h3{
        font-size: 30px;
    }

    h1 small{
        font-size: 28px;
    }
    
    
    h3.big{
        font-size: 25px;
    }

    h3 small{
        font-size: 18px;
    }

    h4{
        font-size: 25px;
    }
    
    h5{
        font-size: 18px;
    }
    
    h5 small{
        font-size: 12px;
    }
    
    h6{
        font-size: 16px;
    }
    
    h6.big{
        font-size: 24px;
    }

    p{
        font-size: 14px;
    }

    nav{
        width: 100vw;
        padding: 0;
    }

    .wrapperPlus{
        max-width: 90vw;
        width: 90vw;
        margin-left: 5vw;
        margin-right: 5vw;
    
    }
    
    #underNavSite, #homeBtn{
        margin:0 5vw;
    }

    nav ul{
        position: initial;
        overflow-x: scroll;
        display: flex;
        align-items: center;
    }

    nav ul::-webkit-scrollbar{
        display: none;
    }

    #underNavLinks li a{
        display: block;
        white-space: nowrap;
    }

    #navLinks li a{
        display: block;
        white-space: nowrap;
    }
} 

footer .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5vh 0;
}

#footerLogo{
    display: block;
    height: 25px;
    width: 100%;
    background-image: url(../img/icons/Logo_White.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    margin-bottom: 20px;
}


footer span {color: #fff;}