#header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    font-family: var(--font-family-title);
}


#header .logo {
    padding: 10px 20px;

}

#header .logo img {
    height: 50px;
}


.header-nav,
.header-nav ul {
    display: flex;
    width: 100%;
    
}

.header-nav ul li a {
    color: #056608;
    text-decoration: none;
    padding: 10px 15px;
}

.header-nav ul li:nth-child(4) {
    @media (min-width: 768px) {
        margin-left: auto;
    }
}

.header-burger {
    display: none;
    margin-left: auto;
    margin-right: 20px;
}

.header-burger svg {
    stroke: #056608;
    width: 50px;
    height: 50px;
}

.header-close {
    display: none;
}

@media screen and (max-width: 768px) {

    .header-burger {
        display: block;
        cursor: pointer;
    }

    .header-nav {
        z-index: 1000;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
    }

    .header-nav.open {
        transform: initial;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 40%;
    }

    .header-nav ul li {
        margin-bottom: 100px;
    }

    .header-nav ul li a {
        font-size: 24px;
    }

    .header-close {
        display: block;
    }

    .header-close {
        display: block;
        cursor: pointer;
    }

    .header-close svg {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        stroke: #056608;

    }

    .overlay-menu-mobile {
        z-index: 999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vh;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
    }

    .overlay-menu-mobile.open {
        display: block;
    }
}

.header-nav.open {
    transition: 0.3s transform ease-in-out;
}

.header-nav.transition {
    transform: translateX(100%);
}