.mini_slide{
    background-image: url('../../images/fon.svg');
    padding-top: 24px;
}

.marquee {
    border-top: 1px solid #313131;
    border-bottom: 1px solid #313131;
    padding: 20px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.marquee__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
}
.marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    white-space: nowrap;
}

.marquee__logo{
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .92;
}
/* Чередование цветов */
.marquee__item:nth-child(odd) {
    color: #F1F5F9;
}
.marquee__item:nth-child(even) {
    color: #F20D0D;
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (max-width: 800px) {
        .mini_slide {
            padding-bottom: 40px;
            padding-top: 0;
        }
    }
@media (max-width: 768px) {
    
    .marquee__item { padding: 0 25px; }
    .marquee__logo{ height: 42px; max-width: 180px; }
}