@charset "UTF-8";
/*

// z_style.scss is compiles all the files into one place

// Note the order of these are important, 'cuz cascade

// */
/**
  * Mixins
  *  
  * @description
  * Mixins ordered alphabetically within sections:
  * - Layout/Grid
  * - Type
  * - Spacing
  * - Additional 
  */
/**
  * grid-child()
  *  
  * @description
  * Mixin to allow nested elements to inherit aspects of their parent's grid
  * while modifying others. This is typically used to reduce the number of
  * columns to a subset of the parent's grid.
  *  
  * @param   $flavor, optional specify 'grid' or 'flex',
  *          defaults to 'grid'
  * @param   $col-start, optional specify the parent col to start element on,
  *          defaults to auto
  * @param   $cols, optional number of columns to span and contain,
  *          defaults to auto
  * @param   $row-start, optional specify the parent row to start element on,
  *          defaults to auto
  * @param   $rows, optional number of rows to span and contain,
  *          defaults to auto
  * @param   $gutter-h, optional spacing value for gutters between rows,
  *          defaults to value set in the $layout-grid configuration
  * @param   $gutter-v, optional spacing value for gutters between columns,
  *          defaults to value set in the $layout-grid configuration
  *
  * @return  CSS rules to configure a grid template
  */
/**
  * grid-parent()
  *  
  * @description
  * Mixin to apply a grid system specified in the configuration 
  *  
  * @param   $config, optional layout configuration map,
  *          defaults to &layout-grid
  *
  * @return  CSS rules to configure a grid template
  */
/**
  * respond-to()
  *  
  * @description
  * Mixin for managing responsive styles using breakpoints set in a map 
  *
  * @see     sass-guidelin.es/#breakpoint-manager
  *  
  * @param   $breakpoint, string key for the desired breakpoint
  * @param   $breakpoints, optional map to select the breakpoints from,
  *          defaults to $breakpoints
  *
  * @return  A min-width media query for the specified breakpoint
  */
/**
  * typestyle()
  *  
  * @description
  * Mixin for applying typestyles from a map to text, 
  * requires sass-plumber to set on baseline
  *
  * @see     smashingmagazine.com/2015/06/responsive-typography-with-sass-maps
  *  
  * @param   $ts-map, the typestyle map of values to use
  * @param   $breakpoints, optional map of breakpoints for responsive styles,
  *          defaults to the $breakpoints map
  *
  * @return  CSS rules for a type-style specification
  */
/**
  * inline()
  *  
  * @description
  * The quick brown fox jumps over the lazy dog 
  *
  * @see  quickbrown.fox
  *  
  * @param   The quick brown fox jumps over the lazy dog
  * @param   The quick brown fox jumps over the lazy dog
  *
  * @return  The quick brown fox jumps over the lazy dog
  */
/**
  * inset()
  *  
  * @description
  * The quick brown fox jumps over the lazy dog 
  *
  * @see  quickbrown.fox
  *  
  * @param   The quick brown fox jumps over the lazy dog
  * @param   The quick brown fox jumps over the lazy dog
  *
  * @return  The quick brown fox jumps over the lazy dog
  */
/**
  * stack()
  *  
  * @description
  * The quick brown fox jumps over the lazy dog 
  *
  * @see  quickbrown.fox
  *  
  * @param   The quick brown fox jumps over the lazy dog
  * @param   The quick brown fox jumps over the lazy dog
  *
  * @return  The quick brown fox jumps over the lazy dog
  */
/**
  * theme()
  *  
  * @description
  * Mixin for switching between sets of CSS code, intended for colors. It's 
  * kind of unneccessary, but makes it clear that a theme's being called
  *  
  * @param   $theme, as a string that corresponds with a theme name in the
  *          config file
  *
  * @return  specified theme's CSS rules
  */
/**
  * aspect-ratio()
  *  
  * @description
  * Mixin for scaling objects while maintaining an aspect ratio, like 16:9 
  * It's applied to a framing object with a div as it's immediate child
  * The content to scale is placed within the child div
  *
  * @see     css-tricks.com/snippets/sass/maintain-aspect-ratio-mixin
  *  
  * @param   $width, as a unitless number
  * @param   $height, as a unitless number
  *
  * @return  CSS rules for and element that maintains its aspect ratio
  */
/**
  * center()
  *  
  * @description
  * Mixin for centering elements vertically, horizontally, or both
  *
  * @see     css-tricks.com/snippets/sass/centering-mixin
  *  
  * @param   $horizontal, optional boolean,
  *          defaults to true
  * @param   $vertical, optional boolean,
  *          defaults to true
  *
  * @return  CSS rules to center an element
  */
/**
  * underline()
  *  
  * @description
  * Mixin to create styled underlines that don't overlap descending letters 
  *
  * @see     backwards-engineered from smashingmagazine.com's CSS
  *  
  * @param   $stroke-weight, optional string with a weight value, 
  *          defaults to '1px'
  * @param   $stroke-offset, optional offset below it's typical position,
  *          defaults to '.025em'
  * @param   $stroke-color, optional hex color of underline,
  *          defaults to #000
  * @param   $bg-color, optional color of page background,
  *          defaults to #fff
  *
  * @return  CSS rules to produce styled underlines
  */
/**
  * Functions
  *  
  * @description
  * Functions ordered alphabetically within sections:
  * - Color/Styles
  * - Additional 
  */
/**
  * alpha()
  *  
  * @description
  * Provides an alpha value from a map
  *
  * @see     based on similar concept for colors: https://goo.gl/Yhq7kz
  *  
  * @param   $alpha, string map key of desired alpha value
  * @param   $alphas, optional map of alpha values, 
  *          defaults to $alphas
  *
  * @return  float alpha value
  */
/**
  * color()
  *  
  * @description
  * Provides a hex color value from a map
  *
  * @see     https://goo.gl/Yhq7kz
  *  
  * @param   $color, string map key of desired color
  * @param   $variant, optional variant of the selected color,
  *          defaults to 'base'
  * @param   $colors, optional map of color values
  *          defaults to $colors 
  *
  * @return  hex color value
  */
/**
  * border()
  *  
  * @description
  * Provides values for border shorthand property from a map
  *  
  * @param   $border, string map key of desired color
  * @param   $variant, optional variant of the selected color,
  *          defaults to 'base'
  * @param   $colors, optional map of color values
  *          defaults to $colors 
  *
  * @return  hex color value
  */
/**
  * gradient()
  *  
  * @description
  * Provides a gradient specification from a map
  *
  * @see     based on similar concept for colors: https://goo.gl/Yhq7kz
  *
  * @param   $gradient, string map key of desired gradient value
  * @param   $gradients, optional map of gradient values, 
  *          defaults to $gradients
  *
  * @return  gradient specification
  */
/**
  * bl()
  *  
  * @description
  * Convenience function for calculating fraction/multiples of the project's 
  * baseline, set as $baseline-height 
  *  
  * @param   $count, optional number of baselines to calculate
  *          defaults to 1
  * @param   $baseline-height, baseline height set in REMs, provided unitless
  *          defaults to the $baseline-height var
  *
  * @return  Calculated height in REMs
  */
/**
  * ms()
  *  
  * @description
  * Convenience function for calculating values according to a modular scale 
  *
  * @see     https://alistapart.com/article/more-meaningful-typography
  *          https://www.modularscale.com/
  *  
  * @param   $level, optional level within the scale to return a value from,
  *          defaults to 0
  * @param   $ms-ratio, optional ratio to scale values by,
  *          defaults to 1.5
  *
  * @return  Calculated value from modular scale in REMs
  */
/**
  * Typestyle Configuration
  *
  * @description
  * Type styles configuration to be used with the typestyle() mixin. 
  *
  * The configuration requires 3 steps:
  * - Set the base variables
  *   The base font-size should remain 100%, the baseline height is set in
  *   rems, but no unit should be provided
  *  
  * - Define the fonts
  *   Each font definition requires the stack, and a ratio measurement to
  *   align the font on the baseline. Common ratios are available here:
  *   jamonserrano.github.io/plumber-sass/baselines
  *   A tool for measuring ratios not provided in the list is available here:
  *   jamonserrano.github.io/plumber-sass/measure
  *    
  * - Specify typestyles
  *   Each type style is defined in a map with keys for each of the
  *   breakpoints. The value for each key is a list that provides the 
  *   font-style, font-variant, font-weight, font-size, line-height, 
  *   font-family, letter-spacing, and word-spacing. The font-size, 
  *   letter-spacing, and word-spacing are set in rems. The line-height is
  *   set as the number of baselines required. No units are provided in the
  * 
  * For more detailed documentation see the code guidelines  
  */
/**
  * $proxima-nova
  *
  * @description
  * Proxima Nova loaded via typekit
  *
  */
/**
  * $mono
  *
  * @description
  * Relying on system fonts
  *
  */
/**
  * $sans-xl-semi
  *
  * @description
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 60px / 64px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-l-semi
  *
  * @description
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 36px / 36px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-m-semi
  *
  * @description
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 24px / 28px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-s-semi
  *
  * @description
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 19px / 24px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-xs-semi
  *
  * @description
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 15px / 18px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-xs-bold
  *
  * @description
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 15px / 18px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-xs-caps-semi
  *
  * @description
  * This style is used for all caps, but capitalization is not set here
  * calcs assuming 1rem = 16px 
  * and baseline = 4px 
  * null   : 12px / 18px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-xs-caps-bold
  *
  * @description
  * calcs assuming 1rem = 16px 
  * This style is used for all caps, but capitalization is not set here
  * and baseline = 4px 
  * null   : 12px / 18px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
/**
  * $sans-xs-caps-bold
  *
  * @description
  * calcs assuming 1rem = 16px 
  * This style is used for all caps, but capitalization is not set here
  * and baseline = 4px 
  * null   : 12px / 18px
  * s      : XXpx / XXpx 
  * m      : XXpx / XXpx
  * l      : XXpx / XXpx
  * 
  */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?8uqlzs");
  src: url("../fonts/icomoon.eot?8uqlzs#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?8uqlzs") format("truetype"), url("../fonts/icomoon.woff?8uqlzs") format("woff"), url("../fonts/icomoon.svg?8uqlzs#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"],
.icon-font,
.feed .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-news-archive .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-media-hits-archive .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-press-kit .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-posts .feed__block-link.external-link .feed__item-meta p:after,
.view-training-assets .feed__block-link.external-link .feed__item-meta p:after,
.view-projects .feed__block-link.external-link .feed__item-meta p:after,
.view-events .feed__block-link.external-link .feed__item-meta p:after,
.view-facility-updates .feed__block-link.external-link .feed__item-meta p:after,
.view-publications .feed__block-link.external-link .feed__item-meta p:after,
.view-acquia-search .feed__block-link.external-link .feed__item-meta p:after,
.view-taxonomy-term .feed__block-link.external-link .feed__item-meta p:after,
.view-display-id-covid_19 .feed__block-link.external-link .feed__item-meta p:after,
.view-display-id-aurora_development .feed__block-link.external-link .feed__item-meta p:after,
.view-display-id-gpu_development .feed__block-link.external-link .feed__item-meta p:after,
.view-related-content .attachment .field--name-field-list-more-link a:before,
.paragraph--type--content-list .external-link .tiles__feed-meta:after,
.paragraph--type--content-list-view .external-link .tiles__feed-meta:after,
.paragraph--type--content-list-manual .external-link .tiles__feed-meta:after,
.paragraph--type--download-list .external-link .tiles__feed-meta:after,
.paragraph--type--content-list .field--name-field-list-more-link a:before,
.paragraph--type--content-list-view .field--name-field-list-more-link a:before,
.paragraph--type--content-list-manual .field--name-field-list-more-link a:before,
.paragraph--type--download-list .field--name-field-list-more-link a:before,
.tiles__banner--narrow .tiles__block-link.external-link .tiles__meta .field--name-field-list-eyebrow:after,
.paragraph--type--content-teaser-banner .tiles__block-link.external-link .tiles__meta .field--name-field-list-eyebrow:after,
.paragraph--type--vertical-banner .tiles__block-link.external-link .tiles__meta .field--name-field-list-eyebrow:after,
.tiles .tiles__block-link.external-link .tiles__meta p:after,
.tiles .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.field--name-field-top-content .tiles__block-link.external-link .tiles__meta p:after,
.field--name-field-top-content .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.view-guides .view-content .tiles__block-link.external-link .tiles__meta p:after,
.view-guides .view-content .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.field--name-field-content-paragraphs .tiles__block-link.external-link .tiles__meta p:after,
.field--name-field-content-paragraphs .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.status-lg .status-lg__more:before,
.ultimenu__flyout .ultimenusub a.external-link:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-data:before {
  content: "";
}

.icon-learning:before {
  content: "";
}

.icon-simulation:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow:before {
  content: "";
}

.icon-search1:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-flickr2:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

/**
  * Layout Configuration
  *
  * @description
  * Grid, breakpoint, and layout configuration to be used with the 
  * grid-parent(), grid-child(), respond-to(), and layout-regions() mixins. 
  *
  * The configuration requires 3 steps:
  * - Define the grid system's parameters
  *   The basic configuration of the grid is done through the $layout-grid map.
  *   Additional maps can be added for multiple configurations. 'gutter-v' is
  *   set as a number of baselines, no unit value is required.
  *  
  * - Specify breakpoints
  *   All breakpoints need to be included in the $breakpoints map. It should be
  *   indexed with tshirt sizes for the primary steps, and px values for 
  *   one-off breakpoints.
  *    
  * - Establish layout regions
  *   Regions are defined as classnames, and asigned a label using the 
  *   grid-area property. Regions are collected into layouts using the 
  *   grid-template-areas property within teh layout-regions() mixin. 
  * 
  * For more detailed documentation see the code guidelines  
  */
/**
  * $layout-grid
  *
  * @description
  * The default map for defining the grid system.
  *
  */
/**
  * $breakpoints
  *
  * @description
  * Map for all the project's breakpoints 
  *
  * (Initial values are placeholder from Bootstrap)
  */
/**
  * Color Configuration
  *
  * @description
  * Configuration of colors and additional styles for use with the color(),
  * gradient(), and alpha() functions. 
  *
  * The color map is the only requirement, the other maps are available as
  * necessary. 
  *
  * The color maps use the name of the color as a key and a map of its 
  * variants as the value. Different schemes may be used to name the variants,
  * such as 'background' or 'highlight'.
  * 
  * Gradient maps are indexed by the name of the gradient, the gradient's 
  * definition is provided as a map including the gradient's angle, it's 
  * flavor ('linear' or 'radial') and stops. 
  *
  * Alpha maps are indexed by a series of 'X's to represent the level of 
  * opacity, the values are a unitless number between 0 (transparent) and 
  * 1 (opaque)
  *
  * For more detailed documentation see the code guidelines  
  */
/**
  * $colors
  *
  * @description
  * The default map of the color() function
  * 'base' is the default variant of the color() function
  *
  */
/**
  * $borders
  *
  * @description
  * The default map of the border() function
  * map items follow the order of the css border shorthand property
  *
  */
/**
	* Spacing Configuration
	*
  * @description
  * Spacing values configuration to be used with the inset(), inline(), and 
  * stack() mixins. 
  *
  * Space values are defined in maps indexed with tshirt size labels. The
  * values are specified as the number of the baselines required. 
  * $spacing is the default map used for the spacing mixins, but more maps may 
  * be created as needed.
  * 
  * For more detailed documentation see the code guidelines  
  */
/**
  * $spacing
  *
  * @description
  * The default map used by the spacing mixins
  *
	* calcs assuming 1 baseline = 4px
	* xs : 8px
	* s  : 16px
	* m  : 40px
	* l  : 60px
	* xl : 112px
  * 
  */
/*
 * Fix
 * Version 0.1.1
 * https://github.com/jaydenseric/Fix
*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: 1;
  font-family: sans-serif;
}

iframe {
  border: 0;
}

main {
  display: block;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  display: block;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

h1,
h2,
h3,
.field--name-field-table-heading,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
}

blockquote {
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

sup {
  position: relative;
  top: -0.5em;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

strong {
  font-weight: bold;
}

figure {
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
  overflow: visible;
}

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
  * Typography Boilerplate
  *  
  * @description
  * Boilerplate rules to set the default typographic rules to overidden 
  * as needed, include styles and notes for future additions 
  */
/**
  * Sitewide
  *  
  * @description
  * A grab-bag of features that aren't all supported widely
  *
  * Rendering of fonts for legibility, this enables the use of special kerning
  * and optional ligature information that may be contained in the font file
  * for certain fonts. Potentially a big hit to performance, and worth
  * rethinking if the site is pokey.
  *
  * Hanging punctuation allows for punctuation to sit outside the text box
  *	
	* font-feature-settings and font-variants activate opentype features as
  * available, features specified: kerning, old-style numbers, proportional
  * numbers, diagonal fractions, common ligatures
  *
	* font-kerning makes sure the browser doesn't ignore the font's kerning info
	*
	* @see goo.gl/kfm4Ur
	* @see jonathan-harrell.com/better-typography-font-variants
	* @see css-tricks.com/almanac/properties/h/hanging-punctuation
  */
body {
  text-rendering: optimizeLegibility;
  hanging-punctuation: first last;
  font-feature-settings: "kern", "liga";
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

/**
  * Paragraphs
  *  
  * @description
  * Allows hyphens and sets the max-width of the paragraph in characters 
	*
	* @see css-tricks.com/almanac/properties/h/hyphenate
	* @see justmarkup.com/log/2015/07/dealing-with-long-words-in-css
  */
p {
  max-width: 80ch;
}

li {
  max-width: 78ch;
}

/**
  * More Tools to look into
  *  
  * bigfoot js for footnotes:        https://github.com/lemonmade/bigfoot
  * typeset for typographic details: https://github.com/davidmerfield/typeset
  * Utility for OpenType features:   http://utility-opentype.kennethormandy.com
  */
/**
  * Base Styles
  *  
  * @description
  * site-wide styles unique to this project, 
  * only file where element selectors should be used
  */
body {
  font-size: 100%;
}

.dialog-off-canvas-main-canvas {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  padding: 0 !important;
}
@media screen and (min-width: 768px) {
  .dialog-off-canvas-main-canvas {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .dialog-off-canvas-main-canvas {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .dialog-off-canvas-main-canvas {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.grid, .views-exposed-form .form--inline, .section-3 .block, .section-2 .block {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  position: relative;
}

.screenreader-only {
  position: absolute;
  left: -10000px;
}

.layout-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
}

h1 {
  font-size: 2.25rem;
  line-height: 2.25rem;
  margin-top: 0.25rem;
  padding-top: 0.17525rem;
  padding-bottom: 0.07475rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-top: 0.5rem;
    padding-top: 0.20875rem;
    padding-bottom: 0.04125rem;
    margin-bottom: -0.75rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-top: 0.5rem;
    padding-top: 0.20875rem;
    padding-bottom: 0.04125rem;
    margin-bottom: -0.75rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

h2 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

h3, .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  h3, .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  h3, .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  h3, .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

h4 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

h5 {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  h5 {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

[class$=meta] {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  [class$=meta] {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  [class$=meta] {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  [class$=meta] {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

[class$=meta] span {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  [class$=meta] span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  [class$=meta] span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  [class$=meta] span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

.section__title {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}

.section__title h2 {
  margin-right: 2rem;
}

strong,
.field__label {
  font-weight: 800;
}

.caption, .field--name-field-media-caption p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #6e6e78;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .caption, .field--name-field-media-caption p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .caption, .field--name-field-media-caption p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .caption, .field--name-field-media-caption p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.field--name-body p,
.field--name-field-running-text p,
.field--name-field-update p,
.field--name-field-bio p,
.field--name-field-agenda p,
.field--name-more-information p,
.field--name-field-tile-text p,
.field--name-field-brief-description p {
  margin-bottom: 1rem;
  font-weight: 400;
}
.field--name-body h1,
.field--name-field-running-text h1,
.field--name-field-update h1,
.field--name-field-bio h1,
.field--name-field-agenda h1,
.field--name-more-information h1,
.field--name-field-tile-text h1,
.field--name-field-brief-description h1 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-bottom: 0.25rem !important;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .field--name-body h1,
.field--name-field-running-text h1,
.field--name-field-update h1,
.field--name-field-bio h1,
.field--name-field-agenda h1,
.field--name-more-information h1,
.field--name-field-tile-text h1,
.field--name-field-brief-description h1 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-body h1,
.field--name-field-running-text h1,
.field--name-field-update h1,
.field--name-field-bio h1,
.field--name-field-agenda h1,
.field--name-more-information h1,
.field--name-field-tile-text h1,
.field--name-field-brief-description h1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-body h1,
.field--name-field-running-text h1,
.field--name-field-update h1,
.field--name-field-bio h1,
.field--name-field-agenda h1,
.field--name-more-information h1,
.field--name-field-tile-text h1,
.field--name-field-brief-description h1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-body h1 strong,
.field--name-field-running-text h1 strong,
.field--name-field-update h1 strong,
.field--name-field-bio h1 strong,
.field--name-field-agenda h1 strong,
.field--name-more-information h1 strong,
.field--name-field-tile-text h1 strong,
.field--name-field-brief-description h1 strong {
  font-weight: 700;
}
.field--name-body h2,
.field--name-field-running-text h2,
.field--name-field-update h2,
.field--name-field-bio h2,
.field--name-field-agenda h2,
.field--name-more-information h2,
.field--name-field-tile-text h2,
.field--name-field-brief-description h2 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-bottom: 0.25rem !important;
}
@media screen and (min-width: 768px) {
  .field--name-body h2,
.field--name-field-running-text h2,
.field--name-field-update h2,
.field--name-field-bio h2,
.field--name-field-agenda h2,
.field--name-more-information h2,
.field--name-field-tile-text h2,
.field--name-field-brief-description h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-body h2,
.field--name-field-running-text h2,
.field--name-field-update h2,
.field--name-field-bio h2,
.field--name-field-agenda h2,
.field--name-more-information h2,
.field--name-field-tile-text h2,
.field--name-field-brief-description h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-body h2,
.field--name-field-running-text h2,
.field--name-field-update h2,
.field--name-field-bio h2,
.field--name-field-agenda h2,
.field--name-more-information h2,
.field--name-field-tile-text h2,
.field--name-field-brief-description h2 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-body h2 strong,
.field--name-field-running-text h2 strong,
.field--name-field-update h2 strong,
.field--name-field-bio h2 strong,
.field--name-field-agenda h2 strong,
.field--name-more-information h2 strong,
.field--name-field-tile-text h2 strong,
.field--name-field-brief-description h2 strong {
  font-weight: 600;
}
.field--name-body h3, .field--name-body .field--name-field-table-heading,
.field--name-field-running-text h3,
.field--name-field-running-text .field--name-field-table-heading,
.field--name-field-update h3,
.field--name-field-update .field--name-field-table-heading,
.field--name-field-bio h3,
.field--name-field-bio .field--name-field-table-heading,
.field--name-field-agenda h3,
.field--name-field-agenda .field--name-field-table-heading,
.field--name-more-information h3,
.field--name-more-information .field--name-field-table-heading,
.field--name-field-tile-text h3,
.field--name-field-tile-text .field--name-field-table-heading,
.field--name-field-brief-description h3,
.field--name-field-brief-description .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-bottom: 0.25rem !important;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .field--name-body h3, .field--name-body .field--name-field-table-heading,
.field--name-field-running-text h3,
.field--name-field-running-text .field--name-field-table-heading,
.field--name-field-update h3,
.field--name-field-update .field--name-field-table-heading,
.field--name-field-bio h3,
.field--name-field-bio .field--name-field-table-heading,
.field--name-field-agenda h3,
.field--name-field-agenda .field--name-field-table-heading,
.field--name-more-information h3,
.field--name-more-information .field--name-field-table-heading,
.field--name-field-tile-text h3,
.field--name-field-tile-text .field--name-field-table-heading,
.field--name-field-brief-description h3,
.field--name-field-brief-description .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-body h3, .field--name-body .field--name-field-table-heading,
.field--name-field-running-text h3,
.field--name-field-running-text .field--name-field-table-heading,
.field--name-field-update h3,
.field--name-field-update .field--name-field-table-heading,
.field--name-field-bio h3,
.field--name-field-bio .field--name-field-table-heading,
.field--name-field-agenda h3,
.field--name-field-agenda .field--name-field-table-heading,
.field--name-more-information h3,
.field--name-more-information .field--name-field-table-heading,
.field--name-field-tile-text h3,
.field--name-field-tile-text .field--name-field-table-heading,
.field--name-field-brief-description h3,
.field--name-field-brief-description .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-body h3, .field--name-body .field--name-field-table-heading,
.field--name-field-running-text h3,
.field--name-field-running-text .field--name-field-table-heading,
.field--name-field-update h3,
.field--name-field-update .field--name-field-table-heading,
.field--name-field-bio h3,
.field--name-field-bio .field--name-field-table-heading,
.field--name-field-agenda h3,
.field--name-field-agenda .field--name-field-table-heading,
.field--name-more-information h3,
.field--name-more-information .field--name-field-table-heading,
.field--name-field-tile-text h3,
.field--name-field-tile-text .field--name-field-table-heading,
.field--name-field-brief-description h3,
.field--name-field-brief-description .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-body h3 strong, .field--name-body .field--name-field-table-heading strong,
.field--name-field-running-text h3 strong,
.field--name-field-running-text .field--name-field-table-heading strong,
.field--name-field-update h3 strong,
.field--name-field-update .field--name-field-table-heading strong,
.field--name-field-bio h3 strong,
.field--name-field-bio .field--name-field-table-heading strong,
.field--name-field-agenda h3 strong,
.field--name-field-agenda .field--name-field-table-heading strong,
.field--name-more-information h3 strong,
.field--name-more-information .field--name-field-table-heading strong,
.field--name-field-tile-text h3 strong,
.field--name-field-tile-text .field--name-field-table-heading strong,
.field--name-field-brief-description h3 strong,
.field--name-field-brief-description .field--name-field-table-heading strong {
  font-weight: 700;
}
.field--name-body h4,
.field--name-field-running-text h4,
.field--name-field-update h4,
.field--name-field-bio h4,
.field--name-field-agenda h4,
.field--name-more-information h4,
.field--name-field-tile-text h4,
.field--name-field-brief-description h4 {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-bottom: 0.25rem !important;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .field--name-body h4,
.field--name-field-running-text h4,
.field--name-field-update h4,
.field--name-field-bio h4,
.field--name-field-agenda h4,
.field--name-more-information h4,
.field--name-field-tile-text h4,
.field--name-field-brief-description h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-body h4,
.field--name-field-running-text h4,
.field--name-field-update h4,
.field--name-field-bio h4,
.field--name-field-agenda h4,
.field--name-more-information h4,
.field--name-field-tile-text h4,
.field--name-field-brief-description h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-body h4,
.field--name-field-running-text h4,
.field--name-field-update h4,
.field--name-field-bio h4,
.field--name-field-agenda h4,
.field--name-more-information h4,
.field--name-field-tile-text h4,
.field--name-field-brief-description h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-body h4 strong,
.field--name-field-running-text h4 strong,
.field--name-field-update h4 strong,
.field--name-field-bio h4 strong,
.field--name-field-agenda h4 strong,
.field--name-more-information h4 strong,
.field--name-field-tile-text h4 strong,
.field--name-field-brief-description h4 strong {
  font-weight: 700;
}
.field--name-body h5,
.field--name-field-running-text h5,
.field--name-field-update h5,
.field--name-field-bio h5,
.field--name-field-agenda h5,
.field--name-more-information h5,
.field--name-field-tile-text h5,
.field--name-field-brief-description h5 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-bottom: 0.25rem !important;
}
@media screen and (min-width: 768px) {
  .field--name-body h5,
.field--name-field-running-text h5,
.field--name-field-update h5,
.field--name-field-bio h5,
.field--name-field-agenda h5,
.field--name-more-information h5,
.field--name-field-tile-text h5,
.field--name-field-brief-description h5 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-body h5,
.field--name-field-running-text h5,
.field--name-field-update h5,
.field--name-field-bio h5,
.field--name-field-agenda h5,
.field--name-more-information h5,
.field--name-field-tile-text h5,
.field--name-field-brief-description h5 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-body h5,
.field--name-field-running-text h5,
.field--name-field-update h5,
.field--name-field-bio h5,
.field--name-field-agenda h5,
.field--name-more-information h5,
.field--name-field-tile-text h5,
.field--name-field-brief-description h5 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-body h5 strong,
.field--name-field-running-text h5 strong,
.field--name-field-update h5 strong,
.field--name-field-bio h5 strong,
.field--name-field-agenda h5 strong,
.field--name-more-information h5 strong,
.field--name-field-tile-text h5 strong,
.field--name-field-brief-description h5 strong {
  font-weight: 800;
}
.field--name-body h6,
.field--name-field-running-text h6,
.field--name-field-update h6,
.field--name-field-bio h6,
.field--name-field-agenda h6,
.field--name-more-information h6,
.field--name-field-tile-text h6,
.field--name-field-brief-description h6 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #6e6e78;
  margin-bottom: 0.25rem !important;
}
@media screen and (min-width: 768px) {
  .field--name-body h6,
.field--name-field-running-text h6,
.field--name-field-update h6,
.field--name-field-bio h6,
.field--name-field-agenda h6,
.field--name-more-information h6,
.field--name-field-tile-text h6,
.field--name-field-brief-description h6 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-body h6,
.field--name-field-running-text h6,
.field--name-field-update h6,
.field--name-field-bio h6,
.field--name-field-agenda h6,
.field--name-more-information h6,
.field--name-field-tile-text h6,
.field--name-field-brief-description h6 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-body h6,
.field--name-field-running-text h6,
.field--name-field-update h6,
.field--name-field-bio h6,
.field--name-field-agenda h6,
.field--name-more-information h6,
.field--name-field-tile-text h6,
.field--name-field-brief-description h6 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-body h6 strong,
.field--name-field-running-text h6 strong,
.field--name-field-update h6 strong,
.field--name-field-bio h6 strong,
.field--name-field-agenda h6 strong,
.field--name-more-information h6 strong,
.field--name-field-tile-text h6 strong,
.field--name-field-brief-description h6 strong {
  font-weight: 800;
}
.field--name-body ul,
.field--name-field-running-text ul,
.field--name-field-update ul,
.field--name-field-bio ul,
.field--name-field-agenda ul,
.field--name-more-information ul,
.field--name-field-tile-text ul,
.field--name-field-brief-description ul {
  margin-left: 25px;
  margin-bottom: 1rem;
  font-weight: 400;
}
.field--name-body ul li,
.field--name-field-running-text ul li,
.field--name-field-update ul li,
.field--name-field-bio ul li,
.field--name-field-agenda ul li,
.field--name-more-information ul li,
.field--name-field-tile-text ul li,
.field--name-field-brief-description ul li {
  margin-bottom: 1rem;
  display: list-item;
  list-style: none;
  padding-left: 10px;
}
.field--name-body ul li:before,
.field--name-field-running-text ul li:before,
.field--name-field-update ul li:before,
.field--name-field-bio ul li:before,
.field--name-field-agenda ul li:before,
.field--name-more-information ul li:before,
.field--name-field-tile-text ul li:before,
.field--name-field-brief-description ul li:before {
  content: "-";
  text-indent: -35px;
  display: inline-block;
}
.field--name-body ul li ul, .field--name-body ul li ol,
.field--name-field-running-text ul li ul,
.field--name-field-running-text ul li ol,
.field--name-field-update ul li ul,
.field--name-field-update ul li ol,
.field--name-field-bio ul li ul,
.field--name-field-bio ul li ol,
.field--name-field-agenda ul li ul,
.field--name-field-agenda ul li ol,
.field--name-more-information ul li ul,
.field--name-more-information ul li ol,
.field--name-field-tile-text ul li ul,
.field--name-field-tile-text ul li ol,
.field--name-field-brief-description ul li ul,
.field--name-field-brief-description ul li ol {
  margin-top: 1rem;
}
.field--name-body ol,
.field--name-field-running-text ol,
.field--name-field-update ol,
.field--name-field-bio ol,
.field--name-field-agenda ol,
.field--name-more-information ol,
.field--name-field-tile-text ol,
.field--name-field-brief-description ol {
  margin-left: 25px;
  margin-bottom: 1rem;
  font-weight: 400;
}
.field--name-body ol li,
.field--name-field-running-text ol li,
.field--name-field-update ol li,
.field--name-field-bio ol li,
.field--name-field-agenda ol li,
.field--name-more-information ol li,
.field--name-field-tile-text ol li,
.field--name-field-brief-description ol li {
  margin-bottom: 1rem;
  padding-left: 10px;
  display: list-item;
}
.field--name-body ol li ul, .field--name-body ol li ol,
.field--name-field-running-text ol li ul,
.field--name-field-running-text ol li ol,
.field--name-field-update ol li ul,
.field--name-field-update ol li ol,
.field--name-field-bio ol li ul,
.field--name-field-bio ol li ol,
.field--name-field-agenda ol li ul,
.field--name-field-agenda ol li ol,
.field--name-more-information ol li ul,
.field--name-more-information ol li ol,
.field--name-field-tile-text ol li ul,
.field--name-field-tile-text ol li ol,
.field--name-field-brief-description ol li ul,
.field--name-field-brief-description ol li ol {
  margin-top: 1rem;
}
.field--name-body p + h1,
.field--name-body p + h2,
.field--name-body p + h3,
.field--name-body p + .field--name-field-table-heading,
.field--name-body p + h4,
.field--name-body p + h5,
.field--name-field-running-text p + h1,
.field--name-field-running-text p + h2,
.field--name-field-running-text p + h3,
.field--name-field-running-text p + .field--name-field-table-heading,
.field--name-field-running-text p + h4,
.field--name-field-running-text p + h5,
.field--name-field-update p + h1,
.field--name-field-update p + h2,
.field--name-field-update p + h3,
.field--name-field-update p + .field--name-field-table-heading,
.field--name-field-update p + h4,
.field--name-field-update p + h5,
.field--name-field-bio p + h1,
.field--name-field-bio p + h2,
.field--name-field-bio p + h3,
.field--name-field-bio p + .field--name-field-table-heading,
.field--name-field-bio p + h4,
.field--name-field-bio p + h5,
.field--name-field-agenda p + h1,
.field--name-field-agenda p + h2,
.field--name-field-agenda p + h3,
.field--name-field-agenda p + .field--name-field-table-heading,
.field--name-field-agenda p + h4,
.field--name-field-agenda p + h5,
.field--name-more-information p + h1,
.field--name-more-information p + h2,
.field--name-more-information p + h3,
.field--name-more-information p + .field--name-field-table-heading,
.field--name-more-information p + h4,
.field--name-more-information p + h5,
.field--name-field-tile-text p + h1,
.field--name-field-tile-text p + h2,
.field--name-field-tile-text p + h3,
.field--name-field-tile-text p + .field--name-field-table-heading,
.field--name-field-tile-text p + h4,
.field--name-field-tile-text p + h5,
.field--name-field-brief-description p + h1,
.field--name-field-brief-description p + h2,
.field--name-field-brief-description p + h3,
.field--name-field-brief-description p + .field--name-field-table-heading,
.field--name-field-brief-description p + h4,
.field--name-field-brief-description p + h5 {
  padding-top: 0.5rem;
}
.field--name-body pre,
.field--name-field-running-text pre,
.field--name-field-update pre,
.field--name-field-bio pre,
.field--name-field-agenda pre,
.field--name-more-information pre,
.field--name-field-tile-text pre,
.field--name-field-brief-description pre {
  line-height: 1.5rem;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 2rem;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  background-color: #edf1f5;
  overflow: auto;
}
.field--name-body pre p,
.field--name-field-running-text pre p,
.field--name-field-update pre p,
.field--name-field-bio pre p,
.field--name-field-agenda pre p,
.field--name-more-information pre p,
.field--name-field-tile-text pre p,
.field--name-field-brief-description pre p {
  margin-bottom: 0;
}
.field--name-body strong,
.field--name-field-running-text strong,
.field--name-field-update strong,
.field--name-field-bio strong,
.field--name-field-agenda strong,
.field--name-more-information strong,
.field--name-field-tile-text strong,
.field--name-field-brief-description strong {
  font-weight: 700;
}

a:hover .img-wrapper img {
  transform: translate(-50%, -50%) scale(1.045) !important;
  opacity: 0.75 !important;
}

a {
  transition: color 0.2s;
}

a img {
  transition: all 0.6s;
}

a:hover {
  transition: all 0.025s;
}

.region-highlighted {
  background: #333;
}
.region-highlighted div {
  max-width: 1500px;
  margin: 0 auto;
}
.region-highlighted .tabs a {
  color: #fff;
}
.region-highlighted .tabs a.is-active {
  color: #000;
}
.region-highlighted ul.tabs {
  margin-bottom: 0;
}

.section-1 {
  background-color: #fff;
  color: #080812;
  padding-top: 0.5rem;
}
.section-1 .img-wrapper {
  background-color: #fff;
}
.section-1 a {
  color: #007b70;
}
.section-1 a:hover {
  color: #d8dce1;
}
.section-1 a:hover img {
  opacity: 0.6;
}
.section-1 [class$=meta],
.section-1 .field--name-field-list-eyebrow {
  color: #009f90;
}
.section-1 .tiles__banner--narrow [class$=meta],
.section-1 .paragraph--type--content-teaser-banner [class$=meta],
.section-1 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.section-1 .tiles__feed-meta {
  color: #6e6e78;
}
.section-1 .tiles__meta::before,
.section-1 .field--name-field-list-eyebrow:before,
.section-1 h2:before {
  background-color: #007b70;
}
.section-1 .tiles__feed-list li,
.section-1 .field--name-field-list-content-reference .field__item,
.section-1 .field--name-field-manual-list-items .field__item,
.section-1 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.section-1 .tiles__feed-list li:first-child,
.section-1 .field--name-field-list-content-reference .field__item:first-child,
.section-1 .field--name-field-manual-list-items .field__item:first-child,
.section-1 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.section-1 .field--name-field-list-more-link a {
  color: #009f90;
}
.section-1 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.section-1 a.tiles__feed-more:hover,
.section-1 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.section-1 .list__title {
  color: #003a41;
}

.section-2 {
  background-color: #fff;
  color: #080812;
  padding-top: 2rem;
}
.section-2 .img-wrapper {
  background-color: #fff;
}
.section-2 a {
  color: #007b70;
}
.section-2 a:hover {
  color: #d8dce1;
}
.section-2 a:hover img {
  opacity: 0.6;
}
.section-2 [class$=meta],
.section-2 .field--name-field-list-eyebrow {
  color: #009f90;
}
.section-2 .tiles__banner--narrow [class$=meta],
.section-2 .paragraph--type--content-teaser-banner [class$=meta],
.section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.section-2 .tiles__meta::before,
.section-2 .field--name-field-list-eyebrow:before,
.section-2 h2:before {
  background-color: #007b70;
}
.section-2 .tiles__feed-list li,
.section-2 .field--name-field-list-content-reference .field__item,
.section-2 .field--name-field-manual-list-items .field__item,
.section-2 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.section-2 .tiles__feed-list li:first-child,
.section-2 .field--name-field-list-content-reference .field__item:first-child,
.section-2 .field--name-field-manual-list-items .field__item:first-child,
.section-2 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.section-2 .field--name-field-list-more-link a {
  color: #009f90;
}
.section-2 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.section-2 a.tiles__feed-more:hover,
.section-2 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.section-2 .list__title {
  color: #003a41;
}

.page__intro {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
.page__intro .page__intro-primary {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  border-bottom: 1px solid #d8dce1;
}
.page__intro .region-page-title {
  grid-column: span 6;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 1.5rem;
}
.page__intro .region-page-title h1 {
  color: #003a41;
}
.page__intro .block-views-blocknews-meta-info-subtitle {
  grid-column: span 6;
  color: #003a41;
  margin-top: 2rem;
  margin-bottom: -1rem;
}
.page__intro .block-views-blocknews-meta-info-subtitle .meta-item span {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page__intro .block-views-blocknews-meta-info-subtitle .meta-item span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page__intro .block-views-blocknews-meta-info-subtitle .meta-item span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page__intro .block-views-blocknews-meta-info-subtitle .meta-item span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.page__intro #block-auroragpt-page-title {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page__intro #block-auroragpt-page-title {
    grid-column: span 4;
  }
}
.page__intro .region-page-meta {
  grid-column: span 6;
  grid-row: 1;
  margin-bottom: 0.5rem;
}
.page__intro .region-page-meta .eyebrow {
  color: #6e6e78;
}
.page__intro .region-intro-secondary {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  padding-top: 0.5rem;
}
.page__intro #block-alcf-local-tasks {
  margin-top: 1rem;
}

.paragraph--type--image.image-border .field--name-field-media-image,
.paragraph--type--sidebar-image.image-border .field--name-field-media-image {
  border: 1px solid #d8dce1;
}

#block-auroragpt-views-block-news-meta-info-block,
#block-auroragpt-views-block-news-meta-info-event,
#block-auroragpt-views-block-news-meta-info-block-project {
  grid-column: span 6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  #block-auroragpt-views-block-news-meta-info-block,
#block-auroragpt-views-block-news-meta-info-event,
#block-auroragpt-views-block-news-meta-info-block-project {
    grid-column: span 2;
    margin-bottom: 0;
  }
}
#block-auroragpt-views-block-news-meta-info-block .meta-item,
#block-auroragpt-views-block-news-meta-info-event .meta-item,
#block-auroragpt-views-block-news-meta-info-block-project .meta-item {
  color: #6e6e78;
}
#block-auroragpt-views-block-news-meta-info-block .meta__event-date,
#block-auroragpt-views-block-news-meta-info-event .meta__event-date,
#block-auroragpt-views-block-news-meta-info-block-project .meta__event-date {
  margin-bottom: 0.5rem;
  color: #6e6e78;
}
#block-auroragpt-views-block-news-meta-info-block .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-event .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-block-project .meta__event-date h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  letter-spacing: 0.075em !important;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-views-block-news-meta-info-block .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-event .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-block-project .meta__event-date h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-views-block-news-meta-info-block .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-event .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-block-project .meta__event-date h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-views-block-news-meta-info-block .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-event .meta__event-date h4,
#block-auroragpt-views-block-news-meta-info-block-project .meta__event-date h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
#block-auroragpt-views-block-news-meta-info-block .meta__event-info,
#block-auroragpt-views-block-news-meta-info-event .meta__event-info,
#block-auroragpt-views-block-news-meta-info-block-project .meta__event-info {
  margin-bottom: 1rem;
}

#block-auroragpt-views-block-main-image-block,
#block-auroragpt-views-block-main-image-events,
#block-auroragpt-views-block-main-image-block-project {
  grid-column: span 6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  #block-auroragpt-views-block-main-image-block,
#block-auroragpt-views-block-main-image-events,
#block-auroragpt-views-block-main-image-block-project {
    grid-column: span 4;
  }
}

#block-auroragpt-views-block-intro-text-block,
#block-auroragpt-views-block-intro-text-block-event,
#block-auroragpt-views-block-intro-text-block-2 {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-views-block-intro-text-block,
#block-auroragpt-views-block-intro-text-block-event,
#block-auroragpt-views-block-intro-text-block-2 {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-views-block-intro-text-block,
#block-auroragpt-views-block-intro-text-block-event,
#block-auroragpt-views-block-intro-text-block-2 {
    grid-column: 3/-1;
  }
}
#block-auroragpt-views-block-intro-text-block .intro,
#block-auroragpt-views-block-intro-text-block-event .intro,
#block-auroragpt-views-block-intro-text-block-2 .intro {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #009f90;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-views-block-intro-text-block .intro,
#block-auroragpt-views-block-intro-text-block-event .intro,
#block-auroragpt-views-block-intro-text-block-2 .intro {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-views-block-intro-text-block .intro,
#block-auroragpt-views-block-intro-text-block-event .intro,
#block-auroragpt-views-block-intro-text-block-2 .intro {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-views-block-intro-text-block .intro,
#block-auroragpt-views-block-intro-text-block-event .intro,
#block-auroragpt-views-block-intro-text-block-2 .intro {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.block-system-main-block .view-header {
  margin-top: -1.5rem;
}

.page__body {
  grid-column: 1/-1;
  margin-bottom: 1rem;
}
.page__body a {
  color: #007b70;
}

.content-moderation-entity-moderation-form {
  grid-column: 1/-1;
}

.section-2 {
  padding-bottom: 2rem;
}
.section-2 .block {
  display: block;
}
.section-2 .block > h2 {
  margin-bottom: 2rem;
}
.section-2 .block > h2::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 1rem;
  display: block;
}
.section-2 #block-auroragpt-views-block-banners-block {
  padding-bottom: 4rem;
}
.section-2 #block-auroragpt-views-block-middle-content-block + #block-auroragpt-views-block-banners-block {
  padding-top: 2rem;
}
.section-2 #block-auroragpt-views-block-middle-content-block + #block-auroragpt-views-block-middle-content-additional {
  margin-top: 2rem;
}

.section-3 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f7f2f5;
  color: #080812;
}
.section-3 a:hover {
  color: #d8dce1;
}
.section-3 .page__body a:hover {
  color: #d8dce1;
}
.section-3 .img-wrapper {
  background-color: #edf1f5;
}
.section-3 a.tiles__feed-more:hover,
.section-3 a.status-lg__more:hover {
  color: #d8dce1;
}
.section-3 [class$=meta] {
  color: #d23c51;
}
.section-3 .tiles__banner--narrow [class$=meta],
.section-3 .paragraph--type--content-teaser-banner [class$=meta],
.section-3 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #edf1f5;
}
.section-3 .tiles__feed-meta {
  color: #6e6e78;
}
.section-3 .section__title h2,
.section-3 .block > h2 {
  color: #080812;
}
.section-3 .tiles__meta::before,
.section-3 h2:before {
  background-color: #8f2e58;
}
.section-3 .tiles__feed-list li,
.section-3 .feed__item {
  border-bottom: 1px solid #d8dce1;
}
.section-3 .tiles__feed-list li:first-child,
.section-3 .feed__item:first-child {
  border-top: 1px solid #d8dce1;
}
.section-3 .tiles__video-play {
  background-color: #d23c51;
}
.section-3 .tiles__video-duration {
  background-color: #8f2e58;
}
.section-3 .tiles__video-duration-meta {
  color: #fff;
}
.section-3 [class$=more] {
  color: #8f2e58;
}
.section-3 [class$=more] span {
  color: #d23c51;
}
.section-3 .field--name-field-list-more-link a:before {
  color: #d23c51;
}
.section-3 .block {
  display: block;
}
.section-3 .block > h2 {
  margin-bottom: 2rem;
}
.section-3 .block > h2::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 1rem;
  display: block;
}

.section__title-standalone::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 1rem;
  display: block;
}

.region-page-end {
  grid-column: 1/-1;
  margin-bottom: 4rem;
  margin-top: -1.5rem;
}
.region-page-end .social-sharing-buttons {
  justify-content: left;
  margin-top: 0;
  margin-bottom: 1rem;
}
.region-page-end .social-sharing-buttons a {
  margin: 0;
}
.region-page-end .social-sharing-buttons a svg {
  fill: #6e6e78;
}
.region-page-end .social-sharing-buttons a:hover svg {
  fill: #edf1f5;
}
.region-page-end .social-sharing-buttons a:nth-child(2) svg {
  height: 33px;
  width: 33px;
  margin-top: 1px;
}
.region-page-end .taxonomies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
@media screen and (min-width: 768px) {
  .region-page-end .taxonomies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 3;
    grid-row: span auto;
  }
}
@media screen and (min-width: 992px) {
  .region-page-end .taxonomies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 4;
    grid-row: span auto;
  }
}
.region-page-end .taxonomies a {
  color: #009f90;
}
.region-page-end .taxonomies a:hover {
  color: #d8dce1;
}
.region-page-end .taxonomies li {
  margin: 0;
}
.region-page-end .taxonomies li a {
  text-transform: uppercase;
}
.region-page-end .taxonomies .views-label {
  color: #6e6e78;
}
.region-page-end .taxonomies .views-field {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .region-page-end .taxonomies .views-field {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .region-page-end .taxonomies .views-field {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .region-page-end .taxonomies .views-field {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

.view-display-id-council_members {
  margin-top: 3rem;
}

.page-node-type-testbed .node__content .field + .field {
  margin-top: 1rem;
}

.field--type-webform {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .field--type-webform {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .field--type-webform {
    grid-column: span 4;
  }
}

.webform-submission-form .form-type-textfield input,
.webform-submission-form .form-type-textfield textarea,
.webform-submission-form .form-type-email input,
.webform-submission-form .form-type-email textarea,
.webform-submission-form .form-type-number input,
.webform-submission-form .form-type-number textarea,
.webform-submission-form .form-type-textarea input,
.webform-submission-form .form-type-textarea textarea,
.webform-submission-form .form-type-date input,
.webform-submission-form .form-type-date textarea,
.webform-submission-form .form-item-start-date-time input,
.webform-submission-form .form-item-start-date-time textarea {
  padding: 0.5rem;
  border: 1px solid #d8dce1;
  box-shadow: none;
  color: #080812 !important;
}
.webform-submission-form .form-type-textfield input::placeholder,
.webform-submission-form .form-type-textfield textarea::placeholder,
.webform-submission-form .form-type-email input::placeholder,
.webform-submission-form .form-type-email textarea::placeholder,
.webform-submission-form .form-type-number input::placeholder,
.webform-submission-form .form-type-number textarea::placeholder,
.webform-submission-form .form-type-textarea input::placeholder,
.webform-submission-form .form-type-textarea textarea::placeholder,
.webform-submission-form .form-type-date input::placeholder,
.webform-submission-form .form-type-date textarea::placeholder,
.webform-submission-form .form-item-start-date-time input::placeholder,
.webform-submission-form .form-item-start-date-time textarea::placeholder {
  color: #d8dce1;
}
.webform-submission-form .form-type-select {
  display: block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #d8dce1;
  background-color: #edf1f5;
  border-radius: 0;
  height: 2.5rem;
  padding-bottom: 0.25rem;
  margin-right: 0;
  margin-top: 1rem;
  margin-bottom: 0;
  margin-top: 3.5rem;
  margin-right: -1rem;
}
.webform-submission-form .form-type-select label {
  position: relative;
  top: -2rem;
}
.webform-submission-form .form-type-select select {
  position: relative;
  top: -1.4rem;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  color: #080812;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  border-radius: 0;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 1em top calc(50% + 2px), 0 0;
  background-size: 0.75em auto, 100%;
}
@media screen and (min-width: 768px) {
  .webform-submission-form .form-type-select select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .webform-submission-form .form-type-select select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .webform-submission-form .form-type-select select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.webform-submission-form .form-type-select select option {
  color: initial;
  font-weight: initial;
  font-family: sans-serif;
  font-size: initial;
}
.webform-submission-form .form-type-select.form-item-collaborating-institutions {
  height: 100px;
}
.webform-submission-form .fieldset-wrapper,
.webform-submission-form #edit-start-date {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.webform-submission-form .fieldset-wrapper .form-item,
.webform-submission-form #edit-start-date .form-item {
  margin: 0;
  grid-column: span 1;
}
.webform-submission-form .form-item input {
  width: 100%;
  margin-top: 0.5rem;
  font-weight: 400;
}
.webform-submission-form .form-item textarea {
  width: calc(100% + 1rem);
  margin-top: 0.5rem;
  font-weight: 400;
}
.webform-submission-form .form-item label {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .webform-submission-form .form-item label {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .webform-submission-form .form-item label {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .webform-submission-form .form-item label {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.webform-submission-form .form-type-checkbox label {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  text-transform: none;
  display: inline-block;
  width: calc(100% - 50px);
}
@media screen and (min-width: 768px) {
  .webform-submission-form .form-type-checkbox label {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .webform-submission-form .form-type-checkbox label {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .webform-submission-form .form-type-checkbox label {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.webform-submission-form .form-type-checkbox input {
  display: inline-block;
  width: 20px;
}
.webform-submission-form input[type=submit] {
  border: none;
  background-color: #f2f9f8;
  -webkit-appearance: none;
  color: #003a41;
  display: block;
  height: 3.25rem;
  top: 0;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  width: 100px;
  display: inline-block;
  margin-right: 1rem;
}

/**
  * Component: Footer
  *  
  * @description
  * -
  */
.footer {
  background-color: #080812;
  color: #fff;
  padding-top: 2rem;
}
.footer .img-wrapper {
  background-color: #009f90;
}
.footer [class$=meta],
.footer .field--name-field-list-eyebrow,
.footer .pi-info {
  color: #b8e2de;
}
.footer [class$=meta] p,
.footer .field--name-field-list-eyebrow p,
.footer .pi-info p {
  color: #b8e2de;
}
.footer .paragraph--type--vertical-banner .tiles__meta {
  background-color: #080812;
}
.footer .tiles__feed-meta {
  color: #009f90;
}
.footer .tiles__meta::before,
.footer .field--name-field-list-eyebrow:before,
.footer h2::before {
  background-color: #b8e2de;
}
.footer .tiles > *::after,
.footer .field--name-field-top-content > *::after,
.footer .view-guides .view-content > *::after {
  background-color: #009f90;
}
.footer .tiles__feed-list li,
.footer .field--name-field-list-content-reference .field__item,
.footer .field--name-field-manual-list-items .field__item,
.footer .field--type-viewsreference .field__item {
  border-bottom: 1px solid #009f90;
}
.footer .tiles__feed-list li:first-child,
.footer .field--name-field-list-content-reference .field__item:first-child,
.footer .field--name-field-manual-list-items .field__item:first-child,
.footer .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #009f90;
}
.footer a:hover {
  color: #009f90;
}
.footer a {
  color: #b8e2de;
}
.footer .block > h2 {
  color: #fff;
}
.footer .view-header p {
  color: #b8e2de;
}
.footer .feed__feed-item > a .feed__item-title {
  color: #fff;
}
.footer .feed__feed-item > a:hover .feed__item-title,
.footer .feed__feed-item > a:hover .feed__item-meta p,
.footer .feed__feed-item > a:hover .pi-info {
  color: #009f90;
}
.footer .feed__feed-item {
  border-color: #009f90;
}
.footer .footer__info {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  grid-template-rows: minmax(11.25rem, auto) minmax(13.75rem, auto);
}
@media screen and (min-width: 992px) {
  .footer .footer__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 3;
    grid-row: span auto;
  }
}
.footer .footer__info-title {
  grid-column: 1/-1;
}
.footer .footer__info-ALCF {
  margin-bottom: 0.5rem;
}
.footer .footer__info-DOE {
  max-width: 400px;
}
.footer .footer__info-ALCF p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .footer .footer__info-ALCF p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__info-ALCF p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__info-ALCF p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__info-contact {
  grid-column: 1/-1;
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .footer .footer__info-contact {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__info-contact {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__info-contact {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__follow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
@media screen and (min-width: 992px) {
  .footer .footer__follow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 3;
    grid-row: span auto;
    grid-template-rows: minmax(11.25rem, auto) minmax(13.75rem, auto);
  }
}
.footer .footer__follow-options {
  grid-column: span 6;
}
.footer .footer__follow-email-cta {
  max-width: 500px;
  margin-bottom: 1rem;
}
.footer .footer__follow-email-cta p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .footer .footer__follow-email-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__follow-email-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__follow-email-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__follow-service-cta p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .footer .footer__follow-service-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__follow-service-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__follow-service-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__follow-email-input {
  position: relative;
}
.footer .footer__follow-email-input {
  height: 3.25rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer .footer__follow-email-input input[type=email],
.footer .footer__follow-email-input input[type=submit] {
  border: none;
  background-color: #badef5;
  -webkit-appearance: none;
  color: #1d1651;
  display: inline-block;
  height: 3.25rem;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  margin: 0;
}
.footer .footer__follow-email-input input[type=email] {
  left: 0;
  width: calc(100% - 112px);
  right: 112px;
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  padding-left: 0.5rem;
  caret-color: #118acb;
  border-radius: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer .footer__follow-email-input input[type=email] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__follow-email-input input[type=email] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__follow-email-input input[type=email] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__follow-email-input input[type=email]::placeholder {
  color: #118acb;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  padding-left: 1rem;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .footer .footer__follow-email-input input[type=email]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__follow-email-input input[type=email]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__follow-email-input input[type=email]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.footer .footer__follow-email-input .email::-moz-placeholder {
  line-height: 50px !important;
}
.footer .footer__follow-email-input input[type=email]:focus {
  outline: none;
}
.footer .footer__follow-email-input label {
  display: none;
}
.footer .footer__follow-email-input input[type=submit] {
  color: #1d1651;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  right: 0;
  left: calc(100% - 112px);
  width: 112px;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .footer .footer__follow-email-input input[type=submit] {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__follow-email-input input[type=submit] {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__follow-email-input input[type=submit] {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.footer .footer__follow-service-cta p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .footer .footer__follow-service-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__follow-service-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__follow-service-cta p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__follow-service-cta p span {
  padding-left: 0.5rem;
}
.footer [class^=icon-] {
  display: inline-block;
  width: 20px;
  overflow: hidden;
}
.footer [class^=icon-]:before {
  margin-right: 5px;
}
.footer .footer__small-print {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 2rem;
  min-height: 3rem;
  margin-top: 5rem;
}
@media screen and (min-width: 992px) {
  .footer .footer__small-print {
    margin-top: 0;
  }
}
.footer .footer__small-print p,
.footer .footer__small-print a {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .footer .footer__small-print p,
.footer .footer__small-print a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .footer .footer__small-print p,
.footer .footer__small-print a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer__small-print p,
.footer .footer__small-print a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.footer .footer__small-print-login {
  grid-column: span 6;
  margin-top: 1rem;
  grid-row: 2;
}
@media screen and (min-width: 992px) {
  .footer .footer__small-print-login {
    grid-row: 1;
    grid-column: span 3;
  }
}
.footer .footer__small-print-info {
  grid-column: span 6;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 12;
  grid-row: span auto;
}
@media screen and (min-width: 992px) {
  .footer .footer__small-print-info {
    grid-column: span 3;
  }
}
.footer .footer__small-print-parents {
  grid-column: span 12;
}
.footer .footer__small-print-copyright {
  grid-column: span 12;
}
.footer .footer__small-print-info p,
.footer .footer__small-print-info a,
.footer .footer__small-print-copyright,
.footer .footer__small-print-parents {
  display: inline-block;
}
.footer .footer__small-print-info a {
  width: 100px;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
.footer .footer__small-print-info a.doe-logo {
  width: 130px;
}

/**
  * Component: Header
  *  
  * @description
  * -
  */
.header {
  background-color: #080812;
  color: #fff;
  border-bottom: 1px solid #009f90;
  height: 9.5rem;
  /*
  	// Flag
  	&.headroom--top {
  		@include respond-to(m) {
  			.header__site-title h1:after {
  				width:50px;
  				height:29px;
  			}
  		}
  	}
  */
}
.header .img-wrapper {
  background-color: #009f90;
}
.header [class$=meta],
.header .field--name-field-list-eyebrow,
.header .pi-info {
  color: #b8e2de;
}
.header [class$=meta] p,
.header .field--name-field-list-eyebrow p,
.header .pi-info p {
  color: #b8e2de;
}
.header .paragraph--type--vertical-banner .tiles__meta {
  background-color: #080812;
}
.header .tiles__feed-meta {
  color: #009f90;
}
.header .tiles__meta::before,
.header .field--name-field-list-eyebrow:before,
.header h2::before {
  background-color: #b8e2de;
}
.header .tiles > *::after,
.header .field--name-field-top-content > *::after,
.header .view-guides .view-content > *::after {
  background-color: #009f90;
}
.header .tiles__feed-list li,
.header .field--name-field-list-content-reference .field__item,
.header .field--name-field-manual-list-items .field__item,
.header .field--type-viewsreference .field__item {
  border-bottom: 1px solid #009f90;
}
.header .tiles__feed-list li:first-child,
.header .field--name-field-list-content-reference .field__item:first-child,
.header .field--name-field-manual-list-items .field__item:first-child,
.header .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #009f90;
}
.header a:hover {
  color: #009f90;
}
.header a {
  color: #b8e2de;
}
.header .block > h2 {
  color: #fff;
}
.header .view-header p {
  color: #b8e2de;
}
.header .feed__feed-item > a .feed__item-title {
  color: #fff;
}
.header .feed__feed-item > a:hover .feed__item-title,
.header .feed__feed-item > a:hover .feed__item-meta p,
.header .feed__feed-item > a:hover .pi-info {
  color: #009f90;
}
.header .feed__feed-item {
  border-color: #009f90;
}
@media screen and (min-width: 992px) {
  .header .grid, .header .views-exposed-form .form--inline, .views-exposed-form .header .form--inline, .header .section-2 .block, .section-2 .header .block, .header .section-3 .block, .section-3 .header .block {
    min-height: 9.5rem;
  }
}
.header .header__nav-mobile {
  grid-row: 1;
}
.header .header__site-title {
  grid-column: span 6;
  grid-row: 2;
  margin-top: 0.5rem;
}
.header .header__site-title h1 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  /*
  		// Flag		
  		&:after {
  			display: inline-block;
  			width:24px;
  			height:15px;
  			background: url('../img/afroamerica.png') no-repeat;
  			margin-left:1.8rem;
  			content: "";
  			background-size: 100%;
  		}
  */
}
@media screen and (min-width: 768px) {
  .header .header__site-title h1 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__site-title h1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__site-title h1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.header .header__site-title h1 span.mobile-title {
  display: inline;
}
@media screen and (min-width: 768px) {
  .header .header__site-title h1 span.mobile-title {
    display: none;
    visibility: hidden;
  }
}
.header .header__site-title h1 span.desktop-title {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .header .header__site-title h1 span.desktop-title {
    display: inline;
    visibility: visible;
  }
}
.header .header__nav-primary {
  grid-column: span 6;
  grid-row: 3;
  position: relative;
  top: -1px;
}
.header .region-primary-menu {
  position: absolute;
  top: -30px;
}
@media screen and (min-width: 992px) {
  .header .region-primary-menu {
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  .header #block-auroragpt-tactical-2 {
    display: none;
  }
}
.header #ultimenu-main > li {
  margin-right: 1rem;
}
@media screen and (min-width: 992px) {
  .header #ultimenu-main > li {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .header #ultimenu-main > li:last-child {
    margin-right: 0;
  }
}
.header #block-auroragpt-ultimenumainmenu a {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .header #block-auroragpt-ultimenumainmenu a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header #block-auroragpt-ultimenumainmenu a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header #block-auroragpt-ultimenumainmenu a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.header .header__nav-secondary {
  grid-column: span 6;
  grid-row: 1;
  margin-top: 0.75rem;
  position: relative;
}
.header .header__nav-secondary--right {
  position: absolute;
  right: 50px;
}
@media screen and (min-width: 992px) {
  .header .header__nav-secondary--right {
    right: 0;
  }
}
.header .region-secondary-menu {
  margin-right: 1rem;
  display: inline-block;
  position: relative;
  top: -0.625rem;
}
.header #block-auroragpt-tactical-2 .menu {
  margin-left: 0;
  margin-top: 2rem;
}
.header .header__nav-secondary li,
.header #block-auroragpt-tactical-2 li {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  margin-right: 1rem;
  text-transform: uppercase;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header .header__nav-secondary li,
.header #block-auroragpt-tactical-2 li {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__nav-secondary li,
.header #block-auroragpt-tactical-2 li {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__nav-secondary li,
.header #block-auroragpt-tactical-2 li {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.header .header__nav-secondary li:last-child {
  margin-right: 0;
}
.header #ultimenu-main > li {
  display: inline-block;
}
.header ul.menu a.is-active {
  color: #009f90;
}
.header .header__search-toggle {
  font-size: 1.5rem;
  position: relative;
  top: 2px;
  color: #b8e2de;
  margin-left: 1rem;
  display: none;
}
.header .header__search-toggle:hover {
  cursor: pointer;
  color: #b8e2de;
}
@media screen and (min-width: 992px) {
  .header .header__search-toggle {
    font-size: 0.8rem;
    top: 0;
    right: 4px;
  }
}
.header .header__search {
  display: block;
  margin-top: -0.875rem;
}
@media screen and (min-width: 768px) {
  .header .header__search {
    display: inline-block;
    margin-top: 0;
  }
}
.header .header__search .form-item-search label {
  display: none;
}
.header .header__search #edit-reset {
  display: none;
}
.header .header__search form {
  width: 72px;
  height: 28px;
  position: relative;
  display: inline-block;
}
.header .header__search input[type=text],
.header .header__search input[type=submit] {
  border: none;
  background-color: #b8e2de;
  -webkit-appearance: none;
  color: #007b70;
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .header .header__search input[type=text],
.header .header__search input[type=submit] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__search input[type=text],
.header .header__search input[type=submit] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__search input[type=text],
.header .header__search input[type=submit] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.header .header__search input[type=text] {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  height: 28px;
  width: 44px;
  padding-left: 0.5rem;
  transition: all 0.25s;
  caret-color: #009f90;
}
.header .header__search input[type=text]::placeholder {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  padding-left: 1rem;
  color: #b8e2de;
}
@media screen and (min-width: 768px) {
  .header .header__search input[type=text]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__search input[type=text]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__search input[type=text]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.header .header__search input[type=text]::-moz-placeholder {
  line-height: 25px !important;
}
.header .header__search input[type=text]:focus {
  outline: none;
  width: 450px;
  left: -380px;
}
.header .header__search input[type=text]:focus::placeholder {
  color: #009f90;
}
.header .header__search input[type=submit] {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 44px;
  height: 28px;
  width: 28px;
  font: 13px/1 "icomoon";
}
.header .header__menu-toggle {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  color: #b8e2de;
  text-transform: uppercase;
  display: none;
}
@media screen and (min-width: 768px) {
  .header .header__menu-toggle {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__menu-toggle {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__menu-toggle {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.header .header__menu-toggle i {
  font-size: 0.8rem;
}
.header .header__menu-toggle:hover {
  color: #b8e2de;
  cursor: pointer;
}
.header.sticky, .header.headroom--not-top.headroom--pinned, .header.mobile-nav.headroom--top {
  position: fixed;
}
.header.sticky, .header.mobile-nav, .header.headroom--not-top.headroom--pinned {
  top: 0;
  width: 100%;
  z-index: 100;
  height: 4rem;
}
.header.sticky .grid, .header.sticky .views-exposed-form .form--inline, .views-exposed-form .header.sticky .form--inline, .header.sticky .section-2 .block, .section-2 .header.sticky .block, .header.sticky .section-3 .block, .section-3 .header.sticky .block, .header.mobile-nav .grid, .header.mobile-nav .views-exposed-form .form--inline, .views-exposed-form .header.mobile-nav .form--inline, .header.mobile-nav .section-2 .block, .section-2 .header.mobile-nav .block, .header.mobile-nav .section-3 .block, .section-3 .header.mobile-nav .block, .header.headroom--not-top.headroom--pinned .grid, .header.headroom--not-top.headroom--pinned .views-exposed-form .form--inline, .views-exposed-form .header.headroom--not-top.headroom--pinned .form--inline, .header.headroom--not-top.headroom--pinned .section-2 .block, .section-2 .header.headroom--not-top.headroom--pinned .block, .header.headroom--not-top.headroom--pinned .section-3 .block, .section-3 .header.headroom--not-top.headroom--pinned .block {
  display: block;
}
.header.sticky .header__site-title, .header.mobile-nav .header__site-title, .header.headroom--not-top.headroom--pinned .header__site-title {
  margin-top: 1.125rem;
  max-width: 250px;
}
@media screen and (min-width: 768px) {
  .header.sticky .header__site-title, .header.mobile-nav .header__site-title, .header.headroom--not-top.headroom--pinned .header__site-title {
    margin-top: 0.25rem;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky .header__site-title, .header.mobile-nav .header__site-title, .header.headroom--not-top.headroom--pinned .header__site-title {
    margin-top: 1rem;
    max-width: 100%;
  }
}
.header.sticky .header__site-title h1, .header.mobile-nav .header__site-title h1, .header.headroom--not-top.headroom--pinned .header__site-title h1 {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .header.sticky .header__site-title h1, .header.mobile-nav .header__site-title h1, .header.headroom--not-top.headroom--pinned .header__site-title h1 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky .header__site-title h1, .header.mobile-nav .header__site-title h1, .header.headroom--not-top.headroom--pinned .header__site-title h1 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header.sticky .header__site-title h1, .header.mobile-nav .header__site-title h1, .header.headroom--not-top.headroom--pinned .header__site-title h1 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.header.sticky .region-secondary-menu,
.header.sticky #block-auroragpt-featuredresource,
.header.sticky #block-auroragpt-menufeaturedscience,
.header.sticky #block-auroragpt-menufeaturedguide,
.header.sticky #block-auroragpt-megamenublurbprojects,
.header.sticky #block-auroragpt-megamenublurbscience,
.header.sticky #block-auroragpt-megamenublurbcommunity,
.header.sticky #block-auroragpt-megamenublurbabout,
.header.sticky #block-auroragpt-megamenublurbsupport, .header.mobile-nav .region-secondary-menu,
.header.mobile-nav #block-auroragpt-featuredresource,
.header.mobile-nav #block-auroragpt-menufeaturedscience,
.header.mobile-nav #block-auroragpt-menufeaturedguide,
.header.mobile-nav #block-auroragpt-megamenublurbprojects,
.header.mobile-nav #block-auroragpt-megamenublurbscience,
.header.mobile-nav #block-auroragpt-megamenublurbcommunity,
.header.mobile-nav #block-auroragpt-megamenublurbabout,
.header.mobile-nav #block-auroragpt-megamenublurbsupport, .header.headroom--not-top.headroom--pinned .region-secondary-menu,
.header.headroom--not-top.headroom--pinned #block-auroragpt-featuredresource,
.header.headroom--not-top.headroom--pinned #block-auroragpt-menufeaturedscience,
.header.headroom--not-top.headroom--pinned #block-auroragpt-menufeaturedguide,
.header.headroom--not-top.headroom--pinned #block-auroragpt-megamenublurbprojects,
.header.headroom--not-top.headroom--pinned #block-auroragpt-megamenublurbscience,
.header.headroom--not-top.headroom--pinned #block-auroragpt-megamenublurbcommunity,
.header.headroom--not-top.headroom--pinned #block-auroragpt-megamenublurbabout,
.header.headroom--not-top.headroom--pinned #block-auroragpt-megamenublurbsupport {
  display: none;
}
.header.sticky .header__nav-primary #ultimenu-main > li, .header.mobile-nav .header__nav-primary #ultimenu-main > li, .header.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li {
  border-bottom: 1px solid #009f90;
}
.header.sticky .header__nav-primary #ultimenu-main > li > a, .header.mobile-nav .header__nav-primary #ultimenu-main > li > a, .header.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li > a {
  color: #fff;
}
.header.sticky .header__nav-primary #ultimenu-main > li > a:hover, .header.mobile-nav .header__nav-primary #ultimenu-main > li > a:hover, .header.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li > a:hover {
  color: #6e6e78 !important;
}
.header.sticky .header__nav-primary #block-ultimenumainmenu a, .header.mobile-nav .header__nav-primary #block-ultimenumainmenu a, .header.headroom--not-top.headroom--pinned .header__nav-primary #block-ultimenumainmenu a {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  min-height: 0;
}
@media screen and (min-width: 768px) {
  .header.sticky .header__nav-primary #block-ultimenumainmenu a, .header.mobile-nav .header__nav-primary #block-ultimenumainmenu a, .header.headroom--not-top.headroom--pinned .header__nav-primary #block-ultimenumainmenu a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky .header__nav-primary #block-ultimenumainmenu a, .header.mobile-nav .header__nav-primary #block-ultimenumainmenu a, .header.headroom--not-top.headroom--pinned .header__nav-primary #block-ultimenumainmenu a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header.sticky .header__nav-primary #block-ultimenumainmenu a, .header.mobile-nav .header__nav-primary #block-ultimenumainmenu a, .header.headroom--not-top.headroom--pinned .header__nav-primary #block-ultimenumainmenu a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.header.sticky .header__nav-primary #ultimenu-main > li, .header.mobile-nav .header__nav-primary #ultimenu-main > li, .header.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li {
  display: block;
  border-bottom: 1px solid #009f90;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.header.sticky .header__nav-primary #ultimenu-main > li:last-child, .header.mobile-nav .header__nav-primary #ultimenu-main > li:last-child, .header.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li:last-child {
  border-left: none;
  padding-left: 0;
}
.header.sticky .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 h2 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .header.sticky .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header.sticky .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.sticky .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.mobile-nav .header__nav-primary .ultimenu__flyout #block-guides-3 h2, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenusub li span,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 li a,
.header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout #block-guides-3 h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky .header__nav-primary, .header.mobile-nav .header__nav-primary, .header.headroom--not-top.headroom--pinned .header__nav-primary {
    margin-top: 0;
    display: none;
    width: 250px;
    background-color: #080812;
    position: absolute;
    top: 49px;
    right: 2rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .header.sticky .header__nav-primary .region-primary-menu, .header.mobile-nav .header__nav-primary .region-primary-menu, .header.headroom--not-top.headroom--pinned .header__nav-primary .region-primary-menu {
    position: relative;
  }
  .header.sticky .header__nav-primary #ultimenu-main > li, .header.mobile-nav .header__nav-primary #ultimenu-main > li, .header.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .header.sticky .header__nav-primary .ultimenu--hover .ultimenu__flyout, .header.mobile-nav .header__nav-primary .ultimenu--hover .ultimenu__flyout, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu--hover .ultimenu__flyout {
    left: -250px;
    top: -32px;
  }
  .header.sticky .header__nav-primary .ultimenu__flyout .ultimenu__region, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenu__region, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenu__region {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 1;
    grid-row: span auto;
  }
  .header.sticky .header__nav-primary .ultimenu__flyout .ultimenusub > .menu, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenusub > .menu, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenusub > .menu {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 1;
    grid-row: span auto;
  }
  .header.sticky .header__nav-primary .ultimenu__flyout .ultimenusub, .header.mobile-nav .header__nav-primary .ultimenu__flyout .ultimenusub, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu__flyout .ultimenusub {
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky .header__nav-primary .ultimenu--hover .ultimenu__flyout, .header.mobile-nav .header__nav-primary .ultimenu--hover .ultimenu__flyout, .header.headroom--not-top.headroom--pinned .header__nav-primary .ultimenu--hover .ultimenu__flyout {
    width: 250px;
  }
}
.header.sticky .header__nav-primary #block-auroragpt-tactical-2 li a, .header.mobile-nav .header__nav-primary #block-auroragpt-tactical-2 li a, .header.headroom--not-top.headroom--pinned .header__nav-primary #block-auroragpt-tactical-2 li a {
  color: #fff;
}
.header.sticky .header__nav-primary #block-auroragpt-tactical-2 li a:hover, .header.mobile-nav .header__nav-primary #block-auroragpt-tactical-2 li a:hover, .header.headroom--not-top.headroom--pinned .header__nav-primary #block-auroragpt-tactical-2 li a:hover {
  color: #6e6e78;
}
.header.sticky #block-auroragpt-tactical-2, .header.mobile-nav #block-auroragpt-tactical-2, .header.headroom--not-top.headroom--pinned #block-auroragpt-tactical-2 {
  display: block;
}
.header.sticky #block-auroragpt-tactical-2 .menu, .header.mobile-nav #block-auroragpt-tactical-2 .menu, .header.headroom--not-top.headroom--pinned #block-auroragpt-tactical-2 .menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
@media screen and (min-width: 768px) {
  .header.sticky #block-auroragpt-tactical-2 .menu, .header.mobile-nav #block-auroragpt-tactical-2 .menu, .header.headroom--not-top.headroom--pinned #block-auroragpt-tactical-2 .menu {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .header.sticky #block-auroragpt-tactical-2 .menu, .header.mobile-nav #block-auroragpt-tactical-2 .menu, .header.headroom--not-top.headroom--pinned #block-auroragpt-tactical-2 .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 2;
    grid-row: span auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.header.sticky #block-auroragpt-tactical-2 .menu li, .header.mobile-nav #block-auroragpt-tactical-2 .menu li, .header.headroom--not-top.headroom--pinned #block-auroragpt-tactical-2 .menu li {
  margin-bottom: 0.5rem;
}
.header.sticky .header__nav-secondary, .header.mobile-nav .header__nav-secondary, .header.headroom--not-top.headroom--pinned .header__nav-secondary {
  position: absolute;
  top: 14px;
  right: 0;
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .header.sticky .header__nav-secondary, .header.mobile-nav .header__nav-secondary, .header.headroom--not-top.headroom--pinned .header__nav-secondary {
    top: 2px;
  }
}
.header.sticky .header__nav-secondary--right, .header.mobile-nav .header__nav-secondary--right, .header.headroom--not-top.headroom--pinned .header__nav-secondary--right {
  position: relative;
}
@media screen and (min-width: 992px) {
  .header.sticky .header__menu-toggle, .header.mobile-nav .header__menu-toggle, .header.headroom--not-top.headroom--pinned .header__menu-toggle {
    display: inline-block;
  }
}
.header.sticky .header__menu-toggle.toggle-active, .header.mobile-nav .header__menu-toggle.toggle-active, .header.headroom--not-top.headroom--pinned .header__menu-toggle.toggle-active {
  color: #009f90;
}
.header.sticky .header__search-toggle, .header.mobile-nav .header__search-toggle, .header.headroom--not-top.headroom--pinned .header__search-toggle {
  display: inline-block;
}
.header.sticky .header__search, .header.mobile-nav .header__search, .header.headroom--not-top.headroom--pinned .header__search {
  position: fixed;
  left: 0;
  right: 0;
  top: 4rem;
  height: 4rem;
  background-color: #b8e2de;
  display: none;
}
.header.sticky .header__search form, .header.mobile-nav .header__search form, .header.headroom--not-top.headroom--pinned .header__search form {
  width: 100%;
  margin-top: 1.1rem;
}
.header.sticky .header__search input[type=text], .header.mobile-nav .header__search input[type=text], .header.headroom--not-top.headroom--pinned .header__search input[type=text] {
  position: relative;
  left: 24px;
  width: 100%;
}
.header.sticky .header__search input[type=text]:focus, .header.mobile-nav .header__search input[type=text]:focus, .header.headroom--not-top.headroom--pinned .header__search input[type=text]:focus {
  width: 100%;
  left: 24px;
}
.header.sticky .header__search input[type=text]::placeholder, .header.mobile-nav .header__search input[type=text]::placeholder, .header.headroom--not-top.headroom--pinned .header__search input[type=text]::placeholder {
  color: #009f90;
}
.header.sticky .header__search input[type=submit], .header.mobile-nav .header__search input[type=submit], .header.headroom--not-top.headroom--pinned .header__search input[type=submit] {
  right: 24px;
  left: inherit;
}
.header.sticky + div, .header.mobile-nav + div, .header.headroom--not-top.headroom--pinned + div {
  margin-top: 4rem;
}
@media screen and (min-width: 992px) {
  .header.sticky + div, .header.mobile-nav + div, .header.headroom--not-top.headroom--pinned + div {
    margin-top: 9.5rem;
  }
}
.header.headroom--unpinned.mobile-nav .header__search {
  position: relative;
}
.header .header__search {
  /* Dropdown Button */
  /* Dropdown button on hover & focus */
  /* The container <div> - needed to position the dropdown content */
  /* Dropdown Content (Hidden by Default) */
  /* Links inside the dropdown */
  /* Change color of dropdown links on hover */
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
}
.header .header__search .search-dropbtn {
  box-sizing: border-box;
  height: 28px;
  padding: 0 1.5rem 0 0.5rem;
  transition: all 0.25s;
  background-color: #b8e2de;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #badef5 0%, #badef5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 1em top calc(50% + 1px), 0 0;
  background-size: 0.75em auto, 100%;
  color: #b8e2de;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  border: 1px solid #009f90;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .header .header__search .search-dropbtn {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__search .search-dropbtn {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__search .search-dropbtn {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.header .header__search .search-dropbtn:before {
  color: #009f90;
  content: "";
  font: 11px/1 "icomoon";
  margin-right: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header .header__search .search-dropbtn {
    padding: 0 3rem 0 0.5rem;
    color: #009f90;
    width: inherit;
  }
}
.header .header__search .search-dropdown {
  position: relative;
  display: inline-block;
}
.header .header__search .search-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 27px;
  background-color: #b8e2de;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.header .header__search .search-dropdown-content a {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  background-color: #fff;
  color: #009f90;
  padding: 0.5rem 1rem !important;
  text-decoration: none;
  display: block;
  border: 1px solid #009f90;
}
@media screen and (min-width: 768px) {
  .header .header__search .search-dropdown-content a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .header .header__search .search-dropdown-content a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__search .search-dropdown-content a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.header .header__search .search-dropdown-content a:hover {
  background-color: #009f90;
  color: #fff;
}
.header .header__search .show {
  display: block;
}

.header {
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
  -o-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.header.headroom--pinned {
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -o-animation-name: slideDown;
  animation-name: slideDown;
}

/*
@-webkit-keyframes slideUp {
    0% {-webkit-transform:translateY(0)}
    100% {-webkit-transform:translateY(-100%)}
}

@-moz-keyframes slideUp {
    0% {-moz-transform:translateY(0)}
    100% {-moz-transform:translateY(-100%)}
}

@-o-keyframes slideUp {
    0% {-o-transform:translateY(0)}
    100% {-o-transform:translateY(-100%)}
}

@keyframes slideUp {
    0% {transform:translateY(0)}
    100% {transform:translateY(-100%)}
}

.header.headroom--unpinned {
    -webkit-animation-name: slideUp;
    -moz-animation-name: slideUp;
    -o-animation-name: slideUp;
    animation-name:slideUp
}
*/
.is-ultimenu-expanded .region-primary-menu {
  top: 30px;
}

.toolbar-fixed .sticky,
.toolbar-fixed .mobile-nav,
.toolbar-fixed .headroom--not-top.headroom--pinned {
  top: 39px;
}
.toolbar-fixed .sticky .header__search,
.toolbar-fixed .mobile-nav .header__search,
.toolbar-fixed .headroom--not-top.headroom--pinned .header__search {
  top: 104px;
}
.toolbar-fixed .button.button--ultimenu {
  top: 51px;
}

.toolbar-horizontal.toolbar-tray-open .sticky,
.toolbar-horizontal.toolbar-tray-open .mobile-nav,
.toolbar-horizontal.toolbar-tray-open .headroom--not-top.headroom--pinned {
  top: 79px;
}
.toolbar-horizontal.toolbar-tray-open .sticky .header__search,
.toolbar-horizontal.toolbar-tray-open .mobile-nav .header__search,
.toolbar-horizontal.toolbar-tray-open .headroom--not-top.headroom--pinned .header__search {
  top: 144px;
}

.ultimenu__item.is-active-trail > a {
  color: #009f90;
}

.ultimenu.ultimenu--hover .ultimenu__link {
  padding-left: 0;
  padding-right: 0;
}

.ultimenu__flyout {
  background: #080812;
}

.ultimenu__region {
  background: none;
}

.ultimenu--htb .ultimenu__flyout,
.ultimenu--htb .ultimenu__region {
  border-radius: 0;
  top: 34px;
}

@media screen and (min-width: 992px) {
  .has-ultimenu .caret {
    display: none;
  }
}
.button--ultimenu:before {
  content: "Menu";
}

.is-flyout-expanded {
  display: block;
}

.button--ultimenu .bars {
  background-color: #b8e2de;
}
.button--ultimenu .bars:before, .button--ultimenu .bars:after {
  background-color: #b8e2de;
}

/**
  * Component: Dropdown
  *  
  * @description
  * -
  */
@media screen and (min-width: 992px) {
  .ultimenu__flyout {
    grid-column: span 6;
    position: absolute;
    z-index: 50;
    grid-column: span 5;
    width: calc(83.3333% + 24px);
  }
}
.ultimenu__flyout .ultimenu__region {
  background-color: #080812;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout .ultimenu__region {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 2;
    grid-row: span auto;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 24px;
  }
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout .ultimenu__region {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 5;
    grid-row: span auto;
    margin-right: 0;
  }
}
.ultimenu__flyout #block-auroragpt-megamenublurbabout,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects,
.ultimenu__flyout #block-auroragpt-megamenublurbresources,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport {
  grid-column: 1/span 2;
  grid-row: 1;
}
.ultimenu__flyout #block-auroragpt-megamenublurbabout h3, .ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-table-heading,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 h3,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-table-heading,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects h3,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-table-heading,
.ultimenu__flyout #block-auroragpt-megamenublurbresources h3,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-table-heading,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity h3,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-table-heading,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport h3,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-table-heading {
  margin-bottom: 0.6rem;
}
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body {
  margin-bottom: 1rem;
}
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text {
  margin-top: 1rem;
}
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text a {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbabout-2 .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbprojects .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbresources .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbcommunity .field--name-field-block-body .small-text a,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text p,
.ultimenu__flyout #block-auroragpt-megamenublurbsupport .field--name-field-block-body .small-text a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.ultimenu__flyout .ultimenusub {
  grid-column: 3/span 2;
}
.ultimenu__flyout .ultimenusub .menu {
  margin-left: 0;
}
.ultimenu__flyout .ultimenusub li a,
.ultimenu__flyout .ultimenusub li span {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  display: block;
}
@media screen and (min-width: 768px) {
  .ultimenu__flyout .ultimenusub li a,
.ultimenu__flyout .ultimenusub li span {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout .ultimenusub li a,
.ultimenu__flyout .ultimenusub li span {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .ultimenu__flyout .ultimenusub li a,
.ultimenu__flyout .ultimenusub li span {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.ultimenu__flyout .ultimenusub li a {
  color: #b8e2de;
}
.ultimenu__flyout .ultimenusub li a:hover {
  color: #6e6e78;
}
.ultimenu__flyout .ultimenusub a.external-link:after {
  content: "";
  font-size: 0.7rem;
  padding-left: 0.25rem;
}
.ultimenu__flyout .ultimenusub > .menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
  row-gap: 1rem;
  grid-row-gap: 1rem;
}
.ultimenu__flyout .ultimenusub > .menu > .menu-item--expanded {
  margin-bottom: 0.5rem;
}
.ultimenu__flyout .ultimenusub > .menu > .menu-item--expanded ul.menu {
  padding-top: 0.75rem;
  margin-bottom: 1rem;
}
.ultimenu__flyout .ultimenusub > .menu > .menu-item--expanded li {
  border-top: 1px solid #009f90;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
  width: 100% a;
  width-color: #f2f9f8;
  width-width: 100%;
  width-display: inline-block;
}
.ultimenu__flyout .ultimenusub > .menu > .menu-item--expanded li:last-child {
  border-bottom: 1px solid #009f90;
}
@media only screen and (max-width: 991px) {
  .ultimenu__flyout .region-ultimenu-main-support-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 2;
    grid-row: span auto;
  }
}
.ultimenu__flyout .ultimenusub--main-support-center {
  grid-column: span 1;
}
.ultimenu__flyout .ultimenusub--main-support-center > .menu {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 1;
  grid-row: span auto;
}
.ultimenu__flyout #block-auroragpt-guides-3 h2 {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-top: 0.25rem !important;
}
@media screen and (min-width: 768px) {
  .ultimenu__flyout #block-auroragpt-guides-3 h2 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout #block-auroragpt-guides-3 h2 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .ultimenu__flyout #block-auroragpt-guides-3 h2 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.ultimenu__flyout #block-auroragpt-guides-3 .menu {
  margin-left: 0;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.ultimenu__flyout #block-auroragpt-guides-3 li a,
.ultimenu__flyout #block-auroragpt-guides-3 li span {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  display: block;
}
@media screen and (min-width: 768px) {
  .ultimenu__flyout #block-auroragpt-guides-3 li a,
.ultimenu__flyout #block-auroragpt-guides-3 li span {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout #block-auroragpt-guides-3 li a,
.ultimenu__flyout #block-auroragpt-guides-3 li span {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .ultimenu__flyout #block-auroragpt-guides-3 li a,
.ultimenu__flyout #block-auroragpt-guides-3 li span {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.ultimenu__flyout #block-auroragpt-guides-3 li a:hover {
  color: #6e6e78;
}
.ultimenu__flyout #block-auroragpt-guides-3 li {
  border-top: 1px solid #009f90;
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
  width: 100% a;
  width-color: #f2f9f8;
  width-width: 100%;
  width-display: inline-block;
}
.ultimenu__flyout #block-auroragpt-guides-3 li:last-child {
  border-bottom: 1px solid #009f90;
}
.ultimenu__flyout .dropdown__featured {
  grid-column: span 1;
  margin-bottom: 1rem;
  padding-top: 0.25rem;
}
.ultimenu__flyout .dropdown__featured-title {
  margin-bottom: 1rem;
}
.ultimenu__flyout .dropdown__featured-title h3, .ultimenu__flyout .dropdown__featured-title .field--name-field-table-heading {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .ultimenu__flyout .dropdown__featured-title h3, .ultimenu__flyout .dropdown__featured-title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .ultimenu__flyout .dropdown__featured-title h3, .ultimenu__flyout .dropdown__featured-title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .ultimenu__flyout .dropdown__featured-title h3, .ultimenu__flyout .dropdown__featured-title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.ultimenu__flyout .dropdown__featured-image {
  position: relative;
  margin-bottom: 0.5rem;
}
.ultimenu__flyout .dropdown__featured-image:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.ultimenu__flyout .dropdown__featured-image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.ultimenu__flyout .dropdown__featured-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.ultimenu__flyout .dropdown__featured a {
  color: #f2f9f8;
}
.ultimenu__flyout .dropdown__featured a:hover {
  color: #6e6e78;
}

/**
  * Component: Machine Status, Large
  *  
  * @description
  * -
  */
.status-lg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.status-lg .status-lg__head {
  grid-column: span 6;
}
.status-lg .status-lg__head > h2::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 1rem;
  display: block;
}
.status-lg .status-lg__head h2, .status-lg .status-lg__head p {
  display: inline;
}
.status-lg .status-lg__head p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #6e6e78;
}
@media screen and (min-width: 768px) {
  .status-lg .status-lg__head p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-lg .status-lg__head p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-lg .status-lg__head p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.status-lg .status-lg__feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 4rem;
  position: relative;
}
.status-lg .status-lg__block {
  grid-column: span 6;
  margin-bottom: 2rem;
  padding-left: 2rem;
  grid-template-rows: 2.5rem minmax(5rem, auto) 1fr;
}
@media screen and (min-width: 768px) {
  .status-lg .status-lg__block {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 2;
    grid-row: span auto;
  }
}
.status-lg .status-lg__block-title {
  grid-column: 1/-1;
  margin-top: -0.5rem;
}
.status-lg .status-lg__block-specs {
  grid-column: 1/-1;
  text-transform: uppercase;
  min-height: 8rem;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .status-lg .status-lg__block-specs {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-lg .status-lg__block-specs {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-lg .status-lg__block-specs {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.status-lg .status-lg__block-specs li span {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  min-width: 5.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .status-lg .status-lg__block-specs li span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-lg .status-lg__block-specs li span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-lg .status-lg__block-specs li span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.status-lg .status-lg__block-alert {
  grid-column: 1/-1;
  margin-top: -6px;
}
.status-lg .status-lg__block-alert p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  text-transform: none;
  color: #6e6e78;
}
@media screen and (min-width: 768px) {
  .status-lg .status-lg__block-alert p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-lg .status-lg__block-alert p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-lg .status-lg__block-alert p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.status-lg .status-lg__block-alert p::before {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin-left: -20px;
  display: inline-block;
  margin-right: 0.5rem;
  background-color: #ee6254;
}
.status-lg .status-lg__block-pie {
  grid-column: 1/-1;
  width: 100%;
  position: relative;
}
.status-lg .status-lg__block-piehole {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
}
.status-lg .status-lg__block-piehole::after {
  content: "";
  height: 25%;
  width: 25%;
  border-radius: 50%;
  display: block;
  background-color: #edf1f5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.status-lg [data-status=active] {
  border-left: 1px solid #d8dce1;
  color: #007b70;
}
.status-lg [data-status=active] .status-lg__block-title {
  margin-bottom: 1rem;
  color: #080812;
}
.status-lg [data-status=down], .status-lg [data-status=unknown] {
  border-left: 1px solid #d8dce1;
  color: #6e6e78;
}
.status-lg .status-lg__more {
  grid-column: 1/-1;
  position: absolute;
  bottom: -1.75rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .status-lg .status-lg__more {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-lg .status-lg__more {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-lg .status-lg__more {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.status-lg .status-lg__more:before {
  font-size: 0.7rem;
  color: #118acb;
  content: "";
  margin-right: 1rem;
}

/**
  * Component: Machine Status, Small
  *  
  * @description
  * -
  */
.status-sm {
  grid-column: span 6;
}
.status-sm h2 {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .status-sm h2 {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-sm h2 {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-sm h2 {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.status-sm ul, .status-sm li {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .status-sm ul, .status-sm li {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-sm ul, .status-sm li {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-sm ul, .status-sm li {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.status-sm h2, .status-sm ul, .status-sm li {
  display: inline;
  text-transform: uppercase;
  margin-right: 1rem;
}
.status-sm li:before {
  display: none;
}
.status-sm [data-status=unknown] {
  color: #0061af !important;
}
.status-sm [data-status=active]::after,
.status-sm [data-status=down]::after,
.status-sm [data-status=unknown]::after {
  content: "";
  height: 11px;
  width: 11px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 1px;
  left: 3px;
}
.status-sm [data-status=active]::after {
  background-color: #009f90;
}
.status-sm [data-status=down]::after {
  background-color: #ee6254;
}
.status-sm [data-status=unknown]::after {
  background-color: #1d1651;
}

/**
  * Component: Machine Status, Details
  *  
  * @description
  * -
  */
.status-details {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 2rem;
}
.status-details .status-details__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 4rem;
  border-bottom: 1px solid #d8dce1;
}
.status-details .status-details__row-head {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 1rem;
}
.status-details .status-details__row-title {
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(6, 40px);
}
@media screen and (min-width: 1200px) {
  .status-details .status-details__row-title {
    grid-template-columns: repeat(6, 60px);
  }
}
.status-details .status-details__row-machine {
  grid-column: 2;
  grid-row: 1;
}
.status-details .status-details__row-pie {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0.5rem;
}
@media screen and (min-width: 1200px) {
  .status-details .status-details__row-pie {
    padding-top: 0.25rem;
  }
}
.status-details .status-details__row-chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 12;
  grid-row: span auto;
}
.status-details .status-details__row-chart:first-child {
  margin-bottom: 1rem;
}
.status-details .status-details__row-body {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 2rem;
}
.status-details .status-details__row-info {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .status-details .status-details__row-info {
    grid-column: span 4;
  }
}
@media screen and (min-width: 992px) {
  .status-details .status-details__row-info {
    grid-column: span 3;
  }
}
.status-details .status-details__row-bar {
  padding-top: 0.25rem;
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .status-details .status-details__row-bar {
    grid-column: span 8;
  }
}
@media screen and (min-width: 992px) {
  .status-details .status-details__row-bar {
    grid-column: span 9;
  }
}
.status-details .status-details__row-bar p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  text-transform: none;
  color: #6e6e78;
}
@media screen and (min-width: 768px) {
  .status-details .status-details__row-bar p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-details .status-details__row-bar p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-details .status-details__row-bar p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.status-details .details__title {
  padding-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.status-details .details__specs {
  text-transform: uppercase;
  min-height: 5.25rem;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  color: #007b70;
}
@media screen and (min-width: 768px) {
  .status-details .details__specs {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-details .details__specs {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-details .details__specs {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.status-details .q-chart .details__specs {
  color: #0061af;
}
.status-details .details__specs li span {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  min-width: 5.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .status-details .details__specs li span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .status-details .details__specs li span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .status-details .details__specs li span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

/**
  * Component: Tiles
  *  
  * @description
  * -
  */
.tiles,
.field--name-field-top-content,
.view-guides .view-content,
.field--name-field-content-paragraphs {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 12;
  grid-row: span auto;
}
.tiles .paragraph--view-mode--default,
.tiles .paragraph--width--one-column,
.tiles [class$=narrow],
.field--name-field-top-content .paragraph--view-mode--default,
.field--name-field-top-content .paragraph--width--one-column,
.field--name-field-top-content [class$=narrow],
.view-guides .view-content .paragraph--view-mode--default,
.view-guides .view-content .paragraph--width--one-column,
.view-guides .view-content [class$=narrow],
.field--name-field-content-paragraphs .paragraph--view-mode--default,
.field--name-field-content-paragraphs .paragraph--width--one-column,
.field--name-field-content-paragraphs [class$=narrow] {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--view-mode--default,
.tiles .paragraph--width--one-column,
.tiles [class$=narrow],
.field--name-field-top-content .paragraph--view-mode--default,
.field--name-field-top-content .paragraph--width--one-column,
.field--name-field-top-content [class$=narrow],
.view-guides .view-content .paragraph--view-mode--default,
.view-guides .view-content .paragraph--width--one-column,
.view-guides .view-content [class$=narrow],
.field--name-field-content-paragraphs .paragraph--view-mode--default,
.field--name-field-content-paragraphs .paragraph--width--one-column,
.field--name-field-content-paragraphs [class$=narrow] {
    grid-column: span 4;
  }
}
.tiles .paragraph--view-mode--default .tiles__no-link, .tiles .paragraph--view-mode--default .tiles__block-link,
.tiles .paragraph--width--one-column .tiles__no-link,
.tiles .paragraph--width--one-column .tiles__block-link,
.tiles [class$=narrow] .tiles__no-link,
.tiles [class$=narrow] .tiles__block-link,
.field--name-field-top-content .paragraph--view-mode--default .tiles__no-link,
.field--name-field-top-content .paragraph--view-mode--default .tiles__block-link,
.field--name-field-top-content .paragraph--width--one-column .tiles__no-link,
.field--name-field-top-content .paragraph--width--one-column .tiles__block-link,
.field--name-field-top-content [class$=narrow] .tiles__no-link,
.field--name-field-top-content [class$=narrow] .tiles__block-link,
.view-guides .view-content .paragraph--view-mode--default .tiles__no-link,
.view-guides .view-content .paragraph--view-mode--default .tiles__block-link,
.view-guides .view-content .paragraph--width--one-column .tiles__no-link,
.view-guides .view-content .paragraph--width--one-column .tiles__block-link,
.view-guides .view-content [class$=narrow] .tiles__no-link,
.view-guides .view-content [class$=narrow] .tiles__block-link,
.field--name-field-content-paragraphs .paragraph--view-mode--default .tiles__no-link,
.field--name-field-content-paragraphs .paragraph--view-mode--default .tiles__block-link,
.field--name-field-content-paragraphs .paragraph--width--one-column .tiles__no-link,
.field--name-field-content-paragraphs .paragraph--width--one-column .tiles__block-link,
.field--name-field-content-paragraphs [class$=narrow] .tiles__no-link,
.field--name-field-content-paragraphs [class$=narrow] .tiles__block-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
}
.tiles .paragraph--view-mode--default .tiles__meta,
.tiles .paragraph--width--one-column .tiles__meta,
.tiles [class$=narrow] .tiles__meta,
.field--name-field-top-content .paragraph--view-mode--default .tiles__meta,
.field--name-field-top-content .paragraph--width--one-column .tiles__meta,
.field--name-field-top-content [class$=narrow] .tiles__meta,
.view-guides .view-content .paragraph--view-mode--default .tiles__meta,
.view-guides .view-content .paragraph--width--one-column .tiles__meta,
.view-guides .view-content [class$=narrow] .tiles__meta,
.field--name-field-content-paragraphs .paragraph--view-mode--default .tiles__meta,
.field--name-field-content-paragraphs .paragraph--width--one-column .tiles__meta,
.field--name-field-content-paragraphs [class$=narrow] .tiles__meta {
  margin-bottom: 0.5rem;
}
.tiles .paragraph--width--two-columns,
.field--name-field-top-content .paragraph--width--two-columns,
.view-guides .view-content .paragraph--width--two-columns,
.field--name-field-content-paragraphs .paragraph--width--two-columns {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--two-columns,
.field--name-field-top-content .paragraph--width--two-columns,
.view-guides .view-content .paragraph--width--two-columns,
.field--name-field-content-paragraphs .paragraph--width--two-columns {
    grid-column: span 8;
  }
}
.tiles .paragraph--width--two-columns .tiles__title h3, .tiles .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title h3,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--two-columns .tiles__title h3,
.view-guides .view-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--two-columns .tiles__title h3, .tiles .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title h3,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--two-columns .tiles__title h3,
.view-guides .view-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--width--two-columns .tiles__title h3, .tiles .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title h3,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--two-columns .tiles__title h3,
.view-guides .view-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--width--two-columns .tiles__title h3, .tiles .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title h3,
.field--name-field-top-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--two-columns .tiles__title h3,
.view-guides .view-content .paragraph--width--two-columns .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--two-columns .tiles__title .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .paragraph--width--half-width,
.field--name-field-top-content .paragraph--width--half-width,
.view-guides .view-content .paragraph--width--half-width,
.field--name-field-content-paragraphs .paragraph--width--half-width {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--half-width,
.field--name-field-top-content .paragraph--width--half-width,
.view-guides .view-content .paragraph--width--half-width,
.field--name-field-content-paragraphs .paragraph--width--half-width {
    grid-column: span 6;
  }
}
.tiles .paragraph--width--half-width .tiles__title h3, .tiles .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--half-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--half-width .tiles__title h3,
.view-guides .view-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--half-width .tiles__title h3, .tiles .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--half-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--half-width .tiles__title h3,
.view-guides .view-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--width--half-width .tiles__title h3, .tiles .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--half-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--half-width .tiles__title h3,
.view-guides .view-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--width--half-width .tiles__title h3, .tiles .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--half-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--half-width .tiles__title h3,
.view-guides .view-content .paragraph--width--half-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--half-width .tiles__title .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .paragraph--width--full-width,
.field--name-field-top-content .paragraph--width--full-width,
.view-guides .view-content .paragraph--width--full-width,
.field--name-field-content-paragraphs .paragraph--width--full-width {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--full-width,
.field--name-field-top-content .paragraph--width--full-width,
.view-guides .view-content .paragraph--width--full-width,
.field--name-field-content-paragraphs .paragraph--width--full-width {
    grid-column: span 12;
  }
}
.tiles .paragraph--width--full-width .tiles__title h3, .tiles .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--full-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--full-width .tiles__title h3,
.view-guides .view-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--full-width .tiles__title h3, .tiles .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--full-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--full-width .tiles__title h3,
.view-guides .view-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--width--full-width .tiles__title h3, .tiles .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--full-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--full-width .tiles__title h3,
.view-guides .view-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--width--full-width .tiles__title h3, .tiles .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--width--full-width .tiles__title h3,
.field--name-field-top-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.view-guides .view-content .paragraph--width--full-width .tiles__title h3,
.view-guides .view-content .paragraph--width--full-width .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title h3,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__title .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .paragraph--width--quarter-width,
.field--name-field-top-content .paragraph--width--quarter-width,
.view-guides .view-content .paragraph--width--quarter-width,
.field--name-field-content-paragraphs .paragraph--width--quarter-width {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--quarter-width,
.field--name-field-top-content .paragraph--width--quarter-width,
.view-guides .view-content .paragraph--width--quarter-width,
.field--name-field-content-paragraphs .paragraph--width--quarter-width {
    grid-column: span 6;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--width--quarter-width,
.field--name-field-top-content .paragraph--width--quarter-width,
.view-guides .view-content .paragraph--width--quarter-width,
.field--name-field-content-paragraphs .paragraph--width--quarter-width {
    grid-column: span 3;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--width--quarter-width,
.field--name-field-top-content .paragraph--width--quarter-width,
.view-guides .view-content .paragraph--width--quarter-width,
.field--name-field-content-paragraphs .paragraph--width--quarter-width {
    grid-column: span 3;
  }
}
.tiles .paragraph--width--mini,
.field--name-field-top-content .paragraph--width--mini,
.view-guides .view-content .paragraph--width--mini,
.field--name-field-content-paragraphs .paragraph--width--mini {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--width--mini,
.field--name-field-top-content .paragraph--width--mini,
.view-guides .view-content .paragraph--width--mini,
.field--name-field-content-paragraphs .paragraph--width--mini {
    grid-column: span 4;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--width--mini,
.field--name-field-top-content .paragraph--width--mini,
.view-guides .view-content .paragraph--width--mini,
.field--name-field-content-paragraphs .paragraph--width--mini {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--width--mini,
.field--name-field-top-content .paragraph--width--mini,
.view-guides .view-content .paragraph--width--mini,
.field--name-field-content-paragraphs .paragraph--width--mini {
    grid-column: span 2;
  }
}
.tiles .paragraph--type--content-teaser .tiles__description,
.tiles .paragraph--type--content-teaser-with-video .tiles__description,
.field--name-field-top-content .paragraph--type--content-teaser .tiles__description,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .tiles__description,
.view-guides .view-content .paragraph--type--content-teaser .tiles__description,
.view-guides .view-content .paragraph--type--content-teaser-with-video .tiles__description,
.field--name-field-content-paragraphs .paragraph--type--content-teaser .tiles__description,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .tiles__description {
  display: none;
}
.tiles .paragraph--type--content-teaser.show-description .tiles__description,
.tiles .paragraph--type--content-teaser-with-video.show-description .tiles__description,
.field--name-field-top-content .paragraph--type--content-teaser.show-description .tiles__description,
.field--name-field-top-content .paragraph--type--content-teaser-with-video.show-description .tiles__description,
.view-guides .view-content .paragraph--type--content-teaser.show-description .tiles__description,
.view-guides .view-content .paragraph--type--content-teaser-with-video.show-description .tiles__description,
.field--name-field-content-paragraphs .paragraph--type--content-teaser.show-description .tiles__description,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video.show-description .tiles__description {
  display: block;
}
.tiles .paragraph--type--content-teaser-with-video .media--type-remote-video,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .media--type-remote-video,
.view-guides .view-content .paragraph--type--content-teaser-with-video .media--type-remote-video,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .media--type-remote-video {
  grid-column: 1/-1;
  grid-row: 2;
}
.tiles .paragraph--type--content-teaser-with-video .field--name-field-media-oembed-video,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-field-media-oembed-video,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-field-media-oembed-video,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-field-media-oembed-video {
  margin-bottom: 1.4rem;
}
.tiles .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-name,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-name {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-name,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-name {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-name,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-name {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-name,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-name,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-name {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .paragraph--type--content-teaser-with-video .field--name-field-media-caption,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-field-media-caption {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.tiles .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-field-media-caption p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .tiles .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-field-media-caption p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-field-media-caption p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-top-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.view-guides .view-content .paragraph--type--content-teaser-with-video .field--name-field-media-caption p,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video .field--name-field-media-caption p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .paragraph--type--content-teaser-with-video.hide-video-description .field--name-name,
.field--name-field-top-content .paragraph--type--content-teaser-with-video.hide-video-description .field--name-name,
.view-guides .view-content .paragraph--type--content-teaser-with-video.hide-video-description .field--name-name,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video.hide-video-description .field--name-name {
  margin-bottom: 2rem;
}
.tiles .paragraph--type--content-teaser-with-video.hide-video-description .field--name-field-media-caption,
.field--name-field-top-content .paragraph--type--content-teaser-with-video.hide-video-description .field--name-field-media-caption,
.view-guides .view-content .paragraph--type--content-teaser-with-video.hide-video-description .field--name-field-media-caption,
.field--name-field-content-paragraphs .paragraph--type--content-teaser-with-video.hide-video-description .field--name-field-media-caption {
  display: none;
}
.tiles .paragraph--type--testbed-system ul,
.field--name-field-top-content .paragraph--type--testbed-system ul,
.view-guides .view-content .paragraph--type--testbed-system ul,
.field--name-field-content-paragraphs .paragraph--type--testbed-system ul {
  margin-top: 2rem;
  border-bottom: 1px solid #0061af;
}
.tiles .paragraph--type--testbed-system ul li,
.field--name-field-top-content .paragraph--type--testbed-system ul li,
.view-guides .view-content .paragraph--type--testbed-system ul li,
.field--name-field-content-paragraphs .paragraph--type--testbed-system ul li {
  border-top: 1px solid #0061af;
  padding: 0.5rem 0;
}
.tiles > *,
.field--name-field-top-content > *,
.view-guides .view-content > *,
.field--name-field-content-paragraphs > * {
  margin-bottom: 4rem;
  position: relative;
}
.tiles > *::after,
.field--name-field-top-content > *::after,
.view-guides .view-content > *::after,
.field--name-field-content-paragraphs > *::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #009f90;
}
.tiles > .paragraph--type--asset-download:after,
.tiles > .paragraph--type--list:after,
.field--name-field-top-content > .paragraph--type--asset-download:after,
.field--name-field-top-content > .paragraph--type--list:after,
.view-guides .view-content > .paragraph--type--asset-download:after,
.view-guides .view-content > .paragraph--type--list:after,
.field--name-field-content-paragraphs > .paragraph--type--asset-download:after,
.field--name-field-content-paragraphs > .paragraph--type--list:after {
  display: none;
}
.tiles .tiles__title,
.field--name-field-top-content .tiles__title,
.view-guides .view-content .tiles__title,
.field--name-field-content-paragraphs .tiles__title {
  grid-column: 1/-1;
  grid-row: 3;
  margin-bottom: 2rem;
}
.tiles .tiles__title h3, .tiles .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .tiles__title h3,
.field--name-field-top-content .tiles__title .field--name-field-table-heading,
.view-guides .view-content .tiles__title h3,
.view-guides .view-content .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .tiles__title h3,
.field--name-field-content-paragraphs .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles .tiles__title h3, .tiles .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .tiles__title h3,
.field--name-field-top-content .tiles__title .field--name-field-table-heading,
.view-guides .view-content .tiles__title h3,
.view-guides .view-content .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .tiles__title h3,
.field--name-field-content-paragraphs .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .tiles__title h3, .tiles .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .tiles__title h3,
.field--name-field-top-content .tiles__title .field--name-field-table-heading,
.view-guides .view-content .tiles__title h3,
.view-guides .view-content .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .tiles__title h3,
.field--name-field-content-paragraphs .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .tiles__title h3, .tiles .tiles__title .field--name-field-table-heading,
.field--name-field-top-content .tiles__title h3,
.field--name-field-top-content .tiles__title .field--name-field-table-heading,
.view-guides .view-content .tiles__title h3,
.view-guides .view-content .tiles__title .field--name-field-table-heading,
.field--name-field-content-paragraphs .tiles__title h3,
.field--name-field-content-paragraphs .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .tiles__meta,
.field--name-field-top-content .tiles__meta,
.view-guides .view-content .tiles__meta,
.field--name-field-content-paragraphs .tiles__meta {
  grid-column: 1/-1;
  grid-row: 1;
}
.tiles .tiles__meta::before,
.field--name-field-top-content .tiles__meta::before,
.view-guides .view-content .tiles__meta::before,
.field--name-field-content-paragraphs .tiles__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: none;
}
.tiles .tiles__block-link.external-link .tiles__meta p:after,
.tiles .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.field--name-field-top-content .tiles__block-link.external-link .tiles__meta p:after,
.field--name-field-top-content .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.view-guides .view-content .tiles__block-link.external-link .tiles__meta p:after,
.view-guides .view-content .tiles__block-link.external-link .field--name-field-list-eyebrow:after,
.field--name-field-content-paragraphs .tiles__block-link.external-link .tiles__meta p:after,
.field--name-field-content-paragraphs .tiles__block-link.external-link .field--name-field-list-eyebrow:after {
  content: "";
  font-size: 0.55rem;
  padding-left: 0.25rem;
}
.tiles .tiles__description,
.tiles .tiles__post,
.field--name-field-top-content .tiles__description,
.field--name-field-top-content .tiles__post,
.view-guides .view-content .tiles__description,
.view-guides .view-content .tiles__post,
.field--name-field-content-paragraphs .tiles__description,
.field--name-field-content-paragraphs .tiles__post {
  grid-column: 1/-1;
  grid-row: 4;
  margin-bottom: 2rem;
}
.tiles .tiles__description p,
.tiles .tiles__post p,
.field--name-field-top-content .tiles__description p,
.field--name-field-top-content .tiles__post p,
.view-guides .view-content .tiles__description p,
.view-guides .view-content .tiles__post p,
.field--name-field-content-paragraphs .tiles__description p,
.field--name-field-content-paragraphs .tiles__post p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles .tiles__description p,
.tiles .tiles__post p,
.field--name-field-top-content .tiles__description p,
.field--name-field-top-content .tiles__post p,
.view-guides .view-content .tiles__description p,
.view-guides .view-content .tiles__post p,
.field--name-field-content-paragraphs .tiles__description p,
.field--name-field-content-paragraphs .tiles__post p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles .tiles__description p,
.tiles .tiles__post p,
.field--name-field-top-content .tiles__description p,
.field--name-field-top-content .tiles__post p,
.view-guides .view-content .tiles__description p,
.view-guides .view-content .tiles__post p,
.field--name-field-content-paragraphs .tiles__description p,
.field--name-field-content-paragraphs .tiles__post p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles .tiles__description p,
.tiles .tiles__post p,
.field--name-field-top-content .tiles__description p,
.field--name-field-top-content .tiles__post p,
.view-guides .view-content .tiles__description p,
.view-guides .view-content .tiles__post p,
.field--name-field-content-paragraphs .tiles__description p,
.field--name-field-content-paragraphs .tiles__post p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.tiles .tiles__post,
.field--name-field-top-content .tiles__post,
.view-guides .view-content .tiles__post,
.field--name-field-content-paragraphs .tiles__post {
  margin-top: -0.85rem;
}
.tiles .tiles__image, .tiles .tiles__feed-list,
.field--name-field-top-content .tiles__image,
.field--name-field-top-content .tiles__feed-list,
.view-guides .view-content .tiles__image,
.view-guides .view-content .tiles__feed-list,
.field--name-field-content-paragraphs .tiles__image,
.field--name-field-content-paragraphs .tiles__feed-list {
  grid-column: 1/-1;
  grid-row: 2;
  z-index: 5;
  margin-bottom: 1rem;
}
.tiles .tiles__image,
.field--name-field-top-content .tiles__image,
.view-guides .view-content .tiles__image,
.field--name-field-content-paragraphs .tiles__image {
  position: relative;
}
.tiles .tiles__image:before,
.field--name-field-top-content .tiles__image:before,
.view-guides .view-content .tiles__image:before,
.field--name-field-content-paragraphs .tiles__image:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.tiles .tiles__image > div,
.field--name-field-top-content .tiles__image > div,
.view-guides .view-content .tiles__image > div,
.field--name-field-content-paragraphs .tiles__image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.tiles .tiles__image img,
.field--name-field-top-content .tiles__image img,
.view-guides .view-content .tiles__image img,
.field--name-field-content-paragraphs .tiles__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .tiles .paragraph--width--full-width .tiles__image,
.field--name-field-top-content .paragraph--width--full-width .tiles__image,
.view-guides .view-content .paragraph--width--full-width .tiles__image,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__image {
    position: relative;
  }
  .tiles .paragraph--width--full-width .tiles__image:before,
.field--name-field-top-content .paragraph--width--full-width .tiles__image:before,
.view-guides .view-content .paragraph--width--full-width .tiles__image:before,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__image:before {
    display: block;
    content: "";
    padding-top: 43.3201581028%;
    width: 100%;
  }
  .tiles .paragraph--width--full-width .tiles__image > div,
.field--name-field-top-content .paragraph--width--full-width .tiles__image > div,
.view-guides .view-content .paragraph--width--full-width .tiles__image > div,
.field--name-field-content-paragraphs .paragraph--width--full-width .tiles__image > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
}
.tiles .tiles__twitter-card,
.field--name-field-top-content .tiles__twitter-card,
.view-guides .view-content .tiles__twitter-card,
.field--name-field-content-paragraphs .tiles__twitter-card {
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
}
.tiles [class$=more],
.tiles .field--name-field-list-more-link,
.field--name-field-top-content [class$=more],
.field--name-field-top-content .field--name-field-list-more-link,
.view-guides .view-content [class$=more],
.view-guides .view-content .field--name-field-list-more-link,
.field--name-field-content-paragraphs [class$=more],
.field--name-field-content-paragraphs .field--name-field-list-more-link {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles [class$=more],
.tiles .field--name-field-list-more-link,
.field--name-field-top-content [class$=more],
.field--name-field-top-content .field--name-field-list-more-link,
.view-guides .view-content [class$=more],
.view-guides .view-content .field--name-field-list-more-link,
.field--name-field-content-paragraphs [class$=more],
.field--name-field-content-paragraphs .field--name-field-list-more-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles [class$=more],
.tiles .field--name-field-list-more-link,
.field--name-field-top-content [class$=more],
.field--name-field-top-content .field--name-field-list-more-link,
.view-guides .view-content [class$=more],
.view-guides .view-content .field--name-field-list-more-link,
.field--name-field-content-paragraphs [class$=more],
.field--name-field-content-paragraphs .field--name-field-list-more-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles [class$=more],
.tiles .field--name-field-list-more-link,
.field--name-field-top-content [class$=more],
.field--name-field-top-content .field--name-field-list-more-link,
.view-guides .view-content [class$=more],
.view-guides .view-content .field--name-field-list-more-link,
.field--name-field-content-paragraphs [class$=more],
.field--name-field-content-paragraphs .field--name-field-list-more-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

/**
  * Component: Banner Tile, Narrow
  *  
  * @description
  * -
  */
.tiles__banner--narrow .tiles__title,
.paragraph--type--content-teaser-banner .tiles__title,
.paragraph--type--vertical-banner .tiles__title {
  grid-row: 3;
  margin-bottom: 1.15rem;
}
.tiles__banner--narrow .tiles__title,
.tiles__banner--narrow .tiles__description,
.paragraph--type--content-teaser-banner .tiles__title,
.paragraph--type--content-teaser-banner .tiles__description,
.paragraph--type--vertical-banner .tiles__title,
.paragraph--type--vertical-banner .tiles__description {
  padding-right: 2rem;
  padding-left: 2rem;
}
.tiles__banner--narrow .tiles__meta,
.paragraph--type--content-teaser-banner .tiles__meta,
.paragraph--type--vertical-banner .tiles__meta {
  padding-bottom: 0.4rem;
  margin-bottom: 0 !important;
}
.tiles__banner--narrow .tiles__block-link.external-link .tiles__meta .field--name-field-list-eyebrow:after,
.paragraph--type--content-teaser-banner .tiles__block-link.external-link .tiles__meta .field--name-field-list-eyebrow:after,
.paragraph--type--vertical-banner .tiles__block-link.external-link .tiles__meta .field--name-field-list-eyebrow:after {
  content: "";
  font-size: 0.55rem;
  padding-left: 0.25rem;
}
.tiles__banner--narrow .tiles__description,
.paragraph--type--content-teaser-banner .tiles__description,
.paragraph--type--vertical-banner .tiles__description {
  margin-bottom: 2rem;
  grid-row: 4;
}
.tiles__banner--narrow::after,
.paragraph--type--content-teaser-banner::after,
.paragraph--type--vertical-banner::after {
  background-color: transparent;
}
.tiles__banner--narrow .tiles__image,
.paragraph--type--content-teaser-banner .tiles__image,
.paragraph--type--vertical-banner .tiles__image {
  grid-row: 2;
}
.tiles__banner--narrow .tiles__image-screen,
.paragraph--type--content-teaser-banner .tiles__image-screen,
.paragraph--type--vertical-banner .tiles__image-screen {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 66.666%;
  mix-blend-mode: multiply;
  z-index: 20;
}
.tiles__banner--narrow .field--name-field-list-heading,
.paragraph--type--content-teaser-banner .field--name-field-list-heading,
.paragraph--type--vertical-banner .field--name-field-list-heading {
  margin-top: 6px;
}

.paragraph--background--default {
  background-color: #1d1651;
}
.paragraph--background--default a {
  color: #fff !important;
}
.paragraph--background--default a:hover {
  color: #118acb !important;
}
.paragraph--background--default .tiles__image-screen {
  background-color: #badef5;
}

.paragraph--background--light-blue {
  background-color: #0061af;
}
.paragraph--background--light-blue a {
  color: #fff;
}
.paragraph--background--light-blue a:hover {
  color: #1d1651 !important;
}
.paragraph--background--light-blue .tiles__image-screen {
  background-color: #badef5;
}

.paragraph--background--light-green {
  background-color: #009f90;
}
.paragraph--background--light-green a {
  color: #fff;
}
.paragraph--background--light-green a:hover {
  color: #003a41 !important;
}
.paragraph--background--light-green .tiles__image-screen {
  background-color: #b8e2de;
}

.paragraph--background--light-purple {
  background-color: #d23c51;
}
.paragraph--background--light-purple a {
  color: #fff;
}
.paragraph--background--light-purple a:hover {
  color: #640033 !important;
}
.paragraph--background--light-purple .tiles__image-screen {
  background-color: #fcd9d5;
}

.paragraph--background--black {
  background-color: #080812;
}
.paragraph--background--black a {
  color: #fff !important;
}
.paragraph--background--black a:hover {
  color: #6e6e78 !important;
}
.paragraph--background--black .tiles__image-screen {
  background-color: #6e6e78;
}

/**
  * Component: Banner
  *  
  * @description
  * -
  */
.banner {
  grid-column: 1/-1;
}
.banner + .banner {
  margin-top: 1rem;
}
.banner .banner__block-link {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  height: 100%;
}
.banner .banner__block-link:hover .banner__title h3, .banner .banner__block-link:hover .banner__title .field--name-field-table-heading,
.banner .banner__block-link:hover .banner__description .field--name-field-banner-intro {
  color: #118acb;
}
.banner .banner__info {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  padding-right: 2rem;
  padding-left: 2rem;
  background-color: #1d1651;
}
@media screen and (min-width: 768px) {
  .banner .banner__info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 4;
    grid-row: span auto;
  }
}
.banner .banner__title {
  grid-column: span 6;
  grid-row: 2;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .banner .banner__title {
    grid-column: span 3;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .banner .banner__title {
    grid-column: span 2;
  }
}
.banner .banner__title h3, .banner .banner__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .banner .banner__title h3, .banner .banner__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .banner .banner__title h3, .banner .banner__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .banner .banner__title h3, .banner .banner__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.banner .banner__description {
  grid-column: span 6;
  grid-row: 3;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .banner .banner__description {
    grid-column: span 3;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .banner .banner__description {
    grid-column: span 2;
  }
}
.banner .banner__description .field--name-field-banner-intro {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .banner .banner__description .field--name-field-banner-intro {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .banner .banner__description .field--name-field-banner-intro {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .banner .banner__description .field--name-field-banner-intro {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.banner .banner__meta {
  grid-column: span 2;
  grid-row: 1;
  margin-top: -0.25rem;
}
.banner .banner__meta .field--name-field-list-eyebrow {
  color: #b8e2de !important;
}
.banner .banner__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: block;
}
.banner .banner__image {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .banner .banner__image {
    grid-column: span 2;
    background-color: #009f90;
    margin-left: -2px;
  }
}
.banner .test-test {
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .banner .test-test {
    max-width: 66.6666%;
  }
}
.banner .banner__image-aspect-ratio {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.banner .banner__image-aspect-ratio:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  height: 100%;
}
.banner .banner__image-aspect-ratio > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.banner .banner__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

/**
  * Component: Large Banner for Support Center landing page
  *  
  * @description
  * -
  */
.field--name-field-top-content .paragraph--type--banner {
  grid-column: 1/-1;
  min-height: 18rem;
  margin-bottom: 1rem;
}
.field--name-field-top-content .paragraph--type--banner .banner__block-link {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  height: 100%;
}
.field--name-field-top-content .paragraph--type--banner .banner__block-link:hover .banner__title h3, .field--name-field-top-content .paragraph--type--banner .banner__block-link:hover .banner__title .field--name-field-table-heading,
.field--name-field-top-content .paragraph--type--banner .banner__block-link:hover .banner__description p {
  color: #118acb;
}
.field--name-field-top-content .paragraph--type--banner .banner__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: 3/span 4;
  grid-row: span auto;
  grid-row: 1;
  width: 100%;
  background-color: #1d1651;
  padding-right: 2rem;
  padding-left: 2rem;
  box-sizing: border-box;
}
.field--name-field-top-content .paragraph--type--banner .banner__title {
  grid-column: span 2;
  grid-row: 2;
}
.field--name-field-top-content .paragraph--type--banner .banner__title h3, .field--name-field-top-content .paragraph--type--banner .banner__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .field--name-field-top-content .paragraph--type--banner .banner__title h3, .field--name-field-top-content .paragraph--type--banner .banner__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-field-top-content .paragraph--type--banner .banner__title h3, .field--name-field-top-content .paragraph--type--banner .banner__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-field-top-content .paragraph--type--banner .banner__title h3, .field--name-field-top-content .paragraph--type--banner .banner__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-field-top-content .paragraph--type--banner .banner__description {
  grid-column: span 3;
  grid-row: 3;
}
.field--name-field-top-content .paragraph--type--banner .banner__description p {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .field--name-field-top-content .paragraph--type--banner .banner__description p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-field-top-content .paragraph--type--banner .banner__description p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-field-top-content .paragraph--type--banner .banner__description p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-field-top-content .paragraph--type--banner .banner__meta {
  grid-column: span 2;
  grid-row: 1;
  margin-top: -0.25rem;
}
.field--name-field-top-content .paragraph--type--banner .banner__meta p {
  color: #b8e2de;
}
.field--name-field-top-content .paragraph--type--banner .banner__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  background-color: #b8e2de;
  margin-bottom: 0.5rem;
  display: block;
}
.field--name-field-top-content .paragraph--type--banner .banner__image {
  grid-column: 1/span 2;
  width: calc(100% + 24px);
  background-color: #009f90;
  display: inline-block;
}
.field--name-field-top-content .paragraph--type--banner .banner__image-aspect-ratio {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.field--name-field-top-content .paragraph--type--banner .banner__image-aspect-ratio:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  height: 100%;
}
.field--name-field-top-content .paragraph--type--banner .banner__image-aspect-ratio > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.field--name-field-top-content .paragraph--type--banner .banner__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

/**
  * Component: Feed Tile, Narrow
  *  
  * @description
  * -
  */
.paragraph--type--content-list .field--name-field-list-heading,
.paragraph--type--content-list-view .field--name-field-list-heading,
.paragraph--type--content-list-manual .field--name-field-list-heading,
.paragraph--type--download-list .field--name-field-list-heading {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.paragraph--type--content-list .field--name-field-list-heading h3, .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-view .field--name-field-list-heading h3,
.paragraph--type--content-list-view .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-manual .field--name-field-list-heading h3,
.paragraph--type--content-list-manual .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--download-list .field--name-field-list-heading h3,
.paragraph--type--download-list .field--name-field-list-heading .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .paragraph--type--content-list .field--name-field-list-heading h3, .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-view .field--name-field-list-heading h3,
.paragraph--type--content-list-view .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-manual .field--name-field-list-heading h3,
.paragraph--type--content-list-manual .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--download-list .field--name-field-list-heading h3,
.paragraph--type--download-list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--content-list .field--name-field-list-heading h3, .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-view .field--name-field-list-heading h3,
.paragraph--type--content-list-view .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-manual .field--name-field-list-heading h3,
.paragraph--type--content-list-manual .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--download-list .field--name-field-list-heading h3,
.paragraph--type--download-list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--content-list .field--name-field-list-heading h3, .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-view .field--name-field-list-heading h3,
.paragraph--type--content-list-view .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--content-list-manual .field--name-field-list-heading h3,
.paragraph--type--content-list-manual .field--name-field-list-heading .field--name-field-table-heading,
.paragraph--type--download-list .field--name-field-list-heading h3,
.paragraph--type--download-list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.paragraph--type--content-list .field--name-field-list-eyebrow,
.paragraph--type--content-list-view .field--name-field-list-eyebrow,
.paragraph--type--content-list-manual .field--name-field-list-eyebrow,
.paragraph--type--download-list .field--name-field-list-eyebrow {
  grid-column: 1/-1;
  grid-row: 1;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .paragraph--type--content-list .field--name-field-list-eyebrow,
.paragraph--type--content-list-view .field--name-field-list-eyebrow,
.paragraph--type--content-list-manual .field--name-field-list-eyebrow,
.paragraph--type--download-list .field--name-field-list-eyebrow {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--content-list .field--name-field-list-eyebrow,
.paragraph--type--content-list-view .field--name-field-list-eyebrow,
.paragraph--type--content-list-manual .field--name-field-list-eyebrow,
.paragraph--type--download-list .field--name-field-list-eyebrow {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--content-list .field--name-field-list-eyebrow,
.paragraph--type--content-list-view .field--name-field-list-eyebrow,
.paragraph--type--content-list-manual .field--name-field-list-eyebrow,
.paragraph--type--download-list .field--name-field-list-eyebrow {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.paragraph--type--content-list .field--name-field-list-eyebrow::before,
.paragraph--type--content-list-view .field--name-field-list-eyebrow::before,
.paragraph--type--content-list-manual .field--name-field-list-eyebrow::before,
.paragraph--type--download-list .field--name-field-list-eyebrow::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: none;
}
.paragraph--type--content-list .field--name-field-list-content-reference,
.paragraph--type--content-list .field--name-field-manual-list-items,
.paragraph--type--content-list .view-content,
.paragraph--type--content-list-view .field--name-field-list-content-reference,
.paragraph--type--content-list-view .field--name-field-manual-list-items,
.paragraph--type--content-list-view .view-content,
.paragraph--type--content-list-manual .field--name-field-list-content-reference,
.paragraph--type--content-list-manual .field--name-field-manual-list-items,
.paragraph--type--content-list-manual .view-content,
.paragraph--type--download-list .field--name-field-list-content-reference,
.paragraph--type--download-list .field--name-field-manual-list-items,
.paragraph--type--download-list .view-content {
  grid-column: span 2;
}
.paragraph--type--content-list .field--name-field-list-content-reference .field__item,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item,
.paragraph--type--content-list .view-content .field__item,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item,
.paragraph--type--content-list-view .view-content .field__item,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item,
.paragraph--type--content-list-manual .view-content .field__item,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item,
.paragraph--type--download-list .view-content .field__item {
  padding: 0.75rem 0;
}
.paragraph--type--content-list .field--name-field-list-content-reference .field__item a,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item a,
.paragraph--type--content-list .view-content .field__item a,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item a,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item a,
.paragraph--type--content-list-view .view-content .field__item a,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item a,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item a,
.paragraph--type--content-list-manual .view-content .field__item a,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item a,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item a,
.paragraph--type--download-list .view-content .field__item a {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.paragraph--type--content-list .field--name-field-list-content-reference .field__item a > *,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item a > *,
.paragraph--type--content-list .view-content .field__item a > *,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item a > *,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item a > *,
.paragraph--type--content-list-view .view-content .field__item a > *,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item a > *,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item a > *,
.paragraph--type--content-list-manual .view-content .field__item a > *,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item a > *,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item a > *,
.paragraph--type--download-list .view-content .field__item a > * {
  grid-column: 1/-1;
}
.paragraph--type--content-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list .view-content .field__item h4,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-view .view-content .field__item h4,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-manual .view-content .field__item h4,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--download-list .view-content .field__item h4 {
  grid-row: 2;
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list .view-content .field__item h4,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-view .view-content .field__item h4,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-manual .view-content .field__item h4,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--download-list .view-content .field__item h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list .view-content .field__item h4,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-view .view-content .field__item h4,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-manual .view-content .field__item h4,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--download-list .view-content .field__item h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list .view-content .field__item h4,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-view .view-content .field__item h4,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item h4,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item h4,
.paragraph--type--content-list-manual .view-content .field__item h4,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item h4,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item h4,
.paragraph--type--download-list .view-content .field__item h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.paragraph--type--content-list .field--name-field-list-content-reference .field__item .tiles__feed-meta,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item .tiles__feed-meta,
.paragraph--type--content-list .view-content .field__item .tiles__feed-meta,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item .tiles__feed-meta,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item .tiles__feed-meta,
.paragraph--type--content-list-view .view-content .field__item .tiles__feed-meta,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item .tiles__feed-meta,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item .tiles__feed-meta,
.paragraph--type--content-list-manual .view-content .field__item .tiles__feed-meta,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item .tiles__feed-meta,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item .tiles__feed-meta,
.paragraph--type--download-list .view-content .field__item .tiles__feed-meta {
  grid-row: 1;
  margin-bottom: 0;
}
.paragraph--type--content-list .field--name-field-list-content-reference .field__item:last-child,
.paragraph--type--content-list .field--name-field-manual-list-items .field__item:last-child,
.paragraph--type--content-list .view-content .field__item:last-child,
.paragraph--type--content-list-view .field--name-field-list-content-reference .field__item:last-child,
.paragraph--type--content-list-view .field--name-field-manual-list-items .field__item:last-child,
.paragraph--type--content-list-view .view-content .field__item:last-child,
.paragraph--type--content-list-manual .field--name-field-list-content-reference .field__item:last-child,
.paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item:last-child,
.paragraph--type--content-list-manual .view-content .field__item:last-child,
.paragraph--type--download-list .field--name-field-list-content-reference .field__item:last-child,
.paragraph--type--download-list .field--name-field-manual-list-items .field__item:last-child,
.paragraph--type--download-list .view-content .field__item:last-child {
  border-bottom: none !important;
  padding-bottom: 1rem;
}
.paragraph--type--content-list .field--name-field-list-more-link,
.paragraph--type--content-list-view .field--name-field-list-more-link,
.paragraph--type--content-list-manual .field--name-field-list-more-link,
.paragraph--type--download-list .field--name-field-list-more-link {
  grid-column: 1/-1;
  grid-row: 4;
  position: absolute;
  bottom: -1.5rem;
}
.paragraph--type--content-list .field--name-field-list-more-link a:before,
.paragraph--type--content-list-view .field--name-field-list-more-link a:before,
.paragraph--type--content-list-manual .field--name-field-list-more-link a:before,
.paragraph--type--download-list .field--name-field-list-more-link a:before {
  font-size: 0.7rem;
  content: "";
  margin-right: 1rem;
}
.paragraph--type--content-list .external-link .tiles__feed-meta:after,
.paragraph--type--content-list-view .external-link .tiles__feed-meta:after,
.paragraph--type--content-list-manual .external-link .tiles__feed-meta:after,
.paragraph--type--download-list .external-link .tiles__feed-meta:after {
  content: "";
  font-size: 0.55rem;
}

/**
  * Component: Feed Tile, Narrow
  *  
  * @description
  * -
  */
.tiles__title--narrow {
  margin-bottom: 2rem;
}
.tiles__title--narrow .tiles__title--small {
  margin-bottom: 1rem;
  grid-column: span 6;
}
.tiles__title--narrow .tiles__title--small h3, .tiles__title--narrow .tiles__title--small .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .tiles__title--narrow .tiles__title--small h3, .tiles__title--narrow .tiles__title--small .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .tiles__title--narrow .tiles__title--small h3, .tiles__title--narrow .tiles__title--small .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .tiles__title--narrow .tiles__title--small h3, .tiles__title--narrow .tiles__title--small .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

/**
  * Component: Video Tile, Wide
  *  
  * @description
  * -
  */
.tiles__video--wide .tiles__video-controls {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.tiles__video--wide .tiles__video-play {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 0;
  left: 0;
}
.tiles__video--wide .tiles__video-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15.6px;
  border-color: transparent transparent transparent #003a41;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tiles__video--wide .tiles__video-duration {
  width: 144px;
  height: 72px;
  position: absolute;
  top: 0;
  left: 72px;
}
.tiles__video--wide .tiles__video-duration-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0.25rem;
}

/**
  * Component: Video Tile, Narrow
  *  
  * @description
  * -
  */
.tiles__video--narrow .tiles__video-controls {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.tiles__video--narrow .tiles__video-play {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 0;
  left: 0;
}
.tiles__video--narrow .tiles__video-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15.6px;
  border-color: transparent transparent transparent #f2f9f8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tiles__video--narrow .tiles__video-duration {
  width: 144px;
  height: 72px;
  position: absolute;
  top: 0;
  left: 72px;
}
.tiles__video--narrow .tiles__video-duration-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0.25rem;
}

/**
  * Component: Twitter card
  *  
  * @description
  * -
  */
.field--name-field-media-twitter {
  -webkit-box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
/**
  * Component: Unlinked Tiles
  *  
  * @description
  * -
  */
.field--name-field-tiles {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.field--name-field-tiles > .field__item {
  margin-bottom: 2rem;
  position: relative;
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .field--name-field-tiles > .field__item {
    grid-column: span 3;
  }
}
.field--name-field-tiles > .field__item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #d8dce1;
}
.field--name-field-tiles > .field__item .paragraph {
  margin-bottom: 1rem !important;
}
.field--name-field-tiles .field--name-field-tile-heading {
  margin-bottom: 1rem;
}
.field--name-field-tiles .field--name-field-tile-text {
  margin-bottom: 2rem;
}

.paragraph--type--running-text + .paragraph--type--unlinked-tiles {
  margin-top: -1rem;
}

/**
  * Component: Landing intro
  *  
  * @description
  * -
  */
.landing__title-area {
  background-color: #1d1651;
  color: #fff;
  border-bottom: 1px solid #009f90;
  box-sizing: border-box;
  min-height: 12.75rem;
  padding-top: 7rem;
}
.landing__title-area .img-wrapper {
  background-color: #1d1651;
}
.landing__title-area .header__nav-primary a {
  color: #b8e2de;
}
.landing__title-area .header__nav-secondary a {
  color: #118acb;
}
.landing__title-area a:hover,
.landing__title-area .header__nav-primary a:hover {
  color: #118acb;
}
.landing__title-area .header__nav-secondary a:hover {
  color: #0061af;
}
.landing__title-area [class$=meta],
.landing__title-area .field--name-field-list-eyebrow {
  color: #b8e2de;
}
.landing__title-area .tiles__banner--narrow [class$=meta],
.landing__title-area .paragraph--type--content-teaser-banner [class$=meta],
.landing__title-area .paragraph--type--vertical-banner [class$=meta] {
  background-color: #1d1651;
}
.landing__title-area .tiles__feed-meta {
  color: #118acb;
}
.landing__title-area .tiles__video-play {
  background-color: #b8e2de;
}
.landing__title-area .tiles__video-duration {
  background-color: #009f90;
  color: #fff;
}
.landing__title-area .tiles__meta::before,
.landing__title-area .field--name-field-list-eyebrow:before,
.landing__title-area h2:before {
  background-color: #b8e2de;
}
.landing__title-area .tiles__feed-list li,
.landing__title-area .field--name-field-list-content-reference .field__item,
.landing__title-area .field--name-field-manual-list-items .field__item,
.landing__title-area .field--type-viewsreference .field__item {
  border-bottom: 1px solid #0061af;
}
.landing__title-area .tiles__feed-list li:first-child,
.landing__title-area .field--name-field-list-content-reference .field__item:first-child,
.landing__title-area .field--name-field-manual-list-items .field__item:first-child,
.landing__title-area .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #0061af;
}
.landing__title-area .field--name-field-list-more-link a {
  color: #b8e2de;
}
.landing__title-area .field--name-field-list-more-link a:before {
  color: #009f90;
}
.landing__title-area .field--name-field-list-more-link a:hover {
  color: #118acb;
}
.landing__title-area .status-sm h2,
.landing__title-area .status-sm ul,
.landing__title-area .status-sm li {
  color: #118acb;
}
.landing__title-area .tiles__banner--general-msg {
  background-color: #0061af;
}
.landing__title-area .tiles__banner--general-msg a:hover {
  color: #1d1651;
}
.landing__title-area .tiles__banner--general-msg .tiles__image-screen {
  background-color: #badef5;
}
.landing__title-area .landing__deck {
  color: #118acb;
}
.landing__title-area .download-info h3, .landing__title-area .download-info .field--name-field-table-heading {
  color: #fff;
}
.landing__title-area .download-info .download-info-file p {
  color: #118acb;
}
.landing__title-area .download a {
  border-color: #118acb;
}
.landing__title-area .download a:hover h3, .landing__title-area .download a:hover .field--name-field-table-heading {
  color: #118acb;
}

/**
  * Component: Table Paragraph
  *  
  * @description
  * -
  */
.field--name-field-table-heading {
  grid-column: 1/-1;
  margin-bottom: 1rem;
}

.field--name-field-table {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
.field--name-field-table table {
  table-layout: fixed;
  width: 100%;
  border: none !important;
}
.field--name-field-table table p {
  margin: 0;
}
.field--name-field-table table h3, .field--name-field-table table .field--name-field-table-heading {
  margin-top: 1rem;
}
.field--name-field-table table h4 {
  margin-bottom: 0;
}
.field--name-field-table tr {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  border-top: 1px solid #d8dce1;
  display: table-row;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .field--name-field-table tr {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-field-table tr {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-field-table tr {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.field--name-field-table tbody tr:last-child {
  border-bottom: 1px solid #d8dce1;
}
.field--name-field-table td,
.field--name-field-table th {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  border: none;
  text-align: left;
  font-weight: inherit;
}
.field--name-field-table thead tr {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  color: #6e6e78;
}
@media screen and (min-width: 768px) {
  .field--name-field-table thead tr {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-field-table thead tr {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-field-table thead tr {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

/*!
// CSS only Responsive Tables
// http://dbushell.com/2016/03/04/css-only-responsive-tables/
// by David Bushell
*/
.rtable, .field--name-field-table table {
  /*!
  // IE needs inline-block to position scrolling shadows otherwise use:
  // display: block;
  // max-width: min-content;
  */
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  border-collapse: collapse;
  border-spacing: 0;
}

.rtable, .field--name-field-table table,
.rtable--flip tbody {
  -webkit-overflow-scrolling: touch;
  background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 0 center, radial-gradient(ellipse at right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 100% center;
  background-size: 10px 100%, 10px 100%;
  background-attachment: scroll, scroll;
  background-repeat: no-repeat;
}

.rtable td:first-child, .field--name-field-table table td:first-child,
.rtable th:first-child,
.field--name-field-table table th:first-child,
.rtable--flip tbody tr:first-child {
  background-image: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  background-size: 20px 100%;
}

.rtable td:last-child, .field--name-field-table table td:last-child,
.rtable th:last-child,
.field--name-field-table table th:last-child,
.rtable--flip tbody tr:last-child {
  background-image: linear-gradient(to left, white 50%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 20px 100%;
}

.rtable--flip {
  display: flex;
  overflow: hidden;
  background: none;
}

.rtable--flip thead {
  display: flex;
  flex-shrink: 0;
  min-width: min-content;
}

.rtable--flip tbody {
  display: flex;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}

.rtable--flip tr {
  display: flex;
  flex-direction: column;
  min-width: min-content;
  flex-shrink: 0;
}

.rtable--flip td,
.rtable--flip th {
  display: block;
}

.rtable--flip td {
  background-image: none !important;
  border-left: 0;
}

.rtable--flip th:not(:last-child),
.rtable--flip td:not(:last-child) {
  border-bottom: 0;
}

/**
  * Component: Code Sample Paragraph
  *  
  * @description
  * -
  */
.field--name-field-code-sample {
  grid-column: 1/-1;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  background-color: #edf1f5;
  overflow: auto;
}
.field--name-field-code-sample pre {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: -0.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  font-family: monaco, monospace;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .field--name-field-code-sample pre {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: -0.25rem;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    font-family: monaco, monospace;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-field-code-sample pre {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: -0.25rem;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    font-family: monaco, monospace;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-field-code-sample pre {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: -0.25rem;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    font-family: monaco, monospace;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.field--name-field-code-sample-link,
.copy-link {
  margin-bottom: 1rem;
  display: inline-block;
}
.field--name-field-code-sample-link a,
.copy-link a {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-right: 2rem;
}
@media screen and (min-width: 768px) {
  .field--name-field-code-sample-link a,
.copy-link a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .field--name-field-code-sample-link a,
.copy-link a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .field--name-field-code-sample-link a,
.copy-link a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.copy-link:hover {
  cursor: pointer;
}

/**
  * Component: Slick
  *  
  * @description
  * -
  */
/* Arrows */
.slick__arrow {
  position: relative;
  top: -1rem;
}

.slick-prev,
.slick-next {
  position: absolute;
  opacity: 1;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: #009f90;
  bottom: -50px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus, .slick-prev:focus:hover,
.slick-next:hover,
.slick-next:focus,
.slick-next:focus:hover {
  outline: none;
  background: transparent;
  opacity: 0.6;
}
.slick-prev:focus,
.slick-next:focus {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.5;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  line-height: 1;
  color: #009f90;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: inherit;
  right: 30px;
}
[dir=rtl] .slick-prev {
  left: inherit;
  right: 30px;
}
.slick-prev:before {
  content: "";
}

.slick-next {
  right: 0;
}
[dir=rtl] .slick-next {
  left: inherit;
  right: 0;
}
.slick-next:before {
  content: "";
}

#block-auroragpt-views-block-main-image-block {
  min-width: 0;
  min-height: 0;
}

/**
  * Component: Support Section Header
  *  
  * @description
  * -
  */
/*
.page-node-32085,
.page-node-type-user-guides,
.page-node-type-facility-updates,
.page-node-type-presentations,
.page-node-type-guide,
.path-training-assets,
.page-node-33336,
.page-node-32501,
.page-node-33601,
.path-support,
.path-support-center {

	.header {
		@include theme('cyan');
		border-bottom: border(navy);

		.header__site-title h1 a {
			color: color(green, XX);
			&:hover {
				color:color(blue, XXX);
			}
		}	
		.header__nav-primary #ultimenu-main > li:last-child {
			border-color: color(blue, XXXXX);
		}
		#ultimenu-main > li > a {
			color: color(neutral, X);
		}
		#ultimenu-main > li.is-active-trail > a {
			color:color(blue, XXXXX);
		}	

		&.sticky,
		&.mobile-nav,
		&.headroom--not-top.headroom--pinned {

			.header__nav-primary #ultimenu-main > li:last-child {
				border-color: color(blue, XXX);
			}	
			#ultimenu-main > li > a {
				color: color(green, XX);
			}			
			#ultimenu-main > li.is-active-trail > a {
				color:color(blue, XXX);
			}			
		}
	}
}
*/
#block-auroragpt-helpdesk,
#block-auroragpt-helpdesk-2 {
  grid-column: span 6;
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  #block-auroragpt-helpdesk,
#block-auroragpt-helpdesk-2 {
    grid-column: 5/span 2;
    align-self: end;
    margin-top: -20px;
  }
}
#block-auroragpt-helpdesk h2,
#block-auroragpt-helpdesk-2 h2 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-bottom: -0.25rem !important;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-helpdesk h2,
#block-auroragpt-helpdesk-2 h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-helpdesk h2,
#block-auroragpt-helpdesk-2 h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-helpdesk h2,
#block-auroragpt-helpdesk-2 h2 {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
#block-auroragpt-helpdesk p,
#block-auroragpt-helpdesk-2 p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-helpdesk p,
#block-auroragpt-helpdesk-2 p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-helpdesk p,
#block-auroragpt-helpdesk-2 p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-helpdesk p,
#block-auroragpt-helpdesk-2 p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.support__intro .support__intro-alert {
  grid-column: 1/-1;
  margin-bottom: 5rem;
}
.support__intro .support__intro-alert p {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .support__intro .support__intro-alert p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .support__intro .support__intro-alert p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .support__intro .support__intro-alert p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.support__intro .support__intro-alert p::before {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 2px;
  left: 3px;
  margin-right: 1rem;
  background-color: #badef5;
}

/**
  * Component: Support guide navigation
  *  
  * @description
  * -
  */
.page-node-type-user-guides #block-alcf-guides {
  border-top: 1px solid #d8dce1;
  border-bottom: 1px solid #d8dce1;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.page-node-type-user-guides #block-alcf-guides-menu {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-user-guides #block-alcf-guides-menu {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-user-guides #block-alcf-guides-menu {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides #block-alcf-guides-menu {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-user-guides .region-sidebar-first .menu--guides ul {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides > ul.menu {
  margin-left: 0;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides > ul.menu > li > ul {
  margin-left: 0;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item {
  padding: 0;
  margin: 0;
  margin-bottom: -0.25rem;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item > ul {
  margin-top: -0.25rem;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item > ul ul {
  margin-bottom: 0;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item.menu-item--expanded > span + ul > .menu-item--expanded span:before {
  content: "—";
  font-size: 1.2rem;
  margin-right: 5px;
  margin-left: -1px;
  color: #d8dce1;
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item span {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  display: block;
  margin-bottom: 0 !important;
  color: #080812;
}
@media screen and (min-width: 768px) {
  .page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item span {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item span {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item span {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item a {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #118acb;
}
@media screen and (min-width: 768px) {
  .page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item a {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-user-guides .region-sidebar-first .menu--guides .menu-item a.is-active {
  color: #6e6e78;
}
.page-node-type-user-guides #block-views-block-last-updated-block .updated {
  color: #6e6e78;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-node-type-user-guides #block-views-block-last-updated-block .updated {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-user-guides #block-views-block-last-updated-block .updated {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides #block-views-block-last-updated-block .updated {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

/**
  * Component: Breadcrumbs
  *  
  * @description
  * -
  */
.breadcrumbs {
  grid-column: span 6;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.breadcrumbs ol {
  color: #007b70;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .breadcrumbs ol {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .breadcrumbs ol {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumbs ol {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.breadcrumbs .breadcrumb li {
  display: inline-block;
  overflow: hidden;
}
.breadcrumbs li:before {
  color: #6e6e78;
  content: "/";
}
.breadcrumbs li:last-child {
  display: none;
  width: 350px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .breadcrumbs li:last-child {
    display: inline-block;
  }
}

/**
  * Component: list title
  *  
  * @description
  * -
  */
.list__title {
  grid-column: span 6;
  margin-bottom: 2rem;
}

/**
  * Component: Paragraph List
  *  
  * @description
  * -
  */
.paragraph--type--list {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.paragraph--type--list .field--name-field-list-heading {
  margin-bottom: 1rem;
  grid-column: 1/4;
}
.paragraph--type--list .field--name-field-list-heading h3, .paragraph--type--list .field--name-field-list-heading .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .paragraph--type--list .field--name-field-list-heading h3, .paragraph--type--list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--list .field--name-field-list-heading h3, .paragraph--type--list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--list .field--name-field-list-heading h3, .paragraph--type--list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.paragraph--type--list .field--name-field-list-items {
  margin-bottom: 1rem;
  grid-column: 1/4;
}
.paragraph--type--list .field--name-field-list-items .field__item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #d8dce1;
}
.paragraph--type--list .field--name-field-list-items .field__item:last-child {
  border-bottom: 1px solid #d8dce1;
}

/**
  * Component: Paragraph Specifications Table
  *  
  * @description
  * -
  */
.paragraph--type--specifications-table {
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.paragraph--type--specifications-table .field--name-field-table-heading {
  margin-bottom: 1rem;
  grid-column: 1/4;
}
.paragraph--type--specifications-table .field--name-field-table-heading h3, .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .paragraph--type--specifications-table .field--name-field-table-heading h3, .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--specifications-table .field--name-field-table-heading h3, .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--specifications-table .field--name-field-table-heading h3, .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.paragraph--type--specifications-table .field--name-field-table-rows {
  margin-bottom: 1rem;
  grid-column: 1/4;
}
.paragraph--type--specifications-table .field--name-field-table-rows > .field__item {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #d8dce1;
}
.paragraph--type--specifications-table .field--name-field-table-rows > .field__item:last-child {
  border-bottom: 1px solid #d8dce1;
}
.paragraph--type--specifications-table .paragraph--type--table-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.paragraph--type--specifications-table:after {
  display: none;
}

/**
  * Component: Search form elements
  *  
  * @description
  * -
  */
#block-auroragpt-search-page,
#block-auroragpt-search-support,
#block-auroragpt-exposedformacquia-searchpage-support,
#block-auroragpt-exposedformacquia-searchpage-support-2 {
  position: relative;
  height: 4rem;
  display: block;
  grid-column: span 6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 992px) {
  #block-auroragpt-search-page,
#block-auroragpt-search-support,
#block-auroragpt-exposedformacquia-searchpage-support,
#block-auroragpt-exposedformacquia-searchpage-support-2 {
    grid-column: span 3;
  }
}
#block-auroragpt-search-page .form--inline,
#block-auroragpt-search-support .form--inline,
#block-auroragpt-exposedformacquia-searchpage-support .form--inline,
#block-auroragpt-exposedformacquia-searchpage-support-2 .form--inline {
  display: block;
  margin: 0;
  width: auto;
}
#block-auroragpt-search-page input[type=text],
#block-auroragpt-search-page input[type=submit],
#block-auroragpt-search-support input[type=text],
#block-auroragpt-search-support input[type=submit],
#block-auroragpt-exposedformacquia-searchpage-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support input[type=submit],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=submit] {
  border: none;
  background-color: #b8e2de;
  -webkit-appearance: none;
  color: #003a41;
  display: inline-block;
  height: 3.25rem;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
}
#block-auroragpt-search-page input[type=text],
#block-auroragpt-search-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text] {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  left: 0;
  width: calc(100% - 50px);
  right: 50px;
  margin: 0;
  padding-left: 0.5rem;
  caret-color: #009f90;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-search-page input[type=text],
#block-auroragpt-search-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-search-page input[type=text],
#block-auroragpt-search-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-search-page input[type=text],
#block-auroragpt-search-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support input[type=text],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
#block-auroragpt-search-page input[type=text]::placeholder,
#block-auroragpt-search-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text]::placeholder {
  color: #009f90;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-search-page input[type=text]::placeholder,
#block-auroragpt-search-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-search-page input[type=text]::placeholder,
#block-auroragpt-search-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-search-page input[type=text]::placeholder,
#block-auroragpt-search-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support input[type=text]::placeholder,
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text]::placeholder {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
#block-auroragpt-search-page input[type=text]::-moz-placeholder,
#block-auroragpt-search-support input[type=text]::-moz-placeholder,
#block-auroragpt-exposedformacquia-searchpage-support input[type=text]::-moz-placeholder,
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text]::-moz-placeholder {
  line-height: 50px !important;
}
#block-auroragpt-search-page input[type=text]:focus,
#block-auroragpt-search-support input[type=text]:focus,
#block-auroragpt-exposedformacquia-searchpage-support input[type=text]:focus,
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=text]:focus {
  outline: none;
}
#block-auroragpt-search-page label,
#block-auroragpt-search-support label,
#block-auroragpt-exposedformacquia-searchpage-support label,
#block-auroragpt-exposedformacquia-searchpage-support-2 label {
  display: none;
}
#block-auroragpt-search-page input[type=submit],
#block-auroragpt-search-support input[type=submit],
#block-auroragpt-exposedformacquia-searchpage-support input[type=submit],
#block-auroragpt-exposedformacquia-searchpage-support-2 input[type=submit] {
  right: 0;
  left: calc(100% - 50px);
  width: 50px;
  position: absolute;
  box-sizing: border-box;
  font: 20px/1 "icomoon";
  padding-top: 5px;
}

.region-facets {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 4rem;
}

.block-facets-ajax,
.block-facets {
  margin-top: 1rem;
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .block-facets-ajax,
.block-facets {
    grid-column: span 2;
  }
}
@media screen and (min-width: 992px) {
  .block-facets-ajax,
.block-facets {
    grid-row: 2;
  }
}
@media screen and (min-width: 1200px) {
  .block-facets-ajax,
.block-facets {
    grid-column: span 1;
  }
}
.block-facets-ajax .facets-widget-dropdown,
.block-facets .facets-widget-dropdown {
  display: block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #009f90;
  border-radius: 0;
  height: 2.5rem;
  padding-bottom: 0.25rem;
}
.block-facets-ajax .facets-widget-dropdown select,
.block-facets .facets-widget-dropdown select {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  color: #009f90;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #FFF 0%, #FFF 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 1em top calc(50% + 2px), 0 0;
  background-size: 0.75em auto, 100%;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .block-facets-ajax .facets-widget-dropdown select,
.block-facets .facets-widget-dropdown select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .block-facets-ajax .facets-widget-dropdown select,
.block-facets .facets-widget-dropdown select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .block-facets-ajax .facets-widget-dropdown select,
.block-facets .facets-widget-dropdown select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.block-facets-ajax .facets-widget-dropdown select option,
.block-facets .facets-widget-dropdown select option {
  color: initial;
  font-weight: initial;
  font-family: sans-serif;
  font-size: initial;
}
.block-facets-ajax .facets-widget-dropdown select:hover,
.block-facets .facets-widget-dropdown select:hover {
  color: #edf1f5;
  cursor: pointer;
}
.block-facets-ajax .facets-widget-dropdown select:active,
.block-facets-ajax .facets-widget-dropdown select:focus,
.block-facets .facets-widget-dropdown select:active,
.block-facets .facets-widget-dropdown select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.block-facets-ajax .facets-widget-dropdown::-ms-expand,
.block-facets .facets-widget-dropdown::-ms-expand {
  display: none;
}

/**
  * Component: View Filters
  *  
  * @description
  * -
  */
.views-exposed-form {
  width: 100%;
  margin-bottom: 4rem;
}
.views-exposed-form label {
  display: none;
}
.views-exposed-form .form--inline {
  width: inherit;
}
.views-exposed-form .form-type-select {
  grid-column: span 6;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #009f90;
  background-color: #b8e2de;
  border-radius: 0;
  height: 2.5rem;
  padding-bottom: 0.25rem;
  margin-right: 0;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .views-exposed-form .form-type-select {
    grid-column: span 3;
  }
}
@media screen and (min-width: 1200px) {
  .views-exposed-form .form-type-select {
    grid-column: span 2;
  }
}
.views-exposed-form .form-type-select select {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  color: #009f90;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  padding-left: 1rem;
  background-color: #b8e2de;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 1em top calc(50% + 2px), 0 0;
  background-size: 0.75em auto, 100%;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .views-exposed-form .form-type-select select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .views-exposed-form .form-type-select select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .views-exposed-form .form-type-select select {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.views-exposed-form .form-type-select select option {
  color: initial;
  font-weight: initial;
  font-family: sans-serif;
  font-size: initial;
}
.views-exposed-form .form-type-select select option[selected=selected] {
  text-transform: uppercase;
}
.views-exposed-form .form-item-program select {
  text-transform: uppercase;
}
.views-exposed-form .form-type-select select:hover {
  color: #007b70;
  cursor: pointer;
}
.views-exposed-form .form-type-select select:active,
.views-exposed-form .form-type-select select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.views-exposed-form .form-type-select::-ms-expand {
  display: none;
}

#block-auroragpt-newsfeedtogglebuttons,
#block-auroragpt-eventstogglebuttons {
  width: 100%;
}
#block-auroragpt-newsfeedtogglebuttons .feed__top-bar,
#block-auroragpt-eventstogglebuttons .feed__top-bar {
  border-bottom: 1px solid #009f90;
  margin-bottom: 1rem;
}
#block-auroragpt-newsfeedtogglebuttons .feed__tabs,
#block-auroragpt-eventstogglebuttons .feed__tabs {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__tabs,
#block-auroragpt-eventstogglebuttons .feed__tabs {
    grid-column: span 5;
  }
}
#block-auroragpt-newsfeedtogglebuttons .feed__secondary-link,
#block-auroragpt-eventstogglebuttons .feed__secondary-link {
  grid-column: span 1;
  position: relative;
  bottom: -15px;
  display: none;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__secondary-link,
#block-auroragpt-eventstogglebuttons .feed__secondary-link {
    display: block;
  }
}
#block-auroragpt-newsfeedtogglebuttons .feed__tab,
#block-auroragpt-eventstogglebuttons .feed__tab {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  position: relative;
  bottom: -1px;
}
#block-auroragpt-newsfeedtogglebuttons .feed__tab a,
#block-auroragpt-eventstogglebuttons .feed__tab a {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #009f90;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__tab a,
#block-auroragpt-eventstogglebuttons .feed__tab a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__tab a,
#block-auroragpt-eventstogglebuttons .feed__tab a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__tab a,
#block-auroragpt-eventstogglebuttons .feed__tab a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
#block-auroragpt-newsfeedtogglebuttons .feed__tab--active,
#block-auroragpt-eventstogglebuttons .feed__tab--active {
  border-top: 1px solid #009f90;
  border-right: 1px solid #009f90;
  border-left: 1px solid #009f90;
  background-color: #fff;
}
#block-auroragpt-newsfeedtogglebuttons .feed__tab--active a,
#block-auroragpt-eventstogglebuttons .feed__tab--active a {
  color: #003a41;
}
#block-auroragpt-newsfeedtogglebuttons .feed__secondary-link a,
#block-auroragpt-eventstogglebuttons .feed__secondary-link a {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  float: right;
  color: #009f90;
}
@media screen and (min-width: 768px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__secondary-link a,
#block-auroragpt-eventstogglebuttons .feed__secondary-link a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__secondary-link a,
#block-auroragpt-eventstogglebuttons .feed__secondary-link a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  #block-auroragpt-newsfeedtogglebuttons .feed__secondary-link a,
#block-auroragpt-eventstogglebuttons .feed__secondary-link a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

#block-auroragpt-views-block-news-media-hits-archive,
#block-auroragpt-views-block-events-block-past,
#block-auroragpt-views-block-events-past-training,
#block-auroragpt-views-block-news-posts {
  display: none;
}

.views-auto-submit-full-form .form-item-search {
  grid-column: span 6;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border-radius: 0;
  height: 2.5rem;
  padding-bottom: 0.25rem;
  margin-right: 0;
  margin-top: 1rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .views-auto-submit-full-form .form-item-search {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .views-auto-submit-full-form .form-item-search {
    grid-column: span 1;
  }
}
.views-auto-submit-full-form .form-actions {
  position: absolute;
  right: 28px;
  bottom: 21px;
}
@media screen and (min-width: 768px) {
  .views-auto-submit-full-form .form-actions {
    position: relative;
    left: -55px;
    top: -3px;
    bottom: inherit;
    right: inherit;
  }
}
.views-auto-submit-full-form .form-item-search input[type=text],
.views-auto-submit-full-form .form-actions input[type=submit] {
  border: none;
  background-color: #b8e2de;
  -webkit-appearance: none;
  color: #003a41;
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .views-auto-submit-full-form .form-item-search input[type=text],
.views-auto-submit-full-form .form-actions input[type=submit] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .views-auto-submit-full-form .form-item-search input[type=text],
.views-auto-submit-full-form .form-actions input[type=submit] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .views-auto-submit-full-form .form-item-search input[type=text],
.views-auto-submit-full-form .form-actions input[type=submit] {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.views-auto-submit-full-form .form-item-search input[type=text] {
  position: absolute;
  box-sizing: border-box;
  height: 2.5rem;
  width: 100%;
  padding-left: 0.5rem;
  transition: all 0.25s;
  caret-color: #009f90;
}
.views-auto-submit-full-form .form-item-search input[type=text]:focus {
  outline: none;
}
.views-auto-submit-full-form .form-actions input[type=submit] {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  height: 2.5rem;
  width: 28px;
  font: 13px/1 "icomoon";
}

.ajax-progress.ajax-progress-fullscreen {
  position: relative;
  left: 49%;
}

.ajax-throbber.sk-three-bounce .sk-child {
  background-color: #009f90;
}
.ajax-throbber.sk-three-bounce .sk-child.sk-bounce1 {
  background-color: #b8e2de;
}
.ajax-throbber.sk-three-bounce .sk-child.sk-bounce3 {
  background-color: #007b70;
}

/**
  * Component: Paragraph Specifications Table
  *  
  * @description
  * -
  */
.view-related-content .view-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.view-related-content .view-content [class$=narrow] {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .view-related-content .view-content [class$=narrow] {
    grid-column: span 2;
  }
}
.view-related-content .view-content [class$=narrow] .tiles__no-link, .view-related-content .view-content [class$=narrow] .tiles__block-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.view-related-content .view-content [class$=narrow] .tiles__meta {
  margin-bottom: 0.5rem;
}
.view-related-content .view-content .tiles__teaser--narrow {
  margin-bottom: 4rem;
  position: relative;
}
.view-related-content .view-content .tiles__teaser--narrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #009f90;
}
.view-related-content .view-content .tiles__title {
  grid-column: 1/-1;
  grid-row: 3;
  margin-bottom: 2rem;
}
.view-related-content .view-content .tiles__title h3, .view-related-content .view-content .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .view-related-content .view-content .tiles__title h3, .view-related-content .view-content .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-related-content .view-content .tiles__title h3, .view-related-content .view-content .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-related-content .view-content .tiles__title h3, .view-related-content .view-content .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.view-related-content .view-content .tiles__meta {
  grid-column: 1/-1;
  grid-row: 1;
}
.view-related-content .view-content .tiles__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: none;
}
.view-related-content .view-content .tiles__description {
  display: none;
}
.view-related-content .view-content .tiles__image, .view-related-content .view-content .tiles__feed-list {
  grid-column: 1/-1;
  grid-row: 2;
  z-index: 5;
  margin-bottom: 1rem;
}
.view-related-content .view-content .tiles__image {
  position: relative;
}
.view-related-content .view-content .tiles__image:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.view-related-content .view-content .tiles__image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.view-related-content .view-content .tiles__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.view-related-content .view-content [class$=more],
.view-related-content .view-content .field--name-field-list-more-link {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .view-related-content .view-content [class$=more],
.view-related-content .view-content .field--name-field-list-more-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-related-content .view-content [class$=more],
.view-related-content .view-content .field--name-field-list-more-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-related-content .view-content [class$=more],
.view-related-content .view-content .field--name-field-list-more-link {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.view-related-content.view-display-id-machine {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.view-related-content.view-display-id-machine > .view-content {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .view-related-content.view-display-id-machine > .view-content {
    grid-column: span 4;
  }
  .view-related-content.view-display-id-machine > .view-content [class$=narrow] {
    grid-column: span 3;
  }
}
.view-related-content.view-display-id-machine .attachment {
  grid-column: span 6;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .view-related-content.view-display-id-machine .attachment {
    grid-column: span 2;
  }
}
.view-related-content.view-display-id-machine .attachment::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #009f90;
}
.view-related-content.view-display-id-machine .attachment .view-content {
  display: block;
}
.view-related-content .attachment .tiles__no-link {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 1;
  grid-row: span auto;
}
.view-related-content .attachment .tiles__title {
  margin-bottom: 1rem;
}
.view-related-content .attachment .tiles__meta {
  grid-column: 1/-1;
  grid-row: 1;
  margin-bottom: 0.5rem;
}
.view-related-content .attachment .tiles__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: block;
}
.view-related-content .attachment .view-content {
  grid-column: span 2;
}
.view-related-content .attachment .view-content .feed__item {
  padding: 0.75rem 0;
}
.view-related-content .attachment .view-content .feed__item a {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.view-related-content .attachment .view-content .feed__item a > * {
  grid-column: 1/-1;
}
.view-related-content .attachment .view-content .feed__item h4 {
  grid-row: 2;
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .view-related-content .attachment .view-content .feed__item h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-related-content .attachment .view-content .feed__item h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-related-content .attachment .view-content .feed__item h4 {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.view-related-content .attachment .view-content .feed__item .tiles__feed-meta {
  grid-row: 1;
  margin-bottom: -0.25rem;
}
.view-related-content .attachment .view-content .feed__item:last-child {
  border-bottom: none;
}
.view-related-content .attachment .field--name-field-list-more-link {
  grid-column: 1/-1;
  grid-row: 4;
  position: absolute;
  bottom: -1.5rem;
}
.view-related-content .attachment .field--name-field-list-more-link a:before {
  font-size: 0.7rem;
  content: "";
  margin-right: 1rem;
}

/**
  * Component: Features grid
  *  
  * @description
  * -
  */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.features-grid .features-primary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
}
.features-grid .features-primary [class$=wide] {
  grid-column: span 4;
}
.features-grid .features-primary [class$=wide] .tiles__no-link, .features-grid .features-primary [class$=wide] .tiles__block-link {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
}
.features-grid .features-primary [class$=wide] .tiles__meta {
  margin-bottom: 1rem;
}
.features-grid [class$=narrow] {
  grid-column: span 2;
  position: relative;
  margin-bottom: 0.5rem;
}
.features-grid [class$=narrow] .tiles__no-link, .features-grid [class$=narrow] .tiles__block-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.features-grid [class$=narrow] .tiles__meta {
  margin-bottom: 0.5rem;
}
.features-grid [class$=narrow]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #d8dce1;
}
.features-grid .tiles__twitter--narrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 0;
  background-color: none;
}
.features-grid .features-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.features-grid .tiles__feed--narrow {
  margin-bottom: 1rem;
}
.features-grid > * {
  margin-bottom: 4rem;
  position: relative;
}
.features-grid .tiles__title {
  grid-column: 1/-1;
  grid-row: 2;
  margin-bottom: 2rem;
}
.features-grid .tiles__title h3, .features-grid .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .features-grid .tiles__title h3, .features-grid .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .features-grid .tiles__title h3, .features-grid .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .features-grid .tiles__title h3, .features-grid .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.features-grid [class$=narrow] .tiles__meta {
  margin-bottom: 0;
}
.features-grid [class$=narrow] .tiles__title h3, .features-grid [class$=narrow] .tiles__title .field--name-field-table-heading {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .features-grid [class$=narrow] .tiles__title h3, .features-grid [class$=narrow] .tiles__title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .features-grid [class$=narrow] .tiles__title h3, .features-grid [class$=narrow] .tiles__title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .features-grid [class$=narrow] .tiles__title h3, .features-grid [class$=narrow] .tiles__title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.features-grid [class$=narrow] .tiles__title {
  margin-bottom: 1rem;
}
.features-grid .tiles__meta {
  grid-column: 1/-1;
  grid-row: 1;
}
.features-grid .tiles__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: block;
}
.features-grid .tiles__description {
  grid-column: 1/-1;
  grid-row: 3;
}
.features-grid .tiles__description p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .features-grid .tiles__description p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .features-grid .tiles__description p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .features-grid .tiles__description p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.features-grid .tiles__image, .features-grid .tiles__feed-list {
  grid-column: 1/-1;
  grid-row: 4;
  z-index: 5;
}
.features-grid .tiles__image {
  position: relative;
}
.features-grid .tiles__image:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.features-grid .tiles__image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.features-grid .tiles__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

/**
  * Component: Download
  *  
  * @description
  * -
  */
.download {
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.download a {
  grid-column: 1/4;
  border-top: 1px solid #d8dce1;
  border-bottom: 1px solid #d8dce1;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: block;
}

.download-bar img {
  display: inline-block;
  margin-right: 1rem;
}

.download-info {
  display: inline-block;
}

.download-info h3, .download-info .field--name-field-table-heading {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #080812;
}
@media screen and (min-width: 768px) {
  .download-info h3, .download-info .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .download-info h3, .download-info .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .download-info h3, .download-info .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.download-info-file,
.download-info-link {
  padding-top: 0.5rem;
}

.download-info p {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .download-info p {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .download-info p {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .download-info p {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

.download-info-file p {
  color: #6e6e78;
}

.download-info-link p {
  color: #009f90;
}

.download img {
  vertical-align: top;
  margin-top: 6px;
  margin-right: 1rem;
}

.download a:hover img {
  width: auto !important;
  height: auto !important;
}

.download a:hover h3, .download a:hover .field--name-field-table-heading,
.download a:hover p {
  color: #d8dce1;
}

/**
  * Component: Download List
  *  
  * @description
  * -
  */
.view-file-download.view-display-id-press_kit_printed .view-content, .view-file-download.view-display-id-press_kit_downloads .view-content, .view-file-download.view-display-id-annual_reports .view-content, .view-file-download.view-display-id-science_brochures .view-content, .view-file-download.view-display-id-surveys .view-content, .view-file-download.view-display-id-oars .view-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.view-file-download.view-display-id-press_kit_printed .download, .view-file-download.view-display-id-press_kit_downloads .download, .view-file-download.view-display-id-annual_reports .download, .view-file-download.view-display-id-science_brochures .download, .view-file-download.view-display-id-surveys .download, .view-file-download.view-display-id-oars .download {
  margin-bottom: 4rem;
  grid-column: span 6;
  position: relative;
}
@media screen and (min-width: 992px) {
  .view-file-download.view-display-id-press_kit_printed .download, .view-file-download.view-display-id-press_kit_downloads .download, .view-file-download.view-display-id-annual_reports .download, .view-file-download.view-display-id-science_brochures .download, .view-file-download.view-display-id-surveys .download, .view-file-download.view-display-id-oars .download {
    grid-column: span 2;
  }
}
.view-file-download.view-display-id-press_kit_printed .download a, .view-file-download.view-display-id-press_kit_downloads .download a, .view-file-download.view-display-id-annual_reports .download a, .view-file-download.view-display-id-science_brochures .download a, .view-file-download.view-display-id-surveys .download a, .view-file-download.view-display-id-oars .download a {
  border-top: none;
  border-bottom: none;
}
.view-file-download.view-display-id-press_kit_printed .download:after, .view-file-download.view-display-id-press_kit_downloads .download:after, .view-file-download.view-display-id-annual_reports .download:after, .view-file-download.view-display-id-science_brochures .download:after, .view-file-download.view-display-id-surveys .download:after, .view-file-download.view-display-id-oars .download:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #009f90;
}
.view-file-download.view-display-id-press_kit_printed .download .img-wrapper, .view-file-download.view-display-id-press_kit_downloads .download .img-wrapper, .view-file-download.view-display-id-annual_reports .download .img-wrapper, .view-file-download.view-display-id-science_brochures .download .img-wrapper, .view-file-download.view-display-id-surveys .download .img-wrapper, .view-file-download.view-display-id-oars .download .img-wrapper {
  background: #edf1f5;
}
.view-file-download.view-display-id-press_kit_printed .download__image, .view-file-download.view-display-id-press_kit_downloads .download__image, .view-file-download.view-display-id-annual_reports .download__image, .view-file-download.view-display-id-science_brochures .download__image, .view-file-download.view-display-id-surveys .download__image, .view-file-download.view-display-id-oars .download__image {
  position: relative;
  margin-bottom: 0.5rem;
}
.view-file-download.view-display-id-press_kit_printed .download__image:before, .view-file-download.view-display-id-press_kit_downloads .download__image:before, .view-file-download.view-display-id-annual_reports .download__image:before, .view-file-download.view-display-id-science_brochures .download__image:before, .view-file-download.view-display-id-surveys .download__image:before, .view-file-download.view-display-id-oars .download__image:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.view-file-download.view-display-id-press_kit_printed .download__image > div, .view-file-download.view-display-id-press_kit_downloads .download__image > div, .view-file-download.view-display-id-annual_reports .download__image > div, .view-file-download.view-display-id-science_brochures .download__image > div, .view-file-download.view-display-id-surveys .download__image > div, .view-file-download.view-display-id-oars .download__image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.view-file-download.view-display-id-press_kit_printed .download__image img, .view-file-download.view-display-id-press_kit_downloads .download__image img, .view-file-download.view-display-id-annual_reports .download__image img, .view-file-download.view-display-id-science_brochures .download__image img, .view-file-download.view-display-id-surveys .download__image img, .view-file-download.view-display-id-oars .download__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  max-height: 90%;
  max-width: 90%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .view-file-download.view-display-id-annual_reports .download, .view-file-download.view-display-id-science_brochures .download, .view-file-download.view-display-id-surveys .download, .view-file-download.view-display-id-oars .download {
    grid-column: span 3;
  }
}
@media screen and (min-width: 992px) {
  .view-file-download.view-display-id-annual_reports .download, .view-file-download.view-display-id-science_brochures .download, .view-file-download.view-display-id-surveys .download, .view-file-download.view-display-id-oars .download {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .view-file-download.view-display-id-annual_reports .download, .view-file-download.view-display-id-science_brochures .download, .view-file-download.view-display-id-surveys .download, .view-file-download.view-display-id-oars .download {
    grid-column: span 1;
  }
}
.view-file-download.view-display-id-annual_reports .download__image, .view-file-download.view-display-id-science_brochures .download__image, .view-file-download.view-display-id-surveys .download__image, .view-file-download.view-display-id-oars .download__image {
  position: relative;
}
.view-file-download.view-display-id-annual_reports .download__image:before, .view-file-download.view-display-id-science_brochures .download__image:before, .view-file-download.view-display-id-surveys .download__image:before, .view-file-download.view-display-id-oars .download__image:before {
  display: block;
  content: "";
  padding-top: 100%;
  width: 100%;
}
.view-file-download.view-display-id-annual_reports .download__image > div, .view-file-download.view-display-id-science_brochures .download__image > div, .view-file-download.view-display-id-surveys .download__image > div, .view-file-download.view-display-id-oars .download__image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.paragraph--type--download-list .download {
  padding-top: 0;
  margin-bottom: 0;
}
.paragraph--type--download-list .download a {
  border-bottom: none;
}
.paragraph--type--download-list .download-info-link {
  display: none;
}

/**
  * Component: Large Feed
  *  
  * @description
  * -
  */
.feed,
#block-auroragpt-views-block-news-news-archive,
#block-auroragpt-views-block-news-media-hits-archive,
#block-auroragpt-views-block-news-press-kit,
#block-auroragpt-views-block-news-posts,
.view-training-assets,
.view-projects,
.view-events,
.view-facility-updates,
.view-publications,
.view-acquia-search,
.view-taxonomy-term,
.view-display-id-covid_19,
.view-display-id-aurora_development,
.view-display-id-gpu_development {
  width: 100%;
  margin-bottom: 4rem;
}
.feed .feed__feed-item,
#block-auroragpt-views-block-news-news-archive .feed__feed-item,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item,
#block-auroragpt-views-block-news-press-kit .feed__feed-item,
#block-auroragpt-views-block-news-posts .feed__feed-item,
.view-training-assets .feed__feed-item,
.view-projects .feed__feed-item,
.view-events .feed__feed-item,
.view-facility-updates .feed__feed-item,
.view-publications .feed__feed-item,
.view-acquia-search .feed__feed-item,
.view-taxonomy-term .feed__feed-item,
.view-display-id-covid_19 .feed__feed-item,
.view-display-id-aurora_development .feed__feed-item,
.view-display-id-gpu_development .feed__feed-item {
  padding-top: 0.5rem;
  border-top: 1px solid #d8dce1;
  grid-column: 1/-1;
}
@media screen and (min-width: 992px) {
  .feed .feed__feed-item,
#block-auroragpt-views-block-news-news-archive .feed__feed-item,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item,
#block-auroragpt-views-block-news-press-kit .feed__feed-item,
#block-auroragpt-views-block-news-posts .feed__feed-item,
.view-training-assets .feed__feed-item,
.view-projects .feed__feed-item,
.view-events .feed__feed-item,
.view-facility-updates .feed__feed-item,
.view-publications .feed__feed-item,
.view-acquia-search .feed__feed-item,
.view-taxonomy-term .feed__feed-item,
.view-display-id-covid_19 .feed__feed-item,
.view-display-id-aurora_development .feed__feed-item,
.view-display-id-gpu_development .feed__feed-item {
    min-height: calc(((100vw - 32px)*.3 ) * 0.5625);
  }
}
@media screen and (min-width: 1200px) {
  .feed .feed__feed-item,
#block-auroragpt-views-block-news-news-archive .feed__feed-item,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item,
#block-auroragpt-views-block-news-press-kit .feed__feed-item,
#block-auroragpt-views-block-news-posts .feed__feed-item,
.view-training-assets .feed__feed-item,
.view-projects .feed__feed-item,
.view-events .feed__feed-item,
.view-facility-updates .feed__feed-item,
.view-publications .feed__feed-item,
.view-acquia-search .feed__feed-item,
.view-taxonomy-term .feed__feed-item,
.view-display-id-covid_19 .feed__feed-item,
.view-display-id-aurora_development .feed__feed-item,
.view-display-id-gpu_development .feed__feed-item {
    min-height: calc((1500px * .3) * 0.5625);
  }
}
.feed .feed__feed-item > a .feed__item-title,
.feed .feed__feed-item > a .feed__item-publication,
.feed .feed__feed-item > a .feed__item-excerpt,
.feed .feed__feed-item > a .feed__item-update,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a .feed__item-publication,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a .feed__item-excerpt,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a .feed__item-update,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a .feed__item-publication,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a .feed__item-excerpt,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a .feed__item-update,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a .feed__item-publication,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a .feed__item-excerpt,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a .feed__item-update,
#block-auroragpt-views-block-news-posts .feed__feed-item > a .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__feed-item > a .feed__item-publication,
#block-auroragpt-views-block-news-posts .feed__feed-item > a .feed__item-excerpt,
#block-auroragpt-views-block-news-posts .feed__feed-item > a .feed__item-update,
.view-training-assets .feed__feed-item > a .feed__item-title,
.view-training-assets .feed__feed-item > a .feed__item-publication,
.view-training-assets .feed__feed-item > a .feed__item-excerpt,
.view-training-assets .feed__feed-item > a .feed__item-update,
.view-projects .feed__feed-item > a .feed__item-title,
.view-projects .feed__feed-item > a .feed__item-publication,
.view-projects .feed__feed-item > a .feed__item-excerpt,
.view-projects .feed__feed-item > a .feed__item-update,
.view-events .feed__feed-item > a .feed__item-title,
.view-events .feed__feed-item > a .feed__item-publication,
.view-events .feed__feed-item > a .feed__item-excerpt,
.view-events .feed__feed-item > a .feed__item-update,
.view-facility-updates .feed__feed-item > a .feed__item-title,
.view-facility-updates .feed__feed-item > a .feed__item-publication,
.view-facility-updates .feed__feed-item > a .feed__item-excerpt,
.view-facility-updates .feed__feed-item > a .feed__item-update,
.view-publications .feed__feed-item > a .feed__item-title,
.view-publications .feed__feed-item > a .feed__item-publication,
.view-publications .feed__feed-item > a .feed__item-excerpt,
.view-publications .feed__feed-item > a .feed__item-update,
.view-acquia-search .feed__feed-item > a .feed__item-title,
.view-acquia-search .feed__feed-item > a .feed__item-publication,
.view-acquia-search .feed__feed-item > a .feed__item-excerpt,
.view-acquia-search .feed__feed-item > a .feed__item-update,
.view-taxonomy-term .feed__feed-item > a .feed__item-title,
.view-taxonomy-term .feed__feed-item > a .feed__item-publication,
.view-taxonomy-term .feed__feed-item > a .feed__item-excerpt,
.view-taxonomy-term .feed__feed-item > a .feed__item-update,
.view-display-id-covid_19 .feed__feed-item > a .feed__item-title,
.view-display-id-covid_19 .feed__feed-item > a .feed__item-publication,
.view-display-id-covid_19 .feed__feed-item > a .feed__item-excerpt,
.view-display-id-covid_19 .feed__feed-item > a .feed__item-update,
.view-display-id-aurora_development .feed__feed-item > a .feed__item-title,
.view-display-id-aurora_development .feed__feed-item > a .feed__item-publication,
.view-display-id-aurora_development .feed__feed-item > a .feed__item-excerpt,
.view-display-id-aurora_development .feed__feed-item > a .feed__item-update,
.view-display-id-gpu_development .feed__feed-item > a .feed__item-title,
.view-display-id-gpu_development .feed__feed-item > a .feed__item-publication,
.view-display-id-gpu_development .feed__feed-item > a .feed__item-excerpt,
.view-display-id-gpu_development .feed__feed-item > a .feed__item-update {
  color: #080812;
}
.feed .feed__feed-item > a .feed__item-date,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a .feed__item-date,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a .feed__item-date,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a .feed__item-date,
#block-auroragpt-views-block-news-posts .feed__feed-item > a .feed__item-date,
.view-training-assets .feed__feed-item > a .feed__item-date,
.view-projects .feed__feed-item > a .feed__item-date,
.view-events .feed__feed-item > a .feed__item-date,
.view-facility-updates .feed__feed-item > a .feed__item-date,
.view-publications .feed__feed-item > a .feed__item-date,
.view-acquia-search .feed__feed-item > a .feed__item-date,
.view-taxonomy-term .feed__feed-item > a .feed__item-date,
.view-display-id-covid_19 .feed__feed-item > a .feed__item-date,
.view-display-id-aurora_development .feed__feed-item > a .feed__item-date,
.view-display-id-gpu_development .feed__feed-item > a .feed__item-date {
  color: #6e6e78;
}
.feed .feed__feed-item > a:hover .feed__item-title,
.feed .feed__feed-item > a:hover .feed__item-date,
.feed .feed__feed-item > a:hover .feed__item-update,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a:hover .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a:hover .feed__item-date,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a:hover .feed__item-update,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a:hover .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a:hover .feed__item-date,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a:hover .feed__item-update,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a:hover .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a:hover .feed__item-date,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a:hover .feed__item-update,
#block-auroragpt-views-block-news-posts .feed__feed-item > a:hover .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__feed-item > a:hover .feed__item-date,
#block-auroragpt-views-block-news-posts .feed__feed-item > a:hover .feed__item-update,
.view-training-assets .feed__feed-item > a:hover .feed__item-title,
.view-training-assets .feed__feed-item > a:hover .feed__item-date,
.view-training-assets .feed__feed-item > a:hover .feed__item-update,
.view-projects .feed__feed-item > a:hover .feed__item-title,
.view-projects .feed__feed-item > a:hover .feed__item-date,
.view-projects .feed__feed-item > a:hover .feed__item-update,
.view-events .feed__feed-item > a:hover .feed__item-title,
.view-events .feed__feed-item > a:hover .feed__item-date,
.view-events .feed__feed-item > a:hover .feed__item-update,
.view-facility-updates .feed__feed-item > a:hover .feed__item-title,
.view-facility-updates .feed__feed-item > a:hover .feed__item-date,
.view-facility-updates .feed__feed-item > a:hover .feed__item-update,
.view-publications .feed__feed-item > a:hover .feed__item-title,
.view-publications .feed__feed-item > a:hover .feed__item-date,
.view-publications .feed__feed-item > a:hover .feed__item-update,
.view-acquia-search .feed__feed-item > a:hover .feed__item-title,
.view-acquia-search .feed__feed-item > a:hover .feed__item-date,
.view-acquia-search .feed__feed-item > a:hover .feed__item-update,
.view-taxonomy-term .feed__feed-item > a:hover .feed__item-title,
.view-taxonomy-term .feed__feed-item > a:hover .feed__item-date,
.view-taxonomy-term .feed__feed-item > a:hover .feed__item-update,
.view-display-id-covid_19 .feed__feed-item > a:hover .feed__item-title,
.view-display-id-covid_19 .feed__feed-item > a:hover .feed__item-date,
.view-display-id-covid_19 .feed__feed-item > a:hover .feed__item-update,
.view-display-id-aurora_development .feed__feed-item > a:hover .feed__item-title,
.view-display-id-aurora_development .feed__feed-item > a:hover .feed__item-date,
.view-display-id-aurora_development .feed__feed-item > a:hover .feed__item-update,
.view-display-id-gpu_development .feed__feed-item > a:hover .feed__item-title,
.view-display-id-gpu_development .feed__feed-item > a:hover .feed__item-date,
.view-display-id-gpu_development .feed__feed-item > a:hover .feed__item-update {
  color: #d8dce1;
}
.feed .feed__feed-item > a:hover .feed__item-publication,
.feed .feed__feed-item > a:hover .feed__item-excerpt,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a:hover .feed__item-publication,
#block-auroragpt-views-block-news-news-archive .feed__feed-item > a:hover .feed__item-excerpt,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a:hover .feed__item-publication,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item > a:hover .feed__item-excerpt,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a:hover .feed__item-publication,
#block-auroragpt-views-block-news-press-kit .feed__feed-item > a:hover .feed__item-excerpt,
#block-auroragpt-views-block-news-posts .feed__feed-item > a:hover .feed__item-publication,
#block-auroragpt-views-block-news-posts .feed__feed-item > a:hover .feed__item-excerpt,
.view-training-assets .feed__feed-item > a:hover .feed__item-publication,
.view-training-assets .feed__feed-item > a:hover .feed__item-excerpt,
.view-projects .feed__feed-item > a:hover .feed__item-publication,
.view-projects .feed__feed-item > a:hover .feed__item-excerpt,
.view-events .feed__feed-item > a:hover .feed__item-publication,
.view-events .feed__feed-item > a:hover .feed__item-excerpt,
.view-facility-updates .feed__feed-item > a:hover .feed__item-publication,
.view-facility-updates .feed__feed-item > a:hover .feed__item-excerpt,
.view-publications .feed__feed-item > a:hover .feed__item-publication,
.view-publications .feed__feed-item > a:hover .feed__item-excerpt,
.view-acquia-search .feed__feed-item > a:hover .feed__item-publication,
.view-acquia-search .feed__feed-item > a:hover .feed__item-excerpt,
.view-taxonomy-term .feed__feed-item > a:hover .feed__item-publication,
.view-taxonomy-term .feed__feed-item > a:hover .feed__item-excerpt,
.view-display-id-covid_19 .feed__feed-item > a:hover .feed__item-publication,
.view-display-id-covid_19 .feed__feed-item > a:hover .feed__item-excerpt,
.view-display-id-aurora_development .feed__feed-item > a:hover .feed__item-publication,
.view-display-id-aurora_development .feed__feed-item > a:hover .feed__item-excerpt,
.view-display-id-gpu_development .feed__feed-item > a:hover .feed__item-publication,
.view-display-id-gpu_development .feed__feed-item > a:hover .feed__item-excerpt {
  color: #6e6e78;
}
.feed .feed__block-link,
#block-auroragpt-views-block-news-news-archive .feed__block-link,
#block-auroragpt-views-block-news-media-hits-archive .feed__block-link,
#block-auroragpt-views-block-news-press-kit .feed__block-link,
#block-auroragpt-views-block-news-posts .feed__block-link,
.view-training-assets .feed__block-link,
.view-projects .feed__block-link,
.view-events .feed__block-link,
.view-facility-updates .feed__block-link,
.view-publications .feed__block-link,
.view-acquia-search .feed__block-link,
.view-taxonomy-term .feed__block-link,
.view-display-id-covid_19 .feed__block-link,
.view-display-id-aurora_development .feed__block-link,
.view-display-id-gpu_development .feed__block-link {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.feed .feed__item-meta,
#block-auroragpt-views-block-news-news-archive .feed__item-meta,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-meta,
#block-auroragpt-views-block-news-press-kit .feed__item-meta,
#block-auroragpt-views-block-news-posts .feed__item-meta,
.view-training-assets .feed__item-meta,
.view-projects .feed__item-meta,
.view-events .feed__item-meta,
.view-facility-updates .feed__item-meta,
.view-publications .feed__item-meta,
.view-acquia-search .feed__item-meta,
.view-taxonomy-term .feed__item-meta,
.view-display-id-covid_19 .feed__item-meta,
.view-display-id-aurora_development .feed__item-meta,
.view-display-id-gpu_development .feed__item-meta {
  grid-column: span 6;
  margin-bottom: 0.5rem;
  grid-row: 2;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-meta,
#block-auroragpt-views-block-news-news-archive .feed__item-meta,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-meta,
#block-auroragpt-views-block-news-press-kit .feed__item-meta,
#block-auroragpt-views-block-news-posts .feed__item-meta,
.view-training-assets .feed__item-meta,
.view-projects .feed__item-meta,
.view-events .feed__item-meta,
.view-facility-updates .feed__item-meta,
.view-publications .feed__item-meta,
.view-acquia-search .feed__item-meta,
.view-taxonomy-term .feed__item-meta,
.view-display-id-covid_19 .feed__item-meta,
.view-display-id-aurora_development .feed__item-meta,
.view-display-id-gpu_development .feed__item-meta {
    grid-column: span 2;
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-meta,
#block-auroragpt-views-block-news-news-archive .feed__item-meta,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-meta,
#block-auroragpt-views-block-news-press-kit .feed__item-meta,
#block-auroragpt-views-block-news-posts .feed__item-meta,
.view-training-assets .feed__item-meta,
.view-projects .feed__item-meta,
.view-events .feed__item-meta,
.view-facility-updates .feed__item-meta,
.view-publications .feed__item-meta,
.view-acquia-search .feed__item-meta,
.view-taxonomy-term .feed__item-meta,
.view-display-id-covid_19 .feed__item-meta,
.view-display-id-aurora_development .feed__item-meta,
.view-display-id-gpu_development .feed__item-meta {
    grid-row: 1;
  }
}
.feed .feed__item-meta p + p,
#block-auroragpt-views-block-news-news-archive .feed__item-meta p + p,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-meta p + p,
#block-auroragpt-views-block-news-press-kit .feed__item-meta p + p,
#block-auroragpt-views-block-news-posts .feed__item-meta p + p,
.view-training-assets .feed__item-meta p + p,
.view-projects .feed__item-meta p + p,
.view-events .feed__item-meta p + p,
.view-facility-updates .feed__item-meta p + p,
.view-publications .feed__item-meta p + p,
.view-acquia-search .feed__item-meta p + p,
.view-taxonomy-term .feed__item-meta p + p,
.view-display-id-covid_19 .feed__item-meta p + p,
.view-display-id-aurora_development .feed__item-meta p + p,
.view-display-id-gpu_development .feed__item-meta p + p {
  margin-top: 1rem;
}
.feed .feed__item-date,
#block-auroragpt-views-block-news-news-archive .feed__item-date,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-date,
#block-auroragpt-views-block-news-press-kit .feed__item-date,
#block-auroragpt-views-block-news-posts .feed__item-date,
.view-training-assets .feed__item-date,
.view-projects .feed__item-date,
.view-events .feed__item-date,
.view-facility-updates .feed__item-date,
.view-publications .feed__item-date,
.view-acquia-search .feed__item-date,
.view-taxonomy-term .feed__item-date,
.view-display-id-covid_19 .feed__item-date,
.view-display-id-aurora_development .feed__item-date,
.view-display-id-gpu_development .feed__item-date {
  margin-bottom: 0.5rem;
}
.feed .feed__item-date h4,
#block-auroragpt-views-block-news-news-archive .feed__item-date h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-date h4,
#block-auroragpt-views-block-news-press-kit .feed__item-date h4,
#block-auroragpt-views-block-news-posts .feed__item-date h4,
.view-training-assets .feed__item-date h4,
.view-projects .feed__item-date h4,
.view-events .feed__item-date h4,
.view-facility-updates .feed__item-date h4,
.view-publications .feed__item-date h4,
.view-acquia-search .feed__item-date h4,
.view-taxonomy-term .feed__item-date h4,
.view-display-id-covid_19 .feed__item-date h4,
.view-display-id-aurora_development .feed__item-date h4,
.view-display-id-gpu_development .feed__item-date h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  letter-spacing: 0.075em !important;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-date h4,
#block-auroragpt-views-block-news-news-archive .feed__item-date h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-date h4,
#block-auroragpt-views-block-news-press-kit .feed__item-date h4,
#block-auroragpt-views-block-news-posts .feed__item-date h4,
.view-training-assets .feed__item-date h4,
.view-projects .feed__item-date h4,
.view-events .feed__item-date h4,
.view-facility-updates .feed__item-date h4,
.view-publications .feed__item-date h4,
.view-acquia-search .feed__item-date h4,
.view-taxonomy-term .feed__item-date h4,
.view-display-id-covid_19 .feed__item-date h4,
.view-display-id-aurora_development .feed__item-date h4,
.view-display-id-gpu_development .feed__item-date h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-date h4,
#block-auroragpt-views-block-news-news-archive .feed__item-date h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-date h4,
#block-auroragpt-views-block-news-press-kit .feed__item-date h4,
#block-auroragpt-views-block-news-posts .feed__item-date h4,
.view-training-assets .feed__item-date h4,
.view-projects .feed__item-date h4,
.view-events .feed__item-date h4,
.view-facility-updates .feed__item-date h4,
.view-publications .feed__item-date h4,
.view-acquia-search .feed__item-date h4,
.view-taxonomy-term .feed__item-date h4,
.view-display-id-covid_19 .feed__item-date h4,
.view-display-id-aurora_development .feed__item-date h4,
.view-display-id-gpu_development .feed__item-date h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .feed .feed__item-date h4,
#block-auroragpt-views-block-news-news-archive .feed__item-date h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-date h4,
#block-auroragpt-views-block-news-press-kit .feed__item-date h4,
#block-auroragpt-views-block-news-posts .feed__item-date h4,
.view-training-assets .feed__item-date h4,
.view-projects .feed__item-date h4,
.view-events .feed__item-date h4,
.view-facility-updates .feed__item-date h4,
.view-publications .feed__item-date h4,
.view-acquia-search .feed__item-date h4,
.view-taxonomy-term .feed__item-date h4,
.view-display-id-covid_19 .feed__item-date h4,
.view-display-id-aurora_development .feed__item-date h4,
.view-display-id-gpu_development .feed__item-date h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.feed .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__item-title,
.view-training-assets .feed__item-title,
.view-projects .feed__item-title,
.view-events .feed__item-title,
.view-facility-updates .feed__item-title,
.view-publications .feed__item-title,
.view-acquia-search .feed__item-title,
.view-taxonomy-term .feed__item-title,
.view-display-id-covid_19 .feed__item-title,
.view-display-id-aurora_development .feed__item-title,
.view-display-id-gpu_development .feed__item-title {
  grid-column: span 6;
  grid-row: 3;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__item-title,
.view-training-assets .feed__item-title,
.view-projects .feed__item-title,
.view-events .feed__item-title,
.view-facility-updates .feed__item-title,
.view-publications .feed__item-title,
.view-acquia-search .feed__item-title,
.view-taxonomy-term .feed__item-title,
.view-display-id-covid_19 .feed__item-title,
.view-display-id-aurora_development .feed__item-title,
.view-display-id-gpu_development .feed__item-title {
    grid-column: span 4;
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__item-title,
.view-training-assets .feed__item-title,
.view-projects .feed__item-title,
.view-events .feed__item-title,
.view-facility-updates .feed__item-title,
.view-publications .feed__item-title,
.view-acquia-search .feed__item-title,
.view-taxonomy-term .feed__item-title,
.view-display-id-covid_19 .feed__item-title,
.view-display-id-aurora_development .feed__item-title,
.view-display-id-gpu_development .feed__item-title {
    grid-row: 1;
    grid-column: span 2;
    margin-bottom: 0.5rem;
  }
}
.feed .feed__item-title .item-list,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list,
.view-training-assets .feed__item-title .item-list,
.view-projects .feed__item-title .item-list,
.view-events .feed__item-title .item-list,
.view-facility-updates .feed__item-title .item-list,
.view-publications .feed__item-title .item-list,
.view-acquia-search .feed__item-title .item-list,
.view-taxonomy-term .feed__item-title .item-list,
.view-display-id-covid_19 .feed__item-title .item-list,
.view-display-id-aurora_development .feed__item-title .item-list,
.view-display-id-gpu_development .feed__item-title .item-list {
  margin-top: 1rem;
}
.feed .feed__item-title .item-list ul,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list ul,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list ul,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list ul,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list ul,
.view-training-assets .feed__item-title .item-list ul,
.view-projects .feed__item-title .item-list ul,
.view-events .feed__item-title .item-list ul,
.view-facility-updates .feed__item-title .item-list ul,
.view-publications .feed__item-title .item-list ul,
.view-acquia-search .feed__item-title .item-list ul,
.view-taxonomy-term .feed__item-title .item-list ul,
.view-display-id-covid_19 .feed__item-title .item-list ul,
.view-display-id-aurora_development .feed__item-title .item-list ul,
.view-display-id-gpu_development .feed__item-title .item-list ul {
  margin: 0;
}
.feed .feed__item-title .item-list li,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list li,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list li,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list li,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list li,
.view-training-assets .feed__item-title .item-list li,
.view-projects .feed__item-title .item-list li,
.view-events .feed__item-title .item-list li,
.view-facility-updates .feed__item-title .item-list li,
.view-publications .feed__item-title .item-list li,
.view-acquia-search .feed__item-title .item-list li,
.view-taxonomy-term .feed__item-title .item-list li,
.view-display-id-covid_19 .feed__item-title .item-list li,
.view-display-id-aurora_development .feed__item-title .item-list li,
.view-display-id-gpu_development .feed__item-title .item-list li {
  margin: 0;
}
.feed .feed__item-title .item-list span,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list span,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list span,
.view-training-assets .feed__item-title .item-list span,
.view-projects .feed__item-title .item-list span,
.view-events .feed__item-title .item-list span,
.view-facility-updates .feed__item-title .item-list span,
.view-publications .feed__item-title .item-list span,
.view-acquia-search .feed__item-title .item-list span,
.view-taxonomy-term .feed__item-title .item-list span,
.view-display-id-covid_19 .feed__item-title .item-list span,
.view-display-id-aurora_development .feed__item-title .item-list span,
.view-display-id-gpu_development .feed__item-title .item-list span {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-title .item-list span,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list span,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list span,
.view-training-assets .feed__item-title .item-list span,
.view-projects .feed__item-title .item-list span,
.view-events .feed__item-title .item-list span,
.view-facility-updates .feed__item-title .item-list span,
.view-publications .feed__item-title .item-list span,
.view-acquia-search .feed__item-title .item-list span,
.view-taxonomy-term .feed__item-title .item-list span,
.view-display-id-covid_19 .feed__item-title .item-list span,
.view-display-id-aurora_development .feed__item-title .item-list span,
.view-display-id-gpu_development .feed__item-title .item-list span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-title .item-list span,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list span,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list span,
.view-training-assets .feed__item-title .item-list span,
.view-projects .feed__item-title .item-list span,
.view-events .feed__item-title .item-list span,
.view-facility-updates .feed__item-title .item-list span,
.view-publications .feed__item-title .item-list span,
.view-acquia-search .feed__item-title .item-list span,
.view-taxonomy-term .feed__item-title .item-list span,
.view-display-id-covid_19 .feed__item-title .item-list span,
.view-display-id-aurora_development .feed__item-title .item-list span,
.view-display-id-gpu_development .feed__item-title .item-list span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .feed .feed__item-title .item-list span,
#block-auroragpt-views-block-news-news-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .item-list span,
#block-auroragpt-views-block-news-press-kit .feed__item-title .item-list span,
#block-auroragpt-views-block-news-posts .feed__item-title .item-list span,
.view-training-assets .feed__item-title .item-list span,
.view-projects .feed__item-title .item-list span,
.view-events .feed__item-title .item-list span,
.view-facility-updates .feed__item-title .item-list span,
.view-publications .feed__item-title .item-list span,
.view-acquia-search .feed__item-title .item-list span,
.view-taxonomy-term .feed__item-title .item-list span,
.view-display-id-covid_19 .feed__item-title .item-list span,
.view-display-id-aurora_development .feed__item-title .item-list span,
.view-display-id-gpu_development .feed__item-title .item-list span {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.feed .feed__item-image,
#block-auroragpt-views-block-news-news-archive .feed__item-image,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image,
#block-auroragpt-views-block-news-press-kit .feed__item-image,
#block-auroragpt-views-block-news-posts .feed__item-image,
.view-training-assets .feed__item-image,
.view-projects .feed__item-image,
.view-events .feed__item-image,
.view-facility-updates .feed__item-image,
.view-publications .feed__item-image,
.view-acquia-search .feed__item-image,
.view-taxonomy-term .feed__item-image,
.view-display-id-covid_19 .feed__item-image,
.view-display-id-aurora_development .feed__item-image,
.view-display-id-gpu_development .feed__item-image {
  margin-bottom: 0.5rem;
  grid-column: span 6;
  grid-row: 1;
}
.feed .feed__item-image .feed__item-image-wrapper,
#block-auroragpt-views-block-news-news-archive .feed__item-image .feed__item-image-wrapper,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image .feed__item-image-wrapper,
#block-auroragpt-views-block-news-press-kit .feed__item-image .feed__item-image-wrapper,
#block-auroragpt-views-block-news-posts .feed__item-image .feed__item-image-wrapper,
.view-training-assets .feed__item-image .feed__item-image-wrapper,
.view-projects .feed__item-image .feed__item-image-wrapper,
.view-events .feed__item-image .feed__item-image-wrapper,
.view-facility-updates .feed__item-image .feed__item-image-wrapper,
.view-publications .feed__item-image .feed__item-image-wrapper,
.view-acquia-search .feed__item-image .feed__item-image-wrapper,
.view-taxonomy-term .feed__item-image .feed__item-image-wrapper,
.view-display-id-covid_19 .feed__item-image .feed__item-image-wrapper,
.view-display-id-aurora_development .feed__item-image .feed__item-image-wrapper,
.view-display-id-gpu_development .feed__item-image .feed__item-image-wrapper {
  position: relative;
}
.feed .feed__item-image .feed__item-image-wrapper:before,
#block-auroragpt-views-block-news-news-archive .feed__item-image .feed__item-image-wrapper:before,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image .feed__item-image-wrapper:before,
#block-auroragpt-views-block-news-press-kit .feed__item-image .feed__item-image-wrapper:before,
#block-auroragpt-views-block-news-posts .feed__item-image .feed__item-image-wrapper:before,
.view-training-assets .feed__item-image .feed__item-image-wrapper:before,
.view-projects .feed__item-image .feed__item-image-wrapper:before,
.view-events .feed__item-image .feed__item-image-wrapper:before,
.view-facility-updates .feed__item-image .feed__item-image-wrapper:before,
.view-publications .feed__item-image .feed__item-image-wrapper:before,
.view-acquia-search .feed__item-image .feed__item-image-wrapper:before,
.view-taxonomy-term .feed__item-image .feed__item-image-wrapper:before,
.view-display-id-covid_19 .feed__item-image .feed__item-image-wrapper:before,
.view-display-id-aurora_development .feed__item-image .feed__item-image-wrapper:before,
.view-display-id-gpu_development .feed__item-image .feed__item-image-wrapper:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.feed .feed__item-image .feed__item-image-wrapper > div,
#block-auroragpt-views-block-news-news-archive .feed__item-image .feed__item-image-wrapper > div,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image .feed__item-image-wrapper > div,
#block-auroragpt-views-block-news-press-kit .feed__item-image .feed__item-image-wrapper > div,
#block-auroragpt-views-block-news-posts .feed__item-image .feed__item-image-wrapper > div,
.view-training-assets .feed__item-image .feed__item-image-wrapper > div,
.view-projects .feed__item-image .feed__item-image-wrapper > div,
.view-events .feed__item-image .feed__item-image-wrapper > div,
.view-facility-updates .feed__item-image .feed__item-image-wrapper > div,
.view-publications .feed__item-image .feed__item-image-wrapper > div,
.view-acquia-search .feed__item-image .feed__item-image-wrapper > div,
.view-taxonomy-term .feed__item-image .feed__item-image-wrapper > div,
.view-display-id-covid_19 .feed__item-image .feed__item-image-wrapper > div,
.view-display-id-aurora_development .feed__item-image .feed__item-image-wrapper > div,
.view-display-id-gpu_development .feed__item-image .feed__item-image-wrapper > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.feed .feed__item-image img,
#block-auroragpt-views-block-news-news-archive .feed__item-image img,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image img,
#block-auroragpt-views-block-news-press-kit .feed__item-image img,
#block-auroragpt-views-block-news-posts .feed__item-image img,
.view-training-assets .feed__item-image img,
.view-projects .feed__item-image img,
.view-events .feed__item-image img,
.view-facility-updates .feed__item-image img,
.view-publications .feed__item-image img,
.view-acquia-search .feed__item-image img,
.view-taxonomy-term .feed__item-image img,
.view-display-id-covid_19 .feed__item-image img,
.view-display-id-aurora_development .feed__item-image img,
.view-display-id-gpu_development .feed__item-image img {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-image,
#block-auroragpt-views-block-news-news-archive .feed__item-image,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image,
#block-auroragpt-views-block-news-press-kit .feed__item-image,
#block-auroragpt-views-block-news-posts .feed__item-image,
.view-training-assets .feed__item-image,
.view-projects .feed__item-image,
.view-events .feed__item-image,
.view-facility-updates .feed__item-image,
.view-publications .feed__item-image,
.view-acquia-search .feed__item-image,
.view-taxonomy-term .feed__item-image,
.view-display-id-covid_19 .feed__item-image,
.view-display-id-aurora_development .feed__item-image,
.view-display-id-gpu_development .feed__item-image {
    grid-column: span 6;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-image,
#block-auroragpt-views-block-news-news-archive .feed__item-image,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image,
#block-auroragpt-views-block-news-press-kit .feed__item-image,
#block-auroragpt-views-block-news-posts .feed__item-image,
.view-training-assets .feed__item-image,
.view-projects .feed__item-image,
.view-events .feed__item-image,
.view-facility-updates .feed__item-image,
.view-publications .feed__item-image,
.view-acquia-search .feed__item-image,
.view-taxonomy-term .feed__item-image,
.view-display-id-covid_19 .feed__item-image,
.view-display-id-aurora_development .feed__item-image,
.view-display-id-gpu_development .feed__item-image {
    grid-column: span 2;
    grid-row: inherit;
  }
  .feed .feed__item-image img,
#block-auroragpt-views-block-news-news-archive .feed__item-image img,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image img,
#block-auroragpt-views-block-news-press-kit .feed__item-image img,
#block-auroragpt-views-block-news-posts .feed__item-image img,
.view-training-assets .feed__item-image img,
.view-projects .feed__item-image img,
.view-events .feed__item-image img,
.view-facility-updates .feed__item-image img,
.view-publications .feed__item-image img,
.view-acquia-search .feed__item-image img,
.view-taxonomy-term .feed__item-image img,
.view-display-id-covid_19 .feed__item-image img,
.view-display-id-aurora_development .feed__item-image img,
.view-display-id-gpu_development .feed__item-image img {
    margin-bottom: 0;
  }
}
.feed .feed__item-description,
#block-auroragpt-views-block-news-news-archive .feed__item-description,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-description,
#block-auroragpt-views-block-news-press-kit .feed__item-description,
#block-auroragpt-views-block-news-posts .feed__item-description,
.view-training-assets .feed__item-description,
.view-projects .feed__item-description,
.view-events .feed__item-description,
.view-facility-updates .feed__item-description,
.view-publications .feed__item-description,
.view-acquia-search .feed__item-description,
.view-taxonomy-term .feed__item-description,
.view-display-id-covid_19 .feed__item-description,
.view-display-id-aurora_development .feed__item-description,
.view-display-id-gpu_development .feed__item-description {
  margin-top: 1rem;
}
.feed .feed__item-publication,
#block-auroragpt-views-block-news-news-archive .feed__item-publication,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-publication,
#block-auroragpt-views-block-news-press-kit .feed__item-publication,
#block-auroragpt-views-block-news-posts .feed__item-publication,
.view-training-assets .feed__item-publication,
.view-projects .feed__item-publication,
.view-events .feed__item-publication,
.view-facility-updates .feed__item-publication,
.view-publications .feed__item-publication,
.view-acquia-search .feed__item-publication,
.view-taxonomy-term .feed__item-publication,
.view-display-id-covid_19 .feed__item-publication,
.view-display-id-aurora_development .feed__item-publication,
.view-display-id-gpu_development .feed__item-publication {
  grid-column: span 6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-publication,
#block-auroragpt-views-block-news-news-archive .feed__item-publication,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-publication,
#block-auroragpt-views-block-news-press-kit .feed__item-publication,
#block-auroragpt-views-block-news-posts .feed__item-publication,
.view-training-assets .feed__item-publication,
.view-projects .feed__item-publication,
.view-events .feed__item-publication,
.view-facility-updates .feed__item-publication,
.view-publications .feed__item-publication,
.view-acquia-search .feed__item-publication,
.view-taxonomy-term .feed__item-publication,
.view-display-id-covid_19 .feed__item-publication,
.view-display-id-aurora_development .feed__item-publication,
.view-display-id-gpu_development .feed__item-publication {
    grid-column: span 3;
  }
}
.feed .feed__item-excerpt,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt,
#block-auroragpt-views-block-news-posts .feed__item-excerpt,
.view-training-assets .feed__item-excerpt,
.view-projects .feed__item-excerpt,
.view-events .feed__item-excerpt,
.view-facility-updates .feed__item-excerpt,
.view-publications .feed__item-excerpt,
.view-acquia-search .feed__item-excerpt,
.view-taxonomy-term .feed__item-excerpt,
.view-display-id-covid_19 .feed__item-excerpt,
.view-display-id-aurora_development .feed__item-excerpt,
.view-display-id-gpu_development .feed__item-excerpt {
  grid-column: span 6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-excerpt,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt,
#block-auroragpt-views-block-news-posts .feed__item-excerpt,
.view-training-assets .feed__item-excerpt,
.view-projects .feed__item-excerpt,
.view-events .feed__item-excerpt,
.view-facility-updates .feed__item-excerpt,
.view-publications .feed__item-excerpt,
.view-acquia-search .feed__item-excerpt,
.view-taxonomy-term .feed__item-excerpt,
.view-display-id-covid_19 .feed__item-excerpt,
.view-display-id-aurora_development .feed__item-excerpt,
.view-display-id-gpu_development .feed__item-excerpt {
    grid-column: span 4;
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-excerpt,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt,
#block-auroragpt-views-block-news-posts .feed__item-excerpt,
.view-training-assets .feed__item-excerpt,
.view-projects .feed__item-excerpt,
.view-events .feed__item-excerpt,
.view-facility-updates .feed__item-excerpt,
.view-publications .feed__item-excerpt,
.view-acquia-search .feed__item-excerpt,
.view-taxonomy-term .feed__item-excerpt,
.view-display-id-covid_19 .feed__item-excerpt,
.view-display-id-aurora_development .feed__item-excerpt,
.view-display-id-gpu_development .feed__item-excerpt {
    grid-row: 1;
    grid-column: span 3;
  }
}
.feed .feed__item-excerpt h3, .feed .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt h3,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-excerpt h3,
#block-auroragpt-views-block-news-posts .feed__item-excerpt .field--name-field-table-heading,
.view-training-assets .feed__item-excerpt h3,
.view-training-assets .feed__item-excerpt .field--name-field-table-heading,
.view-projects .feed__item-excerpt h3,
.view-projects .feed__item-excerpt .field--name-field-table-heading,
.view-events .feed__item-excerpt h3,
.view-events .feed__item-excerpt .field--name-field-table-heading,
.view-facility-updates .feed__item-excerpt h3,
.view-facility-updates .feed__item-excerpt .field--name-field-table-heading,
.view-publications .feed__item-excerpt h3,
.view-publications .feed__item-excerpt .field--name-field-table-heading,
.view-acquia-search .feed__item-excerpt h3,
.view-acquia-search .feed__item-excerpt .field--name-field-table-heading,
.view-taxonomy-term .feed__item-excerpt h3,
.view-taxonomy-term .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-excerpt h3,
.view-display-id-covid_19 .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-excerpt h3,
.view-display-id-aurora_development .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-excerpt h3,
.view-display-id-gpu_development .feed__item-excerpt .field--name-field-table-heading {
  margin-bottom: 0 !important;
}
.feed .feed__item-excerpt p,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt p,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt p,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt p,
#block-auroragpt-views-block-news-posts .feed__item-excerpt p,
.view-training-assets .feed__item-excerpt p,
.view-projects .feed__item-excerpt p,
.view-events .feed__item-excerpt p,
.view-facility-updates .feed__item-excerpt p,
.view-publications .feed__item-excerpt p,
.view-acquia-search .feed__item-excerpt p,
.view-taxonomy-term .feed__item-excerpt p,
.view-display-id-covid_19 .feed__item-excerpt p,
.view-display-id-aurora_development .feed__item-excerpt p,
.view-display-id-gpu_development .feed__item-excerpt p {
  margin-top: 0.5rem;
}
.feed .feed__item-update,
#block-auroragpt-views-block-news-news-archive .feed__item-update,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-update,
#block-auroragpt-views-block-news-press-kit .feed__item-update,
#block-auroragpt-views-block-news-posts .feed__item-update,
.view-training-assets .feed__item-update,
.view-projects .feed__item-update,
.view-events .feed__item-update,
.view-facility-updates .feed__item-update,
.view-publications .feed__item-update,
.view-acquia-search .feed__item-update,
.view-taxonomy-term .feed__item-update,
.view-display-id-covid_19 .feed__item-update,
.view-display-id-aurora_development .feed__item-update,
.view-display-id-gpu_development .feed__item-update {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-update,
#block-auroragpt-views-block-news-news-archive .feed__item-update,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-update,
#block-auroragpt-views-block-news-press-kit .feed__item-update,
#block-auroragpt-views-block-news-posts .feed__item-update,
.view-training-assets .feed__item-update,
.view-projects .feed__item-update,
.view-events .feed__item-update,
.view-facility-updates .feed__item-update,
.view-publications .feed__item-update,
.view-acquia-search .feed__item-update,
.view-taxonomy-term .feed__item-update,
.view-display-id-covid_19 .feed__item-update,
.view-display-id-aurora_development .feed__item-update,
.view-display-id-gpu_development .feed__item-update {
    grid-column: span 3;
  }
}
.feed .feed__item-update h4,
#block-auroragpt-views-block-news-news-archive .feed__item-update h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-update h4,
#block-auroragpt-views-block-news-press-kit .feed__item-update h4,
#block-auroragpt-views-block-news-posts .feed__item-update h4,
.view-training-assets .feed__item-update h4,
.view-projects .feed__item-update h4,
.view-events .feed__item-update h4,
.view-facility-updates .feed__item-update h4,
.view-publications .feed__item-update h4,
.view-acquia-search .feed__item-update h4,
.view-taxonomy-term .feed__item-update h4,
.view-display-id-covid_19 .feed__item-update h4,
.view-display-id-aurora_development .feed__item-update h4,
.view-display-id-gpu_development .feed__item-update h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-update h4,
#block-auroragpt-views-block-news-news-archive .feed__item-update h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-update h4,
#block-auroragpt-views-block-news-press-kit .feed__item-update h4,
#block-auroragpt-views-block-news-posts .feed__item-update h4,
.view-training-assets .feed__item-update h4,
.view-projects .feed__item-update h4,
.view-events .feed__item-update h4,
.view-facility-updates .feed__item-update h4,
.view-publications .feed__item-update h4,
.view-acquia-search .feed__item-update h4,
.view-taxonomy-term .feed__item-update h4,
.view-display-id-covid_19 .feed__item-update h4,
.view-display-id-aurora_development .feed__item-update h4,
.view-display-id-gpu_development .feed__item-update h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-update h4,
#block-auroragpt-views-block-news-news-archive .feed__item-update h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-update h4,
#block-auroragpt-views-block-news-press-kit .feed__item-update h4,
#block-auroragpt-views-block-news-posts .feed__item-update h4,
.view-training-assets .feed__item-update h4,
.view-projects .feed__item-update h4,
.view-events .feed__item-update h4,
.view-facility-updates .feed__item-update h4,
.view-publications .feed__item-update h4,
.view-acquia-search .feed__item-update h4,
.view-taxonomy-term .feed__item-update h4,
.view-display-id-covid_19 .feed__item-update h4,
.view-display-id-aurora_development .feed__item-update h4,
.view-display-id-gpu_development .feed__item-update h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .feed .feed__item-update h4,
#block-auroragpt-views-block-news-news-archive .feed__item-update h4,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-update h4,
#block-auroragpt-views-block-news-press-kit .feed__item-update h4,
#block-auroragpt-views-block-news-posts .feed__item-update h4,
.view-training-assets .feed__item-update h4,
.view-projects .feed__item-update h4,
.view-events .feed__item-update h4,
.view-facility-updates .feed__item-update h4,
.view-publications .feed__item-update h4,
.view-acquia-search .feed__item-update h4,
.view-taxonomy-term .feed__item-update h4,
.view-display-id-covid_19 .feed__item-update h4,
.view-display-id-aurora_development .feed__item-update h4,
.view-display-id-gpu_development .feed__item-update h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.feed .feed__item-meta p,
#block-auroragpt-views-block-news-news-archive .feed__item-meta p,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-meta p,
#block-auroragpt-views-block-news-press-kit .feed__item-meta p,
#block-auroragpt-views-block-news-posts .feed__item-meta p,
.view-training-assets .feed__item-meta p,
.view-projects .feed__item-meta p,
.view-events .feed__item-meta p,
.view-facility-updates .feed__item-meta p,
.view-publications .feed__item-meta p,
.view-acquia-search .feed__item-meta p,
.view-taxonomy-term .feed__item-meta p,
.view-display-id-covid_19 .feed__item-meta p,
.view-display-id-aurora_development .feed__item-meta p,
.view-display-id-gpu_development .feed__item-meta p {
  color: #6e6e78;
}
.feed .feed__block-link:hover .feed__item-meta p,
#block-auroragpt-views-block-news-news-archive .feed__block-link:hover .feed__item-meta p,
#block-auroragpt-views-block-news-media-hits-archive .feed__block-link:hover .feed__item-meta p,
#block-auroragpt-views-block-news-press-kit .feed__block-link:hover .feed__item-meta p,
#block-auroragpt-views-block-news-posts .feed__block-link:hover .feed__item-meta p,
.view-training-assets .feed__block-link:hover .feed__item-meta p,
.view-projects .feed__block-link:hover .feed__item-meta p,
.view-events .feed__block-link:hover .feed__item-meta p,
.view-facility-updates .feed__block-link:hover .feed__item-meta p,
.view-publications .feed__block-link:hover .feed__item-meta p,
.view-acquia-search .feed__block-link:hover .feed__item-meta p,
.view-taxonomy-term .feed__block-link:hover .feed__item-meta p,
.view-display-id-covid_19 .feed__block-link:hover .feed__item-meta p,
.view-display-id-aurora_development .feed__block-link:hover .feed__item-meta p,
.view-display-id-gpu_development .feed__block-link:hover .feed__item-meta p {
  color: #d8dce1;
}
.feed .feed__item-title h3, .feed .feed__item-title .field--name-field-table-heading,
.feed .feed__item-excerpt h3,
.feed .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-title h3,
#block-auroragpt-views-block-news-news-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-title h3,
#block-auroragpt-views-block-news-press-kit .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt h3,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-title h3,
#block-auroragpt-views-block-news-posts .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-excerpt h3,
#block-auroragpt-views-block-news-posts .feed__item-excerpt .field--name-field-table-heading,
.view-training-assets .feed__item-title h3,
.view-training-assets .feed__item-title .field--name-field-table-heading,
.view-training-assets .feed__item-excerpt h3,
.view-training-assets .feed__item-excerpt .field--name-field-table-heading,
.view-projects .feed__item-title h3,
.view-projects .feed__item-title .field--name-field-table-heading,
.view-projects .feed__item-excerpt h3,
.view-projects .feed__item-excerpt .field--name-field-table-heading,
.view-events .feed__item-title h3,
.view-events .feed__item-title .field--name-field-table-heading,
.view-events .feed__item-excerpt h3,
.view-events .feed__item-excerpt .field--name-field-table-heading,
.view-facility-updates .feed__item-title h3,
.view-facility-updates .feed__item-title .field--name-field-table-heading,
.view-facility-updates .feed__item-excerpt h3,
.view-facility-updates .feed__item-excerpt .field--name-field-table-heading,
.view-publications .feed__item-title h3,
.view-publications .feed__item-title .field--name-field-table-heading,
.view-publications .feed__item-excerpt h3,
.view-publications .feed__item-excerpt .field--name-field-table-heading,
.view-acquia-search .feed__item-title h3,
.view-acquia-search .feed__item-title .field--name-field-table-heading,
.view-acquia-search .feed__item-excerpt h3,
.view-acquia-search .feed__item-excerpt .field--name-field-table-heading,
.view-taxonomy-term .feed__item-title h3,
.view-taxonomy-term .feed__item-title .field--name-field-table-heading,
.view-taxonomy-term .feed__item-excerpt h3,
.view-taxonomy-term .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-title h3,
.view-display-id-covid_19 .feed__item-title .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-excerpt h3,
.view-display-id-covid_19 .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-title h3,
.view-display-id-aurora_development .feed__item-title .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-excerpt h3,
.view-display-id-aurora_development .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-title h3,
.view-display-id-gpu_development .feed__item-title .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-excerpt h3,
.view-display-id-gpu_development .feed__item-excerpt .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .feed .feed__item-title h3, .feed .feed__item-title .field--name-field-table-heading,
.feed .feed__item-excerpt h3,
.feed .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-title h3,
#block-auroragpt-views-block-news-news-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-title h3,
#block-auroragpt-views-block-news-press-kit .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt h3,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-title h3,
#block-auroragpt-views-block-news-posts .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-excerpt h3,
#block-auroragpt-views-block-news-posts .feed__item-excerpt .field--name-field-table-heading,
.view-training-assets .feed__item-title h3,
.view-training-assets .feed__item-title .field--name-field-table-heading,
.view-training-assets .feed__item-excerpt h3,
.view-training-assets .feed__item-excerpt .field--name-field-table-heading,
.view-projects .feed__item-title h3,
.view-projects .feed__item-title .field--name-field-table-heading,
.view-projects .feed__item-excerpt h3,
.view-projects .feed__item-excerpt .field--name-field-table-heading,
.view-events .feed__item-title h3,
.view-events .feed__item-title .field--name-field-table-heading,
.view-events .feed__item-excerpt h3,
.view-events .feed__item-excerpt .field--name-field-table-heading,
.view-facility-updates .feed__item-title h3,
.view-facility-updates .feed__item-title .field--name-field-table-heading,
.view-facility-updates .feed__item-excerpt h3,
.view-facility-updates .feed__item-excerpt .field--name-field-table-heading,
.view-publications .feed__item-title h3,
.view-publications .feed__item-title .field--name-field-table-heading,
.view-publications .feed__item-excerpt h3,
.view-publications .feed__item-excerpt .field--name-field-table-heading,
.view-acquia-search .feed__item-title h3,
.view-acquia-search .feed__item-title .field--name-field-table-heading,
.view-acquia-search .feed__item-excerpt h3,
.view-acquia-search .feed__item-excerpt .field--name-field-table-heading,
.view-taxonomy-term .feed__item-title h3,
.view-taxonomy-term .feed__item-title .field--name-field-table-heading,
.view-taxonomy-term .feed__item-excerpt h3,
.view-taxonomy-term .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-title h3,
.view-display-id-covid_19 .feed__item-title .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-excerpt h3,
.view-display-id-covid_19 .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-title h3,
.view-display-id-aurora_development .feed__item-title .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-excerpt h3,
.view-display-id-aurora_development .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-title h3,
.view-display-id-gpu_development .feed__item-title .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-excerpt h3,
.view-display-id-gpu_development .feed__item-excerpt .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__item-title h3, .feed .feed__item-title .field--name-field-table-heading,
.feed .feed__item-excerpt h3,
.feed .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-title h3,
#block-auroragpt-views-block-news-news-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-title h3,
#block-auroragpt-views-block-news-press-kit .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt h3,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-title h3,
#block-auroragpt-views-block-news-posts .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-excerpt h3,
#block-auroragpt-views-block-news-posts .feed__item-excerpt .field--name-field-table-heading,
.view-training-assets .feed__item-title h3,
.view-training-assets .feed__item-title .field--name-field-table-heading,
.view-training-assets .feed__item-excerpt h3,
.view-training-assets .feed__item-excerpt .field--name-field-table-heading,
.view-projects .feed__item-title h3,
.view-projects .feed__item-title .field--name-field-table-heading,
.view-projects .feed__item-excerpt h3,
.view-projects .feed__item-excerpt .field--name-field-table-heading,
.view-events .feed__item-title h3,
.view-events .feed__item-title .field--name-field-table-heading,
.view-events .feed__item-excerpt h3,
.view-events .feed__item-excerpt .field--name-field-table-heading,
.view-facility-updates .feed__item-title h3,
.view-facility-updates .feed__item-title .field--name-field-table-heading,
.view-facility-updates .feed__item-excerpt h3,
.view-facility-updates .feed__item-excerpt .field--name-field-table-heading,
.view-publications .feed__item-title h3,
.view-publications .feed__item-title .field--name-field-table-heading,
.view-publications .feed__item-excerpt h3,
.view-publications .feed__item-excerpt .field--name-field-table-heading,
.view-acquia-search .feed__item-title h3,
.view-acquia-search .feed__item-title .field--name-field-table-heading,
.view-acquia-search .feed__item-excerpt h3,
.view-acquia-search .feed__item-excerpt .field--name-field-table-heading,
.view-taxonomy-term .feed__item-title h3,
.view-taxonomy-term .feed__item-title .field--name-field-table-heading,
.view-taxonomy-term .feed__item-excerpt h3,
.view-taxonomy-term .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-title h3,
.view-display-id-covid_19 .feed__item-title .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-excerpt h3,
.view-display-id-covid_19 .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-title h3,
.view-display-id-aurora_development .feed__item-title .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-excerpt h3,
.view-display-id-aurora_development .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-title h3,
.view-display-id-gpu_development .feed__item-title .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-excerpt h3,
.view-display-id-gpu_development .feed__item-excerpt .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .feed .feed__item-title h3, .feed .feed__item-title .field--name-field-table-heading,
.feed .feed__item-excerpt h3,
.feed .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-title h3,
#block-auroragpt-views-block-news-news-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-news-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-title h3,
#block-auroragpt-views-block-news-press-kit .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt h3,
#block-auroragpt-views-block-news-press-kit .feed__item-excerpt .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-title h3,
#block-auroragpt-views-block-news-posts .feed__item-title .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__item-excerpt h3,
#block-auroragpt-views-block-news-posts .feed__item-excerpt .field--name-field-table-heading,
.view-training-assets .feed__item-title h3,
.view-training-assets .feed__item-title .field--name-field-table-heading,
.view-training-assets .feed__item-excerpt h3,
.view-training-assets .feed__item-excerpt .field--name-field-table-heading,
.view-projects .feed__item-title h3,
.view-projects .feed__item-title .field--name-field-table-heading,
.view-projects .feed__item-excerpt h3,
.view-projects .feed__item-excerpt .field--name-field-table-heading,
.view-events .feed__item-title h3,
.view-events .feed__item-title .field--name-field-table-heading,
.view-events .feed__item-excerpt h3,
.view-events .feed__item-excerpt .field--name-field-table-heading,
.view-facility-updates .feed__item-title h3,
.view-facility-updates .feed__item-title .field--name-field-table-heading,
.view-facility-updates .feed__item-excerpt h3,
.view-facility-updates .feed__item-excerpt .field--name-field-table-heading,
.view-publications .feed__item-title h3,
.view-publications .feed__item-title .field--name-field-table-heading,
.view-publications .feed__item-excerpt h3,
.view-publications .feed__item-excerpt .field--name-field-table-heading,
.view-acquia-search .feed__item-title h3,
.view-acquia-search .feed__item-title .field--name-field-table-heading,
.view-acquia-search .feed__item-excerpt h3,
.view-acquia-search .feed__item-excerpt .field--name-field-table-heading,
.view-taxonomy-term .feed__item-title h3,
.view-taxonomy-term .feed__item-title .field--name-field-table-heading,
.view-taxonomy-term .feed__item-excerpt h3,
.view-taxonomy-term .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-title h3,
.view-display-id-covid_19 .feed__item-title .field--name-field-table-heading,
.view-display-id-covid_19 .feed__item-excerpt h3,
.view-display-id-covid_19 .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-title h3,
.view-display-id-aurora_development .feed__item-title .field--name-field-table-heading,
.view-display-id-aurora_development .feed__item-excerpt h3,
.view-display-id-aurora_development .feed__item-excerpt .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-title h3,
.view-display-id-gpu_development .feed__item-title .field--name-field-table-heading,
.view-display-id-gpu_development .feed__item-excerpt h3,
.view-display-id-gpu_development .feed__item-excerpt .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.feed .feed__item-image img,
#block-auroragpt-views-block-news-news-archive .feed__item-image img,
#block-auroragpt-views-block-news-media-hits-archive .feed__item-image img,
#block-auroragpt-views-block-news-press-kit .feed__item-image img,
#block-auroragpt-views-block-news-posts .feed__item-image img,
.view-training-assets .feed__item-image img,
.view-projects .feed__item-image img,
.view-events .feed__item-image img,
.view-facility-updates .feed__item-image img,
.view-publications .feed__item-image img,
.view-acquia-search .feed__item-image img,
.view-taxonomy-term .feed__item-image img,
.view-display-id-covid_19 .feed__item-image img,
.view-display-id-aurora_development .feed__item-image img,
.view-display-id-gpu_development .feed__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.feed .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-news-archive .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-media-hits-archive .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-press-kit .feed__block-link.external-link .feed__item-meta p:after,
#block-auroragpt-views-block-news-posts .feed__block-link.external-link .feed__item-meta p:after,
.view-training-assets .feed__block-link.external-link .feed__item-meta p:after,
.view-projects .feed__block-link.external-link .feed__item-meta p:after,
.view-events .feed__block-link.external-link .feed__item-meta p:after,
.view-facility-updates .feed__block-link.external-link .feed__item-meta p:after,
.view-publications .feed__block-link.external-link .feed__item-meta p:after,
.view-acquia-search .feed__block-link.external-link .feed__item-meta p:after,
.view-taxonomy-term .feed__block-link.external-link .feed__item-meta p:after,
.view-display-id-covid_19 .feed__block-link.external-link .feed__item-meta p:after,
.view-display-id-aurora_development .feed__block-link.external-link .feed__item-meta p:after,
.view-display-id-gpu_development .feed__block-link.external-link .feed__item-meta p:after {
  content: "";
  font-size: 0.55rem;
  padding-left: 0.25rem;
}
.feed .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
#block-auroragpt-views-block-news-news-archive .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
#block-auroragpt-views-block-news-media-hits-archive .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
#block-auroragpt-views-block-news-press-kit .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
#block-auroragpt-views-block-news-posts .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-training-assets .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-projects .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-events .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-facility-updates .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-publications .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-acquia-search .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-taxonomy-term .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-display-id-covid_19 .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-display-id-aurora_development .feed__block-link.external-link.unlinked-post .feed__item-meta p:after,
.view-display-id-gpu_development .feed__block-link.external-link.unlinked-post .feed__item-meta p:after {
  display: none;
}
.feed .feed__feed-item.post h3, .feed .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post h3,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__feed-item.post h3,
#block-auroragpt-views-block-news-posts .feed__feed-item.post .field--name-field-table-heading,
.view-training-assets .feed__feed-item.post h3,
.view-training-assets .feed__feed-item.post .field--name-field-table-heading,
.view-projects .feed__feed-item.post h3,
.view-projects .feed__feed-item.post .field--name-field-table-heading,
.view-events .feed__feed-item.post h3,
.view-events .feed__feed-item.post .field--name-field-table-heading,
.view-facility-updates .feed__feed-item.post h3,
.view-facility-updates .feed__feed-item.post .field--name-field-table-heading,
.view-publications .feed__feed-item.post h3,
.view-publications .feed__feed-item.post .field--name-field-table-heading,
.view-acquia-search .feed__feed-item.post h3,
.view-acquia-search .feed__feed-item.post .field--name-field-table-heading,
.view-taxonomy-term .feed__feed-item.post h3,
.view-taxonomy-term .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-covid_19 .feed__feed-item.post h3,
.view-display-id-covid_19 .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-aurora_development .feed__feed-item.post h3,
.view-display-id-aurora_development .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-gpu_development .feed__feed-item.post h3,
.view-display-id-gpu_development .feed__feed-item.post .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .feed .feed__feed-item.post h3, .feed .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post h3,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__feed-item.post h3,
#block-auroragpt-views-block-news-posts .feed__feed-item.post .field--name-field-table-heading,
.view-training-assets .feed__feed-item.post h3,
.view-training-assets .feed__feed-item.post .field--name-field-table-heading,
.view-projects .feed__feed-item.post h3,
.view-projects .feed__feed-item.post .field--name-field-table-heading,
.view-events .feed__feed-item.post h3,
.view-events .feed__feed-item.post .field--name-field-table-heading,
.view-facility-updates .feed__feed-item.post h3,
.view-facility-updates .feed__feed-item.post .field--name-field-table-heading,
.view-publications .feed__feed-item.post h3,
.view-publications .feed__feed-item.post .field--name-field-table-heading,
.view-acquia-search .feed__feed-item.post h3,
.view-acquia-search .feed__feed-item.post .field--name-field-table-heading,
.view-taxonomy-term .feed__feed-item.post h3,
.view-taxonomy-term .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-covid_19 .feed__feed-item.post h3,
.view-display-id-covid_19 .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-aurora_development .feed__feed-item.post h3,
.view-display-id-aurora_development .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-gpu_development .feed__feed-item.post h3,
.view-display-id-gpu_development .feed__feed-item.post .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .feed .feed__feed-item.post h3, .feed .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post h3,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__feed-item.post h3,
#block-auroragpt-views-block-news-posts .feed__feed-item.post .field--name-field-table-heading,
.view-training-assets .feed__feed-item.post h3,
.view-training-assets .feed__feed-item.post .field--name-field-table-heading,
.view-projects .feed__feed-item.post h3,
.view-projects .feed__feed-item.post .field--name-field-table-heading,
.view-events .feed__feed-item.post h3,
.view-events .feed__feed-item.post .field--name-field-table-heading,
.view-facility-updates .feed__feed-item.post h3,
.view-facility-updates .feed__feed-item.post .field--name-field-table-heading,
.view-publications .feed__feed-item.post h3,
.view-publications .feed__feed-item.post .field--name-field-table-heading,
.view-acquia-search .feed__feed-item.post h3,
.view-acquia-search .feed__feed-item.post .field--name-field-table-heading,
.view-taxonomy-term .feed__feed-item.post h3,
.view-taxonomy-term .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-covid_19 .feed__feed-item.post h3,
.view-display-id-covid_19 .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-aurora_development .feed__feed-item.post h3,
.view-display-id-aurora_development .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-gpu_development .feed__feed-item.post h3,
.view-display-id-gpu_development .feed__feed-item.post .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .feed .feed__feed-item.post h3, .feed .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post h3,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post h3,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post .field--name-field-table-heading,
#block-auroragpt-views-block-news-posts .feed__feed-item.post h3,
#block-auroragpt-views-block-news-posts .feed__feed-item.post .field--name-field-table-heading,
.view-training-assets .feed__feed-item.post h3,
.view-training-assets .feed__feed-item.post .field--name-field-table-heading,
.view-projects .feed__feed-item.post h3,
.view-projects .feed__feed-item.post .field--name-field-table-heading,
.view-events .feed__feed-item.post h3,
.view-events .feed__feed-item.post .field--name-field-table-heading,
.view-facility-updates .feed__feed-item.post h3,
.view-facility-updates .feed__feed-item.post .field--name-field-table-heading,
.view-publications .feed__feed-item.post h3,
.view-publications .feed__feed-item.post .field--name-field-table-heading,
.view-acquia-search .feed__feed-item.post h3,
.view-acquia-search .feed__feed-item.post .field--name-field-table-heading,
.view-taxonomy-term .feed__feed-item.post h3,
.view-taxonomy-term .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-covid_19 .feed__feed-item.post h3,
.view-display-id-covid_19 .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-aurora_development .feed__feed-item.post h3,
.view-display-id-aurora_development .feed__feed-item.post .field--name-field-table-heading,
.view-display-id-gpu_development .feed__feed-item.post h3,
.view-display-id-gpu_development .feed__feed-item.post .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.feed .feed__feed-item.post .feed__item-description,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post .feed__item-description,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post .feed__item-description,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post .feed__item-description,
#block-auroragpt-views-block-news-posts .feed__feed-item.post .feed__item-description,
.view-training-assets .feed__feed-item.post .feed__item-description,
.view-projects .feed__feed-item.post .feed__item-description,
.view-events .feed__feed-item.post .feed__item-description,
.view-facility-updates .feed__feed-item.post .feed__item-description,
.view-publications .feed__feed-item.post .feed__item-description,
.view-acquia-search .feed__feed-item.post .feed__item-description,
.view-taxonomy-term .feed__feed-item.post .feed__item-description,
.view-display-id-covid_19 .feed__feed-item.post .feed__item-description,
.view-display-id-aurora_development .feed__feed-item.post .feed__item-description,
.view-display-id-gpu_development .feed__feed-item.post .feed__item-description {
  margin-top: 1rem;
}
.feed .feed__feed-item.post > a.unlinked-post .feed__item-title,
.feed .feed__feed-item.post > a.unlinked-post .feed__item-description,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post > a.unlinked-post .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post > a.unlinked-post .feed__item-description,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post > a.unlinked-post .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post > a.unlinked-post .feed__item-description,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post > a.unlinked-post .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post > a.unlinked-post .feed__item-description,
#block-auroragpt-views-block-news-posts .feed__feed-item.post > a.unlinked-post .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-training-assets .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-training-assets .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-projects .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-projects .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-events .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-events .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-facility-updates .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-facility-updates .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-publications .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-publications .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-acquia-search .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-acquia-search .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-taxonomy-term .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-taxonomy-term .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-display-id-covid_19 .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-display-id-covid_19 .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-display-id-aurora_development .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-display-id-aurora_development .feed__feed-item.post > a.unlinked-post .feed__item-description,
.view-display-id-gpu_development .feed__feed-item.post > a.unlinked-post .feed__item-title,
.view-display-id-gpu_development .feed__feed-item.post > a.unlinked-post .feed__item-description {
  color: #6e6e78;
}
.feed .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.feed .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
#block-auroragpt-views-block-news-posts .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
#block-auroragpt-views-block-news-posts .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-training-assets .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-training-assets .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-projects .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-projects .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-events .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-events .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-facility-updates .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-facility-updates .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-publications .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-publications .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-acquia-search .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-acquia-search .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-taxonomy-term .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-taxonomy-term .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-display-id-covid_19 .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-display-id-covid_19 .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-display-id-aurora_development .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-display-id-aurora_development .feed__feed-item.post > a.unlinked-post:hover .feed__item-description,
.view-display-id-gpu_development .feed__feed-item.post > a.unlinked-post:hover .feed__item-title,
.view-display-id-gpu_development .feed__feed-item.post > a.unlinked-post:hover .feed__item-description {
  color: #6e6e78;
}
.feed .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
#block-auroragpt-views-block-news-posts .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-training-assets .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-projects .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-events .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-facility-updates .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-publications .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-acquia-search .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-taxonomy-term .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-display-id-covid_19 .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-display-id-aurora_development .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p,
.view-display-id-gpu_development .feed__feed-item.post > a.unlinked-post:hover .feed__item-meta p {
  color: #6e6e78 !important;
}
.feed .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
#block-auroragpt-views-block-news-news-archive .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
#block-auroragpt-views-block-news-media-hits-archive .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
#block-auroragpt-views-block-news-press-kit .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
#block-auroragpt-views-block-news-posts .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-training-assets .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-projects .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-events .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-facility-updates .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-publications .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-acquia-search .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-taxonomy-term .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-display-id-covid_19 .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-display-id-aurora_development .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img,
.view-display-id-gpu_development .feed__feed-item.post > a.unlinked-post:hover .img-wrapper img {
  opacity: 1 !important;
  transform: translate(-50%, -50%) !important;
}
.feed.view-display-id-page_type .view-header,
#block-auroragpt-views-block-news-news-archive.view-display-id-page_type .view-header,
#block-auroragpt-views-block-news-media-hits-archive.view-display-id-page_type .view-header,
#block-auroragpt-views-block-news-press-kit.view-display-id-page_type .view-header,
#block-auroragpt-views-block-news-posts.view-display-id-page_type .view-header,
.view-training-assets.view-display-id-page_type .view-header,
.view-projects.view-display-id-page_type .view-header,
.view-events.view-display-id-page_type .view-header,
.view-facility-updates.view-display-id-page_type .view-header,
.view-publications.view-display-id-page_type .view-header,
.view-acquia-search.view-display-id-page_type .view-header,
.view-taxonomy-term.view-display-id-page_type .view-header,
.view-display-id-covid_19.view-display-id-page_type .view-header,
.view-display-id-aurora_development.view-display-id-page_type .view-header,
.view-display-id-gpu_development.view-display-id-page_type .view-header {
  margin-bottom: 4rem;
}
.feed.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-news-archive.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-media-hits-archive.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-press-kit.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-posts.view-display-id-publications .feed__item-meta,
.view-training-assets.view-display-id-publications .feed__item-meta,
.view-projects.view-display-id-publications .feed__item-meta,
.view-events.view-display-id-publications .feed__item-meta,
.view-facility-updates.view-display-id-publications .feed__item-meta,
.view-publications.view-display-id-publications .feed__item-meta,
.view-acquia-search.view-display-id-publications .feed__item-meta,
.view-taxonomy-term.view-display-id-publications .feed__item-meta,
.view-display-id-covid_19.view-display-id-publications .feed__item-meta,
.view-display-id-aurora_development.view-display-id-publications .feed__item-meta,
.view-display-id-gpu_development.view-display-id-publications .feed__item-meta {
  grid-column: span 6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .feed.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-news-archive.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-media-hits-archive.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-press-kit.view-display-id-publications .feed__item-meta,
#block-auroragpt-views-block-news-posts.view-display-id-publications .feed__item-meta,
.view-training-assets.view-display-id-publications .feed__item-meta,
.view-projects.view-display-id-publications .feed__item-meta,
.view-events.view-display-id-publications .feed__item-meta,
.view-facility-updates.view-display-id-publications .feed__item-meta,
.view-publications.view-display-id-publications .feed__item-meta,
.view-acquia-search.view-display-id-publications .feed__item-meta,
.view-taxonomy-term.view-display-id-publications .feed__item-meta,
.view-display-id-covid_19.view-display-id-publications .feed__item-meta,
.view-display-id-aurora_development.view-display-id-publications .feed__item-meta,
.view-display-id-gpu_development.view-display-id-publications .feed__item-meta {
    grid-column: span 2;
  }
}
.feed.view-display-id-publications .feed__item-meta p + p,
#block-auroragpt-views-block-news-news-archive.view-display-id-publications .feed__item-meta p + p,
#block-auroragpt-views-block-news-media-hits-archive.view-display-id-publications .feed__item-meta p + p,
#block-auroragpt-views-block-news-press-kit.view-display-id-publications .feed__item-meta p + p,
#block-auroragpt-views-block-news-posts.view-display-id-publications .feed__item-meta p + p,
.view-training-assets.view-display-id-publications .feed__item-meta p + p,
.view-projects.view-display-id-publications .feed__item-meta p + p,
.view-events.view-display-id-publications .feed__item-meta p + p,
.view-facility-updates.view-display-id-publications .feed__item-meta p + p,
.view-publications.view-display-id-publications .feed__item-meta p + p,
.view-acquia-search.view-display-id-publications .feed__item-meta p + p,
.view-taxonomy-term.view-display-id-publications .feed__item-meta p + p,
.view-display-id-covid_19.view-display-id-publications .feed__item-meta p + p,
.view-display-id-aurora_development.view-display-id-publications .feed__item-meta p + p,
.view-display-id-gpu_development.view-display-id-publications .feed__item-meta p + p {
  margin-top: 1rem;
}

.view-header .body-text {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin-top: 1rem !important;
  color: #080812;
}
@media screen and (min-width: 768px) {
  .view-header .body-text {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-header .body-text {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-header .body-text {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

.view-facility-updates .feed__feed-item,
.view-publications .feed__feed-item {
  min-height: inherit;
}
.view-facility-updates .feed__item-meta,
.view-publications .feed__item-meta {
  grid-row: 1;
}

.view-acquia-search .updated-date {
  display: none;
}
@media screen and (min-width: 992px) {
  .view-acquia-search .feed__feed-item {
    min-height: calc(((100vw - 32px)*.3 ) * 0.35);
  }
}
@media screen and (min-width: 1200px) {
  .view-acquia-search .feed__feed-item {
    min-height: calc((1500px * .3) * 0.35);
  }
}
.view-acquia-search .feed__feed-item.Press .updated-date, .view-acquia-search .feed__feed-item.Support .updated-date {
  display: inline;
}

.view-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-bottom: 2rem;
}
.view-header p {
  grid-column: span 6;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #007b70;
}
@media screen and (min-width: 768px) {
  .view-header p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-header p {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-header p {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-header p {
    grid-column: span 4;
  }
}

.view-taxonomy-term .view-header {
  display: none;
}

/**
  * Component: People
  *  
  * @description
  * -
  */
.view-people {
  width: 100%;
  margin-bottom: 4rem;
}
.view-people .feed__person {
  grid-column: span 6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .view-people .feed__person {
    grid-column: span 2;
  }
}
.view-people .feed__person .feed__no-link,
.view-people .feed__person .feed__block-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.view-people .feed__person-image {
  position: relative;
  grid-column: 1/-1;
  margin-bottom: 0.5rem;
}
.view-people .feed__person-image:before {
  display: block;
  content: "";
  padding-top: 100%;
  width: 100%;
}
.view-people .feed__person-image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.view-people .feed__person-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.view-people .feed__person-name {
  margin-bottom: 0.5rem;
  grid-column: 1/-1;
}
.view-people .feed__person-info {
  grid-column: 1/-1;
}
.view-people .feed__person-info h3 + p, .view-people .feed__person-info .field--name-field-table-heading + p,
.view-people .feed__person-info p + p {
  padding-top: 1rem;
}
.view-people .feed__person-info p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .view-people .feed__person-info p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-people .feed__person-info p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-people .feed__person-info p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.view-people .views-infinite-scroll-content-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.view-people .feed__block-link {
  color: #080812;
}
.view-people .img-wrapper {
  background: #edf1f5;
}
.view-people .default-image {
  opacity: 0.25;
}
.view-people > .view-content > h3, .view-people > .view-content > .field--name-field-table-heading {
  grid-column: span 12;
  margin-bottom: 1rem;
}
.view-people .views-exposed-form {
  margin-bottom: 0;
}
.view-people .views-exposed-form .form-type-select {
  height: inherit;
}
.view-people .views-exposed-form .form-actions {
  display: none;
}
.view-people .views-exposed-form .form--inline {
  width: calc(100% - 28px * 2);
}
.view-people.view-display-id-people .view-content, .view-people.view-display-id-auroragpt .view-content, .view-people.view-display-id-council_members .view-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
@media only screen and (min-width: 500px) {
  .view-people.view-display-id-people .view-content, .view-people.view-display-id-auroragpt .view-content, .view-people.view-display-id-council_members .view-content {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .view-people.view-display-id-people .view-content, .view-people.view-display-id-auroragpt .view-content, .view-people.view-display-id-council_members .view-content {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .view-people.view-display-id-people .view-content, .view-people.view-display-id-auroragpt .view-content, .view-people.view-display-id-council_members .view-content {
    grid-template-columns: repeat(12, 1fr);
  }
}
.view-people.view-display-id-people .feed__person, .view-people.view-display-id-auroragpt .feed__person, .view-people.view-display-id-council_members .feed__person {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .view-people.view-display-id-people .feed__person, .view-people.view-display-id-auroragpt .feed__person, .view-people.view-display-id-council_members .feed__person {
    grid-column: span 2;
  }
}
.view-people.view-display-id-alpha {
  margin-bottom: 0;
  z-index: 1;
}
.view-people.view-display-id-alpha .view-content,
.view-people.view-display-id-alpha .view-footer {
  display: inline-block;
}
.view-people.view-display-id-alpha .view-content .views-summary {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .view-people.view-display-id-alpha .view-content .views-summary {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-people.view-display-id-alpha .view-content .views-summary {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-people.view-display-id-alpha .view-content .views-summary {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.view-people.view-display-id-alpha .view-content .views-summary a {
  display: inline-block;
  margin-right: 0.5rem;
  padding-bottom: 0.5rem;
}
.view-people.view-display-id-alpha .view-content .views-summary a.is-active {
  color: #003a41;
}
.view-people.view-display-id-alpha .view-footer a {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .view-people.view-display-id-alpha .view-footer a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-people.view-display-id-alpha .view-footer a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-people.view-display-id-alpha .view-footer a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}

.view-display-id-people .views-exposed-form .form-type-select,
.view-display-id-group .views-exposed-form .form-type-select {
  grid-column: span 6;
  border: none;
  padding-bottom: 0;
  background: #fff;
}
.view-display-id-people .bef-links,
.view-display-id-group .bef-links {
  width: 100%;
  margin-top: 1rem;
}
.view-display-id-people .bef-links ul li,
.view-display-id-group .bef-links ul li {
  display: block;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .view-display-id-people .bef-links ul li,
.view-display-id-group .bef-links ul li {
    display: inline-block;
    width: inherit;
  }
}
.view-display-id-people .bef-links ul li a,
.view-display-id-group .bef-links ul li a {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  display: block;
  color: #009f90;
  margin-left: 0;
  margin-right: 0;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  position: relative;
  bottom: 0.4rem;
  margin-bottom: 0.5rem !important;
}
@media screen and (min-width: 768px) {
  .view-display-id-people .bef-links ul li a,
.view-display-id-group .bef-links ul li a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-display-id-people .bef-links ul li a,
.view-display-id-group .bef-links ul li a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .view-display-id-people .bef-links ul li a,
.view-display-id-group .bef-links ul li a {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .view-display-id-people .bef-links ul li a,
.view-display-id-group .bef-links ul li a {
    width: inherit;
    margin-bottom: inherit !important;
    display: inline;
  }
}
.view-display-id-people .bef-links ul li a.bef-link--selected,
.view-display-id-group .bef-links ul li a.bef-link--selected {
  border-bottom: 1px solid #009f90;
  border-top: 1px solid #009f90;
  border-right: 1px solid #009f90;
  border-left: 1px solid #009f90;
  background-color: #fff;
  color: #003a41;
}
@media screen and (min-width: 992px) {
  .view-display-id-people .bef-links ul li a.bef-link--selected,
.view-display-id-group .bef-links ul li a.bef-link--selected {
    border-bottom: 1px solid #fff;
  }
}

.view-display-id-group .view-filters {
  margin-bottom: 2rem !important;
}

.paragraph--type--directory {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
@media only screen and (min-width: 500px) {
  .paragraph--type--directory {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .paragraph--type--directory {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--directory {
    margin-right: -51%;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--directory {
    grid-template-columns: repeat(12, 1fr);
  }
}
.paragraph--type--directory .field--name-field-running-text,
.paragraph--type--directory .field--name-field-directory-heading {
  grid-column: span 12 !important;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .paragraph--type--directory .field--name-field-running-text,
.paragraph--type--directory .field--name-field-directory-heading {
    grid-column: span 8 !important;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--directory .field--name-field-running-text,
.paragraph--type--directory .field--name-field-directory-heading {
    grid-column: span 12 !important;
  }
}
.paragraph--type--directory .feed__person {
  grid-column: span 6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .paragraph--type--directory .feed__person {
    grid-column: span 2;
  }
}
.paragraph--type--directory .feed__person .feed__no-link,
.paragraph--type--directory .feed__person .feed__block-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
}
.paragraph--type--directory .feed__person-image {
  position: relative;
  grid-column: 1/-1;
  margin-bottom: 0.5rem;
}
.paragraph--type--directory .feed__person-image:before {
  display: block;
  content: "";
  padding-top: 100%;
  width: 100%;
}
.paragraph--type--directory .feed__person-image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.paragraph--type--directory .feed__person-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.paragraph--type--directory .feed__person-name {
  margin-bottom: 0.5rem;
  grid-column: 1/-1;
}
.paragraph--type--directory .feed__person-info {
  grid-column: 1/-1;
}
.paragraph--type--directory .feed__person-info {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .paragraph--type--directory .feed__person-info {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .paragraph--type--directory .feed__person-info {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .paragraph--type--directory .feed__person-info {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.paragraph--type--directory .feed__block-link {
  color: #080812;
}
.paragraph--type--directory .img-wrapper {
  background: #edf1f5;
}
.paragraph--type--directory .default-image {
  opacity: 0.25;
}

.paragraph--type--leadership-lead-content {
  margin-bottom: 4rem;
}
@media screen and (min-width: 992px) {
  .paragraph--type--leadership-lead-content {
    margin-right: -51%;
  }
}
@media screen and (min-width: 768px) {
  .paragraph--type--leadership-lead-content .leadership-lead-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 2;
    grid-row: span auto;
  }
}
.paragraph--type--leadership-lead-content .leadership-lead-image {
  grid-column: span 1;
  grid-row: 1;
  margin-bottom: 0;
}
.paragraph--type--leadership-lead-content .leadership-lead-text {
  background: #edf1f5;
  padding: 1.5rem;
}
.paragraph--type--leadership-lead-content .field--name-field-subhead {
  margin-top: 0.5rem;
}
.paragraph--type--leadership-lead-content .field--name-field-tile-text {
  margin-top: 1rem;
}
.paragraph--type--leadership-lead-content .field--name-field-links {
  margin-top: 2rem;
}
.paragraph--type--leadership-lead-content .field--name-field-links a {
  display: block;
  border-top: 1px solid #6e6e78;
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #080812;
}
.paragraph--type--leadership-lead-content .field--name-field-links a:hover {
  color: #d8dce1;
}

/**
  * Component: Media
  *  
  * @description
  * -
  */
.field--name-field-media-image img {
  width: 100%;
}

.field--name-field-media-caption {
  padding-top: 0.5rem;
  margin-bottom: 1rem;
}
.media--type-remote-video .field--name-thumbnail {
  display: none;
}
.media--type-remote-video .field--name-field-media-oembed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: auto !important;
  width: auto !important;
}
.media--type-remote-video .field--name-field-media-oembed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.media--type-remote-video .video-duration {
  z-index: 1;
  width: 144px;
  height: 72px;
  position: absolute;
  top: 0;
  left: 72px;
  background-color: #007b70;
}
.media--type-remote-video .video-duration-meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0.25rem;
  color: #fff !important;
}

/**
  * Page: Landing Page
  *  
  * @description
  * -
  */
.page-node-type-landing-page .page__intro #block-auroragpt-views-block-intro-text-block {
  grid-column: span 6;
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .page-node-type-landing-page .page__intro #block-auroragpt-views-block-intro-text-block {
    grid-column: span 4;
  }
}
.page-node-type-landing-page .page__intro #block-auroragpt-views-block-intro-text-block .intro {
  color: #b8e2de;
}
.page-node-type-landing-page .page__intro .region-page-title h1 {
  color: #fff;
}
.page-node-type-landing-page .page__intro .page__intro-primary {
  border-bottom: 1px solid #009f90;
}
.page-node-type-landing-page .page__intro .region-intro-secondary {
  padding-top: 1rem;
}
.page-node-type-landing-page .page__intro .region-page-title {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  margin-bottom: 1.5rem;
}
.page-node-type-landing-page #block-auroragpt-views-block-main-image-block-landing {
  display: grid;
}
.page-node-type-landing-page #block-auroragpt-views-block-main-image-block-landing > div {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-landing-page #block-auroragpt-views-block-main-image-block-landing > div {
    grid-column: span 4;
  }
}
.page-node-type-landing-page .page__body a {
  color: inherit;
}
.page-node-type-landing-page .view-display-id-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-landing-page .view-display-id-content .view-content {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-landing-page .view-display-id-content .view-content {
    grid-column: span 4;
  }
}
.page-node-type-landing-page .view-display-id-content .paragraph {
  margin-bottom: 2rem;
}
.page-node-type-landing-page .section-1 {
  background-color: #080812;
  color: #fff;
}
.page-node-type-landing-page .section-1 .img-wrapper {
  background-color: #009f90;
}
.page-node-type-landing-page .section-1 [class$=meta],
.page-node-type-landing-page .section-1 .field--name-field-list-eyebrow,
.page-node-type-landing-page .section-1 .pi-info {
  color: #b8e2de;
}
.page-node-type-landing-page .section-1 [class$=meta] p,
.page-node-type-landing-page .section-1 .field--name-field-list-eyebrow p,
.page-node-type-landing-page .section-1 .pi-info p {
  color: #b8e2de;
}
.page-node-type-landing-page .section-1 .paragraph--type--vertical-banner .tiles__meta {
  background-color: #080812;
}
.page-node-type-landing-page .section-1 .tiles__feed-meta {
  color: #009f90;
}
.page-node-type-landing-page .section-1 .tiles__meta::before,
.page-node-type-landing-page .section-1 .field--name-field-list-eyebrow:before,
.page-node-type-landing-page .section-1 h2::before {
  background-color: #b8e2de;
}
.page-node-type-landing-page .section-1 .tiles > *::after,
.page-node-type-landing-page .section-1 .field--name-field-top-content > *::after,
.page-node-type-landing-page .section-1 .view-guides .view-content > *::after {
  background-color: #009f90;
}
.page-node-type-landing-page .section-1 .tiles__feed-list li,
.page-node-type-landing-page .section-1 .field--name-field-list-content-reference .field__item,
.page-node-type-landing-page .section-1 .field--name-field-manual-list-items .field__item,
.page-node-type-landing-page .section-1 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #009f90;
}
.page-node-type-landing-page .section-1 .tiles__feed-list li:first-child,
.page-node-type-landing-page .section-1 .field--name-field-list-content-reference .field__item:first-child,
.page-node-type-landing-page .section-1 .field--name-field-manual-list-items .field__item:first-child,
.page-node-type-landing-page .section-1 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #009f90;
}
.page-node-type-landing-page .section-1 a:hover {
  color: #009f90;
}
.page-node-type-landing-page .section-1 a {
  color: #b8e2de;
}
.page-node-type-landing-page .section-1 .block > h2 {
  color: #fff;
}
.page-node-type-landing-page .section-1 .view-header p {
  color: #b8e2de;
}
.page-node-type-landing-page .section-1 .feed__feed-item > a .feed__item-title {
  color: #fff;
}
.page-node-type-landing-page .section-1 .feed__feed-item > a:hover .feed__item-title,
.page-node-type-landing-page .section-1 .feed__feed-item > a:hover .feed__item-meta p,
.page-node-type-landing-page .section-1 .feed__feed-item > a:hover .pi-info {
  color: #009f90;
}
.page-node-type-landing-page .section-1 .feed__feed-item {
  border-color: #009f90;
}
.page-node-type-landing-page .section-2 {
  padding-top: 4rem;
  background-color: #fff;
  color: #080812;
}
.page-node-type-landing-page .section-2 .img-wrapper {
  background-color: #fff;
}
.page-node-type-landing-page .section-2 a {
  color: #007b70;
}
.page-node-type-landing-page .section-2 a:hover {
  color: #d8dce1;
}
.page-node-type-landing-page .section-2 a:hover img {
  opacity: 0.6;
}
.page-node-type-landing-page .section-2 [class$=meta],
.page-node-type-landing-page .section-2 .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-type-landing-page .section-2 .tiles__banner--narrow [class$=meta],
.page-node-type-landing-page .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-type-landing-page .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-type-landing-page .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-type-landing-page .section-2 .tiles__meta::before,
.page-node-type-landing-page .section-2 .field--name-field-list-eyebrow:before,
.page-node-type-landing-page .section-2 h2:before {
  background-color: #007b70;
}
.page-node-type-landing-page .section-2 .tiles__feed-list li,
.page-node-type-landing-page .section-2 .field--name-field-list-content-reference .field__item,
.page-node-type-landing-page .section-2 .field--name-field-manual-list-items .field__item,
.page-node-type-landing-page .section-2 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-type-landing-page .section-2 .tiles__feed-list li:first-child,
.page-node-type-landing-page .section-2 .field--name-field-list-content-reference .field__item:first-child,
.page-node-type-landing-page .section-2 .field--name-field-manual-list-items .field__item:first-child,
.page-node-type-landing-page .section-2 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-type-landing-page .section-2 .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-type-landing-page .section-2 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-type-landing-page .section-2 a.tiles__feed-more:hover,
.page-node-type-landing-page .section-2 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-type-landing-page .section-2 .list__title {
  color: #003a41;
}

/**
  * Page: News Article
  *  
  * @description
  * -
  */
.page-node-type-article .section-2 {
  background-color: #f7f2f5;
  color: #080812;
  padding-top: 4rem;
}
.page-node-type-article .section-2 a:hover {
  color: #d8dce1;
}
.page-node-type-article .section-2 .page__body a:hover {
  color: #d8dce1;
}
.page-node-type-article .section-2 .img-wrapper {
  background-color: #edf1f5;
}
.page-node-type-article .section-2 a.tiles__feed-more:hover,
.page-node-type-article .section-2 a.status-lg__more:hover {
  color: #d8dce1;
}
.page-node-type-article .section-2 [class$=meta] {
  color: #d23c51;
}
.page-node-type-article .section-2 .tiles__banner--narrow [class$=meta],
.page-node-type-article .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-type-article .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #edf1f5;
}
.page-node-type-article .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-type-article .section-2 .section__title h2,
.page-node-type-article .section-2 .block > h2 {
  color: #080812;
}
.page-node-type-article .section-2 .tiles__meta::before,
.page-node-type-article .section-2 h2:before {
  background-color: #8f2e58;
}
.page-node-type-article .section-2 .tiles__feed-list li,
.page-node-type-article .section-2 .feed__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-type-article .section-2 .tiles__feed-list li:first-child,
.page-node-type-article .section-2 .feed__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-type-article .section-2 .tiles__video-play {
  background-color: #d23c51;
}
.page-node-type-article .section-2 .tiles__video-duration {
  background-color: #8f2e58;
}
.page-node-type-article .section-2 .tiles__video-duration-meta {
  color: #fff;
}
.page-node-type-article .section-2 [class$=more] {
  color: #8f2e58;
}
.page-node-type-article .section-2 [class$=more] span {
  color: #d23c51;
}
.page-node-type-article .section-2 .field--name-field-list-more-link a:before {
  color: #d23c51;
}
.page-node-type-article .section-2 + .section-3 {
  margin-top: -6rem;
}

.page-node-type-article .page__body .node__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-article .page__body .paragraph--type--running-text {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .paragraph--type--running-text {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .paragraph--type--running-text {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .paragraph--type--running-text {
    grid-column: 3/6;
  }
}
.page-node-type-article .page__body .paragraph--type--list {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .paragraph--type--list {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .paragraph--type--list {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .paragraph--type--list {
    grid-column: 3/6;
  }
}
.page-node-type-article .page__body .paragraph--type--aside {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-article .page__body .field--name-field-aside {
  grid-column: span 6;
  border-top: 1px solid #d8dce1;
  border-bottom: 1px solid #d8dce1;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-field-aside {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-aside {
    grid-column: 1/3;
    height: 0;
    overflow: visible;
    grid-row: 1;
    border-top: 1px solid #d8dce1;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.page-node-type-article .page__body .field--name-field-aside p {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  color: #6e6e78;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-field-aside p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-aside p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .field--name-field-aside p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-article .page__body .paragraph--text--size-quote .field--name-field-aside p {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .paragraph--text--size-quote .field--name-field-aside p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .paragraph--text--size-quote .field--name-field-aside p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .paragraph--text--size-quote .field--name-field-aside p {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-article .page__body .paragraph--type--image {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.page-node-type-article .page__body .field--name-field-image-reference {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-field-image-reference {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-image-reference {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .field--name-field-image-reference {
    grid-column: 3/6;
  }
}
.page-node-type-article .page__body .paragraph--type--video {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.page-node-type-article .page__body .field--name-field-video-reference {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-field-video-reference {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-video-reference {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .field--name-field-video-reference {
    grid-column: 3/6;
  }
}
.page-node-type-article .page__body .paragraph--type--sidebar-image {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-article .page__body .paragraph--type--sidebar-image .field--name-field-image-reference {
  grid-column: span 6;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .paragraph--type--sidebar-image .field--name-field-image-reference {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .paragraph--type--sidebar-image .field--name-field-image-reference {
    grid-column: 1/3;
    height: 0;
    overflow: visible;
    grid-row: 1;
    padding-top: 0;
    margin-bottom: 0;
  }
}
.page-node-type-article .page__body .paragraph--type--table {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  padding-top: 2rem;
  margin-bottom: 1rem;
}
.page-node-type-article .page__body .field--name-field-table-heading {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-field-table-heading {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-table-heading {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .field--name-field-table-heading {
    grid-column: 3/6;
  }
}
.page-node-type-article .page__body .field--name-field-table {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-table {
    grid-column: 3/-1;
  }
}
.page-node-type-article .page__body .field--name-body {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-body {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-body {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .field--name-body {
    grid-column: 3/6;
  }
}
.page-node-type-article .page__body .field--name-field-source-link,
.page-node-type-article .page__body .field--name-field-related-link {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-article .page__body .field--name-field-source-link,
.page-node-type-article .page__body .field--name-field-related-link {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-article .page__body .field--name-field-source-link,
.page-node-type-article .page__body .field--name-field-related-link {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-article .page__body .field--name-field-source-link,
.page-node-type-article .page__body .field--name-field-related-link {
    grid-column: 3/6;
  }
}
.page-node-type-article .region-page-end {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-article .region-page-end {
    grid-column: 3/-1;
  }
}

/**
  * Page: Basic Page
  *  
  * @description
  * -
  */
.page-node-type-page .section-2 {
  background-color: #f7f2f5;
  color: #080812;
  padding-top: 4rem;
}
.page-node-type-page .section-2 a:hover {
  color: #d8dce1;
}
.page-node-type-page .section-2 .page__body a:hover {
  color: #d8dce1;
}
.page-node-type-page .section-2 .img-wrapper {
  background-color: #edf1f5;
}
.page-node-type-page .section-2 a.tiles__feed-more:hover,
.page-node-type-page .section-2 a.status-lg__more:hover {
  color: #d8dce1;
}
.page-node-type-page .section-2 [class$=meta] {
  color: #d23c51;
}
.page-node-type-page .section-2 .tiles__banner--narrow [class$=meta],
.page-node-type-page .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-type-page .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #edf1f5;
}
.page-node-type-page .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-type-page .section-2 .section__title h2,
.page-node-type-page .section-2 .block > h2 {
  color: #080812;
}
.page-node-type-page .section-2 .tiles__meta::before,
.page-node-type-page .section-2 h2:before {
  background-color: #8f2e58;
}
.page-node-type-page .section-2 .tiles__feed-list li,
.page-node-type-page .section-2 .feed__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-type-page .section-2 .tiles__feed-list li:first-child,
.page-node-type-page .section-2 .feed__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-type-page .section-2 .tiles__video-play {
  background-color: #d23c51;
}
.page-node-type-page .section-2 .tiles__video-duration {
  background-color: #8f2e58;
}
.page-node-type-page .section-2 .tiles__video-duration-meta {
  color: #fff;
}
.page-node-type-page .section-2 [class$=more] {
  color: #8f2e58;
}
.page-node-type-page .section-2 [class$=more] span {
  color: #d23c51;
}
.page-node-type-page .section-2 .field--name-field-list-more-link a:before {
  color: #d23c51;
}
.page-node-type-page .section-2 + .section-3 {
  padding-top: 0;
  margin-top: -1rem;
}
.page-node-type-page .page__intro #block-auroragpt-views-block-main-image-block {
  grid-column: span 6;
}
@media screen and (min-width: 1200px) {
  .page-node-type-page .page__intro #block-auroragpt-views-block-main-image-block {
    grid-column: 1/5;
  }
}
.page-node-type-page .page__intro #block-auroragpt-views-block-intro-text-block-2 {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .page-node-type-page .page__intro #block-auroragpt-views-block-intro-text-block-2 {
    grid-column: span 4;
  }
}
.page-node-type-page .page__intro #block-auroragpt-views-block-main-image-full-width {
  grid-column: span 6;
  margin-bottom: 2rem;
}
.page-node-type-page .page__intro #block-auroragpt-views-block-main-image-full-width + #block-auroragpt-views-block-main-image-block {
  display: none;
}
.page-node-type-page .page__intro .region-intro-secondary {
  margin-top: 1rem;
}
.page-node-type-page .page__body {
  margin-bottom: 3rem;
}
.page-node-type-page .page__body .node__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-page .page__body .field--name-field-running-text {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-page .page__body .field--name-field-running-text {
    grid-column: span 5;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-page .page__body .field--name-field-running-text {
    grid-column: 1/5;
  }
}
.page-node-type-page .page__body .field--name-field-content-paragraphs {
  grid-column: span 6;
}
@media screen and (min-width: 1200px) {
  .page-node-type-page .page__body .field--name-field-content-paragraphs {
    grid-column: 1/5;
  }
}
.page-node-type-page .page__body .field--name-field-content-paragraphs > .field__item {
  margin-bottom: 2rem;
  grid-column: 1/-1;
}
.page-node-type-page .page__body .field--name-field-content-paragraphs > *::after {
  display: none;
}
.page-node-type-page .page__body .field--name-field-content-paragraphs .paragraph--type--manual-entry-teaser:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #009f90;
}
.page-node-type-page .page__body .field--name-field-content-paragraphs .paragraph--type--manual-entry-teaser a {
  color: #080812;
}
.page-node-type-page .page__body .field--name-field-content-paragraphs .paragraph--type--manual-entry-teaser a:hover {
  color: #d8dce1;
}
@media screen and (min-width: 992px) {
  .page-node-type-page.alignment-1 .page__intro #block-auroragpt-views-block-intro-text-block-2,
.page-node-type-page.alignment-1 .page__intro #block-auroragpt-views-block-main-image-block {
    grid-column: span 4;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-page.alignment-1 .page__body .field--name-field-running-text {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-page.alignment-1 .page__body .field--name-field-running-text {
    grid-column: span 3;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-page.alignment-1 .page__body .field--name-field-content-paragraphs {
    grid-column: span 4;
  }
}

/**
  * Page: Guide
  *  
  * @description
  * -
  */
.page-node-type-guide .page__intro #block-auroragpt-views-block-intro-text-block {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-guide .page__intro #block-auroragpt-views-block-intro-text-block {
    grid-column: span 4;
  }
}
.page-node-type-guide .node__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-guide .field--name-field-running-text {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-guide .field--name-field-running-text {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-guide .field--name-field-running-text {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-guide .field--name-field-running-text {
    grid-column: span 3;
  }
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 {
  margin-top: 4rem;
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 h2 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  border-bottom: 1px solid #d8dce1;
  padding-bottom: 2rem !important;
}
@media screen and (min-width: 768px) {
  .page-node-type-guide #block-auroragpt-alcf-guides-2 h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-guide #block-auroragpt-alcf-guides-2 h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-guide #block-auroragpt-alcf-guides-2 h2 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 1;
  grid-row: span auto;
  margin-left: 0;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 2;
    grid-row: span auto;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
    grid-column-gap: 24px;
    column-gap: 24px;
    grid-row-gap: 0rem;
    row-gap: 0rem;
    grid-column: auto/span 3;
    grid-row: span auto;
  }
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu span {
  color: #080812;
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu > li {
  border-bottom: 1px solid #d8dce1;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu > li > ul {
  margin-left: 0;
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu > li > ul ul {
  margin-bottom: 0;
}
.page-node-type-guide #block-auroragpt-alcf-guides-2 > .menu > li.menu-item--expanded > span + ul > .menu-item--expanded span:before {
  content: "—";
  font-size: 1.2rem;
  margin-right: 5px;
  margin-left: -1px;
  color: #d8dce1;
}

/**
  * Page: Post
  *  
  * @description
  * -
  */
.page-node-type-update .page__body .node__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-update .page__body .field--name-field-update {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-update .page__body .field--name-field-update {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-update .page__body .field--name-field-update {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-update .page__body .field--name-field-update {
    grid-column: 3/6;
  }
}

/**
  * Page: Press Kit
  *  
  * @description
  * -
  */
.page-node-type-press-kit .page__intro {
  margin-bottom: 4rem;
}
.page-node-type-press-kit .page__intro #block-auroragpt-views-block-intro-text-block {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-press-kit .page__intro #block-auroragpt-views-block-intro-text-block {
    grid-column: span 4;
  }
}
.page-node-type-press-kit .page__intro #block-auroragpt-views-block-press-kit-information-block {
  grid-column: span 6;
  margin-top: 1rem;
}
@media screen and (min-width: 992px) {
  .page-node-type-press-kit .page__intro #block-auroragpt-views-block-press-kit-information-block {
    grid-column: span 4;
  }
}
.page-node-type-press-kit .field--name-field-kit-videos .field__label {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-type-press-kit .field--name-field-kit-videos .field__label {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-press-kit .field--name-field-kit-videos .field__label {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-press-kit .field--name-field-kit-videos .field__label {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-press-kit .field--name-field-kit-videos .field__items {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-press-kit .field--name-field-kit-videos .field__item {
  margin-bottom: 2rem;
  grid-column: span 6;
  position: relative;
}
@media screen and (min-width: 992px) {
  .page-node-type-press-kit .field--name-field-kit-videos .field__item {
    grid-column: span 2;
  }
}
.page-node-type-press-kit #block-auroragpt-views-block-news-press-kit {
  margin-bottom: 0;
}
.page-node-type-press-kit #block-auroragpt-views-block-news-press-kit > h2 {
  margin-bottom: 1rem;
}

/**
  * Page: Research
  *  
  * @description
  * -
  */
.page-node-type-research-project .page__intro {
  margin-bottom: 0.5rem;
}
.page-node-type-research-project .field--name-field-brief-description {
  margin-bottom: 2rem;
}
.page-node-type-research-project .region-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  margin-top: 1rem;
}
.page-node-type-research-project .region-content .block-system-main-block {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .page-node-type-research-project .region-content .block-system-main-block {
    grid-column: span 5;
    grid-row: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-research-project .region-content .block-system-main-block {
    grid-row: span 2;
  }
}
.page-node-type-research-project .field--name-field-testbed {
  margin-bottom: 1rem;
  font-weight: 400;
}
.page-node-type-research-project .region-page-end {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-research-project #block-auroragpt-views-block-news-meta-info-block-project {
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-research-project #block-auroragpt-views-block-main-image-block-project {
    grid-column: span 2;
  }
}

/**
  * Page: Training Asset
  *  
  * @description
  * -
  */
@media screen and (min-width: 992px) {
  .page-node-type-presentations .page__body {
    grid-column: 3/-1;
  }
}
.page-node-type-presentations .region-content .field + .field {
  margin-top: 1rem;
}
.page-node-type-presentations .region-page-end {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .page-node-type-presentations .region-page-end {
    grid-column: 3/-1;
  }
}
/**
  * Page: Media Hit
  *  
  * @description
  * -
  */
.page-node-type-in-the-news .page__body .node__content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-in-the-news .page__body .field--name-body {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-in-the-news .page__body .field--name-body {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-in-the-news .page__body .field--name-body {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-in-the-news .page__body .field--name-body {
    grid-column: 3/6;
  }
}
.page-node-type-in-the-news .page__body .field--name-field-source-link {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-in-the-news .page__body .field--name-field-source-link {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-in-the-news .page__body .field--name-field-source-link {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-in-the-news .page__body .field--name-field-source-link {
    grid-column: 3/6;
  }
}

.page-node-type-in-the-news .region-page-end {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-in-the-news .region-page-end {
    grid-column: 3/-1;
  }
}

/**
  * Page: Event Node
  *  
  * @description
  * -
  */
.page-node-type-events .region-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-events .region-content .block-system-main-block {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .region-content .block-system-main-block {
    grid-column: span 5;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-events .region-content .block-system-main-block {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-events .region-content .block-system-main-block {
    grid-column: 3/6;
  }
}
.page-node-type-events .region-content .field + .field {
  margin-top: 2rem;
}
.page-node-type-events .page__intro {
  margin-bottom: 0.5rem;
}
.page-node-type-events .paragraph--type--video,
.page-node-type-events .paragraph--type--running-text {
  margin-bottom: 2rem;
}
.page-node-type-events .region-page-end {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-events .region-page-end {
    grid-column: 3/-1;
  }
}
.page-node-type-events #block-auroragpt-views-block-intro-text-block-event,
.page-node-type-events #block-auroragpt-views-block-workshop-info-block {
  margin-bottom: 2rem;
}
.page-node-type-events .field--name-field-related-link {
  margin-top: 2rem;
}
.page-node-type-events .field--name-field-related-link a {
  border: none;
  background-color: #b8e2de;
  -webkit-appearance: none;
  color: #003a41;
  display: inline-block;
  height: 3.25rem;
  top: 0;
  box-sizing: border-box;
  margin: 0;
  color: #003a41;
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  border-radius: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  line-height: 45px !important;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .field--name-field-related-link a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-events .field--name-field-related-link a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-events .field--name-field-related-link a {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.page-node-type-events .field--name-field-related-link a:hover {
  color: #009f90;
  background-color: #edf1f5;
}
.page-node-type-events .media-link a {
  color: #009f90;
  background-color: #edf1f5;
}
.page-node-type-events .media-link a:hover {
  color: #003a41;
  background-color: #b8e2de;
}
.page-node-type-events .view-display-id-assets .media-link {
  display: inline-block;
}
.page-node-type-events .view-display-id-assets .media-link a {
  margin-right: 0.5rem;
}
.page-node-type-events .field--name-field-agenda {
  margin-bottom: 2rem;
}
.page-node-type-events .field--name-field-agenda table {
  margin-bottom: 2rem;
  table-layout: fixed;
  width: 100%;
  border: none !important;
}
.page-node-type-events .field--name-field-agenda table p {
  margin: 0;
}
.page-node-type-events .field--name-field-agenda table h3, .page-node-type-events .field--name-field-agenda table .field--name-field-table-heading {
  margin-top: 1rem;
}
.page-node-type-events .field--name-field-agenda table h4 {
  margin-bottom: 0;
}
.page-node-type-events .field--name-field-agenda tr {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  border-top: 1px solid #d8dce1;
  display: table-row;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .field--name-field-agenda tr {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-events .field--name-field-agenda tr {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-events .field--name-field-agenda tr {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-events .field--name-field-agenda tbody tr:last-child {
  border-bottom: 1px solid #d8dce1;
}
.page-node-type-events .field--name-field-agenda td,
.page-node-type-events .field--name-field-agenda th {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  border: none;
  text-align: left;
  font-weight: inherit;
}
.page-node-type-events .field--name-field-agenda thead tr {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  color: #6e6e78;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .field--name-field-agenda thead tr {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-events .field--name-field-agenda thead tr {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-events .field--name-field-agenda thead tr {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.page-node-type-events .section-2 a {
  color: #009f90;
}
.page-node-type-events .section-2 a:hover {
  color: #6e6e78;
}
.page-node-type-events .section-3 a {
  color: #009f90;
}
.page-node-type-events .section-3 a:hover {
  color: #6e6e78;
}
.page-node-type-events .view-workshop-info .more-info {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-events .view-workshop-info .field--name-more-information {
  margin-bottom: 2rem;
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .view-workshop-info .field--name-more-information {
    grid-column: span 4;
  }
}
.page-node-type-events .view-workshop-info .field--name-field-agenda {
  grid-column: span 6;
}
.page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser {
  grid-column: span 6;
  margin-bottom: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser {
    grid-column: span 2;
  }
}
.page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser .tiles__no-link, .page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser .tiles__block-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 2;
  grid-row: span auto;
  color: #080812;
}
.page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser .tiles__no-link:hover, .page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser .tiles__block-link:hover {
  color: #d8dce1;
}
.page-node-type-events .view-workshop-info .paragraph--type--manual-entry-teaser .tiles__meta {
  margin-bottom: 0.5rem;
}
.page-node-type-events .view-workshop-info .tiles__title {
  grid-column: 1/-1;
  grid-row: 3;
  margin-bottom: 2rem;
}
.page-node-type-events .view-workshop-info .tiles__title h3, .page-node-type-events .view-workshop-info .tiles__title .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .view-workshop-info .tiles__title h3, .page-node-type-events .view-workshop-info .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-events .view-workshop-info .tiles__title h3, .page-node-type-events .view-workshop-info .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-events .view-workshop-info .tiles__title h3, .page-node-type-events .view-workshop-info .tiles__title .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-events .view-workshop-info .tiles__meta {
  grid-column: 1/-1;
  grid-row: 1;
}
.page-node-type-events .view-workshop-info .tiles__meta::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.5rem;
  display: block;
}
.page-node-type-events .view-workshop-info .tiles__description {
  grid-column: 1/-1;
  grid-row: 4;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #009f90;
}
.page-node-type-events .view-workshop-info .tiles__description p {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-type-events .view-workshop-info .tiles__description p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-type-events .view-workshop-info .tiles__description p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-events .view-workshop-info .tiles__description p {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-type-events .view-workshop-info .tiles__image {
  grid-column: 1/-1;
  grid-row: 2;
  z-index: 5;
  margin-bottom: 1rem;
}
.page-node-type-events .view-workshop-info .tiles__image {
  position: relative;
}
.page-node-type-events .view-workshop-info .tiles__image:before {
  display: block;
  content: "";
  padding-top: 56.7875647668%;
  width: 100%;
}
.page-node-type-events .view-workshop-info .tiles__image > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.page-node-type-events .view-workshop-info .tiles__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

/**
  * Page: Support Document
  *  
  * @description
  * -
  */
.page-node-type-user-guides .page__body {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-user-guides .region-sidebar-first {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-user-guides .region-sidebar-first {
    grid-column: span 2;
    position: sticky;
    position: -webkit-sticky;
    /* Safari */
    top: 1rem;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .page-node-type-user-guides .region-sidebar-first::-webkit-scrollbar {
    display: none;
  }
}
.page-node-type-user-guides .region-content {
  grid-column: span 6;
  overflow: scroll;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-user-guides .region-content {
    grid-column: 3/-1;
  }
}

.page-node-type-user-guides .page__body .paragraph--type--running-text {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
  margin-bottom: 1rem;
}
.page-node-type-user-guides .page__body .field--name-field-running-text {
  grid-column: 1/-1;
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .page__body .field--name-field-running-text {
    grid-column: 1/4;
  }
}
.page-node-type-user-guides .page__body .paragraph--type--list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
}
.page-node-type-user-guides .page__body .paragraph--type--image {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.page-node-type-user-guides .page__body .field--name-field-image-reference {
  grid-column: 1/-1;
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .page__body .field--name-field-image-reference {
    grid-column: 1/4;
  }
}
.page-node-type-user-guides .page__body .paragraph--type--video {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.page-node-type-user-guides .page__body .field--name-field-video-reference {
  grid-column: 1/-1;
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .page__body .field--name-field-video-reference {
    grid-column: 1/4;
  }
}
.page-node-type-user-guides .page__body .paragraph--type--table {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
  padding-top: 2rem;
  margin-bottom: 1rem;
}
.page-node-type-user-guides .page__body .paragraph--type--code-sample {
  margin-bottom: 1rem;
}
.page-node-type-user-guides .page__body .paragraph--type--asset-download {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 4;
  grid-row: span auto;
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.page-node-type-user-guides .page__body .paragraph--type--asset-download .field--name-field-asset-reference {
  grid-column: 1/-1;
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .page__body .paragraph--type--asset-download .field--name-field-asset-reference {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-user-guides .page__body .field--name-body p, .page-node-type-user-guides .page__body .field--name-body ul, .page-node-type-user-guides .page__body .field--name-body ol, .page-node-type-user-guides .page__body .field--name-body h1, .page-node-type-user-guides .page__body .field--name-body h2, .page-node-type-user-guides .page__body .field--name-body h3, .page-node-type-user-guides .page__body .field--name-body .field--name-field-table-heading, .page-node-type-user-guides .page__body .field--name-body h4, .page-node-type-user-guides .page__body .field--name-body h5 {
    max-width: 80%;
  }
}

.page-node-type-user-guides .region-page-end {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-type-user-guides .region-page-end {
    grid-column: 3/-1;
  }
}

/**
  * Page: Person
  *  
  * @description
  * -
  */
.page-node-type-staff-directory .page__body {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-type-staff-directory .page__intro {
  margin-bottom: 1rem;
}
.page-node-type-staff-directory .region-sidebar-first {
  margin-bottom: 1rem;
  grid-column: span 6;
  top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-staff-directory .region-sidebar-first {
    grid-column: span 2;
  }
}
.page-node-type-staff-directory .region-content {
  grid-column: span 6;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-node-type-staff-directory .region-content {
    grid-column: 3/-1;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-type-staff-directory .region-content {
    grid-column: 3/6;
  }
}

/**
  * Page: Home
  *  
  * @description
  * -
  */
.path-frontpage .page__intro {
  display: none;
}
.path-frontpage .view-display-id-content .view-content {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .path-frontpage .view-display-id-content .view-content .field--name-field-tiles > .field__item {
    grid-column: span 2;
  }
}
.path-frontpage .view-display-id-content .view-content .field--name-field-tiles > .field__item ul li {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
  font-weight: 400 !important;
}
@media screen and (min-width: 768px) {
  .path-frontpage .view-display-id-content .view-content .field--name-field-tiles > .field__item ul li {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .path-frontpage .view-display-id-content .view-content .field--name-field-tiles > .field__item ul li {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .path-frontpage .view-display-id-content .view-content .field--name-field-tiles > .field__item ul li {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.path-frontpage .view-display-id-content .view-content .field--name-field-tile-text ul li {
  list-style: none;
  padding-left: 0;
  padding-top: 0.5rem !important;
  margin-bottom: 0.25rem !important;
  border-top: 1px solid #d8dce1;
}
.path-frontpage .view-display-id-content .view-content .field--name-field-tile-text ul li:before {
  display: none;
}
.path-frontpage .view-display-id-content .view-content .field--name-field-tile-text ul {
  margin-left: 0;
}
.path-frontpage .section-2 {
  display: flex;
  flex-direction: column-reverse;
}

/**
  * Page: Support Home
  *  
  * @description
  * -
  */
.page-node-x32085 .section-1 {
  background-color: #0061af;
  color: #e7f6fd;
  border-bottom: 1px solid #1d1651;
}
.page-node-x32085 .section-1 .img-wrapper {
  background-color: #0061af;
}
.page-node-x32085 .section-1 .tiles__banner--narrow [class$=meta],
.page-node-x32085 .section-1 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-x32085 .section-1 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #0061af;
}
.page-node-x32085 .section-1 [class$=meta] {
  color: #b8e2de;
}
.page-node-x32085 .section-1 [class$=meta],
.page-node-x32085 .section-1 .field--name-field-list-eyebrow {
  color: #b8e2de;
}
.page-node-x32085 .section-1 .header__nav-secondary a {
  color: #badef5;
}
.page-node-x32085 .section-1 a:hover {
  color: #1d1651;
}
.page-node-x32085 .section-1 .header__site-title h1 a {
  color: #b8e2de;
}
.page-node-x32085 .section-1 .header__site-title h1 a:hover {
  color: #118acb;
}
.page-node-x32085 .section-1 .breadcrumbs ol {
  color: #b8e2de;
}
.page-node-x32085 .section-1 .breadcrumbs ol li:before,
.page-node-x32085 .section-1 .breadcrumbs ol a {
  color: #b8e2de;
}
.page-node-x32085 .section-1 a:hover {
  color: #118acb;
}
.page-node-x32085 .section-1 .section__title h2 {
  color: #b8e2de;
}
.page-node-x32085 .section-1 .tiles > *::after {
  background-color: #b8e2de;
}
.page-node-x32085 .section-1 .header__site-title h1 a {
  color: #b8e2de;
}
.page-node-x32085 .section-1 .header__site-title h1 a:hover {
  color: #118acb;
}
.page-node-x32085 .section-1 .header__nav-primary #ultimenu-main > li:last-child {
  border-color: #1d1651;
}
.page-node-x32085 .section-1 #ultimenu-main > li > a {
  color: #fff;
}
.page-node-x32085 .section-1 #ultimenu-main > li > a:hover {
  color: #118acb;
}
.page-node-x32085 .section-1 #ultimenu-main > li.is-active-trail > a,
.page-node-x32085 .section-1 #ultimenu-main > li > a.is-active {
  color: #b8e2de;
}
.page-node-x32085 .section-1.sticky .header__nav-primary #ultimenu-main > li:last-child, .page-node-x32085 .section-1.mobile-nav .header__nav-primary #ultimenu-main > li:last-child, .page-node-x32085 .section-1.headroom--not-top.headroom--pinned .header__nav-primary #ultimenu-main > li:last-child {
  border-color: #118acb;
}
.page-node-x32085 .section-1.sticky #ultimenu-main > li > a, .page-node-x32085 .section-1.mobile-nav #ultimenu-main > li > a, .page-node-x32085 .section-1.headroom--not-top.headroom--pinned #ultimenu-main > li > a {
  color: #b8e2de;
}
.page-node-x32085 .section-1.sticky #ultimenu-main > li.is-active-trail > a,
.page-node-x32085 .section-1.sticky #ultimenu-main > li > a.is-active, .page-node-x32085 .section-1.mobile-nav #ultimenu-main > li.is-active-trail > a,
.page-node-x32085 .section-1.mobile-nav #ultimenu-main > li > a.is-active, .page-node-x32085 .section-1.headroom--not-top.headroom--pinned #ultimenu-main > li.is-active-trail > a,
.page-node-x32085 .section-1.headroom--not-top.headroom--pinned #ultimenu-main > li > a.is-active {
  color: #118acb;
}
.page-node-x32085 .section-1 .status-sm h2,
.page-node-x32085 .section-1 .status-sm li {
  color: #b8e2de;
}
.page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading h3, .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading h3, .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading h3, .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading h3, .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-heading .field--name-field-table-heading {
    font-size: 2.25rem;
    line-height: 2.25rem;
    margin-top: 0.25rem;
    padding-top: 0.17525rem;
    padding-bottom: 0.07475rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-content-reference .field__item {
  border-top: 1px solid #b8e2de;
}
.page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-top: 0rem;
  padding-top: 0.1585rem;
  padding-bottom: 0.0915rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-x32085 .section-1 .paragraph--type--content-list .field--name-field-list-content-reference .field__item h4 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-top: 0rem;
    padding-top: 0.1585rem;
    padding-bottom: 0.0915rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-x32085 .page__intro {
  margin-bottom: 0;
}
.page-node-x32085 .page__intro .page__intro-primary {
  border-bottom: 1px solid #1d1651 !important;
}
.page-node-x32085 .page__intro #block-alcf-page-title {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}
.page-node-x32085 #block-auroragpt-helpdesk-2 {
  margin-top: 2rem;
}
.page-node-x32085 #block-auroragpt-helpdesk-2 p,
.page-node-x32085 #block-auroragpt-helpdesk-2 h2 {
  color: #b8e2de;
}
.page-node-x32085 #block-auroragpt-helpdesk-2 a {
  color: #edf1f5;
}
.page-node-x32085 #block-auroragpt-helpdesk-2 a:hover {
  color: #118acb;
}
@media screen and (min-width: 992px) {
  .page-node-x32085 #block-auroragpt-helpdesk-2 {
    margin-top: -23px;
  }
}
.page-node-x32085 #block-auroragpt-exposedformacquia-searchpage-support {
  height: 2.5rem;
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .page-node-x32085 #block-auroragpt-exposedformacquia-searchpage-support {
    grid-column: span 4;
  }
}
@media screen and (min-width: 992px) {
  .page-node-x32085 #block-auroragpt-exposedformacquia-searchpage-support {
    grid-column: span 3;
  }
}
.page-node-x32085 .page__intro .page__intro-primary {
  margin-bottom: 2rem;
}
.page-node-x32085 .view-guides.view-display-id-block_1 {
  margin-top: 2rem;
}
.page-node-x32085 .view-guides.view-display-id-block_1 .view-content .tiles__title--narrow:first-child {
  display: none;
}

/**
  * Page: Support Home
  *  
  * @description
  * -
  */
.page-node-33601 .section-1 {
  background-color: #f7f2f5;
  color: #080812;
}
.page-node-33601 .section-1 a:hover {
  color: #d8dce1;
}
.page-node-33601 .section-1 .page__body a:hover {
  color: #d8dce1;
}
.page-node-33601 .section-1 .img-wrapper {
  background-color: #edf1f5;
}
.page-node-33601 .section-1 a.tiles__feed-more:hover,
.page-node-33601 .section-1 a.status-lg__more:hover {
  color: #d8dce1;
}
.page-node-33601 .section-1 [class$=meta] {
  color: #d23c51;
}
.page-node-33601 .section-1 .tiles__banner--narrow [class$=meta],
.page-node-33601 .section-1 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-33601 .section-1 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #edf1f5;
}
.page-node-33601 .section-1 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-33601 .section-1 .section__title h2,
.page-node-33601 .section-1 .block > h2 {
  color: #080812;
}
.page-node-33601 .section-1 .tiles__meta::before,
.page-node-33601 .section-1 h2:before {
  background-color: #8f2e58;
}
.page-node-33601 .section-1 .tiles__feed-list li,
.page-node-33601 .section-1 .feed__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-33601 .section-1 .tiles__feed-list li:first-child,
.page-node-33601 .section-1 .feed__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-33601 .section-1 .tiles__video-play {
  background-color: #d23c51;
}
.page-node-33601 .section-1 .tiles__video-duration {
  background-color: #8f2e58;
}
.page-node-33601 .section-1 .tiles__video-duration-meta {
  color: #fff;
}
.page-node-33601 .section-1 [class$=more] {
  color: #8f2e58;
}
.page-node-33601 .section-1 [class$=more] span {
  color: #d23c51;
}
.page-node-33601 .section-1 .field--name-field-list-more-link a:before {
  color: #d23c51;
}
.page-node-33601 .page__intro {
  margin-bottom: 0;
}
.page-node-33601 .page__intro .page__intro-primary {
  border-bottom: none;
}
.page-node-33601 .section-2 {
  background-color: #f7f2f5;
  color: #080812;
  padding-top: 0;
}
.page-node-33601 .section-2 a:hover {
  color: #d8dce1;
}
.page-node-33601 .section-2 .page__body a:hover {
  color: #d8dce1;
}
.page-node-33601 .section-2 .img-wrapper {
  background-color: #edf1f5;
}
.page-node-33601 .section-2 a.tiles__feed-more:hover,
.page-node-33601 .section-2 a.status-lg__more:hover {
  color: #d8dce1;
}
.page-node-33601 .section-2 [class$=meta] {
  color: #d23c51;
}
.page-node-33601 .section-2 .tiles__banner--narrow [class$=meta],
.page-node-33601 .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-33601 .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #edf1f5;
}
.page-node-33601 .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-33601 .section-2 .section__title h2,
.page-node-33601 .section-2 .block > h2 {
  color: #080812;
}
.page-node-33601 .section-2 .tiles__meta::before,
.page-node-33601 .section-2 h2:before {
  background-color: #8f2e58;
}
.page-node-33601 .section-2 .tiles__feed-list li,
.page-node-33601 .section-2 .feed__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-33601 .section-2 .tiles__feed-list li:first-child,
.page-node-33601 .section-2 .feed__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-33601 .section-2 .tiles__video-play {
  background-color: #d23c51;
}
.page-node-33601 .section-2 .tiles__video-duration {
  background-color: #8f2e58;
}
.page-node-33601 .section-2 .tiles__video-duration-meta {
  color: #fff;
}
.page-node-33601 .section-2 [class$=more] {
  color: #8f2e58;
}
.page-node-33601 .section-2 [class$=more] span {
  color: #d23c51;
}
.page-node-33601 .section-2 .field--name-field-list-more-link a:before {
  color: #d23c51;
}
.page-node-33601 .section-3 {
  padding-top: 4rem;
  background-color: #fff;
  color: #080812;
}
.page-node-33601 .section-3 .img-wrapper {
  background-color: #fff;
}
.page-node-33601 .section-3 a {
  color: #007b70;
}
.page-node-33601 .section-3 a:hover {
  color: #d8dce1;
}
.page-node-33601 .section-3 a:hover img {
  opacity: 0.6;
}
.page-node-33601 .section-3 [class$=meta],
.page-node-33601 .section-3 .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-33601 .section-3 .tiles__banner--narrow [class$=meta],
.page-node-33601 .section-3 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-33601 .section-3 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-33601 .section-3 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-33601 .section-3 .tiles__meta::before,
.page-node-33601 .section-3 .field--name-field-list-eyebrow:before,
.page-node-33601 .section-3 h2:before {
  background-color: #007b70;
}
.page-node-33601 .section-3 .tiles__feed-list li,
.page-node-33601 .section-3 .field--name-field-list-content-reference .field__item,
.page-node-33601 .section-3 .field--name-field-manual-list-items .field__item,
.page-node-33601 .section-3 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-33601 .section-3 .tiles__feed-list li:first-child,
.page-node-33601 .section-3 .field--name-field-list-content-reference .field__item:first-child,
.page-node-33601 .section-3 .field--name-field-manual-list-items .field__item:first-child,
.page-node-33601 .section-3 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-33601 .section-3 .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-33601 .section-3 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-33601 .section-3 a.tiles__feed-more:hover,
.page-node-33601 .section-3 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-33601 .section-3 .list__title {
  color: #003a41;
}
.page-node-33601 .status__title {
  color: #1d1651;
}
.page-node-33601 .status-lg__more {
  display: none;
}
.page-node-33601 .status__updated {
  grid-column: span 6;
  margin-bottom: 1rem;
}
.page-node-33601 .status__updated p {
  color: #6e6e78;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-33601 .status__updated p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-33601 .status__updated p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-33601 .status__updated p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

/**
  * Page: Get Started
  *  
  * @description
  * -
  */
.page-node-32051 .field--name-field-running-text h2 {
  text-indent: -2.5rem;
  margin-left: 2.5rem;
}
.page-node-32051 .field--name-field-running-text h2:before {
  content: "";
  display: inline-block;
  background: url("../img/getstarted-left.png");
  width: 24px;
  height: 34px;
  margin-right: 1rem;
  background-size: cover;
  position: relative;
  top: 8px;
}
@media screen and (min-width: 992px) {
  .page-node-32051 .field--name-field-running-text {
    margin-left: 4rem;
  }
  .page-node-32051 .field--name-field-running-text h2 {
    margin-top: -35px;
    text-indent: -4rem;
    margin-left: 0;
  }
  .page-node-32051 .field--name-field-running-text h2:before {
    width: 44px;
    height: 64px;
    top: 35px;
    margin-right: 1.25rem;
  }
}

/**
  * Page: About Landing Page
  *  
  * @description
  * -
  */
.page-node-32090 .section-2 {
  padding-top: 2rem;
}
.page-node-32090 .section-2 h2.section__title {
  margin-bottom: 2rem !important;
}
.page-node-32090 .section-2 h2.section__title::before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 1rem;
  display: block;
}
.page-node-32090 .paragraph--type--unlinked-tiles {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .page-node-32090 .paragraph--type--unlinked-tiles {
    margin-right: -51%;
  }
}
@media screen and (min-width: 768px) {
  .page-node-32090 .field--name-field-tiles > .field__item {
    grid-column: span 2;
  }
}
/**
  * Page: AI Testbeds Landing Page
  *  
  * @description
  * -
  */
.page-node-47686 {
  /*
  	.section-2 {
  		padding-top:2rem;

  		h2.section__title {
  			margin-bottom:2rem !important;

  			&::before {
  				content: "";
  				width: 36px;
  				height: 8px;
  				@include stack($bottom: s);
  				display: block;
  			}

  		}

  	}

  	.paragraph--type--unlinked-tiles {
  		margin-top: 2rem;

  		@include respond-to(m) {
  			margin-right: -51%;
  		}
  	}
  	.field--name-field-tiles > .field__item {
  		@include respond-to(s) {
  			grid-column: span 2;
  		}
  	}
  */
}
.page-node-47686 .section-1 h2:before {
  background-color: #118acb;
}
.page-node-47686 .field--name-field-top-content .paragraph--type--running-text {
  grid-column: span 12;
}
@media screen and (min-width: 768px) {
  .page-node-47686 .field--name-field-top-content .paragraph--type--running-text {
    grid-column: span 8;
  }
}
.page-node-47686 .field--name-field-top-content .field--name-field-list-heading {
  margin-top: 0;
}
.page-node-47686 .field--name-field-top-content .paragraph--type--manual-list-item .tiles__feed-meta {
  display: none;
}
.page-node-47686 .field--name-field-top-content .paragraph--type--manual-list-item h4 {
  margin-bottom: 0;
}
.page-node-47686 .field--name-field-top-content .paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item {
  padding: 0.5rem 0;
}
.page-node-47686 .field--name-field-top-content .paragraph--type--content-list-manual .field--name-field-manual-list-items .field__item:last-child {
  border-bottom: 1px solid #0061af !important;
  padding-bottom: 0.5rem;
}
.page-node-47686 .field--name-field-top-content > *::after {
  background: none;
}
.page-node-47686 .section-2 {
  background-color: #080812;
  color: #fff;
  margin-bottom: 0;
  padding-top: 0;
}
.page-node-47686 .section-2 .img-wrapper {
  background-color: #d8dce1;
}
.page-node-47686 .section-2 [class$=meta] {
  color: #badef5;
}
.page-node-47686 .section-2 .tiles__feed-meta {
  color: #edf1f5;
}
.page-node-47686 .section-2 a:hover {
  color: #6e6e78;
}
.page-node-47686 .section-2 a {
  color: #badef5;
}
.page-node-47686 .section-2 a.tiles__block-link {
  color: #fff;
}
.page-node-47686 .section-2 a.tiles__block-link:hover {
  color: #6e6e78;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content {
  background-color: #fff;
  color: #080812;
  width: 100%;
  max-width: none;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .img-wrapper {
  background-color: #fff;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content a {
  color: #007b70;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content a:hover {
  color: #d8dce1;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content a:hover img {
  opacity: 0.6;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content [class$=meta],
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .tiles__banner--narrow [class$=meta],
.page-node-47686 .section-2 #block-views-block-middle-content-content .paragraph--type--content-teaser-banner [class$=meta],
.page-node-47686 .section-2 #block-views-block-middle-content-content .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .tiles__meta::before,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-eyebrow:before,
.page-node-47686 .section-2 #block-views-block-middle-content-content h2:before {
  background-color: #007b70;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .tiles__feed-list li,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-content-reference .field__item,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-manual-list-items .field__item,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .tiles__feed-list li:first-child,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-content-reference .field__item:first-child,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-manual-list-items .field__item:first-child,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content a.tiles__feed-more:hover,
.page-node-47686 .section-2 #block-views-block-middle-content-content .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .list__title {
  color: #003a41;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content a {
  color: #009f90;
}
.page-node-47686 .section-2 #block-views-block-middle-content-content .view-middle-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.page-node-47686 .section-2 #block-views-block-middle-content-block {
  padding-top: 4rem;
}

/**
  * Page: Aurora Landing Page
  *  
  * @description
  * -
  */
.page-node-38116 {
  /*
  	#block-aurorahero {
  		grid-column: 1/-1;
  	}
  	iframe {
  	    border: 0
  	}
  */
  /*
  	.page__intro  {
  		margin-bottom: 0;
  		margin-top:-53px;

  		.region-page-title {
  			display: block;
  			width: 100%;
  			max-width: none;
  			margin-bottom: 0;
  		}
  	}
  */
  /*
  	h1 {
  	    font-size: 4.53rem;
  	    line-height: 4.75rem;
  	    margin-top: 1rem;
  	    padding-top: .0613rem;
  	    padding-bottom: .1887rem;
  	    margin-bottom: -1.25rem;
  	    font-style: normal;
  	    font-variant: normal;
  	    font-weight: 600;
  	    font-family: proxima-nova, sans-serif;
  	    letter-spacing: -.02em;
  	    word-spacing: 0em;
  	    color: #fff;
  	    font-feature-settings: "ss01", "onum", "kern", "liga"
  	}

  	@media screen and (min-width: 768px) {
  	    h1 {
  	        font-size: 13.824rem;
  	        line-height: 13.75rem;
  	        margin-top: 3rem;
  	        padding-top: .11604rem;
  	        padding-bottom: .13396rem;
  	        margin-bottom: -3rem;
  	        font-style: normal;
  	        font-variant: normal;
  	        font-weight: 600;
  	        font-family: proxima-nova, sans-serif;
  	        letter-spacing: -.05em;
  	        word-spacing: 0em
  	    }
  	}

  	@media screen and (min-width: 992px) {
  	    h1 {
  	        font-size: 13.824rem;
  	        line-height: 13.75rem;
  	        margin-top: 3rem;
  	        padding-top: .11604rem;
  	        padding-bottom: .13396rem;
  	        margin-bottom: -3rem;
  	        font-style: normal;
  	        font-variant: normal;
  	        font-weight: 600;
  	        font-family: proxima-nova, sans-serif;
  	        letter-spacing: -.05em;
  	        word-spacing: 0em
  	    }
  	}

  	@media screen and (min-width: 1200px) {
  	    h1 {
  	        font-size: 13.824rem;
  	        line-height: 13.75rem;
  	        margin-top: 3rem;
  	        padding-top: .11604rem;
  	        padding-bottom: .13396rem;
  	        margin-bottom: -3rem;
  	        font-style: normal;
  	        font-variant: normal;
  	        font-weight: 600;
  	        font-family: proxima-nova, sans-serif;
  	        letter-spacing: -.05em;
  	        word-spacing: 0em
  	    }
  	}
  */
  /*
  	.region--hero {
  	    background-color: #080812;
  	    overflow: hidden;
  	    top: 0;
  	    width: 100%;
  	    //z-index: -10;
  	    height: 180px;
  	    min-height: 180px
  	}

  	@media screen and (min-width: 768px) {
  	    .region--hero {
  	        height: 75vh;
  	        min-height: 300px
  	    }
  	}

  	.component--hero {
  	    height: 100%;
  	    position: relative
  	}


  	.component--hero {
  	    @include grid-parent();
  	}




  	.component--hero .hero__title {
  	    position: absolute;
  	    bottom: 2rem;
  	    height: -webkit-fit-content;
  	    height: -moz-fit-content;
  	    height: fit-content;
  	    transition: opacity 1s
  	}


  	.component--hero .hero__title {
  	    grid-column: 1 / -1;
  	    z-index: 10
  	}





  	@media screen and (min-width: 768px) {
  	    .component--hero .hero__title {
  	        bottom: 3.25rem
  	    }
  	}

  	.component--hero #js-youtubebg-poster {
  	    filter: blur(40px);
  	    opacity: .45
  	}

  	.component--hero .hero__bg {
  	    filter: blur(30px);
  	    opacity: .8;
  	    background-image: url("https://aurora.alcf.anl.gov/wp-content/themes/alcf-aurora/img/poster.jpg");
  	    background-size: 100%;
  	    position: absolute;
  	    top: 0;
  	    bottom: 0;
  	    left: 0;
  	    right: 0;
  	    z-index: 0
  	}

  	@media screen and (min-width: 768px) {
  	    .component--hero .hero__bg {
  	        filter: blur(40px)
  	    }
  	}

  	.component--hero .hero__overlay {
  	    position: absolute;
  	    top: 0;
  	    //bottom: calc(100vh - 180px);
  	    bottom:0;
  	    left: -28px;
  	    right: -28px;
  	    background-color: #137094;
  	    mix-blend-mode: overlay;
  	    opacity: 1;
  	    z-index: 1;
  	}

  	@media screen and (min-width: 768px) {
  	    .component--hero .hero__overlay {
  	        //bottom: 25vh
  	    }
  	}
  */
}
.page-node-38116 .breadcrumbs {
  z-index: 10;
}
.page-node-38116 .breadcrumbs ol {
  color: #009f90;
}
.page-node-38116 .breadcrumbs ol a {
  color: #009f90;
}
.page-node-38116 .page__intro .page__intro-primary {
  border-color: #009f90;
}
.page-node-38116 .page__intro #block-views-block-intro-text-block .intro {
  color: #009f90;
}
.page-node-38116 .section-1 {
  background-color: #080812;
  color: #fff;
}
.page-node-38116 .section-1 .img-wrapper {
  background-color: #009f90;
}
.page-node-38116 .section-1 [class$=meta],
.page-node-38116 .section-1 .field--name-field-list-eyebrow,
.page-node-38116 .section-1 .pi-info {
  color: #b8e2de;
}
.page-node-38116 .section-1 [class$=meta] p,
.page-node-38116 .section-1 .field--name-field-list-eyebrow p,
.page-node-38116 .section-1 .pi-info p {
  color: #b8e2de;
}
.page-node-38116 .section-1 .paragraph--type--vertical-banner .tiles__meta {
  background-color: #080812;
}
.page-node-38116 .section-1 .tiles__feed-meta {
  color: #009f90;
}
.page-node-38116 .section-1 .tiles__meta::before,
.page-node-38116 .section-1 .field--name-field-list-eyebrow:before,
.page-node-38116 .section-1 h2::before {
  background-color: #b8e2de;
}
.page-node-38116 .section-1 .tiles > *::after,
.page-node-38116 .section-1 .field--name-field-top-content > *::after,
.page-node-38116 .section-1 .view-guides .view-content > *::after {
  background-color: #009f90;
}
.page-node-38116 .section-1 .tiles__feed-list li,
.page-node-38116 .section-1 .field--name-field-list-content-reference .field__item,
.page-node-38116 .section-1 .field--name-field-manual-list-items .field__item,
.page-node-38116 .section-1 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #009f90;
}
.page-node-38116 .section-1 .tiles__feed-list li:first-child,
.page-node-38116 .section-1 .field--name-field-list-content-reference .field__item:first-child,
.page-node-38116 .section-1 .field--name-field-manual-list-items .field__item:first-child,
.page-node-38116 .section-1 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #009f90;
}
.page-node-38116 .section-1 a:hover {
  color: #009f90;
}
.page-node-38116 .section-1 a {
  color: #b8e2de;
}
.page-node-38116 .section-1 .block > h2 {
  color: #fff;
}
.page-node-38116 .section-1 .view-header p {
  color: #b8e2de;
}
.page-node-38116 .section-1 .feed__feed-item > a .feed__item-title {
  color: #fff;
}
.page-node-38116 .section-1 .feed__feed-item > a:hover .feed__item-title,
.page-node-38116 .section-1 .feed__feed-item > a:hover .feed__item-meta p,
.page-node-38116 .section-1 .feed__feed-item > a:hover .pi-info {
  color: #009f90;
}
.page-node-38116 .section-1 .feed__feed-item {
  border-color: #009f90;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table {
  margin-bottom: 4rem;
  padding-top: 0;
  grid-row: span 2;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading {
  margin-bottom: 0.75rem;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading h3, .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
  font-size: 0.875rem;
  line-height: 1rem;
  margin-top: 0rem;
  padding-top: 0.227875rem;
  padding-bottom: 0.022125rem;
  margin-bottom: -0.25rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 800;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0.1em;
  word-spacing: 0em;
  text-transform: uppercase;
  color: #b8e2de;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading h3, .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading h3, .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading h3, .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
    font-size: 0.875rem;
    line-height: 1rem;
    margin-top: 0rem;
    padding-top: 0.227875rem;
    padding-bottom: 0.022125rem;
    margin-bottom: -0.25rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0.1em;
    word-spacing: 0em;
  }
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-heading:before {
  content: "";
  width: 36px;
  height: 8px;
  margin-bottom: 0.25rem;
  display: none;
  background-color: #b8e2de;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .paragraph--type--table-row {
  display: block;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-rows {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 1;
  grid-row: span auto;
  height: 100%;
  align-items: stretch;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field__item {
  border-color: #009f90;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-row-label {
  font-weight: 800;
  color: #b8e2de;
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-row-value {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-row-value {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-row-value {
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-row-value {
    font-size: 3rem;
    line-height: 3rem;
  }
}
.page-node-38116 .field--name-field-top-content .paragraph--type--specifications-table .field--name-field-table-rows > .field__item:last-child {
  margin-bottom: 2.75rem;
}
.page-node-38116 .section-2 {
  background-color: #080812;
  color: #fff;
  margin-bottom: 0;
  padding-top: 0;
}
.page-node-38116 .section-2 .img-wrapper {
  background-color: #009f90;
}
.page-node-38116 .section-2 [class$=meta],
.page-node-38116 .section-2 .field--name-field-list-eyebrow,
.page-node-38116 .section-2 .pi-info {
  color: #b8e2de;
}
.page-node-38116 .section-2 [class$=meta] p,
.page-node-38116 .section-2 .field--name-field-list-eyebrow p,
.page-node-38116 .section-2 .pi-info p {
  color: #b8e2de;
}
.page-node-38116 .section-2 .paragraph--type--vertical-banner .tiles__meta {
  background-color: #080812;
}
.page-node-38116 .section-2 .tiles__feed-meta {
  color: #009f90;
}
.page-node-38116 .section-2 .tiles__meta::before,
.page-node-38116 .section-2 .field--name-field-list-eyebrow:before,
.page-node-38116 .section-2 h2::before {
  background-color: #b8e2de;
}
.page-node-38116 .section-2 .tiles > *::after,
.page-node-38116 .section-2 .field--name-field-top-content > *::after,
.page-node-38116 .section-2 .view-guides .view-content > *::after {
  background-color: #009f90;
}
.page-node-38116 .section-2 .tiles__feed-list li,
.page-node-38116 .section-2 .field--name-field-list-content-reference .field__item,
.page-node-38116 .section-2 .field--name-field-manual-list-items .field__item,
.page-node-38116 .section-2 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #009f90;
}
.page-node-38116 .section-2 .tiles__feed-list li:first-child,
.page-node-38116 .section-2 .field--name-field-list-content-reference .field__item:first-child,
.page-node-38116 .section-2 .field--name-field-manual-list-items .field__item:first-child,
.page-node-38116 .section-2 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #009f90;
}
.page-node-38116 .section-2 a:hover {
  color: #009f90;
}
.page-node-38116 .section-2 a {
  color: #b8e2de;
}
.page-node-38116 .section-2 .block > h2 {
  color: #fff;
}
.page-node-38116 .section-2 .view-header p {
  color: #b8e2de;
}
.page-node-38116 .section-2 .feed__feed-item > a .feed__item-title {
  color: #fff;
}
.page-node-38116 .section-2 .feed__feed-item > a:hover .feed__item-title,
.page-node-38116 .section-2 .feed__feed-item > a:hover .feed__item-meta p,
.page-node-38116 .section-2 .feed__feed-item > a:hover .pi-info {
  color: #009f90;
}
.page-node-38116 .section-2 .feed__feed-item {
  border-color: #009f90;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content {
  background-color: #fff;
  color: #080812;
  width: 100%;
  max-width: none;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .img-wrapper {
  background-color: #fff;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content a {
  color: #007b70;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content a:hover {
  color: #d8dce1;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content a:hover img {
  opacity: 0.6;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content [class$=meta],
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .tiles__banner--narrow [class$=meta],
.page-node-38116 .section-2 #block-views-block-middle-content-content .paragraph--type--content-teaser-banner [class$=meta],
.page-node-38116 .section-2 #block-views-block-middle-content-content .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .tiles__meta::before,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-eyebrow:before,
.page-node-38116 .section-2 #block-views-block-middle-content-content h2:before {
  background-color: #007b70;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .tiles__feed-list li,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-content-reference .field__item,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-manual-list-items .field__item,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .tiles__feed-list li:first-child,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-content-reference .field__item:first-child,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-manual-list-items .field__item:first-child,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content a.tiles__feed-more:hover,
.page-node-38116 .section-2 #block-views-block-middle-content-content .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .list__title {
  color: #003a41;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content a {
  color: #009f90;
}
.page-node-38116 .section-2 #block-views-block-middle-content-content .view-middle-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.page-node-38116 .section-2 #block-views-block-middle-content-block {
  padding-top: 4rem;
}
.page-node-38116 .view-display-id-content .view-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-38116 .view-display-id-content .view-content .paragraph {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .page-node-38116 .view-display-id-content .view-content .paragraph {
    grid-column: span 4;
  }
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table {
  grid-column: 1/-1;
  background-color: #b8e2de;
  padding: 28px;
  margin-left: -28px;
  margin-right: -28px;
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-heading h3, .page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-heading .field--name-field-table-heading {
  color: #003a41;
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .paragraph--type--table-row {
  display: block;
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-row-label {
  font-weight: 800;
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-rows {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-rows > .field__item {
  grid-column: span 6;
  color: #003a41;
  border-color: #009f90;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-rows > .field__item {
    grid-column: span 2;
  }
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-rows > .field__item .paragraph {
  margin-bottom: 0;
}
.page-node-38116 .view-display-id-content .view-content .paragraph--type--specifications-table .field--name-field-table-rows > .field__item:last-child {
  border-bottom: none;
}
.page-node-38116 .section-3 {
  background-color: #080812;
  color: #fff;
}
.page-node-38116 .section-3 .img-wrapper {
  background-color: #009f90;
}
.page-node-38116 .section-3 [class$=meta],
.page-node-38116 .section-3 .field--name-field-list-eyebrow,
.page-node-38116 .section-3 .pi-info {
  color: #b8e2de;
}
.page-node-38116 .section-3 [class$=meta] p,
.page-node-38116 .section-3 .field--name-field-list-eyebrow p,
.page-node-38116 .section-3 .pi-info p {
  color: #b8e2de;
}
.page-node-38116 .section-3 .paragraph--type--vertical-banner .tiles__meta {
  background-color: #080812;
}
.page-node-38116 .section-3 .tiles__feed-meta {
  color: #009f90;
}
.page-node-38116 .section-3 .tiles__meta::before,
.page-node-38116 .section-3 .field--name-field-list-eyebrow:before,
.page-node-38116 .section-3 h2::before {
  background-color: #b8e2de;
}
.page-node-38116 .section-3 .tiles > *::after,
.page-node-38116 .section-3 .field--name-field-top-content > *::after,
.page-node-38116 .section-3 .view-guides .view-content > *::after {
  background-color: #009f90;
}
.page-node-38116 .section-3 .tiles__feed-list li,
.page-node-38116 .section-3 .field--name-field-list-content-reference .field__item,
.page-node-38116 .section-3 .field--name-field-manual-list-items .field__item,
.page-node-38116 .section-3 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #009f90;
}
.page-node-38116 .section-3 .tiles__feed-list li:first-child,
.page-node-38116 .section-3 .field--name-field-list-content-reference .field__item:first-child,
.page-node-38116 .section-3 .field--name-field-manual-list-items .field__item:first-child,
.page-node-38116 .section-3 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #009f90;
}
.page-node-38116 .section-3 a:hover {
  color: #009f90;
}
.page-node-38116 .section-3 a {
  color: #b8e2de;
}
.page-node-38116 .section-3 .block > h2 {
  color: #fff;
}
.page-node-38116 .section-3 .view-header p {
  color: #b8e2de;
}
.page-node-38116 .section-3 .feed__feed-item > a .feed__item-title {
  color: #fff;
}
.page-node-38116 .section-3 .feed__feed-item > a:hover .feed__item-title,
.page-node-38116 .section-3 .feed__feed-item > a:hover .feed__item-meta p,
.page-node-38116 .section-3 .feed__feed-item > a:hover .pi-info {
  color: #009f90;
}
.page-node-38116 .section-3 .feed__feed-item {
  border-color: #009f90;
}
.page-node-38116 .section-3 #block-auroraesp {
  background-color: #fff;
  color: #080812;
  width: 100%;
  max-width: none;
  margin-bottom: 4rem;
}
.page-node-38116 .section-3 #block-auroraesp .img-wrapper {
  background-color: #fff;
}
.page-node-38116 .section-3 #block-auroraesp a {
  color: #007b70;
}
.page-node-38116 .section-3 #block-auroraesp a:hover {
  color: #d8dce1;
}
.page-node-38116 .section-3 #block-auroraesp a:hover img {
  opacity: 0.6;
}
.page-node-38116 .section-3 #block-auroraesp [class$=meta],
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-38116 .section-3 #block-auroraesp .tiles__banner--narrow [class$=meta],
.page-node-38116 .section-3 #block-auroraesp .paragraph--type--content-teaser-banner [class$=meta],
.page-node-38116 .section-3 #block-auroraesp .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-38116 .section-3 #block-auroraesp .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-38116 .section-3 #block-auroraesp .tiles__meta::before,
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-eyebrow:before,
.page-node-38116 .section-3 #block-auroraesp h2:before {
  background-color: #007b70;
}
.page-node-38116 .section-3 #block-auroraesp .tiles__feed-list li,
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-content-reference .field__item,
.page-node-38116 .section-3 #block-auroraesp .field--name-field-manual-list-items .field__item,
.page-node-38116 .section-3 #block-auroraesp .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-38116 .section-3 #block-auroraesp .tiles__feed-list li:first-child,
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-content-reference .field__item:first-child,
.page-node-38116 .section-3 #block-auroraesp .field--name-field-manual-list-items .field__item:first-child,
.page-node-38116 .section-3 #block-auroraesp .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-38116 .section-3 #block-auroraesp a.tiles__feed-more:hover,
.page-node-38116 .section-3 #block-auroraesp .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-38116 .section-3 #block-auroraesp .list__title {
  color: #003a41;
}
.page-node-38116 .section-3 #block-auroraesp .field--name-field-block-body {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: block;
}
.page-node-38116 .section-3 i {
  font-size: 0.9em;
  position: relative;
  bottom: -2px;
  color: #009f90;
  margin-right: 1rem;
}
.page-node-38116 .footer {
  border-top: 1px solid #6e6e78;
}
.page-node-38116 .view-projects {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  grid-column: auto/span 6;
  grid-row: span auto;
}
.page-node-38116 .view-projects .view-header {
  display: block;
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .view-projects .view-header {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-38116 .view-projects .view-header {
    grid-column: span 1;
  }
}
.page-node-38116 .view-projects .feed__feed-item {
  grid-column: span 6;
  border-top: none;
  border-bottom: 1px solid #009f90;
  min-height: 0;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .view-projects .feed__feed-item {
    grid-column: span 2;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-38116 .view-projects .feed__feed-item {
    grid-column: span 1;
  }
}
.page-node-38116 .view-projects .feed__block-link {
  display: block;
}
.page-node-38116 .view-projects .feed__item-title h3, .page-node-38116 .view-projects .feed__item-title .field--name-field-table-heading {
  font-size: 1.1875rem;
  line-height: 1.5rem;
  margin-top: 0rem;
  padding-top: 0.1306875rem;
  padding-bottom: 0.1193125rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .view-projects .feed__item-title h3, .page-node-38116 .view-projects .feed__item-title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-38116 .view-projects .feed__item-title h3, .page-node-38116 .view-projects .feed__item-title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-38116 .view-projects .feed__item-title h3, .page-node-38116 .view-projects .feed__item-title .field--name-field-table-heading {
    font-size: 1.1875rem;
    line-height: 1.5rem;
    margin-top: 0rem;
    padding-top: 0.1306875rem;
    padding-bottom: 0.1193125rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
.page-node-38116 .view-projects .feed__item-title .pi-info {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 0rem;
  padding-top: 0.0834375rem;
  padding-bottom: 0.1665625rem;
  margin-bottom: -0.5rem;
  font-style: normal;
  font-variant: normal;
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  letter-spacing: 0em;
  word-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .page-node-38116 .view-projects .feed__item-title .pi-info {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 992px) {
  .page-node-38116 .view-projects .feed__item-title .pi-info {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}
@media screen and (min-width: 1200px) {
  .page-node-38116 .view-projects .feed__item-title .pi-info {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    margin-top: 0rem;
    padding-top: 0.0834375rem;
    padding-bottom: 0.1665625rem;
    margin-bottom: -0.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
    letter-spacing: 0em;
    word-spacing: 0em;
  }
}

/**
  * Page: News Center
  *  
  * @description
  * -
  */
.page-node-32083 .section-2 {
  background-color: #fff;
  color: #080812;
}
.page-node-32083 .section-2 .img-wrapper {
  background-color: #fff;
}
.page-node-32083 .section-2 a {
  color: #007b70;
}
.page-node-32083 .section-2 a:hover {
  color: #d8dce1;
}
.page-node-32083 .section-2 a:hover img {
  opacity: 0.6;
}
.page-node-32083 .section-2 [class$=meta],
.page-node-32083 .section-2 .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-32083 .section-2 .tiles__banner--narrow [class$=meta],
.page-node-32083 .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-32083 .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-32083 .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-32083 .section-2 .tiles__meta::before,
.page-node-32083 .section-2 .field--name-field-list-eyebrow:before,
.page-node-32083 .section-2 h2:before {
  background-color: #007b70;
}
.page-node-32083 .section-2 .tiles__feed-list li,
.page-node-32083 .section-2 .field--name-field-list-content-reference .field__item,
.page-node-32083 .section-2 .field--name-field-manual-list-items .field__item,
.page-node-32083 .section-2 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-32083 .section-2 .tiles__feed-list li:first-child,
.page-node-32083 .section-2 .field--name-field-list-content-reference .field__item:first-child,
.page-node-32083 .section-2 .field--name-field-manual-list-items .field__item:first-child,
.page-node-32083 .section-2 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-32083 .section-2 .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-32083 .section-2 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-32083 .section-2 a.tiles__feed-more:hover,
.page-node-32083 .section-2 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-32083 .section-2 .list__title {
  color: #003a41;
}
.page-node-32083 .section-2 .block {
  margin: 0;
  width: 100%;
}
.page-node-32083 .page__intro .page__intro-primary {
  border-bottom: none;
}
.page-node-32083 .page__intro .region-page-title {
  margin-bottom: 0;
}
.page-node-32083 .paragraph--type--content-list:after {
  display: none;
}

/**
  * Page: News Center
  *  
  * @description
  * -
  */
.page-node-37991 .section-2 {
  background-color: #fff;
  color: #080812;
  padding-top: 0;
}
.page-node-37991 .section-2 .img-wrapper {
  background-color: #fff;
}
.page-node-37991 .section-2 a {
  color: #007b70;
}
.page-node-37991 .section-2 a:hover {
  color: #d8dce1;
}
.page-node-37991 .section-2 a:hover img {
  opacity: 0.6;
}
.page-node-37991 .section-2 [class$=meta],
.page-node-37991 .section-2 .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-37991 .section-2 .tiles__banner--narrow [class$=meta],
.page-node-37991 .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-37991 .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-37991 .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-37991 .section-2 .tiles__meta::before,
.page-node-37991 .section-2 .field--name-field-list-eyebrow:before,
.page-node-37991 .section-2 h2:before {
  background-color: #007b70;
}
.page-node-37991 .section-2 .tiles__feed-list li,
.page-node-37991 .section-2 .field--name-field-list-content-reference .field__item,
.page-node-37991 .section-2 .field--name-field-manual-list-items .field__item,
.page-node-37991 .section-2 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-37991 .section-2 .tiles__feed-list li:first-child,
.page-node-37991 .section-2 .field--name-field-list-content-reference .field__item:first-child,
.page-node-37991 .section-2 .field--name-field-manual-list-items .field__item:first-child,
.page-node-37991 .section-2 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-37991 .section-2 .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-37991 .section-2 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-37991 .section-2 a.tiles__feed-more:hover,
.page-node-37991 .section-2 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-37991 .section-2 .list__title {
  color: #003a41;
}

/**
  * Page: Views Page
  *  
  * @description
  * -
  */
.path-science-projects .page__intro .page__intro-primary,
.path-science-publications .page__intro .page__intro-primary,
.path-about-people .page__intro .page__intro-primary,
.path-updates .page__intro .page__intro-primary,
.path-support-center-training-assets .page__intro .page__intro-primary,
[class*=path-science-publications-author] .page__intro .page__intro-primary,
[class*=path-about-people] .page__intro .page__intro-primary {
  border-bottom: none;
}

.path-science-projects .view-filters,
.path-science-publications .view-filters,
.path-updates .view-filters,
.path-support-center-training-assets .view-filters,
[class*=path-science-projects] .view-filters,
[class*=path-science-publications-author] .view-filters {
  border-top: 1px solid #009f90;
  padding-top: 1rem;
}
.path-science-projects .views-exposed-form .form--inline,
.path-science-publications .views-exposed-form .form--inline,
.path-updates .views-exposed-form .form--inline,
.path-support-center-training-assets .views-exposed-form .form--inline,
[class*=path-science-projects] .views-exposed-form .form--inline,
[class*=path-science-publications-author] .views-exposed-form .form--inline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
}
.path-science-projects .view-header,
.path-science-publications .view-header,
.path-updates .view-header,
.path-support-center-training-assets .view-header,
[class*=path-science-projects] .view-header,
[class*=path-science-publications-author] .view-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  margin-bottom: 4rem;
}
.path-science-projects .view-content .views-infinite-scroll-content-wrapper,
.path-science-publications .view-content .views-infinite-scroll-content-wrapper,
.path-updates .view-content .views-infinite-scroll-content-wrapper,
.path-support-center-training-assets .view-content .views-infinite-scroll-content-wrapper,
[class*=path-science-projects] .view-content .views-infinite-scroll-content-wrapper,
[class*=path-science-publications-author] .view-content .views-infinite-scroll-content-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
}
.path-science-projects .view-empty,
.path-science-publications .view-empty,
.path-updates .view-empty,
.path-support-center-training-assets .view-empty,
[class*=path-science-projects] .view-empty,
[class*=path-science-publications-author] .view-empty {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
}
.path-science-projects .view-empty p,
.path-science-publications .view-empty p,
.path-updates .view-empty p,
.path-support-center-training-assets .view-empty p,
[class*=path-science-projects] .view-empty p,
[class*=path-science-publications-author] .view-empty p {
  grid-column: span 6;
}
@media screen and (min-width: 992px) {
  .path-science-projects .view-empty p,
.path-science-publications .view-empty p,
.path-updates .view-empty p,
.path-support-center-training-assets .view-empty p,
[class*=path-science-projects] .view-empty p,
[class*=path-science-publications-author] .view-empty p {
    grid-column: span 4;
  }
}

.path-about-people .view-filters,
[class*=path-about-people] .view-filters {
  margin-bottom: 1rem;
}
.path-about-people .views-exposed-form,
[class*=path-about-people] .views-exposed-form {
  border-bottom: 1px solid #009f90;
}
.path-about-people .attachment-before,
[class*=path-about-people] .attachment-before {
  padding-bottom: 1rem;
  border-bottom: 1px solid #009f90;
  margin-bottom: 2rem;
}
.path-about-people .attachment-before .views-element-container,
[class*=path-about-people] .attachment-before .views-element-container {
  width: calc(100% - 28px * 2);
  max-width: 1500px;
  margin: 0 auto;
}
.path-about-people .view-header,
[class*=path-about-people] .view-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
  margin-bottom: 2rem;
}
.path-about-people .view-display-id-people > .view-content,
.path-about-people .view-display-id-group > .view-content,
[class*=path-about-people] .view-display-id-people > .view-content,
[class*=path-about-people] .view-display-id-group > .view-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
}
@media only screen and (min-width: 500px) {
  .path-about-people .view-display-id-people > .view-content,
.path-about-people .view-display-id-group > .view-content,
[class*=path-about-people] .view-display-id-people > .view-content,
[class*=path-about-people] .view-display-id-group > .view-content {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .path-about-people .view-display-id-people > .view-content,
.path-about-people .view-display-id-group > .view-content,
[class*=path-about-people] .view-display-id-people > .view-content,
[class*=path-about-people] .view-display-id-group > .view-content {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .path-about-people .view-display-id-people > .view-content,
.path-about-people .view-display-id-group > .view-content,
[class*=path-about-people] .view-display-id-people > .view-content,
[class*=path-about-people] .view-display-id-group > .view-content {
    grid-template-columns: repeat(12, 1fr);
  }
}

.path-updates .view-content {
  border-top: 1px solid #009f90;
  padding-top: 4rem;
}

[class*=path-science-publications-author] .view-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  width: calc(100% - 28px * 2);
  margin: 0 auto;
  grid-column-gap: 24px;
  column-gap: 24px;
  grid-row-gap: 0rem;
  row-gap: 0rem;
  max-width: 1500px;
}
[class*=path-science-publications-author] .view-filters {
  display: none;
}

/**
  * Page: Events Listing
  *  
  * @description
  * -
  */
.page-node-355957 .section-2 {
  background-color: #fff;
  color: #080812;
}
.page-node-355957 .section-2 .img-wrapper {
  background-color: #fff;
}
.page-node-355957 .section-2 a {
  color: #007b70;
}
.page-node-355957 .section-2 a:hover {
  color: #d8dce1;
}
.page-node-355957 .section-2 a:hover img {
  opacity: 0.6;
}
.page-node-355957 .section-2 [class$=meta],
.page-node-355957 .section-2 .field--name-field-list-eyebrow {
  color: #009f90;
}
.page-node-355957 .section-2 .tiles__banner--narrow [class$=meta],
.page-node-355957 .section-2 .paragraph--type--content-teaser-banner [class$=meta],
.page-node-355957 .section-2 .paragraph--type--vertical-banner [class$=meta] {
  background-color: #fff;
}
.page-node-355957 .section-2 .tiles__feed-meta {
  color: #6e6e78;
}
.page-node-355957 .section-2 .tiles__meta::before,
.page-node-355957 .section-2 .field--name-field-list-eyebrow:before,
.page-node-355957 .section-2 h2:before {
  background-color: #007b70;
}
.page-node-355957 .section-2 .tiles__feed-list li,
.page-node-355957 .section-2 .field--name-field-list-content-reference .field__item,
.page-node-355957 .section-2 .field--name-field-manual-list-items .field__item,
.page-node-355957 .section-2 .field--type-viewsreference .field__item {
  border-bottom: 1px solid #d8dce1;
}
.page-node-355957 .section-2 .tiles__feed-list li:first-child,
.page-node-355957 .section-2 .field--name-field-list-content-reference .field__item:first-child,
.page-node-355957 .section-2 .field--name-field-manual-list-items .field__item:first-child,
.page-node-355957 .section-2 .field--type-viewsreference .field__item:first-child {
  border-top: 1px solid #d8dce1;
}
.page-node-355957 .section-2 .field--name-field-list-more-link a {
  color: #009f90;
}
.page-node-355957 .section-2 .field--name-field-list-more-link a:before {
  color: #b8e2de;
}
.page-node-355957 .section-2 a.tiles__feed-more:hover,
.page-node-355957 .section-2 .field--name-field-list-more-link a:hover {
  color: #007b70;
}
.page-node-355957 .section-2 .list__title {
  color: #003a41;
}
.page-node-355957 .section-2 .block {
  margin: 0;
  width: 100%;
}
.page-node-355957 .page__intro .page__intro-primary {
  border-bottom: none;
}
.page-node-355957 .form-item-training select option[value="0"] {
  display: none;
}
.page-node-355957 .region-intro-secondary {
  margin-bottom: 2rem;
}

/*# sourceMappingURL=styles.css.map */
