*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*//* Nav Bar*/

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background: rgb(0, 0, 0, 0.9);
    font-family: 'Helvetica';
    text-transform: uppercase;
    font-size: 19px;
    position: fixed;
    width: 100%;
    z-index: 100;
    -webkit-background: black;
  	-moz-bacground: black;
}

.logo{
    height:5vh;
    width:auto;
}

.nav-links{
    display: flex;
    width: 30%;
    justify-content: space-around;
}
.nav-links li{
    list-style: none;
    text-align: center;
    position: relative;
}
.nav-links a{
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    align-items: center;
    height: 30px;
    display: flex;
}
.nav-links ul{
    display: flex;
    background: rgb(0, 0, 0, 0.9);
    text-align: center;
}

.nav-links a:hover{
    padding-bottom: 10px;
    border-bottom: 2px solid #cf6f00;
}

.nav-links li:hover .submenu > li{
    display: block;
    top: 0px;
    position: relative;
}

.submenu li{
    display: none;
    position: absolute;
    top: 0px;
    padding: 8px 4px;
}

.submenu li a{
    font-size: 12px;
}

.submenu{
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
}

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    margin: 5px;transition: all 0.3s ease;
    -webkit-background: black;
  	-moz-background: black;
}

@media screen and (max-width:1500px){
    .nav-links{
        width: 40%;
    }
}

@media screen and (max-width:1050px){
    .nav-links{
        width: 60%;
    }
}

@media screen and (max-width:1024px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgb(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.2s ease-in;
    }

    .nav-links{
        justify-content: none;
    }

    .nav-links li{
        opacity: 0;
        margin-bottom:5%;
    }
    .nav-links ul{
        background:none;
    }
    .burger{
        display: block;
    }
    .disappear{
        visibility: hidden;
    }
}

.nav-active{
    transform: translateX(0%);
}

@media screen and (min-height:1000px){
    .disappear{
        visibility:visible;
    }
    .nav-links a{
        font-size:20px;
    }
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

/* Nav Bar END *//* Nav Bar END *//* Nav Bar END *//* Nav Bar END *//* Nav Bar END *//* Nav Bar END *//* Nav Bar END *//* Nav Bar END */
