.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    gap: 30px;
}

.marquee > div {
    display: flex;
    gap: 30px;
    padding-left: 0;
    animation: marquee 20s linear infinite;
}

:root {
    --how-to-slide-width: 78px;
}

@media print, screen and (min-width: 40em) {
    :root {
        --how-to-slide-width: 120px;
    }
}

@media print, screen and (min-width: 64em) {
    :root {
        --how-to-slide-width: 170px;
    }
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX( calc( var( --how-to-slide-width ) * var(--data-slide-count) * -1 ) ); }
}

.all-who-odds {
    padding: 80px 0 !important;
}

.all-who-odds .swiper-container {
    padding: 32px 0 0 0;
}

@media screen and (max-width: 910px) {
    .all-who-odds .swiper-container {
        padding: 0;
    }
}

#author-page .home-who-odds, #author-page .all-who-odds {
    padding-top: 20px;
}

#author-page .home-who-odds__title {
    border-top: 2px solid #E7EAF1;
    padding-top: 40px;
}

.home-who-odds, .all-who-odds {
    padding-top: 40px;
}


.home-who-odds__title {
    font-weight: 600;
    text-transform: uppercase;
    color: #ACACB5;
    margin-bottom: 24px;
}

@media print, screen and (min-width: 64em) {
    .home-who-odds__title {
        margin-bottom: 32px;
    }
}


#author-page .home-who-odds, #author-page .all-who-odds {
    padding-top: 20px;
}

#author-page .home-who-odds__title {
    border-top: 2px solid #E7EAF1;
    padding-top: 40px;
}


.home-who-odds {
    background: #fff;
    padding: 40px 0;
}

#home-who ~ .home-who-odds {
    padding-top: 0;
}


#hwo-slider .swiper-wrapper {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

#hwo-slider .marquee > div .hwo-slide {
    width: 78px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: default;
}

#hwo-slider .marquee > div .hwo-slide > img {
    width: auto;
    height: auto;
}

.hwo-slide {
    filter: grayscale(100%);
    opacity: 0.3;
}

@media print, screen and (min-width: 40em) {
    #hwo-slider .marquee > div .hwo-slide {
        width: 120px;
    }
}

@media print, screen and (min-width: 64em) {
    #hwo-slider .marquee > div .hwo-slide {
        width: 170px;
    }
}

@media screen and (max-width: 992px) {
    .all-who-odds {
        padding: 32px 0 !important;
    }
}