.header {
    width: 100%;
    height: 80px;
    padding: 0 4%;
    border-bottom: 2px solid var(--color_black);
    transition: ease .4s;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_container {
    width: auto;
    height: 80%;
}

.logo_icon {
    width: auto;
    height: 100%;
}

.form_search {
    width: auto;
    height: auto;
    margin-left: auto;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.search_category {
    width: 200px;
    height: auto;
    border: 2px solid var(--color_green);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 5.5px 10px;
}

.submit {
    background: var(--color_green);
    padding: 8px 10px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    color: var(--color_white);
    cursor: pointer;
}

.nav {
    width: auto;
    height: auto;
    margin-left: 20px;
}

.menu {
    width: auto;
    height: auto;
    list-style: none;

    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.menu_item {
    width: auto;
    height: auto;
}

.menu_link {
    width: auto;
    height: auto;
    color: var(--color_black);
    text-decoration: none;
}

.header_main {
    width: 100%;
    height: 80px;
    padding: 20px 4%;
    border-bottom: 2px solid var(--color_black);
    transition: ease .4s;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color_white);
    visibility: hidden;
    z-index: 200;

    display: none;
    justify-content: space-between;
    align-items: center;
}

.form_search_mobile {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.form_search_mobile > .search_category {
    width: calc(80% - 52px);
}

.form_search_mobile > .submit {
    width: 20%;
}

@media screen and (max-width: 1042px) {
    .logo_container {
        display: none;
    }

    .header {
        flex-direction: row-reverse;
    }
}

@media screen and (max-width: 706px) {
    .header {
        width: 70%;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: -70%;
        background: var(--color_green);
        z-index: 400;
        padding: 20px;

        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        row-gap: 20px;
    }

    .header.active {
        left: 0;
    }

    .logo_container {
        width: 240px;
        height: 80px;
        background: var(--color_white);
        padding: 8px;
        border-radius: 10px;

        display: block;
    }

    .logo_icon {
        width: 100%;
        height: 100%;
    }

    .form_search {
        display: none;
    }

    .nav {
        margin-left: 0;
    }

    .menu {
        align-items: flex-start;
        flex-direction: column;
        row-gap: 16px;
    }

    .menu_link {
        color: var(--color_white);
        font-size: 1.4rem;
    }

    .header_main {
        visibility: visible;
        display: flex;
    }
}