/* stylelint-disable selector-id-pattern */
/* 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-media-zoom {
  overflow: hidden;
}
.block-media-zoom .wp-block-buttons {
  width: auto !important;
  max-width: none !important;
}

body:not(.wp-admin) .content-wrapper > section.block-media-zoom .wp-block-button + .wp-block-button {
  margin-left: 9px !important;
}
body:not(.wp-admin) .content-wrapper > section.block-media-zoom .wp-block-button + .wp-block-button p {
  margin-bottom: 30px !important;
}
body:not(.wp-admin) .block-media-zoom {
  position: relative;
  padding: 9rem 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: center;
}
body:not(.wp-admin) .block-media-zoom .wp-block-heading {
  color: #fff;
}
.home body:not(.wp-admin) .block-media-zoom {
  padding-bottom: 0;
}
body:not(.wp-admin) .block-media-zoom .wp-block-button {
  display: inline;
}
body:not(.wp-admin) .block-media-zoom .wp-block-button.is-style-secondary .wp-block-button__link {
  color: #fff;
}
body:not(.wp-admin) .block-media-zoom .wp-block-button.is-style-secondary .wp-block-button__link:hover {
  color: #00276b;
}
body:not(.wp-admin) .block-media-zoom .content-wrapper h1.wp-block-heading,
body:not(.wp-admin) .block-media-zoom .content-wrapper p {
  width: auto !important;
  max-width: 706px !important;
}
body:not(.wp-admin) .block-media-zoom .block-media-zoom__image-wrapper {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
body:not(.wp-admin) .block-media-zoom .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  background: var(--gradient-overlay, linear-gradient(180deg, rgba(0, 14, 41, 0.8) 0%, #00205c 100%));
  transition: width 0.5s ease;
}
body:not(.wp-admin) .block-media-zoom .content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  z-index: 99;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body:not(.wp-admin) .block-media-zoom .content-wrapper h1,
body:not(.wp-admin) .block-media-zoom .content-wrapper p {
  color: #fff;
  text-align: center;
}
body:not(.wp-admin) .block-media-zoom figure#mediaZoomTarget img {
  display: block;
  width: calc(100vw - 368px);
  height: auto;
  margin: 0 auto;
  text-align: center;
  transition: width 0.5s ease;
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-transparent + .acf-block.bg-transparent {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-white + .acf-block.bg-white {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-10 + .acf-block.bg-neutral-10 {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-10-pattern + .acf-block.bg-neutral-10-pattern {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-10-pattern-right + .acf-block.bg-neutral-10-pattern-right {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-11 + .acf-block.bg-neutral-11 {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-12 + .acf-block.bg-neutral-12 {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-dark + .acf-block.bg-dark {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-dark-pattern + .acf-block.bg-dark-pattern {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom:not(.block-hero-centered--has-image).bg-dark-has-video + .acf-block.bg-dark-has-video {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-media-zoom__image {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin: clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem) auto 0 auto;
}
@media (min-width: 36rem) {
  body:not(.wp-admin) .block-media-zoom__image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-media-zoom__image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
body:not(.wp-admin) .block-media-zoom .wp-block-image {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin: clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem) auto 0 auto;
}
@media (min-width: 36rem) {
  body:not(.wp-admin) .block-media-zoom .wp-block-image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-media-zoom .wp-block-image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 62rem) {
  body:not(.wp-admin) .block-media-zoom .wp-block-image {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-media-zoom .m_left,
body:not(.wp-admin) .block-media-zoom .m_right,
body:not(.wp-admin) .block-media-zoom .m_bottom {
    display: none !important;
  }
}
@media (max-width: 61.98rem) {
  body:not(.wp-admin) .block-media-zoom {
    bottom: -4px;
  }
  body:not(.wp-admin) .block-media-zoom .m_top {
    position: absolute;
    top: 0;
    z-index: 99999;
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
  }
  body:not(.wp-admin) .block-media-zoom .m_left {
    position: absolute;
    left: 0;
    z-index: 99;
    display: block;
    width: 350px;
    height: 100%;
    background: #fff;
  }
  body:not(.wp-admin) .block-media-zoom .m_right {
    position: absolute;
    right: 0;
    z-index: 99999;
    display: block;
    width: 350px;
    height: 100%;
    background: #fff;
  }
  body:not(.wp-admin) .block-media-zoom .m_bottom {
    position: absolute;
    bottom: 0;
    z-index: 99999;
    display: block;
    width: 100%;
    background: #fff;
  }
  body:not(.wp-admin) .block-media-zoom .block-media-zoom__image-wrapper {
    width: auto;
    height: 0;
    margin: 0 auto 55px;
    padding-top: 150.447761194%;
    overflow: hidden;
  }
  body:not(.wp-admin) .block-media-zoom .block-media-zoom__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    bottom: auto;
    right: 0;
    right: auto;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    object-fit: cover;
  }
  body:not(.wp-admin) .block-media-zoom .content-wrapper {
    top: 50%;
    left: 0;
    right: 0;
    max-width: 74%;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: none;
    -webkit-transform: translate(-50%, -50%);
    transform: none;
    transform: translate(0%, -50%);
  }
  body:not(.wp-admin) .block-media-zoom .content-wrapper .wp-block-button {
    display: inline-block;
    margin-bottom: 0;
  }
  body:not(.wp-admin) .block-media-zoom .content-wrapper h1.wp-block-heading,
body:not(.wp-admin) .block-media-zoom .content-wrapper p {
    width: auto !important;
    max-width: none !important;
  }
  body:not(.wp-admin) .block-media-zoom .wp-block-buttons {
    flex-direction: column;
  }
  body:not(.wp-admin) .block-media-zoom .wp-block-buttons .wp-block-button + .wp-block-button {
    margin-left: 0 !important;
  }
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: clamp(8rem, 5.1428571429rem + 5.9523809524vw, 10.5rem) 0 clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
  text-align: center;
  overflow: hidden;
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom figure#mediaZoomTarget img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  transition: width 0.5s ease;
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-transparent + .acf-block.bg-transparent {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-white + .acf-block.bg-white {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-10 + .acf-block.bg-neutral-10 {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-10-pattern + .acf-block.bg-neutral-10-pattern {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-10-pattern-right + .acf-block.bg-neutral-10-pattern-right {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-11 + .acf-block.bg-neutral-11 {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-neutral-12 + .acf-block.bg-neutral-12 {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-dark + .acf-block.bg-dark {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-dark-pattern + .acf-block.bg-dark-pattern {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom:not(.block-hero-centered--has-image).bg-dark-has-video + .acf-block.bg-dark-has-video {
  margin-top: clamp(-7.5rem, 5.3571428571rem + -14.2857142857vw, -1.5rem);
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom__image {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin: clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem) auto 0 auto;
}
@media (min-width: 36rem) {
  body:not(.wp-admin) .block-hero-centered.block-media-zoom__image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-hero-centered.block-media-zoom__image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
body:not(.wp-admin) .block-hero-centered.block-media-zoom .wp-block-image {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin: clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem) auto 0 auto;
}
@media (min-width: 36rem) {
  body:not(.wp-admin) .block-hero-centered.block-media-zoom .wp-block-image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  body:not(.wp-admin) .block-hero-centered.block-media-zoom .wp-block-image {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 62rem) {
  body:not(.wp-admin) .block-hero-centered.block-media-zoom .wp-block-image {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}