/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	Global variables
*/
/* Site Max Width. Used in 03-base/_template.scss
   -------------------------------------------------------------------------- */
/* Location of compiled icons in theme.
   Used in project/build/common/sass/04-components/_icons.scss
   -------------------------------------------------------------------------- */
/* Breakpoints
	px is excluded so we can do math on the breakpoints
   -------------------------------------------------------------------------- */
/* Colors
   Suffix color variables with a 3 digit number.  Generally try to progress from
   lightest/dullest to darkest/most vibrant.
   -------------------------------------------------------------------------- */
/* Filter Colors
   -------------------------------------------------------------------------- */
/* Default transition.  Used in transition() mixin.
   ------------------------------------------------------------------------ */
/* Tools
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/**
	General mixins
*/
/* Variable Size
   Function can be used to make any property value variable
   -------------------------------------------------------------------------- */
/* Basic Transition
   -------------------------------------------------------------------------- */
/* Default Unordered List
   This mixin is used in place of defining base ul styles and then having to
   override them everywhere.  Ex: in a menu.
   This should be included when you output an acf wysiwyg field.
   -------------------------------------------------------------------------- */
/* Default Link Style
   This mixin is used in place of defining base a styles and then having to
   override them everywhere. Ex: text links vs buttons.
   This should be included when you output an acf wysiwyg field.
   -------------------------------------------------------------------------- */
/* Default Table
   -------------------------------------------------------------------------- */
/* Default Gradient
   -------------------------------------------------------------------------- */
/* Button Reset
   -------------------------------------------------------------------------- */
/* List Reset
   -------------------------------------------------------------------------- */
/* 100vh Mixin
   -------------------------------------------------------------------------- */
/* Accessibility Mixins to allow or prevent animations and transitions
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
/**
	Typography specific mixins
	These mixins are used in classes in build/common/sass/03-base/_typography.scss.
	They can also be used in a component/layout stylesheet, but that should be avoided.
*/
/* Fonts
   -------------------------------------------------------------------------- */
/* Typography
   -------------------------------------------------------------------------- */
/**
	This file does note generate code.  It is imported by other sass files to include
	variables, mixins, and functions.
	*/
/* Settings
   -------------------------------------------------------------------------- */
/* Tools
   -------------------------------------------------------------------------- */
/**
	Form specific mixins
	A set of default styles that can be applied to Gravity Forms and other forms
*/
.banners {
  --inline-spacing: 10px;
  --max-width: 1920px;
  border-bottom: 1px solid black;
  display: none;
}
@media (min-width: 768px) {
  .banners {
    --inline-spacing: 60px;
  }
}
@media (min-width: 1440px) {
  .banners {
    --inline-spacing: 180px;
  }
}
.banners.is-visible {
  display: block;
}
.banners .splide__arrows {
  inset: calc(50% - var(--splide-arrow-size) / 2) 0 auto 0;
}
.banners .splide__arrow {
  background-color: #1f2221;
  color: white;
}

.banner {
  color: var(--color);
  display: none;
  height: 100%;
  padding-block: 16px;
  padding-inline: var(--inline-spacing);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.banner.is-visible {
  display: block;
}
.banner.is-hidden {
  display: none;
}
.banner__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
  max-width: var(--max-width);
}
.splide .banner__inner {
  height: 100%;
  margin-inline: 70px;
}
.banner__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.banner__close {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border: 0;
  background: none;
  color: currentColor;
  cursor: pointer;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  color: var(--color);
  cursor: pointer;
}
.banner__close:hover, .banner__close:focus-visible {
  opacity: 0.7;
}
.banner__close svg {
  display: block;
  height: 32px;
  width: 32px;
}
.banner--black {
  --color: white;
  --link-color: white;
  background: #1f2221;
}
.banner--white {
  background: white;
}