

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 50px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #ffffff;
    transition: all 0.5s ease-in-out;
}


nav a:hover{
    /* background-color: #f0f0f0; */
    color: #ffffff;
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 0.5s ease-in-out;

}

.sidebar li{
    width: 100%;
}

.sidebar a{
    width: 100%;
}

.menu-button{
    display: none;
}

@media(max-width: 991px){
    .hideOnMobile{
        display: none;
    }

    .menu-button{
        display: block;
    }
}


@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}


/* MEDIA QUERY */
@media (max-width:576px){
    .sidebar{
        width: 100%;
    }
    .middle-header{
        display: none;
    }
    .nav-big{
        display: none;
    }

    .contact-icon-top{
        font-size: 5.5vw;
    }

    .logo-margin{
        margin-top: 5px;
    }

    .logo-new-pic{
        width: 15vw;
    }

    .logo-writing-small{
        font-family: "Cinzel", serif;
        font-weight: 600;
        font-size: 4.5vw;
    }
}

@media (min-width:577px) and (max-width:767px){
    .sidebar{
        width: 70%;
    }
    .middle-header{
        display: none;
    }
    .nav-big{
        display: none;
    }

    .contact-icon-top{
        font-size: 4.5vw;
    }

    .logo-margin{
        margin-top: 13px;
    }

    .logo-new-pic{
        width: 10vw;
    }

    .logo-writing-small{
        font-family: "Cinzel", serif;
        font-weight: 600;
        font-size: 4.5vw;
    }

    nav a{
        font-size: 3vw;
    }
    
}


@media (min-width:768px) and (max-width:991px){
    .nav-big{
        display: none;
    }
    
    .sidebar{
        width: 50%;
    }

    nav a{
        font-size: 2.9vw;
    }

    .contact-icon-top a{
        font-size: 3vw;
    }

    .logo-writing-small{
        font-family: "Cinzel", serif;
        font-weight: 600;
        font-size: 3.5vw;
        position: relative;
        top: 5px;
    }

    .logo-new-pic{
        width: 10vw;
    }

    .logo-margin{
        margin-top: 25px;
        margin-bottom: 20px;
    }
}


@media (min-width:992px) and (max-width:1199px){
    .nav-small{
        display: none;
    }
}  


@media (min-width:1200px) and (max-width:1399px){
    .middle-header{
        display: none;
    }
    .nav-small{
        display: none;
    }
}


@media (min-width:1400px){
    .middle-header{
        display: none;
    }
    .nav-small{
        display: none;
    }
}