.footer {
    margin-top: 120px;
    padding-bottom: 30px;
}

.footer .links-list {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    grid-column-gap: 32px;
}

.footer .content .links-list a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #000000;

    padding: 5px 0;
    position: relative;
    transition: color 400ms ease;
    white-space: nowrap;
}

.footer .content .links-list a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 100%;
    height: 2px;
    background-color: var(--blue);
    opacity: 0;
    transform: translateY(4px);
    transition: transform 300ms ease, opacity 0.3s ease;
}

.footer .content a:hover::before {
    transform: translateY(0);
    opacity: 1;
}

.footer .content a:hover {
    color: var(--blue);
}

.footer .footer-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: 0.2;
    margin: 15px 0 20px;
    border: none;
}

.footer .footer-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 40px;
}

.footer .footer-bottom span {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.64);
}


@media screen and (max-width: 1100px) {
    .footer .links-list {
        display: block;
        columns: 4;
        /*width: max-content;*/
        margin-bottom: -10px;
    }
    .footer .links-list li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer .content .links-list a::before {
        bottom: -4px;
    }
}

@media screen and (max-width: 800px) {
    .footer {
        margin-top: 40px;
    }

    .footer .links-list {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .footer ul li:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 450px) {
    .footer .footer-bottom {
        grid-column-gap: 12px;
    }

    .footer .footer-bottom .logo img{
        width: 80px;

    }

    .footer .footer-bottom span {
        font-size: 10px;
    }
}