header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    min-height: 165px;
    height: auto;
    box-shadow: 0px 5px 15px 3px rgba(0, 0, 0, 0.2);
}

header section{
    width: 100%;    
    padding: 0;
    padding-bottom: 15px;
    padding-top: 20px;
}

header section div{
    padding: 0;
}

header section img{
    height: 90px;
    width: 150px;
}

.menu span i{
    display: none;
}

.menu ul{
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}

.menu li{
    margin: 10px;
    list-style-type: none;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-white);
    margin-bottom: 0;
}

.menu li:after{
    top:100%;
    left:0%;
    width:0;
    height:3px;
    background:#ffffff;;
    display:block;
    content:'';
    transition: width 0.5s ease-in-out;
}

.menu li:hover:after{
    width:100%;
}

.menu a{
    color: var(--text-white);
}

@media screen and (max-width: 825px) {
    .menu ul {
        display: none;
    }
}

@media screen and (max-width: 580px) {

    .menu span i{
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        font-weight: bold;
        margin-top: 10px;
        color: var(--text-white);
    }

    header section {
        height: auto;
    }

    .menu ul {        
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .menu li{
        margin: 10px;
    }

    #menu{
        display: none;
    }
}

@media screen and (min-width: 580px) {
    #menu{
        display: flex !important;
    }
}