.footer {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 40px;
    background: #565656;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: calc(100% + 1280px - 100vw);
    margin-inline: auto;
    gap: 96px;
}

.footer-copyright {
    width: calc(100% + 1280px - 100vw);
    margin-inline: auto;
    font-size: 12px;
    font-weight: 400;
}

.footer-content-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-content-item-title {
    font-size: 16px;
    font-weight: 600;
}

.footer-content-item-content {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 400;
    gap: 15px;
}

.footer-content-item-content a {
    color: white;
    text-decoration: none;
}

@media (max-width: 1184px) {
    .footer {
        padding: 20px;
    }

    .footer-content {
        width: 100%;
        gap: 40px;
    }

    .footer-content > div {
        flex: 1;
    }

    .footer-copyright {
        width: 100%;
        font-size: 10px;
        text-align: right;
    }

    .footer-content-item-title {
        font-size: 12px;
    }

    .footer-content-item-content {
        font-size: 10px;
    }

    .contact-map-point,
    .contact-phone,
    .contact-mail {
        padding-block: 2px;
    }

    .footer-content-item.footer-content-item--sites {
        display: none;
    }

    .footer-content-item.footer-content-item--contact-us {
        width: 100%;
    }
}

@media (max-width: 1164px) {
    .footer-content {
        flex-direction: column-reverse;
    }
}