a{
    text-decoration: none;
}
.nav ul{
    list-style: none;
}

.menu_header{
    background-color: #FFF;
    border-bottom: 4px solid #1c3e4b;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
}
/* Logo */
.menu_headerlogo{
    width: 15%;
    display: inline-block;
}
.menu_logo{
    height: 75px;
    padding: 5px;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;

}
.menu a{
    background-color: #FFF;
    display: block;
    padding: 30px 25px;
    color: #000;
    transition: all 0.2s ease 0s;
    font-weight: bold;
}
.menu a:hover{
    background-color: #92b93a;
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}

/* Style label tag */
.hamb-line {
    background: #1c3e4b;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
} 

/* Style span tag */
.hamb-line::before,
.hamb-line::after{
    background: #1c3e4b;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}
.side-menu {
    display: none;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}
/* Responsiveness */
@media (min-width: 1060px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: #92b93a;
    }
    .hamb{
        display: none;
    }
}
@media (max-width: 1060px) {
    .menu li{
        width: 100%;
    }
}