/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable font-family-no-missing-generic-family-keyword */
/* stylelint-disable order/order */
/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
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-display {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0;
  overflow: hidden;
}
body:not(.home) .block-hero-display::after {
  position: absolute;
  /* opacity: 0; */
  bottom: -5px;
  content: "";
  display: block;
  width: 100%;
  /* top: 0; */
  height: 75%;
  background: linear-gradient(0deg, #06090e 0%, rgba(6, 9, 14, 0) 43.28%);
}
body:not(.home) .block-hero-display::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 75%;
  /* opacity: 0; */
  background: linear-gradient(180deg, rgba(6, 9, 14, 0.7) 0%, rgba(6, 9, 14, 0) 26.46%);
}
body:not(.home) .block-hero-display .container.block-hero-display__container::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(6, 9, 14, 0.8) 0%, rgba(6, 9, 14, 0.1) 100%);
}
@media (max-width: 61.98rem) {
  body:not(.home) .block-hero-display {
    min-height: 37vh;
  }
}
.home .block-hero-display {
  padding-top: 0;
}
.home .block-hero-display.bg-dark {
  background: #06090e;
}
.home .block-hero-display .block-text-lead {
  padding-bottom: 0;
}
.home .block-hero-display .block-text-lead p,
.home .block-hero-display .block-text-lead h2,
.home .block-hero-display .block-text-lead .wp-block-button {
  width: auto !important;
  max-width: none !important;
  padding: 0;
  color: #fff;
}
.home .block-hero-display .block-text-lead p {
  text-transform: none;
}
.home .block-hero-display .block-text-lead p .has-overline-font-size {
  color: var(--primary-white, #fff);
  font-weight: 600;
  font-size: 18px;
  /* Desktop/T4 */
  font-family: Figtree;
  font-style: normal;
  line-height: 28px;
  /* 155.556% */
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "clig" off, "liga" off;
}
.home .block-hero-display .block-text-lead .wp-block-button a,
.home .block-hero-display .block-text-lead .wp-block-button button {
  color: #fff;
}
.home .block-hero-display .block-text-lead .wp-block-button a::after,
.home .block-hero-display .block-text-lead .wp-block-button button::after {
  margin-left: 0.5rem;
  padding: 0.125rem;
  color: #fff;
  font-size: 0.875rem !important;
  border-radius: 50%;
  background: var(--primary-blue-1, #003da7) !important;
}
.home .block-hero-display .block-hero-display__container {
  z-index: 1;
}
@media (max-width: 61.98rem) {
  .home .block-hero-display .block-hero-display__container {
    position: relative;
  }
}
.home .block-hero-display__image {
  min-height: auto;
  object-fit: contain;
  object-position: top;
}
.home .block-hero-display__image::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #020024;
  background: linear-gradient(270deg, rgba(2, 0, 36, 0) 26%, rgba(5, 6, 20, 0) 38%, rgba(5, 7, 19, 0.2931547619) 79%, #06090e 100%, #06090e 100%);
  background: linear-gradient(270deg, rgba(2, 0, 36, 0) 26%, rgba(5, 6, 20, 0) 38%, rgba(5, 7, 19, 0.5004376751) 68%, #06090e 100%, #06090e 100%);
  opacity: 0.7;
}
@media (max-width: 61.98rem) {
  .home .block-hero-display__image {
    position: relative;
  }
  .home .block-hero-display__image::after {
    position: absolute;
    bottom: -1px;
    content: "";
    z-index: 9;
    display: block;
    display: none;
    width: 100%;
    height: 91%;
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 15%, #06090e 100%);
    /* background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 15%, #06090e 100%); */
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 64%, rgba(5, 7, 19, 0.2931547619) 70%, rgba(6, 9, 14, 0.9262079832) 87%, #06090e 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 55%, rgba(5, 7, 19, 0.2931547619) 65%, rgba(6, 9, 14, 0.9262079832) 80%, #06090e 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 49%, rgba(5, 7, 19, 0.2931547619) 61%, rgba(6, 9, 14, 0.9262079832) 74%, #06090e 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 35%, rgba(5, 7, 19, 0.2931547619) 44%, #06090e 68%, #06090e 100%);
  }
  .home .block-hero-display__image::after {
    position: absolute;
    bottom: -58px;
    bottom: -1px;
    content: "";
    display: block;
    /* z-index: -1; */
    width: 100%;
    height: 87%;
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 15%, #06090e 100%);
    /* background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 15%, #06090e 100%); */
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 64%, rgba(5, 7, 19, 0.2931547619) 70%, rgba(6, 9, 14, 0.9262079832) 87%, #06090e 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 55%, rgba(5, 7, 19, 0.2931547619) 65%, rgba(6, 9, 14, 0.9262079832) 80%, #06090e 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 49%, rgba(5, 7, 19, 0.2931547619) 61%, rgba(6, 9, 14, 0.9262079832) 74%, #06090e 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 35%, rgba(5, 7, 19, 0.2931547619) 44%, #06090e 100%, #06090e 100%);
  }
}
.home .block-hero-display img.block-hero-display__image-inner {
  width: 100%;
}
.home .block-hero-display__card {
  padding-top: 252px;
}
@media (max-width: 61.98rem) {
  .home .block-hero-display__card .wp-block-buttons {
    margin-bottom: 0;
  }
  .home .block-hero-display__card h2 {
    margin-top: 16px !important;
  }
}
.home .block-hero-display h1 {
  color: #fff;
  color: var(--primary-white, #fff);
  font-weight: 700;
  font-size: 96px;
  font-family: Figtree;
  font-style: normal;
  line-height: 96px;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "clig" off, "liga" off;
}
@media (max-width: 61.98rem) {
  .home .block-hero-display h1 {
    color: var(--primary-white, #fff);
    font-weight: 700;
    font-size: 40px;
    /* Mobile/Display */
    font-family: Figtree;
    font-style: normal;
    line-height: 44px;
    /* 110% */
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: "clig" off, "liga" off;
  }
}
.home .block-hero-display h1,
.home .block-hero-display p {
  color: #fff;
}
.home .block-hero-display::before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 91%;
  background: linear-gradient(0deg, #06090e 0%, rgba(6, 9, 14, 0) 43.28%), linear-gradient(180deg, rgba(6, 9, 14, 0.7) 0%, rgba(6, 9, 14, 0) 26.46%), linear-gradient(90deg, rgba(6, 9, 14, 0.8) 0%, rgba(6, 9, 14, 0.1) 100%), #d3d3d3 -919px -456.131px/161.588% 148.525% no-repeat;
  /* background: linear-gradient(0deg, #06090E 0%, rgba(6, 9, 14, 0) 43.28%), linear-gradient(180deg, rgba(6, 9, 14, 0.7) 0%, rgba(6, 9, 14, 0) 26.46%), linear-gradient(90deg, rgba(6, 9, 14, 0.8) 0%, rgba(6, 9, 14, 0.1) 100%), lightgray -919px -456.131px/161.588% 148.525% no-repeat; */
  /* background: linear-gradient(0deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 45%, #06090e 100%); */
  /* background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(5,7,19,0.5228466386554622) 56%, rgba(6,9,14,0.9262079831932774) 77%, rgba(6,9,14,1) 100%); */
  /* background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(5,7,19,0.5228466386554622) 70%, rgba(6,9,14,0.9262079831932774) 95%, rgba(6,9,14,1) 100%); */
  background: linear-gradient(0deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 71%, rgba(5, 7, 19, 0.2931547619) 82%, rgba(6, 9, 14, 0.9262079832) 97%, #06090e 100%);
  background: linear-gradient(0deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 74%, rgba(5, 7, 19, 0.2931547619) 90%, rgba(6, 9, 14, 0.9262079832) 99%, #06090e 100%);
  opacity: 0.5;
}
.home .block-hero-display::after {
  position: absolute;
  bottom: 0;
  content: "";
  z-index: -1;
  display: block;
  width: 100%;
  height: 91%;
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 15%, #06090e 100%);
  /* background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(6, 9, 14, 0) 15%, #06090e 100%); */
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 64%, rgba(5, 7, 19, 0.2931547619) 70%, rgba(6, 9, 14, 0.9262079832) 87%, #06090e 100%);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 55%, rgba(5, 7, 19, 0.2931547619) 65%, rgba(6, 9, 14, 0.9262079832) 80%, #06090e 100%);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 49%, rgba(5, 7, 19, 0.2931547619) 61%, rgba(6, 9, 14, 0.9262079832) 74%, #06090e 100%);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(5, 6, 20, 0) 35%, rgba(5, 7, 19, 0.2931547619) 44%, #06090e 68%, #06090e 100%);
}
@media (min-width: 48rem) {
  .block-hero-display__card {
    max-width: 50%;
  }
}
@media (min-width: 48rem) {
  .block-hero-display__card.is-style-card {
    padding: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  }
}
@media (max-width: 47.98rem) {
  .block-hero-display__image + .block-hero-display__container .block-hero-display__card {
    padding-top: 3rem;
  }
}
.block-hero-display__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  min-height: 23.4375rem;
  object-fit: cover;
}