@import url('https://fonts.googleapis.com/ css?family=Poppins: 200, 300, 400, 500, 600, 700, 800, 900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: #000;
}
body{
    color: #fff;
    background: #000;
}

/* Nav stuff */

header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 100px;
    z-index: 10000;
    transition: 0.6s;
}
header #toggle{
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
header #toggle:before{
    content: '';
    position: absolute;
    top: 7px;
    width: 100%;
    height: 2px;
    background: #fff;
}
header #toggle:after{
    content: '';
    position: absolute;
    bottom: 7px;
    width: 100%;
    height: 2px;
    background: #fff;
    
}
.banner.active header #toggle:before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

}
.banner.active header #toggle:after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    
}
.banner.active header #toggle:before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

}
.banner.active header #toggle:after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    
}
.banner{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    transition: 0.5s;
    z-index: 2;
}

.banner.active{
    transform: translateX(-400px);
}

#navigation{
    position: fixed;
    top: 0;
    right: -200px;
    width: 400px;
    height: 100vh;
    background: rgb(15, 136, 136);
    z-index: 1;
    display: grid;
    place-items: center;
    transition: 0.5s;
}
#navigation.active{
right: 0;
}
#navigation ul{
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgb(15, 136, 136);
    
}
#navigation ul li{
    list-style: none;
    background: rgb(15, 136, 136);
}
#navigation ul li a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;
    background: rgb(15, 136, 136);

}

/* end nav stuff */


section{
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} 
.content video{

    width: 100%;
    height: 100%;
    object-fit: cover;
}
section h1{
    position: relative;
    font-size: 3em;
    color: rgb(15, 136, 136);
    text-align: center;
}
section p{
    position: relative;
    font-size: 1.8em;
    margin-left: 25%;
    margin-right: 25%;
} 
.content a{
    position: relative;
    display: inline-block;
    margin-top: 20px;
    background: rgb(15, 136, 136);
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    border-radius: 15px;
    display: block;
    /* width: 100px; */
    margin: auto;
}   

@media (max-width: 767px){
    header{
        padding: 20px 50px;
    }
    .banner{
        padding: 100px 50px 150px;
    }
    .banner h2{
        font-size: 1.8em;
    }
    .banner .content p,
    .banner .content a{
        font-size: 1em;
    }
    .banner.active{
        transform: translateX(-250px);
    }

    #navigation{
        width: 250px;
    }
    #navigation ul li a{
        font-size: 1.5em;
        margin: 5px 0;
    }

}

