/* WRX24 owrx global overrides*/

:root {
    --theme-gradient: linear-gradient(95deg, var(--secondary) 0%, var(--primary) 100%) 98% / 200% 100%
    
}

/* WRX BLOCK */

    .wrx-block {
        
        position: relative;
        
        width: 100%;
        
        display: block;
        
        overflow: hidden;
        
    }
    
    .block-bg {
        
        position: absolute;
        
        top: 0;
        
        left: 0;
        
        width: 100%;
        
        height: 100%;
        
        z-index: 1;
        
    }
    
    .block-bg-image {
        
        background-size: cover;
        
        background-position: center;
        
    }
    
    .wrx-trigger-parallax {
        
        z-index: 2;
        
    }
    
    .block-content {
        
        position: absolute;
        
        z-index: 3;
        
        color: #fff;
        
        top: 0;
        
        left: 0;
        
        right: 0;
        
        bottom: 0;
        
        display: flex;
        
        flex-direction: column;
        
        align-items: center;
        
        justify-content: center;
        
    }