/* 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-standard {
  position: relative;
  z-index: 1;
  padding: 0;
  background-color: #0d187a;
}
@media (min-width: 48rem) {
  .block-hero-standard {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 50vw;
  }
}
@media (min-width: 90rem) {
  .block-hero-standard {
    min-height: 53.5rem;
  }
}
.block-hero-standard::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  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, 33.5526315789rem + 70.1754385965vw, 112.5rem) auto;
  opacity: 0.4;
  transform: scaleX(-1);
}
.block-hero-standard__image {
  object-fit: cover;
}
@media (max-width: 47.98rem) {
  .block-hero-standard__image {
    width: 100%;
    max-height: 25rem;
  }
}
@media (min-width: 48rem) {
  .block-hero-standard__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 48rem) {
  .block-hero-standard__container {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
  }
}
.block-hero-standard__content {
  padding-top: 3rem;
  padding-bottom: 6rem;
}
@media (min-width: 48rem) {
  .block-hero-standard__content {
    grid-column: 1/6;
    padding-top: 6rem;
  }
}