nav{
    display: flex;
    justify-content: space-between;
    padding: 5px 30px 5px 30px;
    /* position: -webkit-sticky;
	position: sticky; */
	top: 0;
    background-color: white;
}
#hamburger{
    display: none;
}
.burger_inside{
    text-decoration: none;
}
#nav_right_side{
    display: flex;
}
#brand_name{
    font-size: 210%;
    font-family: 'Pacifico', cursive;
    color: #902735;
    font-weight: 700;
    margin-right: 20px;
}
#nav_right_side > input{
    width: 250px;
    height: 80%;
    border: none;
    background-color: #E0E0E0;
    border-radius: 7px;
}
::placeholder{
    font-size: 120%;
    padding-left: 10px;
}
#nav_left_side{
    width: 30%;
    display: flex;
    justify-content: space-evenly;
}
#nav_left_side > div{
    display: flex;
    align-items: center;
    padding-left: 7px;
    padding-right: 7px;
}
#nav_left_side :hover{
    background-color: #06202e;
    border-radius:7px;
    color: #E0E0E0;
}

#nav_left_side > div > i{
    color: #902735;
    margin-right: 7px;
}





#burger{
    height: 100%;
    /* width: 40%; */
    font-family: sans-serif;
    background-color: #FC2779;
    display: none;
}
#burger> div{
    transition: color 0.3s ease;
    padding-top: 10px;
    font-size: large;
    padding: 2%;
    /* background-color: #902735; */
    font-weight: 600;
    color: #06202e;
}
#burger > div:hover{
    width: 96%;
    border-radius: 3px;
    background-color:#06202e ;
    color: whitesmoke;
    /* color: #FC2779; */
}


/* RESPONSIVENESS */

@media screen and (min-width: 480px)  and (max-width:850px){
    #hamburger{
        display: block;
        color: white;
        margin-right: 3%;
        font-size: 160%;
        padding-top: 2%;
    }
    #nav_left_side{
        display: none;
    }
    #nav_right_side > input{
        display: none;
    }
    nav{
        padding-left: 1%;
        justify-content: flex-start;
        position: -webkit-sticky;
	    position: sticky;
	    top: 0;
    }
}


@media screen and (max-width: 480px){
    #hamburger{
        display: block;
        color: white;
        margin-right: 3%;
        font-size: 160%;
        padding-top: 2%;
    }
    #nav_left_side{
        display: none;
    }
    #nav_right_side > input{
        display: none;
    }
    nav{
        padding-left: 1%;
        justify-content: flex-start;
        position: -webkit-sticky;
	    position: sticky;
	    top: 0;
    }
}