:root{
    --footer-text-color: #7e7e7e;
}
footer{
    background: #f4f4f4;
    padding: 50px 0;
    color: var(--footer-text-color);
    position: relative;


}

footer .image-container {
    background-image: url("/static/img/workers-considering-the-term-of-the-agreement-footer.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

footer .image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none; /* Чтобы клики проходили сквозь слой */
}
footer .container{
    z-index: 10;
    position: relative;
}
footer .footer_content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
}

footer .footer_content .footer_compact .footer_phones{
    margin-top: 27px;
    margin-bottom: 30px;
    font-size: var(--text-28);
    font-weight: 600;
}
footer .footer_content .footer_copyright_text{
    margin-top: 27px;
}
footer .footer_content .footer_social_title{
    font-size: var(--text-22);
    margin-bottom: 12px;
    text-align: right;
}
footer .footer_content .footer_center_row_social{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-bottom: 45px;
}
footer a{
    color: var(--footer-text-color);
}
footer a:hover{
    color: var(--text-hover-color);
}
footer .footer_content .footer_right a{
    display: block;
    text-align: right;
    margin-bottom: 6px;

}

footer .footer_bottom{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}


@media (max-width: 1020px) {
    footer .footer_bottom,
    footer .footer_content{
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
    footer .footer_bottom{
        gap: 22px;
    }
    footer .footer_content .footer_social_title{
        text-align: center;
    }
    footer .footer_content .footer_center_row_social{
        justify-content: center;
    }
    footer .footer_content .footer_right a{
        text-align: center;
    }

}