.footer {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px ;
    gap: 127px;
    width: 100%;
    border-top: 1px solid #4866B3;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0 160px;
}

.footer-logo {
    width: 133px;
    height: 38px;
    background-image: url("../images/logo.png");
    background-size: contain;
    flex-shrink: 0;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.footer-feedback {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 344px;
}

.footer-feedback h3 {

    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: left;
}

.footer-feedback p {

    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
}

.socials {
    display: flex;
    gap: 10px;
    .number {
        padding-top: 10px;
        padding-right: 20px;
        border-right: 1px solid #f1f1f1;
        color: #f1f1f1;
    }
}

.social {
    display: flex;
    width: 44px;
    height: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 138px;
}

.footer-contacts h3 {

    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: left;
}

.footer-contacts hr {
    border: 1px solid #FAFAFA;
}

.footer-contacts p {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: center;
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 40px;
        gap: 80px;
    }

    .footer-container {
        flex-direction: column;
        align-items: start;
        gap: 40px;
        width: 100%;
    }

    .footer-feedback, .footer-contacts {
        width: 100%;
        text-align: left;
    }

    .footer-feedback p {
        font-size: 18px;
    }

    .footer-feedback h3,
    .footer-contacts h3 {
        text-align: left;
    }

    .socials {
        justify-content: start;
    }

    .socials p {
        border-right: none;
        padding: 0;
        margin-right: 10px;
    }

    .footer-contacts p {
        text-align: left;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
        gap: 50px;
    }

    .footer-logo {
        width: 120px;
        height: 34px;
    }

    .footer-feedback, .footer-contacts {
        width: 100%;
    }

    .footer-feedback h3,
    .footer-feedback p,
    .footer-contacts h3,
    .footer-contacts p {
        font-size: 16px;
        line-height: 1.4;
    }

    .social {
        width: 36px;
        height: 36px;
    }

    .socials {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-contacts hr {
        margin: 10px 0;
    }
}