.footer__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 32px;
    padding: 40px;
    background-color: var(--var-black-color);
}

.footer-link__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 32px;
}

.footer-link__link {
    color: var(--var-white-color);
    font-size: 16px;
}

.footer-link__link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link__icon:before {
    display: none;
}

.about__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 16px;
}

.about__img {
    width: 240px;
    object-fit: contain;
}

.about__text {
    color: var(--var-white-color);
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer__container {
        padding: 12px;
        row-gap: 32px;
    }

    .footer-link__container {
        width: 100%;
        flex-direction: column;
    }

    .footer-link__link {
        width: 100%;
        height: 40px;
        font-size: 14px;
    }

    .footer-link__link:nth-child(even) {
        background-color: rgba(63, 70, 73, 0.25);
    }

    .footer-link__link > a {
        width: 100%;
        height: 100%;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
    }

    .footer-link__icon:before {
        display: inline-flex;
        width: 16px;
        height: 16px;
        justify-content: end;
        align-items: center;
        color: var(--var-white-color);
        font-weight: bold;
    }

    .about__container {
        flex-direction: row;
    }

    .about__img {
        width: 144px;
    }

    .about__text {
        font-size: 12px;
    }
}