
.e-flowingImages > div:first-of-type {
    position: relative;
    padding: 3rem 0;
    white-space: nowrap;
    overflow: hidden;
    white-space: nowrap;
    height: 250px;
    background: #fff;
}

.e-flowingImages > div:first-of-type::before, 
.e-flowingImages > div:first-of-type::after {
    content: '';
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .e-flowingImages > div:first-of-type::before, 
    .e-flowingImages > div:first-of-type::after {
        width: 100px;
    }
}

.e-flowingImages > div:first-of-type::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.e-flowingImages > div:first-of-type::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

.e-flowingImages > div:first-of-type > div {
    width: fit-content;
    height: 100%;
    display: flex;
    animation: 60s slide infinite linear;
}


.e-flowingImages > div:first-of-type > div > div {
    height: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 3rem;
    padding-right: 3rem;
}

.e-flowingImages > div:first-of-type > div img {
    height: 60%;
    margin: 0 auto;
}

.e-flowingImages > div:first-of-type > div span {
    margin-top: .5rem;
    font-size: 1.5rem;
}

@keyframes slide {
    from{
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.e-flowingImages > a {
    float: right;
    font-size: 1.2rem;
}

.e-flowingImages > a + * {
    clear: both;
}