.site-footer {
    padding-top: 70px;
}

.site-footer .container {
    max-width: 1700px;
}

.site-footer__top {
    max-width: 1202px;
    margin: 0 auto;
    padding-bottom: 56px;
    display: grid;
    grid-template-columns: 100%;
    gap: 56px 0;
    align-items: start;
}

.site-footer__col--links {
    display: grid;
    gap: 56px 20px;
}

.footer-subscribe {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 0 1.9px 0 rgba(0, 0, 0, 0.15), 0 0 4.5px 0 rgba(0, 0, 0, 0.05);
    background: var(--color-5);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-subscribe__title {
    max-width: 350px;
    width: 105%;
    margin-bottom: 24px;
}

.footer-subscribe__form .field_box {
    margin-bottom: 24px;
}

.footer-subscribe__form .field_box input {
    background: #fff;
}

.footer-headline {
    margin-bottom: 26px;
}

.footer-widget li:not(:nth-last-child(1)) {
    margin-bottom: 35px;
}

.footer-contact-list li {
    position: relative;
    padding-left: 24px;
}

.footer-contact-list svg {
    position: absolute;
    top: 50%;
    left: 1px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%  );
}

.footer-widget a {
    letter-spacing: -0.3px;
    text-decoration: none;
    color: rgba(11, 44, 77, 0.5);
}

.footer-widget .footer-menu a {
    white-space: nowrap;
}

.footer-widget .footer-menu .current-menu-item a {
    font-weight: 600;
}

.footer-widget a:hover,
.footer-widget .footer-menu .current-menu-item a {
    color: var(--color-7);
    text-decoration: underline;
}

.footer-socials {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
}

.footer-socials .social-link {
    width: 44px;
    height: 44px;
    align-content: center;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 1px 5.8px 0 rgba(0, 16, 49, 0.07);
    transition: var(--transition-hover);
}

.footer-socials .social-link:hover {
    border-color: #8299af;
    background: var(--color-9);
}

.site-footer__bottom {
    padding: 30px 0 30px;
    border-top: 1px solid #e7eaee;
}

#copyright {
    text-align: center;
    color: rgba(11, 44, 77, 0.5);
}

@media (min-width: 768px) {
    .site-footer__top {
        gap: 55px 0;
        padding-bottom: 56px;
    }

    .site-footer__col--links {
        gap: 110px 52px;
        grid-template-columns: 1fr 1fr 23%;
    }
}

@media (min-width: 1081px) {
    .site-footer {
        padding-top: 42px;
    }

    .site-footer__top {
        gap: 40px 40px;
        grid-template-columns: minmax(280px, 384px) 1fr;
        padding-bottom: 39px;
    }

    .site-footer__col--links {
        gap: 39px 52px;
    }

    .footer-socials {
        justify-content: flex-end;
    }
}

@media (min-width: 1281px) {
    .site-footer__top {
        gap: 40px 132px;
    }
}

@media (max-width: 1080px) {
    .site-footer__col--links {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-widget .footer-menu--legal li:not(:nth-last-child(1)) {
        margin-bottom: 27px;
    }
}