.hero-section {
    position: relative;
    width: 100%;
    max-width: 2048px;
    aspect-ratio: 2048 / 874;
    margin: 0 auto;
    max-height: 874px;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroFade 10s infinite;
}
.img1 {
    animation-delay: 0s;
}
.img2 {
    animation-delay: 5s;
}
@keyframes heroFade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}