
.footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff2d8 0%, #ffe4b3 100%);
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
    margin-right: 130px;
}

.footer__social .footer__text--color {
    display: none;
}

.footer__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.footer__text--color {
    color: #fd8706;
}

.footer__link {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    -webkit-transition: border-color .3s linear;
    transition: border-color .3s linear;
    cursor: pointer;
}

@media screen and (max-width: 1279px) {
    .footer {
        padding: 60px 0;
    }

    .footer__info {
        gap: 15px;
    }

    .footer__social {
        gap: 15px;
    }

    .footer__text {
        font-size: 18px;
        line-height: 16px;
    }

    .footer__link {
        font-size: 18px;
        line-height: 16px;
    }
}

@media screen and (max-width: 967px) {
    .footer {
        padding: 45px 0;
    }

    .footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .footer__info {
        gap: 15px;
    }

    .footer__info .footer__text--color {
        display: none !important;
    }

    .footer__social {
        gap: 15px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer__social .footer__text--color {
        display: block;
    }

    .footer__text {
        font-size: 16px;
        line-height: 16px;
    }

    .footer__link {
        font-size: 16px;
        line-height: 16px;
    }
}

@media screen and (max-width: 655px) {
    .footer__text {
        font-size: 14px;
        line-height: 16px;
    }

    .footer__link {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (hover: hover) {
    .footer__link:hover {
        border-bottom: 2px solid #333;
    }
}