body {
    line-height: 1.6;
color: #fff;
    background: #000;
font-size: 18px;
font-weight: 400;
font-family: "-apple-system", "BlinkMacSystemFont", "Roboto", "Helvetica Neue", sans-serif !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

&.stop {
    overflow: hidden;
}
}

#page {
position: relative;
transition: 1s all ease-in-out;

&.menuopen {
    opacity: .6;
    filter: blur(20px);
    transform: scale(1.2);
}
}

section {
display: flex;
min-height: 100vh;
padding: 50px;
justify-content: center;
align-items: center;
background: #222;
color: #fff;
position: relative;

&:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: .5;
    height: 100%;
    width: 100%;
}

.h1 {
    font-size: 120px;
    margin: 0;
    z-index: 2;
    position: absolute;
}
}

header {
z-index: 99999;
position: relative;

#logo {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    width: 100px;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transition: .3s all cubic-bezier(0.075, 0.82, 0.165, 1) .6s;
}

.nav {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    left: 0;
    right: 0;
    width: 500px;
    margin: 0 auto;
    top: 120px;
    background-color: rgba(255,255,255,.05);
    border-radius: 200px;
    z-index: 9;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) .2s;

    
    .text {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        display: block;
        padding: 10px 20px;
        line-height: 1;
        font-size: 15px;
        letter-spacing: 2px;
        text-transform: lowercase;
        transition: .3s all cubic-bezier(0.075, 0.82, 0.165, 1) .6s;

    }
    
    .button {
        -webkit-appearance: none;
        background: rgba(0,0,0,.3);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,.1);
        position: absolute;
        z-index: 99;
        left: 0;
        margin: auto;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        height: 60px;
        border-radius: 100%;
        outline: 0;
            border: 0;
        cursor: pointer;
                            transition: .3s all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
        transform: scale(0);

        .text {
            width: 40%;
            background: #fff;
            height: 2px;
            display: block;
            margin: 5px auto;
            transform: scalex(0);
            transition: .6s transform cubic-bezier(0.075, 0.82, 0.165, 1) 0s, .3s margin ease-in 0s;
        }
        
        &:hover {
            border-color: rgba(255,255,255,.5);
            
            .text {
                margin: 10px auto;
            }
        }
    }
}
}

header.sticky {
#logo {
    top: 0;
    transform: scale(.8);
    opacity: 0;
    transition-delay: 0.5s;
}
.nav {
    top: 20px;
    padding: 0;
    width: 90px;
    height: 90px;
    transition-delay: 0.5s;
    
    .button {
        transform: scale(1);
        transition-delay: 0.6s;
        
        .span {
            transform: scalex(1);
            transition: .6s transform cubic-bezier(0.075, 0.82, 0.165, 1) .8s, .3s margin ease-in 0s;
        }
    }
    
    .text { 
        padding: 0;
        opacity: 0;
        letter-spacing: 0px;
        transform: scale(0.3);
        transition-delay: 0.2s;
    }
}
}

.viewBtn {
    position: absolute;
    margin-top: 140px;
    background-color: rgba(255,255,255,.05);
    border-radius: 200px;
    z-index: 9;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,.06);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1) .2s;
}
}