section#promo .glide__bullets .glide__bullet {
    background: var(--color-primary);
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 100%;
    margin: 0 5px;

    transition: background .25s ease-out;
}

section#promo .glide__bullets .glide__bullet.glide__bullet--active {
    background: var(--color-primary-dark);
}

@media screen and (min-width: 768px) {
    section#promo .glide__bullets .glide__bullet {
        width: 20px;
        height: 20px;
    }

    section#promo .promo-img {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 1rem;
        overflow: hidden;
        transition: scale 0.5s ease-in-out;
    }

    section#promo .promo-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
        transition: filter 0.5s ease-in-out;
    }

    /* section#promo .promo-img .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 1rem;
        background: rgba(0, 0, 0, 0.25);
        transition: opacity 0.5s ease-in-out;
    }

    section#promo .glide__slide--active .promo-img .overlay {
        opacity: 0;
    } */

    section#promo .glide__slide--active .promo-img {
        scale: 1.1;
    }
    section#promo .glide__slide--active .promo-img img {
        filter: brightness(100%);
    }
}