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

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    font-family: 'Open Sans', sans-serif;
    background-color:#191346;
    padding-top: 10px;
    position: fixed;
    z-index: 11;
    right: 0px;
    left: 0px;
    top: 0px;

}

.logo {
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 22px;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    width: 85%;
    text-transform: uppercase;

}

.nav-link {
    text-decoration: none;
    letter-spacing: 3px;
    color:rgb(226, 226, 226); ;
    font-size: 15px;
    list-style: none;
    
}

.nav-link:hover {
    color:#A5C9CA ;
    cursor:pointer;
}
a{
    color:rgb(226, 226, 226); 
    text-decoration: none;
}
a:hover {
    color: #A5C9CA;
}



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

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
}

@media screen and (max-width:1300px) {
    .nav-items {
        width: 85%;
    }
}

@media screen and (max-width:1050px) {
    nav {
        background-color: transparent;
    }

    body {
        overflow-x: hidden;
    }

    .nav-items {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0vh;
        background-color: #313030ab;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        margin-top: 0px;
    }

    .nav-link {
        opacity: 0;
    }

    .burger {
        display: block;
        position: fixed;
        z-index: 100;
        right: 0px;
        margin-right: 10px;
        ;

    }
}

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

@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);
}