#ia-gallery {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;

    transition: background-size 0s;
}

#ia-gallery .ia-gallery__imgs-wrapper {
    position: absolute;

    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#ia-gallery .ia-gallery__img {
    position: absolute;

    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
}

#ia-gallery .ia-gallery__img > .elementor-widget-container {
    width: 100%;
}

#ia-gallery .ia-gallery__img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

#ia-gallery .ia-gallery__img[ data-active="true" ] {
    z-index: 1;
}


#ia-gallery .ia-gallery__btns-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: stretch;
}

#ia-gallery .ia-gallery__btn {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: stretch;

    padding: 1rem 0;

    border-radius: 0;

    background-color: var(--e-global-color-accent);
}

#ia-gallery .ia-gallery__btn:disabled {
    opacity: 0.5;
}

#ia-gallery .ia-gallery__btn svg {
    width: 4rem;
    height: auto;
}


/* MOBILE BEGIN */
@media (max-width: 767px) {
    #ia-gallery .ia-gallery__imgs-wrapper {
        position: relative;
    
        display: flex;
        top: unset;
        left: unset;

        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
    
        z-index: 0;
    }
}
/* MOBILE END */