@media screen and (max-width: 1225px) {
    .footer-content {
        padding: 50px 20px;
    }
}

@media screen and (max-width: 865px) {
    .footer-logo-container {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .footer-stack-div, .footer-contacts {
        margin-top: 30px;
    }
}

@media screen and (max-width: 800px) {
    .footer-right-div {
        width: 100%;
        justify-content: flex-start;
    }

}
@media screen and (max-width: 555px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-right-div {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0;
    }

}