.section-doitac {
    padding: 28px 0;
    background: #f6f6f4;
    overflow: hidden;
}

.doitac-marquee {
    width: 100%;
    overflow: hidden;
}

.doitac-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: homeDoitacMarquee 28s linear infinite;
    will-change: transform;
}

.doitac-marquee:hover .doitac-marquee__track {
    animation-play-state: paused;
}

.doitac-item {
    flex: 0 0 auto;
    width: clamp(180px, 14vw, 240px);
    padding: 0 clamp(26px, 2.2vw, 42px);
}

.doitac-item a {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doitac-item img {
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.62;
    filter: grayscale(1);
    transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s ease;
}

.doitac-item a:hover img,
.doitac-item a:focus-visible img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-1px);
}

@keyframes homeDoitacMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 991px) {
    .section-doitac {
        padding: 22px 0;
    }

    .doitac-marquee__track {
        animation-duration: 22s;
    }

    .doitac-item {
        width: 180px;
        padding: 0 24px;
    }

    .doitac-item img {
        max-height: 48px;
        opacity: 0.4;
    }
}

@media (max-width: 767px) {
    .section-doitac {
        padding: 18px 0;
    }

    .doitac-marquee__track {
        animation-duration: 18s;
    }

    .doitac-item {
        width: 150px;
        padding: 0 18px;
    }

    .doitac-item a {
        min-height: 70px;
    }

    .doitac-item img {
        max-height: 40px;
    }
}
