footer {
    background: #2B2B2B;
    padding: 56px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: #242424;
}

.footer-container {
    max-width: 1530px;
    margin: 0 auto;
    width: max-content;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: max-content;
}

.footer-name {
    color: #FFF;
    font-size: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.footer-navigation,
.footer-contacts,
.footer-legally {
    width: max-content;
}

.footer-navigation-list,
.footer-contacts-list,
.footer-legally-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legally-list-item a,
.footer-contacts-list-item a,
.footer-legally-list-item a {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    opacity: 0.7;
}

.footer-contacts-list-item.active,
.footer-legally-list-item.active,
.footer-legally-list-item.active {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-direction: row;
    gap: 52px;
    margin-top: 50px;
}

#footer-name {
    grid-area: footer-name;
}

#footer-menu {
    grid-area: footer-menu;
}

#footer-social {
    grid-area: footer-social;
}

@media (min-width: 768px) {
    footer {
        padding: 56px 43px;
    }

    .footer-container {
        width: 100%;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 0.7fr 1.3fr;
        grid-template-areas:
    "footer-name footer-menu"
    "footer-social footer-menu";
        width: 100%;
    }

    .footer-name {
        gap: 8px;
    }

    .footer-menu {
        margin-top: 0;
    }

    .footer-social {
        gap: 30px;
        margin-top: auto;
    }
}

@media (min-width: 1200px) {
    footer {
        padding: 75px 60px
    }

    .footer-menu {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-name {
        gap: 20px;
        font-size: 32px;
    }
}

@media (min-width: 1730px) {
    footer {
        padding: 75px 99px;
    }
}