
.container {
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

.slider-area {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    animation: slideShow 36s linear infinite 0s;
}

.slider-item:nth-child(2) {
    animation-delay: 10s;
}

.slider-item:nth-child(3) {
    animation-delay: 20s;
}

.slider-item img {
    width: 70%;
    object-fit: cover;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }

    20% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 0;
    }
}