

/* =========================
   OSVALDO HERO
   ========================= */

.osvaldo-hero {
    position: relative;
    width: 100%;
    min-height: 772px;
    overflow: hidden;
	  isolation: isolate;
}

/* VIDEO GENERALE */
.osvaldo-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY SCURO A GRADIENTE */
.osvaldo-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.00) 100%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.15) 25%,
            rgba(0, 0, 0, 0.05) 100%
        );

    z-index: 1;
    pointer-events: none;
}

/* CONTENUTI SOPRA OVERLAY */
.osvaldo-hero > .e-con-inner,
.osvaldo-hero > .elementor-element {
    position: relative;
    z-index: 2;
}


/* =========================
   VIDEO DESKTOP
   ========================= */

.osvaldo-hero .elementor-background-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
}


/* =========================
   VIDEO TABLET
   ========================= */

@media (max-width: 1024px) {

    .osvaldo-hero .elementor-background-video-container video {
        object-fit: cover;
        object-position: 48% center;
    }

}


/* =========================
   VIDEO SMARTPHONE
   ========================= */

@media (max-width: 767px) {

    .osvaldo-hero {
        min-height: 772px;
    }

    .osvaldo-hero .elementor-background-video-container video {
        object-fit: cover;
        object-position: 48% center;
    }

}
