footer{
    width: 100%;
    height: 60px;
    background-color: var(--bac_top);
    display: flex;
    justify-content: center;
    color: white;
    font-size: 12px;
    padding: 5px 0px;
}
.box_footer{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
}
.box_footer::after {
    content: ''; 
    position: absolute; 
    z-index: 4;
    bottom: -5px;
    left: 40px;
    width: 55px;
    height: 112px;
    background-image: url("../../image/paski_stopka.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footer_logo{
    width: 100%;
    height: 35px;
    background-image: url("../../image/logo_monmay2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 800px){
    footer{
        height: 40px;
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 8px;
    }
    .footer_logo {
        height: 25px;
    }
    .box_footer::after {
        left: 10px;
        width: 45px;
        height: 70px; 
        bottom: -3px;
    }
}