.c-footer {
    padding: 40px 0;
    background-color: #000000;
    color: white;
}

.c-footer__container {
    max-width: 1440px;
    padding: 0 20px 0 20px;
    margin: auto;
}

.c-footer__right {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 20px;
}

.c-footer__nav {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

.c-footer-logo {
    display: block;
    text-align: center;
}

.c-footer-logo svg {
    width: auto;
    height: 60px;
}

.c-footer-logo svg,
.c-footer-logo svg.icon path {
    fill: white;
}


.c-footer-description {
    margin: 20px 0 0;
    text-align: center;
    font-size: 12px;
}

.c-footer-socials {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.c-footer-socials svg {
    height: 20px;
    width: auto;
}

.c-footer-socials__item {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
}

a.c-footer-socials__item:hover,
a.c-footer-socials__item:focus {
    opacity: 0.8;
}

.c-footer-menu {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.c-footer-menu__wrapper {
    display: none;
    padding-top: 15px;
}

.c-footer-menu .menu {
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-footer-menu li {
    margin: 0;
    font-size: 14px;
}

.c-footer-menu a {
    color: inherit;
    text-decoration: none;
}

.c-footer-menu a:hover,
.c-footer-menu a:focus {
    opacity: 0.8;
}

.c-footer-menu__heading {
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.c-footer-menu__icon {
    width: 22px;
    height: auto;
    transition: transform .5s;
}

.c-footer-menu__heading[aria-expanded="true"] .c-footer-menu__icon {
    transform: rotate(45deg);
}

.c-footer-copyright {
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
}

.c-footer-copyright p {
    margin: 0;
}

.c-footer-copyright a {
    color: inherit;
}

@media screen and (min-width: 768px) {
    .c-footer__wrapper {
        display: flex;
        gap: 20px;
    }

    .c-footer__left {
        flex: 1 1 auto;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 20px;
    }

    .c-footer__right {
        flex: 0 0 auto;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .c-footer__nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .c-footer-logo {
        text-align: left;
    }

    .c-footer-description {
        text-align: left;
    }

    .c-footer-socials {
        justify-content: start;
    }

    .c-footer-socials svg {
        height: 24px;
    }

    .c-footer-menu__wrapper {
        display: block !important;
    }

    .c-footer-menu {
        border-bottom: none;
    }

    .c-footer-menu__icon {
        display: none;
    }

    .c-footer-copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 20px;
    }

    .c-footer-menu__heading {
        cursor: auto;
    }

}

@media screen and (min-width: 1024px) {
    .c-footer__wrapper {
        gap: 40px;
    }

    .c-footer__left {
        padding-right: 40px;
    }

    .c-footer-description {
        font-size: 14px;
    }

    .c-footer-menu li {
        font-size: 16px;
    }

    .c-footer-menu__heading {
        font-size: 16px;
    }

    .c-footer-copyright {
        margin-top: 40px;
    }

    .c-footer__nav {
        gap: 40px;
    }
}


@media screen and (min-width: 1280px) {
    .c-footer__wrapper {
        gap: 100px;
    }

    .c-footer__nav {
        gap: 80px;
    }
}
