/* HOMEPAGE - Hero Background Image & Gradient Overlay
- How to Change Image: Upload Image through SiteBuilder Image Assets either w/ the same filename as existing, or a different filename and update background-image URL with new file name
- How to Change Color Gradient Overlay (note: this is optional; can be deleted from CSS): use HEX to RGBA converter for the appropriate format, first rgba() value is top color, second value is bottom color, use last digit in each for opacity (.75 = 75%).
*/
.pg_Index .header-row {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)), url('/data/SiteBuilderAssetsOriginals/Live/Images/journals/umbrella_hero_1.jpg');
    background-position: center;
    background-repeat: no-repeat;
}
    
    
