.kh {
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-style: normal;
    }
    .marquee-container {
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-content {
        display: inline-flex;
        align-items: center;
        animation: marquee 10s linear infinite;
    }

    @keyframes marquee {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(-100%);
        }
    }
    .ad-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.ad-slider img {
    width: 100%;
    height: auto;
    display: block;

    position: absolute;
    top: 0;
    left: 0;

    opacity: 0;
    animation: fadeAds 6s infinite;
}

.ad-slider img:first-child {
    position: relative; /* Sets container height */
    opacity: 1;
}

.ad-slider img:nth-child(1) {
    animation-delay: 0s;
}

.ad-slider img:nth-child(2) {
    animation-delay: 3s;
}

@keyframes fadeAds {
    0%, 45% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}