* {
    padding: 0;
    margin: 0;
}

.slider-container {
    position: absolute;
    margin-top: 0;
    width: 100vw;
    height: 67vh;
    background-color: red;
}

@keyframes slider-show {
    to {
        transform: translateX(-40%);
    }
}

.sliders-box {
    display: flex;
    width: 100vw;
    height: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    /* overflow-x: auto; */
    animation: slider-show 25s infinite;
    animation-timing-function: ease-in-out;
}

.sliders-box img {
    width: 340px;
    height: 100%;
}

.slider-container .sub-container {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.411);
    overflow-x: hidden;
    z-index: 20;
}

.slider-container .sub-container .cont {
    display: flex;
    width: 100vw;
    height: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    animation: slider-show 25s infinite;
    animation-timing-function: ease-in-out;
}

.slider-container .sub-container .cont img {
    width: 340px;
    height: 100%;
}