footer .row {
    max-width: 160rem;
}

footer .col {
    padding-bottom: 0;
}

.absolute-footer {
    display: none;
}

.copyright {
    font-size: 1.4rem;
}

.footer-title * {
    font-size: inherit;
    color: inherit !important;
    margin: 0;
    font-weight: inherit;
}

.footer-title {
    display: block;
    font-size: 2.133rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2.133rem;
    line-height: normal;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
}

.footer-menu ul li {
    list-style: none;
    font-size: 1.8rem;
    margin: 0 0 2rem !important;
    line-height: normal;
}

.footer-menu ul li a {
    vertical-align: top;
    transition: all 0.3s;
    font-weight: 200;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.footer-menu ul li a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}


button#top-link {
    width: 40px;
    height: 40px;
    font-size: 10px;
    background: var(--primary-color);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer-title {
        color: rgba(255, 255, 255, .8);
        font-size: 1rem;
        margin: 0 0 20px;
    }

    .acc-footer .col-inner {
        margin: 0 0 20px
    }

    .acc-footer .footer-title {
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, .3);
        display: grid;
        align-items: center;
        gap: 10px;
        grid-template-columns: 1fr auto;
        margin: 0;
    }

    .acc-footer .footer-title::after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        transition: all 0.3s;
        background: url(../icons/icon-select.svg) no-repeat center / contain;
    }

    .acc-footer.active .footer-title::after {
        transform: rotate(180deg);
    }

    .acc-footer .footer-menu {
        display: none
    }

    .footer-menu {
        padding: 1rem 20px 1px;
    }

    .footer-menu ul li {
        margin-bottom: 1rem !important;
        font-size: 14px;
    }

    .copyright {
        font-size: 13px;
    }
}