.img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.67;
    overflow: hidden;
}

.img1 {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    background: center center no-repeat;
    animation: anime 6s 0s infinite;
    z-index: 0;
    opacity: 0;
}
.img1:nth-of-type(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}


@keyframes anime {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    51% {
        opacity: 0;
        z-index: 10;
    }
    100% {
        opacity: 0;
    }
}



