/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/** Page Hero Overlay **/
.winery-hero > .fl-row-content-wrap {
  position: relative;
  overflow: hidden;
}

.winery-hero > .fl-row-content-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(247, 244, 237, 0) 0%,
      rgba(247, 244, 237, 0) 32%,
      rgba(247, 244, 237, 0.10) 44%,
      rgba(247, 244, 237, 0.34) 66%,
      rgba(247, 244, 237, 0.76) 86%,
      rgb(247, 244, 237) 100%
    ),
    linear-gradient(
      rgba(0, 0, 0, 0.22),
      rgba(0, 0, 0, 0.22)
    );
}

.winery-hero .fl-row-content {
  position: relative;
  z-index: 2;
}

