.scaled-with-info-banner-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-font-smoothing: antialiased;
}

.scaled-with-info-banner-section * {    
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.scaled-with-info-banner-section .blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translate3d(0,0,0);
    pointer-events: none;     
}

.scaled-with-info-banner-section .scaled-with-info-banner-wrapper {
    width: 100%;
    height: 100%; 
    padding-top: calc(var(--menu-height) + var(--sticky-h-height));   
    /*display: flex;
    flex-direction: column;
    align-items: center; /* Centra orizzontalmente tutto (titolo e immagine) */
    /*justify-content: flex-start;*/
    overflow: hidden;
}

.scaled-with-info-banner-section .title {
    padding: 120px 24px 80px;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
    flex-shrink: 0;
    backface-visibility: hidden;
}

.scaled-with-info-banner-section .wrp-image {  
    width: 60vw;
    height: 60vh;
    position: absolute;
    margin: 0 auto;
    border-radius: 16px; 
    overflow: hidden; 
    left: 50% !important;
    transform: translate(-50%, 0);    
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Forza il box su un layer separato della GPU */
    will-change: transform;
    perspective: 1000px;
    transition: none !important; 
    /*transform: translate3d(0,0,0);*/
}

/*img*/
.scaled-with-info-banner-section .wrp-image .img-container,
.scaled-with-info-banner-section .wrp-image picture {
    height: 100%;
}

.scaled-with-info-banner-section .wrp-image .img-container,
.scaled-with-info-banner-section .wrp-image .video_wrapper {  
    /* per evitare che i bordi "tremino" durante lo scaling */
    /*mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: translate3d(0, 0, 0);*/
}

.scaled-with-info-banner-section .wrp-image img,
.scaled-with-info-banner-section .wrp-image .video_wrapper video {
    width: 100%;
    height: 100%;     
    object-fit: cover;
    object-position: center;
    display: block;
    /* Forza il video/immagine a stare sul proprio layer GPU */
    transform: scale(1.01);
    transition: none !important;
}

/*video*/
.scaled-with-info-banner-section .wrp-image .video_wrapper,
.scaled-with-info-banner-section .wrp-image .video_wrapper_inner,
.scaled-with-info-banner-section .wrp-image .html5_vid_wrapper,
.scaled-with-info-banner-section .wrp-image .html5_vid_container,
.scaled-with-info-banner-section .wrp-image .vsVideoPlayerHTML5,
.scaled-with-info-banner-section .wrp-image .vid_cover,
.scaled-with-info-banner-section .wrp-image .html5_vid_container_outer {
    height: 100%;
}

.scaled-with-info-banner-section .wrp-image .info-description {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    height: 230px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    z-index: 2;
}

.scaled-with-info-banner-section .wrp-image .info-description .info-description-inner {
    max-width: 670px;
    margin: 0 auto;
    z-index: 5;
}

.scaled-with-info-banner-section .wrp-image .info-description .cta_wrapper {
    padding-top: 16px;
}

.scaled-with-info-banner-section .wrp-image .reveal-panel {
    background: transparent;
}

@media (max-width: 1024px) {
    .scaled-with-info-banner-section .title {
        padding: 80px 24px 40px;
    }

    .scaled-with-info-banner-section .wrp-image .info-description {
        height: 324px;
    }
}    
