.footer {
    width: 100%;
    padding: 14px 20px 24px;
}

.footer__top {
    width: 45%;
    background: #FFFFFF;
    border-radius: 27px 27px 0 0;
    padding: 20px 20px 0;
}

.footer__button {
    width: 100%;
    height: 86px;
    font-size: 20px;
    background: conic-gradient(from 84deg at 15.02% 100%, #1B1B1B 0deg, #303030 360deg), #F0F0F0;
    transition: opacity 0.3s ease;
}

.footer__middle {
    background: #FFFFFF;
    padding: 100px 20px 20px;
    border-radius: 0 27px 0 0;
}

.footer__content {
    margin: 0 auto;
}

.footer__logo {
    margin-bottom: 40px;
}

.footer__logo-img {
    width: 150px;
    height: 40px;
}

.footer__links {
    margin-bottom: 150px;
}

.footer__links-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer__column {
    flex: 1;
    min-width: 200px;
}

.footer__column--left {
    display: flex;
    justify-content: flex-start;
}

.footer__column--center {
    display: flex;
    justify-content: center;
}

.footer__column--right {
    display: flex;
    justify-content: flex-end;
}

.footer__block {
    display: flex;
    flex-direction: column;
    max-width: 280px;
}

.footer__blocks {
    display: flex;
    flex-direction: column;
    gap: 38px;
    width: 100%;
    max-width: 280px;
}

.footer__title {
    color: #1B1B1B;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: left;
    opacity: 0.2;
}

.footer__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    color: #1B1B1B;
}

.footer__pdf {
    text-decoration: underline;
}

.footer__link {
    color: #1B1B1B;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
    display: inline-block;
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    justify-content: flex-start;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__social-icon {
    width: 50px;
    height: 50px;
}

.footer__text {
    width: 100%;
}

.footer__large-text {
    width: 100%;
}

.footer__bottom {
    background: #373737;
    padding: 22px 40px;
    border-radius: 0 0 27px 27px;
}

.footer__bottom-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright-text {
    color: #FFFFFF;
    font-size: 12px;
    opacity: 0.6;
    font-weight: 400;
}

.footer__link--bottom {
    color: #FFFFFF;
    font-size: 12px;
    opacity: 0.6;
    font-weight: 400;
    text-decoration: underline;
}

@media (max-width: 1440px) {
    .footer__button {
        height: 70px;
        font-size: 18px;
    }
    .footer__middle {
        padding-top: 80px;
    }
}

@media (max-width: 1024px) {
    .footer__button {
        height: 60px;
        font-size: 16px;
    }
    .footer__middle {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .footer__top {
        width: 100%;
        border-radius: 30px 30px 0 0;
        padding: 65px 15px;
    }

    .footer__button {
        height: auto;
        padding: 20px 0;
    }
    
    .footer__logo-img {
        width: 182px;
        height: 47px;
    }

    .footer__logo {
        margin-bottom: 50px;
    }

    .footer__middle {
        padding: 0 15px 20px;
        border-radius: 0;
    }

    .footer__links {
        margin-bottom: 50px;
    }

    .footer__links-columns {
        flex-direction: column;
    }

    .footer__column {
        width: 100%;
    }

    .footer__column--center,
    .footer__column--right {
        justify-content: flex-start;
    }

    .footer__column--left {
        display: none;
    }

    .footer__column--center {
       order: 2;
    }

    .footer__column--right {
        order: 1;
    }

    .footer__block {
        max-width: 100%;
    }

    .footer__blocks {
        max-width: 100%;
    }

    .footer__text {
        height: auto;
    }

    .footer__bottom {
        background: #1B1B1B;
        padding: 12px 15px 35px;
    }

    .footer__bottom-content {
        flex-direction: column-reverse;
        gap: 15px;
        align-items: flex-start;
        font-size: 12px;
    }

    .footer__copyright-text {
        max-width: 240px;
        display: block;
    }
}

@media (max-width: 480px) {
    .footer__button {
        height: auto;
        font-size: 14px;
        padding: 15px 0;
    }
}