/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.block-hero-simple {
  position: relative;
  z-index: 1;
  min-height: clamp(12.5rem, -2.3571428571rem + 30.9523809524vw, 25.5rem);
  padding: clamp(8rem, 3rem + 10.4166666667vw, 12.375rem) 0 clamp(4rem, 1.1428571429rem + 5.9523809524vw, 6.5rem) 0 !important;
  overflow: hidden;
}
body.page-has-alt-nav .block-hero-simple:first-child {
  margin-top: -4rem;
}
body.page-has-alt-nav .block-hero-simple:first-child::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(180deg, rgba(10, 17, 81, 0.75) 0%, rgba(10, 17, 81, 0) 100%);
}
@media (max-width: 47.98rem) {
  body.page-has-alt-nav .block-hero-simple:first-child::after {
    z-index: 2;
  }
}
@media (min-width: 48rem) {
  .block-hero-simple__container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
  }
}
@media (min-width: 48rem) {
  .block-hero-simple__content {
    grid-column: 1/6;
  }
}
.block-hero-simple__decoration {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../../images/overlay-1.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: clamp(50rem, 23.6842105263rem + 112.2807017544vw, 150rem) auto;
  opacity: 0.4;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 48rem) {
  .block-hero-simple__decoration {
    height: calc(100% + clamp(5rem, -0.7142857143rem + 11.9047619048vw, 10rem));
  }
}