.footer {
    width: 100%;
    height: 60vh;
    background: var(--green);
    padding: 40px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.footer_header {
    width: 100%;
    height: 80px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo_footer_container {
    width: auto;
    height: calc(80% + 15px);
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
}

.logo_footer_icon {
    width: auto;
    height: 100%;
}

.footer_nav {
    width: auto;
    height: auto;
    margin-top: auto;
}

.footer_menu {
    width: auto;
    height: auto;
    list-style: none;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
}

.footer_menu_item {
    width: auto;
    height: auto;
    position: relative;
}

.footer_menu_item::after {
    content: '';
    width: 0;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background: var(--white);
    transition: ease .4s;
}

.footer_menu_link {
    color: var(--white);    
    text-decoration: none;
}

@media(hover:hover) {
    .footer_menu_item:hover::after {
        width: 100%;
    }
}
