@keyframes smoothAnimation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes smoothAnimation2 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(-200%);
    }
}

.smooth-icons {
    position: relative;
    display: flex;
    overflow: hidden;

    height: 100px;
}

.smooth-icons::before,
.smooth-icons::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
    width: 148px;

    background: linear-gradient(90deg, #F1F4F9 0%, rgba(241, 244, 249, 0) 100%);

    z-index: 1;
}
.smooth-icons::after {
    left: unset;
    right: 0;

    transform: rotate(-180deg);
}

.smooth-icons__icon-wrapper {
    transform: translateX(100%);
    width: auto;

    display: flex;
    align-items: center;
    flex-wrap: nowrap;

    animation: smoothAnimation 50s linear infinite;

    visibility: visible !important;
}
.smooth-icons__icon-wrapper-2 {
    transform: translateX(-100%);

    animation: smoothAnimation2 50s linear infinite;
}

.smooth-icons__icon {
    max-height: 100px;
    min-height: 100px;
    min-width: 160px;
    max-width: 160px;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

    margin-left: 80px;
}

@media (max-width: 1199.5px) {
    .smooth-icons::before,
    .smooth-icons::after {
        display: none;
    }
}
@media (max-width: 1023.5px) {

}
@media (max-width: 767.5px) {
    .smooth-icons {
        height: 60px;
    }

    .smooth-icons__icon {
        max-height: 60px;
        min-height: 60px;
        min-width: 96px;
        max-width: 96px;

        margin-left: 40px;
    }

}
