.footer {
    width: 100%;
    height: 60vh;
    min-height: 300px;
    border-top: 2px solid var(--color_golden);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.footer_title {
    font-size: 2rem;
}

.footer_nav {
    width: auto;
    height: auto;
}

.footer_menu {
    width: auto;
    height: auto;
    list-style: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer_menu_item {
    width: auto;
    height: auto;
}

.footer_menu_link {
    color: var(--color_black);
    text-decoration: none;
    opacity: .8;
    transition: ease-in-out .4s;
}

.socials_networks {
    width: auto;
    height: auto;
    list-style: none;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social_network {
    width: auto;
    height: auto;
}

.social_network_link {
    width: auto;
    height: auto;

    display: inline-block;
}

.social_network_icon {
    width: 38px;
    height: 38px;
    opacity: .8;
    transition: ease-in-out .4s;
}

@media(hover:hover) {
    .footer_menu_link:hover {
        opacity: 1;
    }

    .social_network_icon:hover {
        opacity: 1;
    }
}