@charset "utf-8";
/* CSS Document */

nav .logo
{
    list-style-type: none;
    float: left;
    margin: 5.5px 15px 5.5px 10px;
}
nav input
{
    display: none;
}
nav label
{
    cursor: pointer;
    order: 1;
    display: none;
    flex-direction: column;
}
nav label .f-line
{
    width: 35px;
    height: 3px;
    background-color: white;
    margin-top: 5px;
}
nav label .s-line
{
    width: 35px;
    height: 3px;
    background-color: white;
    margin-top: 5px;
}
nav label .t-line
{
    width: 35px;
    height: 3px;
    background-color: white;
    margin-top: 5px;
}
nav #check:checked ~ ul
{
    left: 0;
    transition: .5s all ease-in-out;
}

/* Media Queries **************************************/

/* Desktop */

@media only screen and (min-width: 1910px)
{
    
}
@media only screen and (max-width: 1909px)
{
    
}

/* Tablets */

@media only screen and (max-width: 1279px)
{
    
}

/* Mobile */

@media only screen and (max-width: 768px)
{

}
@media only screen and (max-width: 480px)
{
    
}

