*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; 
}

a{ 
    text-decoration: none;
    color: black;
}

a:hover{
    opacity: 0.5;
}

.large{
    font-size: 1.2rem;
    text-transform: uppercase;
}

.small{
    font-size: 0.8rem;
    color: #000000;
}

body{
    background: #042751;
}

/* Menu toggle */

.menu-toggle{
    position:fixed;
    z-index: 9999;
    right: 5%; 
    top: 4rem; 
    width: 2rem;
    height: 2rem; 
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    transition: 0.5s;
}

.menu-toggle.active{
    transform: rotate(-180deg);
}

.menu-toggle span{
    background: #FFFFFF;
    width: 100%;
    height: 3px;
}

.menu-toggle.active span:nth-child(1){
    position: absolute;
    background: #FFFFFF;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.active span:nth-child(3){
    position: absolute;
    background: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg); 
}

/* Nav */

nav{
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 100; 
    pointer-events: none;
}

.nav.active{
    pointer-events: auto;
}

.nav-left{
    position: relative;
    z-index: 10;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background-color: #FFFFFF;
    transition: 0.8s;
}

.nav-left.active{
    left: 0; 
    transition: 0.5s;
}

.nav-left ul{
    position: relative;
    top: 35%; 
    left: 10%;
    height: 30%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    list-style: none;
}

.nav-right{
    position: absolute;
    z-index: 9;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background-color: #000000;
    transition: 0.8s;
}

.nav-right.active{
    left: 50%; 
    transition: 0.5s;
}

.nav-link{
    opacity: 0;
    position: relative;
    left: -10%;
}

.nav-link.active{
    opacity: 1;
    transition: 0.5s;
    left:0
}

.contact{
    position: absolute;
    opacity: 0;
    bottom: 10%;
    left: 0;
    pointer-events: none;
}

.contact.active{
    opacity: 1;
    left: 10%; 
    transition: 0.5s;
}

.logo{
    position: fixed;
    top: 4rem;
    left: 5%;
    z-index: 100;
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    pointer-events: none;
    transition: 1s;
}

.logo.active{
    color: #000000;
}

.welcome{
    color: rgb(255, 255, 255); 
    position: relative;
    left: 5%;
    top: 30vh; 
    width: 40%;
    text-transform: uppercase;
}

p{
    margin-top: 1rem; 
}

.button{
    position: relative;
    z-index: 1;
    color: white;
    border: 1px solid white;
    left: 5%;
    top: 35vh;
    border: 1px solid white;
    width: 8rem;
    padding: 0.2rem;
    text-align: center;
    transition: .5s;
}

.button:hover{
    cursor: pointer;
    background-color: white;
    color: #272c2c;
    transition: .5s;
}

.img{
    position: relative;
    left: 50%;
    top: 10vh;
    height: 400px;
}

img{
    height: 100%;
    filter: grayscale(40%);
}

.explore{
    position: absolute;
    text-align: center;
    background: black;
    cursor: pointer;
    color: white;
    padding: 1.5rem;
    text-transform: uppercase;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 20%;
}

.explore:hover{
    opacity: 0.6;
}
