.footer {
    background: url('/images/header_background.svg') no-repeat center / cover #17191a;
    color: #FFF;
    padding: 10px 0;
}

.footer__inner {
    display: flex;
    justify-content: space-around;
}

.footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    padding: 0 20px;
    gap: 10px;
}



.footer__col a {
    color: #A7E7FE;
}

.footer__col p {
    text-align: center;
}

.footer__col a:hover {
    color: #FFF;
}

.footer__logo {
    width: 80%;
    /* На всю ширину колонки */
    max-width: 200px;
    /* Ограничение, если нужно */
    height: 80px;
    background: url('/images/logo_new.svg') no-repeat center center;
    background-size: contain;
}

.footer__badges {
    max-width: 75%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer__badge {
    width: 60px;
    height: 40px;
    border-radius: 4px;
}

.bage_payments {
    width: 100px;
    height: 170px;
    background: url('/images/badges/VerticalLogos.svg') no-repeat center;
    background-size: auto 100%;
}

.bage_steplife {
    background: url('/images/partners/steplife.svg') no-repeat center / 100% 100%;
}

.bage_simphony {
    background: url('/images/partners/simphony.png') no-repeat center / auto 100%;

}

.bage_armed {
    background: url('/images/partners/armed.svg') no-repeat center / 100% 100%;
}

.bage_medtechno {
    background: url('/images/partners/medtechno.svg') no-repeat center / 100% 100%;
}

.bage_ortonica {
    background: url('/images/partners/ortonica.svg') no-repeat center / 100% 100%;
}

.bage_met {
    background: url('/images/partners/met.svg') no-repeat center / 100% 100%;
}

.bage_ortomoda {
    background: url('/images/partners/ortomoda.png') no-repeat center / 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: 0;
    }

    .footer__col {
        width: 90%;
        padding: 20px 20px;
       

    }

    .footer__col_mob {
        padding: 20px 0;
        width: 90%;
        min-height: 100px;
    }

    .footer__badges {
        width: 100%;
        gap: 0;
    }

    .bage_payments {
        display: flex;
        width: 100%;
        height: 50px;
        background: url('/images/badges/HorizontalLogos.svg') no-repeat center;
        background-size: contain;
    }
}