.header {
    width: 100%;
    height: 80px;
    padding: 0 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: auto;
    height: 80%;
}

.menu_container {
    width: auto;
    height: auto;
}

.menu {
    width: auto;
    height: auto;
    list-style: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.menu_item {
    width: auto;
    height: auto;
}

.menu_link {
    width: auto;
    height: auto;
    color: var(--color_black);
    text-decoration: none;
}

.header_btn {
    width: 224.45px;
    height: auto;
    text-decoration: none;
    background: var(--color_water_green);
    color: var(--color_white);
    border-radius: 10px;
    padding: 16px 0;
    transition: ease-out .2s;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media(hover:hover) {
    .header_btn:hover {
        background: var(--color_violet);
    }   
}

@media screen and (max-width: 986px) {
    .menu_container {
        display: none;
    }

    .header_btn {
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .logo {
        height: 60%;
    }
}