.footer {
    background-image: url("../img/hero-bubbles.png"),
        linear-gradient(89.02deg, #eb5757 8.91%, #ff3565 89.22%);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center top;
}
.footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0 39px;
    border-bottom: 1px solid #fff;
    gap: 20px 80px;
}
.footer__logos {
    display: flex;
    align-items: center;
    gap: 15px 32px;
}
.site__logo{
    width: 135px;
    height: 66px;
}
.footer_about_text {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-top: 25px;
    margin-bottom: 0;
    max-width: 580px;
}
.footer__list {
    margin: 0;
    padding: 0;
}
.footer_list_item {
    margin-bottom: 10px;
}
.footer_list_item:last-child {
    margin-bottom: 0;
}
.footer_list_link {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #fff;
    transition: 0.3s;
}
.footer_list_link:hover {
    color: #ddd;
}
.head__item {
    font-size: 16px;
    font-weight: 700;
}

.footer__contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
    border-bottom: 1px solid #fff;
}
.footer_contact_blog {
    display: flex;
    flex-wrap: wrap;
    max-width: 550px;
    gap: 10px 36px;
}
.footer_contact_title {
    font-family: "Manrope";
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 15px;
}
.footer_contact_text {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.footer_contact_link {
    font-family: "Manrope";
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}
.social__media {
    width: 24px;
    height: 24px;
    background-color: #fff;
    color: #f7375e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.social__media:hover {
    color: #f7375e;
}
.social__media i {
    font-size: 14px;
}

.footer__terms {
    padding: 40px 0;
}
.footer_terms_text {
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.footer_terms_blog {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 80px;
}

@media (max-width: 992px) {
    .footer__content{
        justify-content: start;
        gap: 20px 60px;
    }
    .footer__contact{
        row-gap: 15px;
    }
    .footer__logos img{
        height: auto;
        object-fit: fill;
    }
}
@media (max-width: 425px) {
    .footer__logos img{
        width: 120px;
    }
    .footer__content{
        column-gap: 50px;
        padding: 30px 19px;
    }
    .footer__contact, .footer__terms {
        padding: 20px 0;
    }
}