/* 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.
*/
.fade-up {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.fade-up.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}

/****************
 * 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 {
  --transform-x: -24px;
  --transition-delay: 500ms;
  --transition-duration: 500ms;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 61.25rem;
  padding: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem) 0;
  color: #fff;
  background: radial-gradient(381.61% 100% at 0% 50%, #163f6f 0%, #0e2949 31.25%, #010207 100%);
  overflow: hidden;
}
@media screen and (max-width: 1450px) and (min-width: 1024px) {
  .block-hero-display {
    min-height: 100vh;
  }
}
@media (max-width: 63.98rem) {
  .block-hero-display {
    min-height: 0;
    padding-top: 7.1875rem;
  }
  .block-hero-display.acf-block {
    padding-bottom: 0;
  }
  .block-hero-display .wp-block-columns-wrapper {
    height: 100%;
  }
  .block-hero-display .wp-block-columns-wrapper .wp-block-columns {
    height: 100%;
  }
  .block-hero-display .wp-block-columns-wrapper .wp-block-column:last-child {
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 48rem) {
  #page .block-hero-display .block-hero-display__content {
    opacity: 0;
    transform: translate3d(var(--transform-x), 0, 0);
    transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
  }
  .page-has-loaded #page .block-hero-display .block-hero-display__content {
    opacity: 1;
    transform: none;
  }
  #page .block-hero-display .block-hero-display__graphic-container {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
    transition: var(--transition-duration) opacity var(--transition-delay) ease-out, var(--transition-duration) transform var(--transition-delay) ease-out;
  }
  .page-has-loaded #page .block-hero-display .block-hero-display__graphic-container {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 63.98rem) {
  .block-hero-display .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
    margin-top: 2rem;
  }
  .block-hero-display .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.block-hero-display .block-hero-display__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 63.98rem) {
  .block-hero-display .block-hero-display__video-container {
    display: none;
  }
}
.block-hero-display .block-hero-display__video-container::before, .block-hero-display .block-hero-display__video-container::after {
  display: none;
}
@media (min-width: 1880px) {
  .block-hero-display .block-hero-display__video-container::before, .block-hero-display .block-hero-display__video-container::after {
    position: absolute;
    top: 0;
    content: "";
    z-index: 1;
    display: block;
    width: calc((100vw - 1829.268px) / 2 + 60px);
    height: 100%;
  }
}
.block-hero-display .block-hero-display__video-container::before {
  left: 0;
  background: #232341;
  background: linear-gradient(90deg, #232341 calc(100% - 60px), rgba(35, 35, 65, 0) 100%);
}
.block-hero-display .block-hero-display__video-container::after {
  right: 0;
  background: #0c0e17;
  background: linear-gradient(90deg, rgba(12, 14, 23, 0) 0%, #0c0e17 60px);
}
.block-hero-display .block-hero-display__video-container .block-hero-display__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 90%;
  object-position: 90%;
}
@media (min-width: 1880px) {
  .block-hero-display .block-hero-display__video-container .block-hero-display__video {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}
.block-hero-display__content {
  width: 100%;
}
@media (min-width: 64rem) {
  .block-hero-display__content {
    width: 49%;
    padding-top: 3.6875rem;
  }
  .block-hero-display__content:last-child {
    padding-bottom: 0;
  }
}
.block-hero-display__content:last-child {
  padding-bottom: 5rem;
}
.block-hero-display__content .wp-block-heading + p {
  margin-top: 0;
}
.block-hero-display__graphic-container {
  width: 100%;
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 64rem) {
  .block-hero-display__graphic-container {
    display: none;
    width: 49%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.block-hero-display__graphic-container .block-hero-display__graphic {
  width: 100%;
}
@media (min-width: 64rem) {
  .block-hero-display__image-container {
    display: none;
  }
}
.block-hero-display__image-container .hero-hover-tab__image.active {
  visibility: visible;
  opacity: 1;
}
.block-hero-display .wp-block-column {
  position: unset;
}
.block-hero-display__container {
  z-index: 1;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 48rem) {
  .block-hero-display__container {
    flex-grow: unset;
    margin-top: 0;
  }
}
.block-hero-display__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  min-height: 23.4375rem;
  object-fit: cover;
}
.block-hero-display .wp-block-buttons {
  margin-top: clamp(1.5rem, -0.5526315789rem + 4.2763157895vw, 3.9375rem);
}
.block-hero-display .wp-block-buttons .is-style-secondary .wp-block-button__link {
  color: #fff;
}
.block-hero-display .wp-block-buttons .is-style-secondary .wp-block-button__link:hover, .block-hero-display .wp-block-buttons .is-style-secondary .wp-block-button__link:focus {
  color: #0066ba;
}
.block-hero-display .block-hero-display__graphic-container--video {
  position: relative;
}
.block-hero-display .block-hero-display__graphic-container--video .block-hero-display__video {
  display: block;
  width: 100%;
  height: 100%;
}
.block-hero-display .acf-block.block-accordion {
  padding: 0;
}
@media (max-width: 47.98rem) {
  .block-hero-display .acf-block.block-accordion {
    transform: translateX(calc(50vw - 50%));
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}