/* FOOTER MENU */

.footer__navigation {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: var(--bs-white);
}


.footer__menu {
    display: none;
    padding-top: 10px;
    padding-bottom: 20px;
}

@media (max-width: 850px) {
    .footer__menu {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}


.footer__menu-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__menu-link {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #BAA5F3;
    transition: .3s;
    font-weight: 400;
    text-decoration: none;
}

.footer__menu-link svg * {
    transition: .3s;
}

@media (max-width: 550px) {
    .footer__menu-link {
        flex-direction: column;
        row-gap: 8px;
    }
}

@media (max-width: 500px) {
    .footer__menu-link {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .footer__menu-link {
        font-size: 12px;
    }
}

@media (hover: hover) {
    .footer__menu-link:hover {
        color: #3F8B8B;
    }

    .footer__menu-link:hover svg * {
        fill: #3F8B8B;
    }
}

@media (hover: none) {
    .footer__menu-link:active {
        color: #3F8B8B;
    }

    .footer__menu-link:active svg * {
        fill: #3F8B8B;
    }
}

.header-up {
    position: sticky;
    top: 0;
    background-color: #54657c;
    z-index: 1000;
}

.footer__menu-link--button.close {
    font-size: 16px;
}

@media (max-width: 500px) {
    .footer__menu-link--button.close {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .footer__menu-link--button.close {
        font-size: 12px;
    }
}
