.header {
    width: 100%;
    height: 80px;
    padding: 0 40px;
    transition: ease .4s;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_container {
    width: auto;
    height: 80%;
    background: var(--white);
}

.logo {
    width: auto;
    height: 100%;
    
    display: inline-block;
}

.logo_icon {
    width: auto;
    height: 100%;
}

.header_btns {
    width: auto;
    height: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.header_btn {
    width: 200px;
    height: 100%;
    text-align: center;
    background: var(--green);
    outline: 2px solid var(--green);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: ease .4s;

    display: flex;
    justify-content: center;
    align-items: center;
}

.header_btns .header_btn:first-child {
    background: transparent;
    color: var(--green);
}

@media(hover:hover) {
    .header_btns .header_btn:last-child:hover {
        background: var(--dark_green);
        outline-color: var(--dark_green);
    }

    .header_btns .header_btn:first-child:hover {
        background: var(--green);
        color: var(--white);
    }
}

@media screen and (max-width: 810px) {
    .header {
        width: 50%;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: -100%;
        background: var(--white);
        padding: 20px 10px;

        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        row-gap: 40px;
    }

    .logo_container {
        width: 100%;
        height: 60px;
    }

    .logo {
        width: 100%;
        height: 100%;
    }

    .header_btns {
        width: 100%;
        height: auto;

        flex-direction: column;
        column-gap: 0;
        row-gap: 20px;
    }

    .header_btn {
        width: 100%;
        padding: 10px 0;
    }
}