@charset "UTF-8";
.p-plus-container {
  position: relative;
}

.p-plus {
  display: flex;
  position: relative;
  z-index: 1;
}

.p-plus--clone {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 5px);
  pointer-events: none;
  visibility: hidden;
}

.p-plus--clone,
.p-plus--clone .p-plus__primary-wrapper {
  overflow: hidden;
}

.p-plus--is-showing-overflow .p-plus__overflow {
  display: block;
}

.p-plus:not(.p-plus--is-showing-toggle) .p-plus__toggle-btn {
  display: none;
}

.p-plus--is-hiding-primary .p-plus__toggle-btn {
  flex-grow: 1;
}

.p-plus--is-hiding-primary .p-plus__primary-wrapper {
  display: none;
}

.p-plus__primary-wrapper {
  display: flex;
  flex-grow: 1;
}

.p-plus__primary {
  display: flex;
  flex: 1 0 auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-plus__primary > li {
  flex: 1 0 auto;
}

.p-plus__overflow {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
}

.p-plus__toggle-btn {
  flex-shrink: 0;
}

.upcoming-calendar, .text-grid-2-col, .text-card-grid, .stats-panel .inner, .stats-panel, .section-logos-wrapper, .promo-top, .media-list, .logo-grid-wrapper, .link-list, .intro-w-search .inner,
.intro-w-search .intro-w-search-form, .intro-w-search, .hero-standard, .hero-meeting .inner, .hero-meeting, .hero-landing, .hero-home, .fifty-fifty, .fifty-fifty-wide .inner, .fifty-fifty-wide, .fifty-fifty-link-box, .featured-links, .featured-articles, .image-text-grid, .cta-panel, .breadcrumbs, .accordion, .page-container > main .grid-container {
  display: grid;
  grid-template-columns: [full-start] minmax(20px, 1fr) [main-start] minmax(0, 1400px) [main-end] minmax(20px, 1fr) [full-end];
}
@media (min-width: 500px) {
  .upcoming-calendar, .text-grid-2-col, .text-card-grid, .stats-panel .inner, .stats-panel, .section-logos-wrapper, .promo-top, .media-list, .logo-grid-wrapper, .link-list, .intro-w-search .inner,
  .intro-w-search .intro-w-search-form, .intro-w-search, .hero-standard, .hero-meeting .inner, .hero-meeting, .hero-landing, .hero-home, .fifty-fifty, .fifty-fifty-wide .inner, .fifty-fifty-wide, .fifty-fifty-link-box, .featured-links, .featured-articles, .image-text-grid, .cta-panel, .breadcrumbs, .accordion, .page-container > main .grid-container {
    grid-template-columns: [full-start] minmax(34px, 1fr) [main-start] minmax(0, 1400px) [main-end] minmax(34px, 1fr) [full-end];
  }
}
@media (min-width: 1000px) {
  .upcoming-calendar, .text-grid-2-col, .text-card-grid, .stats-panel .inner, .stats-panel, .section-logos-wrapper, .promo-top, .media-list, .logo-grid-wrapper, .link-list, .intro-w-search .inner,
  .intro-w-search .intro-w-search-form, .intro-w-search, .hero-standard, .hero-meeting .inner, .hero-meeting, .hero-landing, .hero-home, .fifty-fifty, .fifty-fifty-wide .inner, .fifty-fifty-wide, .fifty-fifty-link-box, .featured-links, .featured-articles, .image-text-grid, .cta-panel, .breadcrumbs, .accordion, .page-container > main .grid-container {
    grid-template-columns: [full-start] minmax(40px, 1fr) [main-start] minmax(0, 1400px) [main-end] minmax(40px, 1fr) [full-end];
  }
}

[data-animation] {
  animation-duration: 1s;
  animation-fill-mode: both;
}
[data-animation].infinite {
  animation-iteration-count: infinite;
}

[data-animation*=In] {
  visibility: hidden;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  [data-animation*=In] {
    visibility: visible !important;
  }
}
[data-animation*=In].-animated {
  visibility: visible;
}

@media print, (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-animation*=Out] {
    opacity: 0 !important;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpOut {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    transform: translateX(20px);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    transform: translateX(0);
  }
}
.fadeInUpOut {
  animation-name: fadeInUpOut;
}

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

html {
  font-size: 18px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  position: relative;
  min-width: 360px;
  min-height: 100vh;
  color: #343536;
  font-family: "Roboto", sans-serif;
  font-size: 100%;
  font-variant-numeric: proportional-nums;
  line-height: 1.15;
  text-rendering: optimizeSpeed;
  margin: 0;
}
body.js-stop-transitions * {
  transition: none !important;
}

.js-blocker {
  pointer-events: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out;
  z-index: 99;
}
html[data-search=open] .js-blocker, html[data-menu=open] .js-blocker {
  pointer-events: auto;
  opacity: 0.8;
  visibility: visible;
}

hr {
  width: 100%;
  border-top: solid #dedede;
  border-width: 1px 0 0;
  margin: 40px auto;
}

p:has(+ hr),
.wysiwyg-content ul:has(+ hr),
.wysiwyg-content ol:has(+ hr) {
  margin-bottom: 0;
}

.text-block hr + figure {
  margin-top: 0;
}

figure {
  display: block;
  margin: 0;
}

img,
svg,
picture {
  display: block;
  max-width: 100%;
}

img[width] {
  width: auto;
}

img[width][height] {
  height: auto;
}

svg,
img[src$=".svg"] {
  width: 100%;
  max-width: none;
  height: auto;
}

.video-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-container .placeholder,
.video-container embed,
.video-container iframe,
.video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  border: 0;
}

.sr-text {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  overflow: hidden;
}

.skiplink {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  overflow: hidden;
  background: #222;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 1em;
}
.skiplink:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  z-index: 1000;
}

.js-hidden {
  opacity: 0 !important;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.icon-instagram:not([class*="--after"])::before,
.icon-instagram--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
}

.icon-filter:not([class*="--after"])::before,
.icon-filter--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
}

.icon-play:not([class*="--after"])::before,
.icon-play--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e910";
}

.icon-email:not([class*="--after"])::before,
.icon-email--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e913";
}

.icon-twitter:not([class*="--after"])::before,
.icon-twitter--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e903";
}

.icon-add:not([class*="--after"])::before,
.icon-add--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e904";
}

.icon-check:not([class*="--after"])::before,
.icon-check--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e905";
}

.icon-chevron-right:not([class*="--after"])::before,
.icon-chevron-right--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e906";
}

.icon-close:not([class*="--after"])::before,
.icon-close--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e907";
}

.icon-collapse:not([class*="--after"])::before,
.icon-collapse--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e908";
}

.icon-down-arrow:not([class*="--after"])::before,
.icon-down-arrow--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
}

.icon-expand:not([class*="--after"])::before,
.icon-expand--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
}

.icon-external-link:not([class*="--after"])::before,
.icon-external-link--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
}

.icon-arrow:not([class*="--after"])::before,
.icon-arrow--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90c";
}

.icon-menu-close:not([class*="--after"])::before,
.icon-menu-close--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
}

.icon-menu-search:not([class*="--after"])::before,
.icon-menu-search--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90e";
}

.icon-more:not([class*="--after"])::before,
.icon-more--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
}

.icon-quote:not([class*="--after"])::before,
.icon-quote--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e911";
}

.icon-search:not([class*="--after"])::before,
.icon-search--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
}

.icon-community:not([class*="--after"])::before,
.icon-community--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
}

.icon-facebook:not([class*="--after"])::before,
.icon-facebook--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e914";
}

.icon-linkedin:not([class*="--after"])::before,
.icon-linkedin--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e915";
}

.icon-youtube:not([class*="--after"])::before,
.icon-youtube--after::after {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e916";
}

p,
.wysiwyg-content {
  font-size: 18px;
  line-height: 1.44;
  margin: 0 0 20px;
}
p img,
.wysiwyg-content img {
  display: inline;
  height: auto !important;
}
p:last-child,
.wysiwyg-content:last-child {
  margin-bottom: 0;
}
p[data-font-size=small], p.-small,
.wysiwyg-content[data-font-size=small],
.wysiwyg-content.-small {
  font-size: 0.6666666667rem;
  line-height: 1.5;
}
p[data-font-size=medium], p.-medium,
.wysiwyg-content[data-font-size=medium],
.wysiwyg-content.-medium {
  font-size: 1rem;
  line-height: 1.44;
}
p[data-font-size=large], p.-large,
.wysiwyg-content[data-font-size=large],
.wysiwyg-content.-large {
  font-size: 1.1111111111rem;
  line-height: 1.6;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #474747;
  margin: 0 0 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-wrap: balance;
}
.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}
.headline-container .h1,
.headline-container .h2,
.headline-container .h3,
.headline-container .h4,
.headline-container .h5,
.headline-container .h6,
.headline-container h1,
.headline-container h2,
.headline-container h3,
.headline-container h4,
.headline-container h5,
.headline-container h6 {
  margin-bottom: 20px;
}

.wysiwyg-content :where(h1, h2, h3, h4, h5, h6) {
  margin-top: 45px;
}
.wysiwyg-content :where(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

h1,
.h1 {
  font-size: clamp(2.6666666667rem, 8vw, 3.5555555556rem);
  line-height: 1.16;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    line-height: 1.12;
  }
}

h2,
.h2 {
  font-size: clamp(2rem, 6vw, 2.5555555556rem);
  line-height: 1.16;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    line-height: 1.17;
  }
}

h3,
.h3 {
  font-size: clamp(1.6666666667rem, 5vw, 1.7777777778rem);
  line-height: 1.26;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    line-height: 1.25;
  }
}

h4,
.h4 {
  font-size: clamp(1.3333333333rem, 4vw, 1.3333333333rem);
  line-height: 1.33;
}
@media (min-width: 768px) {
  h4,
  .h4 {
    line-height: 1.33;
  }
}

h5,
.h5 {
  font-size: clamp(1.1111111111rem, 3.3333333333vw, 1.1111111111rem);
  line-height: 1.33;
}
@media (min-width: 768px) {
  h5,
  .h5 {
    line-height: 1.4;
  }
}

h6,
.h6 {
  font-size: clamp(0.8888888889rem, 2.6666666667vw, 1rem);
  line-height: 1.21;
}

.wysiwyg-content h2 {
  font-size: clamp(1.4444444444rem, 4.3333333333vw, 1.5555555556rem);
}

.wysiwyg-content h3 {
  font-size: clamp(1.2222222222rem, 3.6666666667vw, 1.3333333333rem);
}

.wysiwyg-content h4 {
  font-size: clamp(1rem, 3vw, 1rem);
}

.wysiwyg-content h5 {
  font-size: clamp(0.9444444444rem, 2.8333333333vw, 0.9444444444rem);
}

.wysiwyg-content h6 {
  font-size: clamp(0.8888888889rem, 2.6666666667vw, 0.8888888889rem);
}

.eyebrow,
.wysiwyg-content .eyebrow {
  font-size: 0.7777777778rem;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: #000;
}
.eyebrow + h2,
.eyebrow + .h2,
.eyebrow + h3,
.eyebrow + .h3,
.eyebrow + h4,
.eyebrow + .h4 {
  margin-top: 10px;
}

.-center {
  text-align: center;
}

.headline-container svg {
  width: 84px;
  height: 9px;
  margin-bottom: 16px;
}
.headline-container h2 {
  margin-bottom: 24px;
}
.headline-container[data-centered=true] {
  text-align: center;
}
.headline-container[data-centered=true] svg {
  margin-inline: auto;
}
.headline-container.-inline {
  display: flex;
  flex-direction: column;
  margin-bottom: 34px;
}
.headline-container.-inline svg {
  margin-right: 16px;
}
@media (min-width: 600px) {
  .headline-container.-inline {
    flex-direction: row;
    align-items: center;
  }
  .headline-container.-inline svg {
    margin-bottom: 0;
  }
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wysiwyg-content ol,
.wysiwyg-content ul {
  list-style-position: outside;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wysiwyg-content ol:last-child,
.wysiwyg-content ul:last-child {
  margin-bottom: 0;
}
.wysiwyg-content ol li,
.wysiwyg-content ul li {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 5px;
  margin: 0 0 10px;
}
.wysiwyg-content ol li:last-child,
.wysiwyg-content ul li:last-child {
  margin-bottom: 0;
}
.wysiwyg-content ol li ul,
.wysiwyg-content ol li ol,
.wysiwyg-content ul li ul,
.wysiwyg-content ul li ol {
  margin-top: 10px;
}
.wysiwyg-content ul {
  list-style-type: disc;
}
.wysiwyg-content ul ul {
  list-style-type: circle;
}
.wysiwyg-content ul ul ul {
  list-style-type: square;
}
.wysiwyg-content ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.wysiwyg-content ol > li::marker {
  font-weight: 700;
  font-size: 0.944em;
}
.wysiwyg-content ol ol {
  list-style-type: lower-alpha;
}
.wysiwyg-content ol ol ol {
  list-style-type: lower-roman;
}

ul.checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  line-height: 1.44;
  color: #343536;
}
ul.checklist li::before {
  content: "\e905";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 7px;
  left: 0;
  font-size: 0.6666666667rem;
}
ul.checklist li + li {
  margin-top: 20px;
}

blockquote {
  padding: 0 25px;
  margin: 50px 0;
  color: #474747;
  border-left: 6px solid #f38740;
}
blockquote::before {
  content: "\e911";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 15px;
  font-size: 1.6666666667rem;
  color: #b01f24;
}
blockquote:first-child {
  margin-top: 0;
}
blockquote:last-child {
  margin-bottom: 0;
}
blockquote p {
  font-size: clamp(1.1111111111rem, 3.3333333333vw, 1.3333333333rem);
  font-style: italic;
  line-height: 1.66;
}
blockquote cite {
  font-size: 0.8888888889rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.62;
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 99999;
  transition: 0.32s ease-out;
}
.loading-spinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-image: url("../images/spinner.svg");
  background-position: center;
  background-size: 100px auto;
  transform: translate(-50px, -50px);
  z-index: 99999;
}
.loading-spinner-text {
  position: absolute;
  top: calc(50% + 60px);
  color: #58595b;
  font-size: 0.8888888889rem;
  font-weight: 700;
  letter-spacing: 0.0833333333rem;
  text-transform: uppercase;
}
.loading-spinner-text::after {
  content: "…";
  position: absolute;
  overflow: hidden;
  animation: ellipsis steps(4, end) 0.75s infinite;
  width: 0;
}

@keyframes ellipsis {
  to {
    width: 18px;
  }
}
fieldset {
  padding: 0;
  border: 0;
  margin: 0;
}
fieldset legend {
  display: block;
  margin: 0 0 10px;
}

label,
.label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

@media (min-width: 600px) {
  .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .form-row {
    gap: 40px;
  }
}

.form-field {
  margin: 0 0 30px;
}
.form-field label,
.form-field .label {
  margin-bottom: 10px;
}
.form-field.required label::after {
  content: "*";
  color: #b01f24;
  margin-left: 2px;
}

.error-message {
  color: #b01f24;
  font-size: 0.7777777778rem;
  font-weight: 500;
  margin-top: 8px;
}

.optional-helper-text {
  margin-top: 8px;
  font-size: 0.8888888889rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.62;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
select,
textarea {
  display: block;
  width: 100%;
  appearance: none;
  background-color: #fff;
  color: #666;
  font: inherit;
  font-size: 16px;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 2px #7a7a7d;
  margin: 0;
  transition: 0.32s ease-out;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 1;
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.62;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  border-color: #48a992;
  box-shadow: inset 0 0 0 2px #48a992;
  outline: none;
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=search]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=url]:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
  color: #48a992;
}
input[type=text].-invalid,
input[type=email].-invalid,
input[type=password].-invalid,
input[type=search].-invalid,
input[type=tel].-invalid,
input[type=url].-invalid,
select.-invalid,
textarea.-invalid {
  color: #b01f24;
  box-shadow: inset 0 0 0 2px #b01f24;
}
input[type=text].-invalid:focus,
input[type=email].-invalid:focus,
input[type=password].-invalid:focus,
input[type=search].-invalid:focus,
input[type=tel].-invalid:focus,
input[type=url].-invalid:focus,
select.-invalid:focus,
textarea.-invalid:focus {
  box-shadow: inset 0 0 0 2px #48a992;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
select:disabled,
textarea:disabled {
  background-color: #dedede;
  box-shadow: inset 0 0 0 2px #dedede;
  pointer-events: none;
}
input[type=text]:disabled::placeholder,
input[type=email]:disabled::placeholder,
input[type=password]:disabled::placeholder,
input[type=search]:disabled::placeholder,
input[type=tel]:disabled::placeholder,
input[type=url]:disabled::placeholder,
select:disabled::placeholder,
textarea:disabled::placeholder {
  color: #7a7a7d;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

select {
  background-image: url("../images/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px auto;
  text-decoration: none;
  appearance: none;
  padding-right: 35px;
  transition: ease-out 0.32s;
}
select:hover {
  cursor: pointer;
  background-color: #dedede;
}

.checks legend,
.radios legend {
  margin: 0 0 15px;
}
.checks .check,
.checks .radio,
.radios .check,
.radios .radio {
  position: relative;
  margin-bottom: 15px;
}
.checks .check:last-child,
.checks .radio:last-child,
.radios .check:last-child,
.radios .radio:last-child {
  margin: 0;
}
.checks label,
.radios label {
  cursor: pointer;
  position: relative;
  font-size: 0.7777777778rem;
  line-height: 1.43;
  padding: 0 0 0 32px;
  margin: 0;
}
.checks .check label::before,
.radios .check label::before {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: transparent;
  font-size: 0.7777777778rem;
  line-height: 18px;
  text-align: center;
  border: 1px solid #666;
  transition: color 0.32s ease-out;
}
.checks .check label::before,
.radios .check label::before {
  width: 24px;
  height: 24px;
  margin-top: -3px;
  line-height: 1.6;
}
.checks .radio label::before,
.radios .radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 3px;
  width: 12px;
  height: 12px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition: background 0.32s ease-out;
}
.checks .radio label::after,
.radios .radio label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 1;
  border: 1px solid #666;
  border-radius: 50%;
}
.checks input[type=checkbox],
.radios input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  overflow: hidden;
}
.checks input[type=checkbox] + label::before,
.radios input[type=checkbox] + label::before {
  content: "\e905";
}
.checks input[type=checkbox] + label:hover::before,
.radios input[type=checkbox] + label:hover::before {
  color: #b01f24;
}
.checks input[type=checkbox]:focus + label::before,
.radios input[type=checkbox]:focus + label::before {
  color: rgba(176, 31, 36, 0.25);
}
.checks input[type=checkbox]:checked + label::before,
.radios input[type=checkbox]:checked + label::before {
  color: #b01f24;
}
.checks input[type=radio],
.radios input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  overflow: hidden;
}
.checks input[type=radio]:focus + label::before, .checks input[type=radio] + label:hover::before,
.radios input[type=radio]:focus + label::before,
.radios input[type=radio] + label:hover::before {
  background: rgba(176, 31, 36, 0.3);
}
.checks input[type=radio]:checked + label::before,
.radios input[type=radio]:checked + label::before {
  color: #b01f24;
}

form .required {
  margin-left: 3px;
  color: #b01f24;
}

input[type=search]::-webkit-search-cancel-button {
  appearance: none;
  /* Add custom styles */
  width: 16px;
  height: 16px;
  background-color: #343536;
  mask-image: url("/images/clear.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  cursor: pointer;
  margin-right: 35px;
  margin-top: -2px;
}
.hero-search-bar-input input[type=search]::-webkit-search-cancel-button {
  margin-right: 0;
  margin-top: 0;
}

/* For Firefox */
body {
  background-color: #fff;
  overflow-y: auto;
}
html:not([data-mobile-menu=closed]) body {
  overflow: hidden;
}

@media (min-width: 1000px) {
  html {
    scrollbar-gutter: stable;
  }
}
time {
  display: block;
}

.page-container {
  display: grid;
  grid-template: auto 1fr auto/minmax(0, 1fr);
  grid-template-areas: "header" "main" "footer";
  position: relative;
  min-height: 100%;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 2057px) {
  .page-container {
    max-width: 2056px;
    margin-inline: auto;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  }
}
.page-container > .site-header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
}
.page-container > main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
}
[data-nav-at-top=true] .page-container > main {
  margin-top: var(--height);
}
.page-container > .site-footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer;
}

[data-full-width=true]:last-child {
  margin-bottom: 0;
}

[data-full-width=true] + [data-full-width=true] {
  margin-top: clamp(-120px, -8vw, -48px);
}

*[data-column="2"],
*[data-column="3"],
*[data-column="4"] {
  --columns: 1;
  display: grid;
  gap: 4.8888888889rem;
  grid-template-columns: repeat(var(--columns), 1fr);
}

.js-link-event {
  cursor: pointer;
}

a {
  text-decoration: none;
  transition: 0.32s ease-out;
}
a:not(.site-footer a, .site-header a, a.component-switcher-selector-item,
.button, .cards-item, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, a.h1, a.h2, a.h3,
a.h4, a.h5, a.h6) {
  color: #58595b;
  text-underline-offset: 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #b01f24;
}
a:not(.site-footer a, .site-header a, a.component-switcher-selector-item,
.button, .cards-item, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, a.h1, a.h2, a.h3,
a.h4, a.h5, a.h6):focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
}
a:not(.site-footer a, .site-header a, a.component-switcher-selector-item,
.button, .cards-item, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, a.h1, a.h2, a.h3,
a.h4, a.h5, a.h6):hover {
  color: #b01f24;
}
a:not(.site-footer a, .site-header a, a.component-switcher-selector-item,
.button, .cards-item, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, a.h1, a.h2, a.h3,
a.h4, a.h5, a.h6):disabled, a:not(.site-footer a, .site-header a, a.component-switcher-selector-item,
.button, .cards-item, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, a.h1, a.h2, a.h3,
a.h4, a.h5, a.h6)[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
a.-arrow, a.-external {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  font-size: 0.7222222222rem;
  font-weight: 700;
  color: #474747;
  text-transform: uppercase;
}
a.-arrow::before, a.-external::before {
  content: "\e90c";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 2px;
  font-size: 1rem;
  color: #b01f24;
}
a.-arrow:hover, a.-external:hover {
  color: #b01f24;
}
a.-arrow.-white, a.-external.-white {
  color: #fff;
  text-decoration-color: #fff;
}
a.-arrow.-white::before, a.-external.-white::before {
  color: #fff;
}
a.-arrow.-white:hover, a.-arrow.-white:focus-visible, a.-external.-white:hover, a.-external.-white:focus-visible {
  color: #fff;
  outline-color: #fff;
  text-decoration-color: transparent;
}
a.-external::before {
  content: "\e90b";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wysiwyg-content a:not(.button) {
  display: inline;
}
.wysiwyg-content a:not(.button):hover {
  border-color: transparent;
}

.links-wrapper {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 24px;
}
@media (min-width: 1000px) {
  .links-wrapper {
    flex-flow: row wrap;
    align-items: center;
  }
}

.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #b01f24;
  text-decoration: none;
}
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #58595b;
}

a:is(.h1, .h2, .h3, .h4, .h5, .h6) {
  color: #b01f24;
  text-decoration: none;
}
a:is(.h1, .h2, .h3, .h4, .h5, .h6):hover {
  color: #58595b;
}
a:is(.h1, .h2, .h3, .h4, .h5, .h6):focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
}

.site-footer a:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
}

div[data-background-color=true] a:focus-visible, div[data-background-color=true] a:is(.h1, .h2, .h3, .h4, .h5, .h6):focus-visible,
.site-footer-bottom a:focus-visible,
.site-footer-bottom a:is(.h1, .h2, .h3, .h4, .h5, .h6):focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #fff;
  opacity: 1;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
  cursor: pointer;
  appearance: none;
  backface-visibility: hidden;
  background: none;
  color: inherit;
  font: inherit;
  border: 0;
  line-height: 1;
  padding: 0;
  transition: 0.32s ease-out;
}
button:disabled, button[disabled],
input[type=submit]:disabled,
input[type=submit][disabled],
input[type=reset]:disabled,
input[type=reset][disabled],
input[type=button]:disabled,
input[type=button][disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 8px 20px;
  border: 0;
  border-radius: 24px;
  transition: 0.32s ease-out;
}

.button {
  padding: 8px 24px;
  box-shadow: inset 0 0 0 2px #b01f24;
  background: #b01f24;
  color: #fff;
  font-size: 0.7777777778rem;
  letter-spacing: 0.56px;
  line-height: 1.71;
  text-transform: uppercase;
}
.button:focus-visible {
  color: #b01f24;
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
  background-color: #fff;
  color: #b01f24;
}
.button:hover {
  background: #fff;
  color: #b01f24;
}
.button.-small {
  padding: 8px 16px;
  box-shadow: inset 0 0 0 2px #58595b;
  background-color: #58595b;
  color: #fff;
  font-size: 0.7222222222rem;
}
.button.-small::after {
  content: "\e909";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 15px;
}
.button.-small:hover {
  box-shadow: inset 0 0 0 2px #474747;
  background-color: #fff;
  color: #474747;
}
.button.-small:focus {
  outline-color: #474747;
}
.wysiwyg-content .button {
  margin-top: 5px;
}
.wysiwyg-content .button + .button {
  margin-left: 5px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  padding: clamp(15px, 2.5vw, 30px);
  overflow: hidden;
  position: relative;
}
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: ease-out 0.32s;
}
.logo-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.logo-card:has(a) {
  line-height: 1.4;
  text-underline-offset: 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #b01f24;
  transition: ease-out 0.32s;
}
.logo-card:has(a):hover, .logo-card:has(a):focus-visible {
  color: #b01f24;
}
.logo-card:has(a):hover img, .logo-card:has(a):focus-visible img {
  transform: scale(1.1);
}
.logo-card-link {
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  overflow: hidden;
}

.hero-home:has(.countdown-clock) .details,
.hero-landing:has(.countdown-clock) .details {
  display: flex;
  flex-direction: column;
  max-width: unset;
}
@media (min-width: 1400px) {
  .hero-home:has(.countdown-clock) .details,
  .hero-landing:has(.countdown-clock) .details {
    flex-direction: row;
    align-items: center;
  }
}
.hero-home:has(.countdown-clock) .details .countdown-clock,
.hero-landing:has(.countdown-clock) .details .countdown-clock {
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 32px;
}
@media (min-width: 800px) {
  .hero-home:has(.countdown-clock) .details .countdown-clock,
  .hero-landing:has(.countdown-clock) .details .countdown-clock {
    align-self: flex-start;
  }
}
@media (min-width: 1400px) {
  .hero-home:has(.countdown-clock) .details .countdown-clock,
  .hero-landing:has(.countdown-clock) .details .countdown-clock {
    margin-top: 0;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #bdbdbe;
  }
}

.countdown-clock-inner {
  display: flex;
  gap: 10px;
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d8d8d9;
}
.countdown-clock-inner > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #f4f4f4;
  min-width: 55px;
  padding: 12px 8px;
}
.countdown-clock .number {
  color: #a0191d;
  font-size: 30px;
  font-weight: 700;
}
.countdown-clock .label {
  color: #474747;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.accordion {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  position: relative;
}
.accordion > .inner {
  max-width: 850px;
  margin-inline: auto;
  grid-column: main;
  width: 100%;
}
.accordion-items {
  margin-top: 2.6666666667rem;
}
.accordion-item {
  background-color: #f7f7f7;
  margin-bottom: 0.4444444444rem;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  display: flex;
  padding: 24px;
  align-items: center;
  background-color: #f7f7f7;
  justify-content: space-between;
  transition: ease-out 0.32s;
  cursor: pointer;
}
.accordion-trigger .h5 {
  color: #b01f24;
  margin-bottom: 0;
}
.accordion-trigger .trigger-icon {
  align-self: flex-start;
  position: relative;
  width: 17px;
  height: 17px;
  margin-top: 5px;
  margin-left: 20px;
}
.accordion-trigger .trigger-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: ease-out 0.32s;
}
.accordion-trigger .trigger-icon .icon-collapse {
  opacity: 0;
  transition-delay: 0.1s;
}
.accordion-trigger[aria-expanded=true] .trigger-icon .icon-expand {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}
.accordion-trigger[aria-expanded=true] .trigger-icon .icon-collapse {
  opacity: 1;
  transition-delay: 0.2s;
}
.accordion-trigger:hover {
  background-color: #dedede;
}
.accordion-trigger:focus-visible {
  background-color: #dedede;
  outline-offset: 6px;
  outline: dashed;
  outline-width: 1px;
  outline-color: #b01f24;
  opacity: 1;
}
.accordion-content {
  display: none;
  padding: 24px;
}
.accordion-content a {
  margin-right: 16px;
  display: block;
}
.accordion-content a:last-of-type {
  margin-right: 0;
}

.layout-two-col .accordion {
  margin-top: 40px;
  margin-bottom: unset;
  grid-template-columns: unset;
}
.layout-two-col .accordion .accordion-header.-center {
  text-align: left;
  text-wrap: unset;
}

.layout-two-col {
  position: relative;
  grid-column: main;
  margin-bottom: clamp(48px, 8vw, 120px);
  padding: 0 20px;
}
@media (min-width: 1000px) {
  .layout-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(280px, 28vw, 400px);
    gap: clamp(40px, 4vw, 70px);
    padding-inline: 40px;
  }
}
.layout-two-col-sidebar {
  margin-top: 60px;
}
@media (min-width: 1000px) {
  .layout-two-col-sidebar {
    margin-top: 0;
  }
}
.layout-two-col-sidebar > aside:not(:first-child),
.layout-two-col-sidebar > div:not(:first-child) {
  margin-top: clamp(40px, 6.6666666667vw, 72px);
}

.contact-aside {
  background-color: #474747;
  color: #fff;
}
.contact-aside-image {
  position: relative;
}
@media (min-width: 500px) and (max-width: 999px) {
  .contact-aside-image {
    height: clamp(240px, 48vw, 475px);
  }
  .contact-aside-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-aside-image img[width][height] {
    height: 100%;
  }
}
.contact-aside-text {
  padding: clamp(30px, 5vw, 42px) clamp(20px, 3.3333333333vw, 30px);
}
.contact-aside h2, .contact-aside h3, .contact-aside h4, .contact-aside h5, .contact-aside h6 {
  margin-bottom: 15px;
  color: #fff;
}
.contact-aside h2:not(:first-child), .contact-aside h3:not(:first-child), .contact-aside h4:not(:first-child), .contact-aside h5:not(:first-child), .contact-aside h6:not(:first-child) {
  margin-top: 25px;
}
.contact-aside h2 {
  font-size: 1.3333333333rem;
}
.contact-aside h3 {
  font-size: 1.2222222222rem;
}
.contact-aside h4 {
  font-size: 1.1111111111rem;
}

.highlight {
  margin-top: 50px;
  padding: clamp(20px, 3.3333333333vw, 40px);
  background-color: #f7f7f7;
}
@media (min-width: 768px) {
  .highlight .inner {
    display: flex;
    flex-direction: row-reverse;
  }
}
.highlight .image {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .highlight .image {
    flex: none;
    width: clamp(200px, 26.04vw, 320px);
    margin: 0 0 0 clamp(24px, 3.12vw, 40px);
  }
}
@media (min-width: 1000px) {
  .highlight .image {
    width: clamp(180px, 18vw, 320px);
    margin-left: clamp(24px, 2.4vw, 40px);
  }
}
@media (min-width: 768px) {
  .highlight .content {
    flex: 1 1 0%;
  }
}
.highlight .h3 {
  margin: 0 0 20px;
  font-size: clamp(1.4444444444rem, 4.3333333333vw, 1.5555555556rem);
  line-height: 1.21;
}
.highlight .cta {
  margin-top: 16px;
}
.coveo-for-sitecore-frame-container .highlight {
  margin-top: unset;
  padding: 0;
  background-color: transparent;
}

.promo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #bdbdbe;
}
@media (min-width: 400px) {
  .promo-container {
    padding: 20px;
  }
}
@media (min-width: 500px) {
  .promo-container {
    padding: 32px;
  }
}
@media (min-width: 1000px) {
  .promo-container {
    padding: 10px;
  }
}
@media (min-width: 1200px) {
  .promo-container {
    padding: 24px 24px 32px;
  }
}
.promo-container .promo-label {
  margin-bottom: 10px;
  font-size: 0.6666666667rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.related {
  padding: clamp(30px, 5vw, 42px) clamp(20px, 3.3333333333vw, 30px) 72px;
  background-color: #f7f7f7;
  border-top: 5px solid #f38740;
  border-bottom-right-radius: 100px;
}
.related .header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #bdbdbe;
  font-size: 1.1111111111rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.related ul {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.related ul li {
  margin-top: 0;
  display: grid;
  gap: 16px;
}
.related ul li .h5 {
  font-size: 1.1111111111rem;
  font-weight: 700;
  line-height: 1.4;
  color: #b01f24;
  margin-bottom: 0;
  transition: ease-out 0.32s;
}
.related ul li:hover .h5 {
  color: #58595b;
}
.related ul li .description {
  line-height: 1.4;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.related ul li .date {
  font-size: 0.6666666667rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: -8px;
}

.right-rail-cta {
  background-color: #f7f7f7;
}
.right-rail-cta header {
  margin-bottom: 20px;
}
.right-rail-cta header h3,
.right-rail-cta header .h3 {
  color: #b01f24;
  margin-bottom: 20px;
  font-size: clamp(1.1111111111rem, 3.3333333333vw, 1.3333333333rem);
  font-weight: 700;
  line-height: 1.33;
}
.right-rail-cta[data-has-image=false] {
  border-top: 5px solid #f38740;
  border-radius: 0 0 104px 0;
}
.right-rail-cta[data-background-color=true] {
  background-color: #474747;
  border-top: none;
  color: #fff;
}
.right-rail-cta[data-background-color=true] a.-arrow {
  color: #fff;
  text-decoration-color: #fff;
  transition: 0.32s ease-out;
}
.right-rail-cta[data-background-color=true] a.-arrow::before {
  color: #fff;
}
.right-rail-cta[data-background-color=true] a.-arrow:hover {
  color: #bdbdbe;
  text-decoration-color: rgba(255, 255, 255, 0);
}
.right-rail-cta[data-background-color=true] header h3,
.right-rail-cta[data-background-color=true] header .h3 {
  color: #fff;
}
.right-rail-cta .content {
  padding: clamp(30px, 5vw, 40px) clamp(20px, 3.3333333333vw, 30px);
}
@media (min-width: 600px) and (max-width: 999px) {
  .right-rail-cta .content {
    flex: 1 1 0%;
  }
}
.right-rail-cta .links-wrapper {
  flex-direction: column;
  gap: 20px 16px;
}
@media (min-width: 1000px) {
  .right-rail-cta .links-wrapper {
    flex-direction: row;
  }
}

.breadcrumbs {
  grid-column: full;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.1);
  height: 38px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.breadcrumbs:not(.breadcrumbs-past-header) {
  box-shadow: none;
}
.breadcrumbs .inner {
  grid-column: main;
  mask-image: linear-gradient(to right, white 65%, transparent 100%);
}
@media (min-width: 800px) {
  .breadcrumbs .inner {
    mask-image: linear-gradient(to right, white 95%, transparent 100%);
  }
}
.breadcrumbs .ol-breadcrumbs-wrapper {
  display: block;
  overflow: hidden;
  width: 100%;
  height: calc(100% + 8px);
  transition: height 0.5s ease-in-out;
  position: relative;
}
@media (min-width: 400px) {
  .breadcrumbs .ol-breadcrumbs-wrapper {
    height: calc(100% - 13px);
  }
  .breadcrumbs .ol-breadcrumbs-wrapper:hover {
    height: 100%;
  }
}
.breadcrumbs .ol-breadcrumbs-wrapper ol {
  display: flex;
  margin-top: 11px;
  width: 100%;
  gap: 10px;
  padding-bottom: 8px;
  overflow-x: auto;
  padding-right: 20px;
}
.breadcrumbs .ol-breadcrumbs-wrapper ol::-webkit-scrollbar {
  display: none;
}
@supports (-moz-appearance: none) {
  .breadcrumbs .ol-breadcrumbs-wrapper ol {
    scrollbar-width: 10px;
    scrollbar-color: #b01f24 transparent;
  }
}
@media (min-width: 800px) {
  .breadcrumbs .ol-breadcrumbs-wrapper ol::-webkit-scrollbar {
    display: block;
    height: 5px;
    border-radius: 5px;
  }
  .breadcrumbs .ol-breadcrumbs-wrapper ol::-webkit-scrollbar-track {
    background: transparent;
    height: 10px;
    border-radius: 5px;
  }
  .breadcrumbs .ol-breadcrumbs-wrapper ol::-webkit-scrollbar-thumb {
    background-color: #b01f24;
    border-radius: 6px;
  }
}
.breadcrumbs .ol-breadcrumbs-wrapper ol li {
  font-size: 0.7778rem;
  font-weight: 700;
  letter-spacing: 0.42px;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}
.breadcrumbs .ol-breadcrumbs-wrapper ol li::after {
  content: "/";
  margin-left: 10px;
}
.breadcrumbs .ol-breadcrumbs-wrapper ol li:last-child::after {
  content: "";
}
.breadcrumbs .ol-breadcrumbs-wrapper ol li a {
  text-decoration: none;
  box-shadow: 0 0 0;
}
.breadcrumbs .ol-breadcrumbs-wrapper ol li a:focus-visible {
  outline: 0;
  box-shadow: 0 2px 0 0 red;
}

.cards {
  grid-column: main;
  display: grid;
  gap: 1.6666666667rem;
}
@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(var(--columns), 1fr);
  }
  .cards[data-columns="1"], .cards[data-columns="2"], .cards[data-columns="3"], .cards[data-columns="4"] {
    --columns: 2;
  }
}
@media (min-width: 1100px) {
  .cards[data-columns="1"] {
    --columns: 2;
  }
  .cards[data-columns="3"] {
    --columns: 3;
  }
  .cards[data-columns="4"] {
    --columns: 2;
  }
}
@media (min-width: 1200px) {
  .cards {
    gap: 3.3333333333rem;
  }
  .cards[data-columns="1"] {
    --columns: 2;
  }
  .cards[data-columns="2"] {
    --columns: 2;
  }
  .cards[data-columns="3"] {
    --columns: 3;
  }
  .cards[data-columns="4"] {
    --columns: 4;
  }
}

.card {
  display: flex;
  flex-direction: column;
}
.card.-switch .eyebrow {
  display: none;
}
.card.-switch .card-image {
  border-top: none;
}
@media (min-width: 1200px) {
  .card.-switch {
    gap: 40px;
    flex-direction: row;
  }
  .card.-switch .card-content,
  .card.-switch .card-image {
    width: 50%;
  }
}
.card.-switch.-event .description {
  display: none;
}
.card.-switch.-event .location {
  margin-bottom: 0;
}
.card-image {
  margin-bottom: 32px;
  overflow: hidden;
  border-top: solid 6px #f38740;
}
.card-image picture img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-image img {
  transition: transform 0.3s;
}
.card .eyebrow,
.card .location {
  margin-bottom: 16px;
}
.card .location {
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.62;
}
.card .h4 {
  display: block;
  margin-bottom: 24px;
  color: #b01f24;
  text-decoration: none;
}
.card .description {
  line-height: 1.44;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.card .date {
  margin-bottom: 8px;
  color: #000;
  font-size: 0.7777777778rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.card.-event .button {
  align-self: flex-start;
  margin-top: 24px;
}
.card.js-link-event:hover img {
  transform: scale(1.1);
}
.card.js-link-event:hover a.h4 {
  color: #58595b;
}

.contact-us {
  position: relative;
  grid-column: main;
  margin-bottom: clamp(48px, 8vw, 120px);
  padding: 0 20px;
}
@media (min-width: 1000px) {
  .contact-us {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(280px, 28vw, 400px);
    gap: clamp(40px, 4vw, 70px);
    padding-inline: 40px;
  }
}
.contact-us-content .wysiwyg-content {
  margin-bottom: 36px;
}
.contact-us-sidebar {
  margin-top: 60px;
}
@media (min-width: 1000px) {
  .contact-us-sidebar {
    margin-top: 0;
  }
}
.contact-us-sidebar > aside:not(:first-child),
.contact-us-sidebar > div:not(:first-child) {
  margin-top: clamp(40px, 6.6666666667vw, 72px);
}

.on-page-editor .accordion > .inner {
  width: 100%;
}

.page-container .CoveoBreadcrumb {
  width: 100%;
  display: flex;
  padding: 0 0 20px;
  margin-bottom: 20px;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1000px) {
  .page-container .CoveoBreadcrumb {
    padding-bottom: 20px;
  }
}
.page-container .CoveoBreadcrumb .coveo-breadcrumb-items {
  width: auto;
  padding: 0;
  margin: 0;
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb {
  display: flex;
  flex-direction: column;
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-title {
  color: #474747;
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.62;
  margin-right: 0;
}
@media (min-width: 768px) {
  .page-container .CoveoBreadcrumb .coveo-facet-breadcrumb {
    flex-flow: row wrap;
    align-items: center;
    gap: 20px;
  }
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values {
  display: flex;
  flex-flow: row wrap;
  gap: 21px;
  margin-block: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values {
    width: auto;
  }
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item .coveo-facet-breadcrumb-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  margin-right: 0;
  border: solid 1px #bdbdbe;
  gap: 22px;
  transition: ease-out 0.32s;
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item .coveo-facet-breadcrumb-value .coveo-facet-breadcrumb-caption, .page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item .coveo-facet-breadcrumb-value.coveo-selected * {
  color: #474747;
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item:hover, .page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item:focus-visible {
  text-decoration: none;
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item:hover .coveo-facet-breadcrumb-value, .page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item:focus-visible .coveo-facet-breadcrumb-value {
  text-decoration: none;
  background-color: #dedede;
}
.page-container .CoveoBreadcrumb .coveo-breadcrumb-clear-all {
  padding: 0;
  margin: 0;
  color: #474747;
  text-underline-offset: 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #b01f24;
}

.page-container .coveo-search-layout,
.page-container .layout-two-col {
  grid-column: main;
  margin-bottom: clamp(48px, 8vw, 120px);
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .page-container .coveo-search-layout,
  .page-container .layout-two-col {
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    grid-column-gap: clamp(45px, 5vw, 90px);
  }
}
@media (min-width: 1300px) {
  .page-container .coveo-search-layout,
  .page-container .layout-two-col {
    grid-template-columns: 1fr 342px;
  }
}
.page-container .coveo-search-layout .col-2-inner > div:not(:first-child),
.page-container .layout-two-col .col-2-inner > div:not(:first-child) {
  margin-top: clamp(40px, 6.66vw, 72px);
}
.page-container .coveo-search-layout .coveo-dropdown-header-wrapper,
.page-container .layout-two-col .coveo-dropdown-header-wrapper {
  display: none;
}
.page-container .CoveoLogo {
  display: none;
}
.page-container .CoveoSearchInterface .coveo-main-section {
  grid-column: main;
  margin-bottom: clamp(48px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr;
}
.page-container .CoveoSearchInterface .coveo-main-section .coveo-header {
  display: none;
  flex-direction: column;
}
.page-container .CoveoSearchInterface .coveo-main-section .coveo-facet-column {
  width: 100%;
  padding: 0;
  display: none;
}
.page-container .CoveoSearchInterface .coveo-main-section .coveo-facet-column .coveo-facet-value-caption {
  /*
  	GOTCHA: Need to break spaces for long facet values that were break
  	the facet column width on mobile layout
  */
  white-space: break-spaces;
}
.page-container .CoveoSearchInterface .coveo-main-section .coveo-results-column {
  display: flex !important;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-container .CoveoSearchInterface .coveo-main-section {
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: 300px 1fr;
    grid-column-gap: clamp(45px, 5vw, 90px);
  }
  .page-container .CoveoSearchInterface .coveo-main-section #toggle-button {
    display: none;
  }
  .page-container .CoveoSearchInterface .coveo-main-section .coveo-facet-column {
    display: flex;
    flex-direction: column !important;
  }
}
.page-container .CoveoSearchInterface .coveo-main-section::before, .page-container .CoveoSearchInterface .coveo-main-section::after {
  display: none;
}
.page-container .CoveoSearchInterface .CoveoResultList {
  margin-inline: 0;
}

.page-container .coveo-search-layout .col-2-inner > div:not(:first-child) {
  margin-top: clamp(40px, 6.66vw, 72px);
}
.page-container .CoveoFacet,
.page-container .CoveoFacetRange,
.page-container .CoveoFacetSlider,
.page-container .CoveoHierarchicalFacet,
.page-container .CoveoCategoryFacet,
.page-container .CoveoTimespanFacet {
  border-radius: 0;
}
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item .coveo-facet-breadcrumb-value .coveo-facet-breadcrumb-caption,
.page-container .CoveoBreadcrumb .coveo-facet-breadcrumb-values .coveo-facet-breadcrumb-value-list-item .coveo-facet-breadcrumb-value.coveo-selected * {
  white-space: nowrap;
}
.page-container .coveo-dropdown-header-wrapper {
  display: none;
}

.CoveoSearchInterface.coveo-small-facets .coveo-dropdown-header-wrapper {
  display: none !important;
}

.site-header-menu-search .CoveoSearchInterface {
  background-color: transparent;
}
.site-header-menu-search .magic-box {
  border: 0;
}
.site-header-menu-search .magic-box .magic-box-input {
  background-color: transparent;
  height: 50px;
}
.site-header-menu-search .magic-box .magic-box-input > input {
  box-shadow: 0 0 0;
}
.site-header-menu-search .magic-box-underlay {
  background: white;
  border-radius: 16px;
}
.site-header-menu-search .CoveoSearchbox .magic-box {
  border: 0 !important;
}
.site-header-menu-search .CoveoSearchbox .magic-box .magic-box-input {
  height: 50px !important;
}
.site-header-menu-search .CoveoSearchbox .CoveoSearchButton {
  position: absolute;
  right: 0;
  border-radius: 16px;
  border: 0;
}
.site-header-menu-search .CoveoSearchbox .CoveoSearchButton:focus {
  background: #dedede;
  color: #000;
}
.site-header-menu-search .coveo-search-button-svg {
  color: #444;
}

.hero-search-bar .CoveoSearchbox .magic-box {
  border: 0;
}
.hero-search-bar .CoveoSearchbox .magic-box .magic-box-input {
  background-color: transparent;
  background-color: #fff;
  border-radius: 9px;
}
.hero-search-bar .CoveoSearchbox .magic-box .magic-box-input input[type=text] {
  background-color: transparent;
  box-shadow: 0 0 0;
}
.hero-search-bar .CoveoSearchbox .CoveoSearchButton {
  position: absolute;
  border: 0;
  right: 0;
  text-decoration: none;
  margin-top: -1px;
  border-radius: 10px !important;
}
.hero-search-bar .CoveoSearchbox .CoveoSearchButton:hover, .hero-search-bar .CoveoSearchbox .CoveoSearchButton:focus-visible {
  background-color: #bdbdbe;
  outline: none;
  text-decoration: none;
  color: #343536;
}
.hero-search-bar .CoveoSearchbox .CoveoSearchButton:hover .coveo-search-button-svg,
.hero-search-bar .CoveoSearchbox .CoveoSearchButton:hover .coveo-magnifier-circle-svg, .hero-search-bar .CoveoSearchbox .CoveoSearchButton:focus-visible .coveo-search-button-svg,
.hero-search-bar .CoveoSearchbox .CoveoSearchButton:focus-visible .coveo-magnifier-circle-svg {
  color: #343536;
  fill: #343536;
}

.CoveoResultLink,
a.CoveoResultLink,
.CoveoResult a.CoveoResultLink {
  text-underline-offset: 2px;
  display: inline-block;
}
.CoveoResultLink:hover,
a.CoveoResultLink:hover,
.CoveoResult a.CoveoResultLink:hover {
  text-decoration: underline;
}

.magic-box-input .magic-box-clear {
  width: 50px !important;
  margin-left: unset !important;
  margin-right: 40px;
  background: transparent !important;
}

.magic-box-input .magic-box-clear .magic-box-icon {
  width: 50px !important;
  margin-left: unset !important;
  justify-content: center;
}

.CoveoSearchButton:hover .coveo-magnifier-circle-svg {
  fill: unset !important;
}

.magic-box .magic-box-input > input {
  padding: 12px 90px 12px 12px !important;
}

.CoveoSearchButton {
  width: 50px !important;
}

.CoveoSearchbox .magic-box .magic-box-input .magic-box-clear {
  display: none;
}
.CoveoSearchbox .magic-box .magic-box-input:hover .magic-box-clear {
  display: block;
}

.page-container .coveo-facet-footer {
  margin-top: 10px;
}
.page-container .coveo-facet-more,
.page-container .coveo-facet-less {
  height: 30px;
  background: white;
  align-items: center;
  gap: 10px;
}
.page-container .coveo-facet-more.coveo-active,
.page-container .coveo-facet-less.coveo-active {
  display: flex;
}
.page-container .coveo-facet-more::after,
.page-container .coveo-facet-less::after {
  font-size: 0.7777777778rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #b01f24;
  transition: ease-out 0.32s;
}
.page-container .coveo-facet-more:hover, .page-container .coveo-facet-more:focus,
.page-container .coveo-facet-less:hover,
.page-container .coveo-facet-less:focus {
  background-color: #fff;
}
.page-container .coveo-facet-more:hover::after, .page-container .coveo-facet-more:focus::after,
.page-container .coveo-facet-less:hover::after,
.page-container .coveo-facet-less:focus::after {
  color: #b01f24;
}
.page-container .coveo-facet-more-icon,
.page-container .coveo-facet-less-icon {
  top: 0;
}
.page-container .coveo-facet-more {
  margin-top: -1px;
}
.page-container .coveo-facet-more::after {
  content: "Show more";
}
.page-container .coveo-facet-less::after {
  content: "Show less";
}
.page-container .coveo-facet-value.coveo-facet-search-button .coveo-facet-value-checkbox > .coveo-facet-value-checkbox-svg,
.page-container .coveo-facet-value.coveo-facet-search-button:hover .coveo-facet-value-checkbox > .coveo-facet-value-checkbox-svg {
  bottom: unset;
}

.page-container #toggle-button {
  display: flex;
  justify-self: flex-start;
  margin-bottom: 20px;
}
.page-container .CoveoFacet .coveo-facet-settings-more-svg {
  color: #343536;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value {
  padding-inline: 0;
  margin-bottom: 15px;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value:last-child {
  margin-bottom: 0;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-label {
  padding: 0;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-label-wrapper {
  display: flex;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-caption {
  font-size: 0.8888888889rem;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-caption,
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-count {
  line-height: 1.43;
  font-weight: 400;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-count {
  font-size: 0.7777777778rem;
  display: inline-flex;
  align-items: flex-end;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-checkbox {
  display: grid;
  place-content: center;
  margin-top: -3px;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover {
  /*
  	GOTCHA: Local variables because we have to set the same thing in the
  	hover state as the up state
  */
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover .coveo-facet-value-checkbox svg {
  width: 75%;
  height: 100%;
  margin-left: 2px;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover .coveo-facet-value-checkbox svg .coveo-hook-svg {
  fill: #b01f24;
  opacity: 0;
  transition: ease-out 0.32s;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover:hover, .page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover.coveo-selected {
  background-color: transparent;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover:hover:not(.coveo-facet-search-button, .coveo-excluded, .coveo-facet-value-will-exclude, .coveo-has-childs-selected) .coveo-facet-value-checkbox svg, .page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover.coveo-selected:not(.coveo-facet-search-button, .coveo-excluded, .coveo-facet-value-will-exclude, .coveo-has-childs-selected) .coveo-facet-value-checkbox svg {
  width: 75%;
  height: 100%;
  margin-left: 2px;
  margin-top: 2px;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover:hover:not(.coveo-facet-search-button, .coveo-excluded, .coveo-facet-value-will-exclude, .coveo-has-childs-selected) .coveo-facet-value-checkbox svg .coveo-hook-svg, .page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value.coveo-with-hover.coveo-selected:not(.coveo-facet-search-button, .coveo-excluded, .coveo-facet-value-will-exclude, .coveo-has-childs-selected) .coveo-facet-value-checkbox svg .coveo-hook-svg {
  fill: #b01f24;
  opacity: 1;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-exclude {
  top: unset;
  bottom: 0;
  right: 0;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-container .CoveoFacet ul.coveo-facet-values li.coveo-facet-value .coveo-facet-value-exclude-svg {
  position: unset;
  top: unset;
  left: unset;
  width: 12px;
  height: 12px;
}

.page-container .coveo-slider-container {
  padding: 5px 0 0;
}
.page-container .CoveoFacetSlider .coveo-slider-button {
  background-color: #474747;
  width: 24px;
  height: 24px;
  margin-top: -4px;
  margin-left: -24px;
  border-radius: 0;
}
.page-container .CoveoFacetSlider .coveo-slider-button::before, .page-container .CoveoFacetSlider .coveo-slider-button::after {
  background-color: #fff;
  width: 2px;
  height: 8px;
  border-radius: 0;
  border: 0;
  top: 8px;
}
.page-container .CoveoFacetSlider .coveo-slider-button::before {
  left: 8px;
}
.page-container .CoveoFacetSlider .coveo-slider-button::after {
  right: 8px;
}
.page-container .CoveoFacetSlider.coveo-disabled .coveo-slider-line {
  background-color: #fff;
}
.page-container .CoveoFacetSlider.coveo-disabled .coveo-slider-line.coveo-active {
  background-color: #dedede;
}
.page-container .CoveoFacetSlider.coveo-disabled .coveo-slider-button {
  background-color: #474747;
}
.page-container .CoveoFacetSlider .coveo-slider-caption {
  line-height: 1.43;
  top: 32px;
  color: #343536;
  font-family: "Roboto", sans-serif;
  font-size: 0.7777777778rem;
}

.page-container .CoveoFacet,
.page-container .CoveoFacetSlider {
  border-width: 6px 0 0;
  border-top: solid #f38740;
  margin-bottom: 38px;
}
.page-container .CoveoFacet .coveo-facet-header,
.page-container .CoveoFacetSlider .coveo-facet-header {
  border-bottom: solid 1px #bdbdbe;
  background-color: transparent;
  text-transform: uppercase;
  color: #343536;
  padding-inline: 0;
  padding-block: 15px;
  margin-bottom: 15px;
  font-weight: 700;
}
.page-container .CoveoFacet .coveo-facet-header-title,
.page-container .CoveoFacetSlider .coveo-facet-header-title {
  color: #343536;
  font-family: "Roboto", sans-serif;
  font-size: 0.7777777778rem;
  letter-spacing: 0.071em;
  line-height: 1.15;
}
.page-container .CoveoFacet .coveo-facet-header-title-section,
.page-container .CoveoFacetSlider .coveo-facet-header-title-section {
  align-items: center;
}
.page-container .CoveoFacet .coveo-facet-header svg.coveo-facet-header-eraser-svg,
.page-container .CoveoFacetSlider .coveo-facet-header svg.coveo-facet-header-eraser-svg {
  width: 18px;
  height: 18px;
}
.page-container .CoveoFacet .coveo-facet-header svg.coveo-facet-settings-more-svg,
.page-container .CoveoFacetSlider .coveo-facet-header svg.coveo-facet-settings-more-svg {
  width: 22px;
  height: 22px;
}
.page-container .CoveoFacet .coveo-facet-settings-more-svg,
.page-container .CoveoFacet .coveo-facet-header-eraser,
.page-container .CoveoFacetSlider .coveo-facet-settings-more-svg,
.page-container .CoveoFacetSlider .coveo-facet-header-eraser {
  color: #343536;
}

.page-container .CoveoPager {
  margin-left: 0;
}
.page-container .CoveoPager .coveo-pager-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-container .CoveoPager .coveo-pager-list .coveo-pager-next-icon-svg,
.page-container .CoveoPager .coveo-pager-list .coveo-pager-previous-icon-svg {
  width: auto;
  height: 11px;
  color: #474747;
}
.page-container .CoveoPager .coveo-pager-list .coveo-pager-list-item {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 0;
  font-weight: 700;
  color: #474747;
  transition: ease-out 0.32s;
}
.page-container .CoveoPager .coveo-pager-list .coveo-pager-list-item.coveo-active, .page-container .CoveoPager .coveo-pager-list .coveo-pager-list-item:hover:not(.coveo-pager-next, .coveo-pager-previous) {
  background-color: #474747;
  color: #fff;
  text-decoration: none;
}
.page-container .CoveoPager .coveo-pager-list .coveo-pager-next {
  margin-left: 0;
}
.page-container .CoveoPager .coveo-pager-list .coveo-pager-previous {
  margin-right: 0;
}

.page-container .coveo-results-header {
  box-shadow: 0 0 0;
  padding-inline: 0;
  margin-top: -15px;
  flex-direction: column;
}
@media (min-width: 1000px) {
  .page-container .coveo-results-header {
    flex-direction: row;
  }
}
.page-container .coveo-results-header > *:not(:first-child) {
  border-right: 0;
}
.page-container .coveo-results-header .coveo-summary-section {
  font-size: 0.8888888889rem;
  font-weight: 700;
  line-height: 1.62;
}
.page-container .coveo-results-header .coveo-summary-section .CoveoQuerySummary {
  color: #474747;
}
.page-container .coveo-results-header .coveo-sort-section {
  display: flex;
  margin-inline: 0;
  margin-block: 10px 20px;
  flex-direction: row;
  gap: 20px;
  flex: 1;
}
@media (min-width: 1000px) {
  .page-container .coveo-results-header .coveo-sort-section {
    justify-content: flex-end;
    margin: unset;
    flex-direction: row;
    gap: 1.1111111111rem;
  }
}
.page-container .coveo-results-header .coveo-sort-section .CoveoSort {
  padding: 0;
  border: 0;
  letter-spacing: 0.077em;
}
.page-container .coveo-results-header .coveo-sort-section .CoveoSort.coveo-selected {
  text-underline-offset: 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #b01f24;
}

.page-container .coveo-results-column .coveo-list-layout.CoveoResult {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-title {
  line-height: 1.26;
  font-size: clamp(1rem, 3vw, 1.1111111111rem);
  font-weight: 700;
  text-transform: uppercase;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-title .CoveoResultLink {
  color: #474747;
  text-transform: none;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-title .CoveoResultLink:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6666666667rem;
  margin-block: 0;
}
@media (min-width: 768px) {
  .page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-row {
    flex-direction: row;
    align-items: center;
    gap: 1.2222222222rem;
  }
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-row .coveo-result-cell {
  font-size: 0.6666666667rem;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-row:first-of-type .coveo-result-cell {
  color: #474747;
  font-size: 0.7777777778rem;
  font-weight: 700;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-row:last-of-type .coveo-result-cell {
  font-size: 0.8888888889rem;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-frame {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-quick-view-container {
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 0;
  width: auto;
}
@media (min-width: 768px) {
  .page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-quick-view-container {
    margin-bottom: 0;
  }
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-quick-view-container .coveo-accessible-button {
  color: #58595b;
  text-underline-offset: 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #b01f24;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-quick-view-container .coveo-accessible-button:hover {
  color: #b01f24;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-cell.hidden {
  display: none;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-cell .CoveoFieldValue {
  line-height: 1.44;
  color: #343536;
}
.page-container .coveo-results-column .coveo-list-layout.CoveoResult .coveo-result-cell .CoveoFieldValue[data-helper=dateTime] {
  color: #777;
}

.cta-panel {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  position: relative;
  text-align: center;
}
.cta-panel[data-contained=true] {
  grid-column: main;
}
@media (min-width: 600px) {
  .cta-panel {
    background-image: url("../images/bg-cta-panel-mobile.png");
    background-size: cover;
  }
}
@media (min-width: 800px) {
  .cta-panel {
    background-image: url("../images/bg-cta-panel-desktop.png");
  }
}
@media (min-width: 600px) {
  .cta-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
.cta-panel .inner {
  position: relative;
  grid-column: full;
  padding: clamp(48px, 8vw, 120px) 0;
  padding-inline: 20px;
  z-index: 2;
}
@media (min-width: 600px) {
  .cta-panel .inner {
    background-image: url("../images/bg-cta-panel-circle.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-inline: 80px;
  }
}
@media (min-width: 1000px) {
  .cta-panel .inner {
    grid-column: main;
    padding-inline: 120px;
  }
}
.cta-panel .wysiwyg-content {
  max-width: 700px;
  margin: 24px auto 0;
}
.cta-panel-links {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-top: 24px;
  font-size: 0;
}
@media (min-width: 1100px) {
  .cta-panel-links {
    justify-content: center;
    flex-direction: row;
  }
}

[data-meeting-site=true] .cta-panel {
  background-image: none;
  background-image: linear-gradient(to left, #f38740, #48a992);
}
[data-meeting-site=true] .cta-panel::before {
  background: none;
}
[data-meeting-site=true] .cta-panel .inner {
  background-image: none;
}
[data-meeting-site=true] .cta-panel .headline-container svg {
  display: none;
}
[data-meeting-site=true] .cta-panel .h3 {
  color: #fff;
}

.dialog,
.dialog-overlay {
  position: fixed;
  inset: 0;
}

.dialog {
  z-index: 300;
  display: flex;
}
.dialog[aria-hidden=true] {
  display: none;
}
.dialog-overlay {
  animation: dialog-fade-in 200ms both;
  cursor: pointer;
}
.dialog-main {
  position: relative;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 525px;
  max-height: 90vh;
  overflow: hidden;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  animation: dialog-fade-in 400ms 200ms both, dialog-slide-up 400ms 200ms both;
}
.dialog-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  margin-right: 0;
}
.dialog-content p {
  font-size: clamp(16px, 3.2vw, 18px);
}
.dialog-content-inner {
  height: 100%;
  overflow-y: auto;
  flex-grow: 1;
  min-height: 0;
  text-align: center;
}
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (max-width: 599px) {
  .dialog-close {
    width: 40px;
    height: 40px;
  }
  .dialog-close::before {
    font-size: 0.7777777778rem;
  }
}
.dialog-text {
  padding: 70px 30px 50px;
}
@media (min-width: 600px) {
  .dialog-text {
    padding: 85px 65px;
  }
}
.dialog .button,
.dialog .text-link {
  margin-top: 25px;
}
.dialog[data-image=true] .dialog-main {
  max-width: 890px;
}
@media (min-width: 768px) {
  .dialog[data-image=true] .dialog-content-inner {
    display: flex;
    align-items: stretch;
  }
}
.dialog[data-image=true] .dialog-image {
  position: relative;
  overflow: hidden;
  height: clamp(265px, 44.1666666667vw, 400px);
}
@media (min-width: 768px) {
  .dialog[data-image=true] .dialog-image {
    width: 50%;
    height: auto;
  }
}
.dialog[data-image=true] .dialog-image picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dialog[data-image=true] .dialog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dialog[data-image=true] .dialog-text {
  padding: 65px 30px 45px;
}
@media (min-width: 600px) {
  .dialog[data-image=true] .dialog-text {
    padding: 65px 65px 45px;
  }
}
@media (min-width: 768px) {
  .dialog[data-image=true] .dialog-text {
    width: 50%;
    padding: 85px 30px;
  }
}
@media (max-width: 767px) {
  .dialog[data-image=true] .dialog-text .dialog-title::before {
    display: none;
  }
}
.dialog[data-form=true] .dialog-main {
  max-width: 900px;
}
.dialog-form-container {
  padding: 70px 30px 50px;
}
@media (min-width: 600px) {
  .dialog-form-container {
    padding: 85px 30px 40px;
  }
}
@media (min-width: 1000px) {
  .dialog-form-container {
    padding-inline: 65px;
  }
}
@media (min-width: 1200px) {
  .dialog-form-container {
    padding-inline: 95px;
  }
}
.dialog-form {
  margin-top: 30px;
  text-align: left;
}
.dialog-form label.form-required::after {
  content: "*";
  display: inline-block;
  margin-left: 5px;
  color: #b01f24;
}

@keyframes dialog-fade-in {
  from {
    opacity: 0;
  }
}
@keyframes dialog-slide-up {
  from {
    transform: translateY(10%);
  }
}
.image-text-grid {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.image-text-grid .logo-mark {
  top: 50px;
  right: 25%;
}
@media (min-width: 1400px) {
  .image-text-grid .logo-mark {
    top: 150px;
  }
}
.image-text-grid-header {
  grid-column: main;
  justify-self: center;
  margin-bottom: 88px;
}
.image-text-grid-header-content {
  position: relative;
  padding: 0 34px;
  text-align: center;
  z-index: 1;
}
.image-text-grid-header-content .headline-container {
  display: flex;
  flex-direction: column;
}
.image-text-grid-header-content .headline-container svg {
  align-self: center;
}
.image-text-grid-header-content > *:not(.links-wrapper) {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
@media (min-width: 1000px) {
  .image-text-grid-header-content {
    max-width: 500px;
    margin-top: unset;
    align-self: unset;
  }
}
@media (min-width: 1000px) {
  .image-text-grid-header-content {
    padding: 0;
  }
}
.image-text-grid-header-content .links-wrapper {
  align-items: center;
  gap: 20px 16px;
}
@media (min-width: 768px) {
  .image-text-grid-header-content .links-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}
.image-text-grid-header svg.image {
  position: absolute;
  max-width: 830px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  mask-image: linear-gradient(to top, transparent 35%, #000 100%);
  z-index: -1;
}
.image-text-grid-header svg.image picture,
.image-text-grid-header svg.image foreignObject {
  width: 100%;
  height: 100%;
}
.image-text-grid-header svg.image picture img,
.image-text-grid-header svg.image foreignObject img {
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
@media (min-width: 768px) {
  .image-text-grid-header svg.image {
    position: absolute;
    top: 0;
    right: -210px;
    width: calc(100% + 210px);
    width: 100%;
  }
}
.image-text-grid-header .cards {
  padding: clamp(40px, 8vw, 80px) 34px;
}
.image-text-grid .inner {
  grid-column: main;
}
.image-text-grid[data-image-present=true][data-background-color=true] .img-wrapper {
  top: clamp(48px, 8vw, 120px);
}
.image-text-grid[data-image-present=true] .image-text-grid-header {
  grid-column: full;
}
.image-text-grid[data-image-present=true] .image-text-grid-header-content .headline-container svg {
  align-self: center;
}
@media (min-width: 768px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header-content .headline-container svg {
    align-self: flex-start;
  }
}
@media (min-width: 768px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header-content {
    margin-top: 88px;
    text-align: left;
    align-self: flex-start;
  }
  .image-text-grid[data-image-present=true] .image-text-grid-header-content .links-wrapper {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header {
    justify-self: start;
  }
}
@media (min-width: 1000px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header {
    grid-column: main / full;
  }
}

.on-page-editor .layout-two-col-aside {
  position: absolute;
}
.on-page-editor .layout-two-col-sidebar > aside,
.on-page-editor .layout-two-col-sidebar > div {
  margin-top: 0;
}

.faceted-search {
  grid-column: main;
  margin-bottom: clamp(48px, 8vw, 120px);
}
@media (min-width: 900px) {
  .faceted-search {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-column-gap: clamp(45px, 5vw, 90px);
  }
}
.faceted-search [aria-hidden=true] {
  display: none;
}
.faceted-search-sidebar {
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .faceted-search-sidebar {
    margin: 0;
  }
}
.faceted-search-sidebar-search {
  position: relative;
  margin-bottom: 30px;
}
.faceted-search-sidebar-search input {
  padding-right: 50px;
}
.faceted-search-sidebar-search button {
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  color: blue;
  font-size: 1.1111111111rem;
}
.faceted-search-sidebar-search button::before {
  content: "\e912";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex: none;
}
.faceted-search-sidebar-search button:hover {
  background: blue;
  color: #fff;
}
.faceted-search-facet + .faceted-search-facet {
  margin-top: 30px;
}
.faceted-search-content-header {
  margin-bottom: 45px;
}
@media (min-width: 600px) {
  .faceted-search-content-header-top {
    display: flex;
    align-items: center;
  }
}
.faceted-search-results-sort {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 600px) {
  .faceted-search-results-sort {
    flex: none;
    width: 220px;
    margin-top: 0;
  }
}
.faceted-search-results-sort label {
  flex: none;
  font-size: 0.8333333333rem;
  padding: 0;
  margin-right: 10px;
}
.faceted-search-results-sort select {
  flex: 1 1 0%;
  background-position: right 10px center;
  padding: 10px 30px 10px 10px;
  margin: 0;
}
.faceted-search-facets-section {
  margin-bottom: 30px;
}
@media (min-width: 1000px) {
  .faceted-search-facets-section {
    margin-bottom: 45px;
  }
}
.faceted-search-facets-section-title {
  margin-bottom: 15px;
}
.faceted-search-active-facets {
  margin-top: 20px;
}
.faceted-search-active-facets::after {
  content: "";
  display: block;
  clear: both;
}
.faceted-search-active-facets * {
  float: left;
  margin: 0 7px 7px 0;
}
.faceted-search-active-facets-label {
  font-size: 0.7777777778rem;
  line-height: 1.4444444444rem;
}
.faceted-search-active-facets-links {
  margin: 0;
}
.faceted-search-active-facets-link, .faceted-search-active-facets-clear {
  display: block;
}
.faceted-search-active-facets-link {
  position: relative;
  background: #e0e0e0;
  color: blue;
  font-size: 0.6666666667rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 26px 6px 12px;
  transition: 0.32s ease-out;
}
.faceted-search-active-facets-link:nth-last-child(2) {
  margin-right: 15px;
}
.faceted-search-active-facets-link::after {
  content: "\e907";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 6px;
  font-size: 1rem;
  transform: translateY(-50%);
}
.faceted-search-active-facets-link:hover {
  background: blue;
  color: #fff;
}
.faceted-search-active-facets-clear {
  color: blue;
  font-size: 0.6666666667rem;
  line-height: 1.4444444444rem;
  margin-right: 0;
  transition: box-shadow 0.32s ease-out;
}
.faceted-search-active-facets-clear:hover {
  color: red;
}
.faceted-search-results-text {
  font-size: 0.8333333333rem;
}
.faceted-search-results-text::after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 600px) {
  .faceted-search-results-text {
    flex: 1 1 0%;
  }
}
.faceted-search-results-text span {
  float: left;
}
.faceted-search .teaser {
  display: block;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.faceted-search .teaser:hover .h3 a {
  color: red;
}
@media (min-width: 600px) {
  .faceted-search .teaser-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
.faceted-search .teaser-image {
  width: 210px;
  margin: 0 0 15px;
}
@media (min-width: 600px) {
  .faceted-search .teaser-image {
    flex: none;
    margin: 0 0 0 30px;
  }
}
@media (min-width: 600px) {
  .faceted-search .teaser-content {
    flex: 1 1 0%;
  }
}
.faceted-search .teaser .h3 {
  margin: 0;
}
.faceted-search .teaser .h3 a {
  display: inline;
}
.faceted-search .teaser p {
  font-size: 0.8333333333rem;
  margin-bottom: 15px;
}
.faceted-search .teaser time, .faceted-search .teaser-meta {
  display: block;
  color: #777;
  font-size: 0.7777777778rem;
}
.faceted-search .teaser-meta {
  margin-bottom: 10px;
}
.faceted-search .teaser time {
  margin: 10px 0 15px;
}

.featured-articles {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.featured-articles .inner {
  grid-column: main;
}
.featured-articles[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #f7f7f7;
}
.featured-articles .eyebrow {
  color: #474747;
  font-size: 1.1111111111rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.featured-articles .articles {
  display: grid;
  gap: 48px 60px;
}
.featured-articles .articles .article-image {
  overflow: hidden;
  margin-bottom: 48px;
}
.featured-articles .articles .article-image img {
  align-self: flex-start;
  transition: transform 0.3s;
  width: 100%;
}
.featured-articles .articles .article .h4 {
  display: inline-block;
}
.featured-articles .articles .article .description {
  margin-bottom: 8px;
  display: none;
}
.featured-articles .articles .article .date {
  font-size: 0.6666666667rem;
  line-height: 1.5;
}
.featured-articles .articles .article:first-child .article-image {
  overflow: hidden;
  border-radius: 0 0 104px 0;
}
.featured-articles .articles .article:first-child .h4 {
  margin-bottom: 24px;
}
.featured-articles .articles .article:first-child .description {
  display: block;
  font-size: 1rem;
  line-height: 1.44;
}
.featured-articles .articles .article:not(:first-child) .h4 {
  margin-bottom: 8px;
}
.featured-articles .articles .article.js-link-event:hover .article-image img, .featured-articles .articles .article.js-link-event:focus-visible .article-image img {
  transform: scale(1.1);
}
.featured-articles .articles .article.js-link-event:hover .h4, .featured-articles .articles .article.js-link-event:focus-visible .h4 {
  color: #58595b;
}
@media (min-width: 768px) {
  .featured-articles .articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 103px;
  }
  .featured-articles .articles .article {
    display: grid;
    column-gap: 48px;
    grid-template-columns: 1fr;
  }
  .featured-articles .articles .article .article-image {
    width: 100%;
    margin-bottom: 28px;
  }
  .featured-articles .articles .article:first-child {
    grid-row: span 3;
    grid-column: span 2;
  }
  .featured-articles .articles .article:first-child .text {
    flex: 1;
  }
  .featured-articles .articles .article:not(:first-child) .h4 {
    font-size: 1.1111111111rem;
  }
  .featured-articles .articles .article:nth-child(2) {
    grid-row: 1;
    grid-column: 3;
  }
  .featured-articles .articles .article:nth-child(3) {
    grid-row: 2;
    grid-column: 3;
  }
}
@media (min-width: 1000px) {
  .featured-articles .articles .article {
    grid-template-columns: 1fr 1fr;
  }
  .featured-articles .articles .article .article-image {
    margin-bottom: unset;
  }
  .featured-articles .articles .article:first-child {
    grid-template-columns: 60% 1fr;
  }
}

.featured-links {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.featured-links .inner {
  grid-column: main;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .featured-links .inner {
    flex-direction: row;
    max-width: 1243px;
    margin-inline: auto;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .featured-links .inner {
    gap: 140px;
  }
}
.featured-links .group-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .featured-links .group-links {
    flex-flow: row wrap;
    align-items: center;
  }
}
.featured-links-ul, .featured-links-content {
  position: relative;
}
@media (min-width: 768px) {
  .featured-links-ul, .featured-links-content {
    width: 50%;
  }
}
.featured-links-ul {
  padding: clamp(30px, 5vw, 40px);
  background-color: #f7f7f7;
  border-bottom-right-radius: 104px;
  display: grid;
  gap: 20px;
}
.featured-links-ul li {
  padding-bottom: 20px;
  border-bottom: solid 1px #e5e5e5;
}
.featured-links-ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.featured-links-ul li a + p {
  margin-top: 20px;
}
.featured-links-ul li:hover a {
  color: #58595b;
}
.featured-links .logo-mark-wrapper {
  display: none;
}
@media (min-width: 800px) {
  .featured-links .logo-mark-wrapper {
    display: block;
    position: absolute;
    margin-top: 30px;
    right: -20px;
    width: 80px;
  }
}
@media (min-width: 1200px) {
  .featured-links .logo-mark-wrapper {
    right: -100px;
  }
}

.fifty-fifty-link-box {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.fifty-fifty-link-box .inner {
  grid-column: main;
  display: grid;
}
@media (min-width: 1000px) {
  .fifty-fifty-link-box .inner[data-column="2"] {
    --columns: 2 ;
  }
}
.fifty-fifty-link-box .inner-text {
  position: relative;
}
.fifty-fifty-link-box .logo-mark {
  position: relative;
  margin-left: auto;
}
@media (min-width: 1000px) {
  .fifty-fifty-link-box .logo-mark {
    position: absolute;
    top: 50%;
    right: 0;
  }
}

.link-box {
  background-color: #f7f7f7;
  border-top: solid 4px #f38740;
  border-bottom-right-radius: 104px;
  padding: 48px;
}
.link-box ul li:not(:last-child) {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: solid 1px;
}

*[data-background-color=true] .link-box {
  background-color: #fff;
}

.fifty-fifty-wide {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  padding: 0;
  position: relative;
}
.fifty-fifty-wide .inner {
  grid-column: full;
}
@media (min-width: 1000px) {
  .fifty-fifty-wide .inner {
    grid-column: main;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
}
@media (min-width: 1000px) {
  .fifty-fifty-wide[data-media-align=right] .inner {
    flex-direction: row-reverse;
  }
}
@media (min-width: 800px) {
  .fifty-fifty-wide[data-media-align=right] .fifty-fifty-wide-media {
    overflow: hidden;
    border-radius: 0 0 0 104px;
  }
}
.fifty-fifty-wide[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #f7f7f7;
}
.fifty-fifty-wide[data-background-color=true] .fifty-fifty-wide-media .media-text-wrapper {
  background-color: #fff;
}
.fifty-fifty-wide[data-background-color=true] .media-link {
  overflow: hidden;
  width: calc(100% - 70px);
}
@media (min-width: 1000px) {
  .fifty-fifty-wide[data-background-color=true] .media-link {
    width: 100%;
  }
}
.fifty-fifty-wide-text {
  display: grid;
  grid-column: main;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
@media (min-width: 1000px) {
  .fifty-fifty-wide-text {
    margin-top: 0;
  }
}
.fifty-fifty-wide-text .form-field {
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 800px) {
  .fifty-fifty-wide-text .form-field {
    max-width: 446px;
  }
}
.fifty-fifty-wide-links {
  margin-top: 24px;
  display: flex;
  flex-flow: column wrap;
  gap: 24px;
}
.fifty-fifty-wide-links .button {
  align-self: flex-start;
}
@media (min-width: 1100px) {
  .fifty-fifty-wide-links {
    align-items: center;
    flex-direction: row;
    gap: 20px 30px;
  }
}
.fifty-fifty-wide-links a:last-of-type {
  margin-right: 0;
}
.fifty-fifty-wide-media {
  grid-column: full;
  display: grid;
  overflow: hidden;
  position: relative;
  place-items: center;
}
.fifty-fifty-wide-media .media-text-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f7f7f7;
  padding: 16px 34px;
  text-align: left;
  font-size: 0.7777777778rem;
  line-height: 1.4;
  z-index: 100;
}
@media (min-width: 1000px) {
  .fifty-fifty-wide-media .media-text-wrapper {
    padding: 16px;
  }
}
.fifty-fifty-wide-media .media-text-wrapper .media-headline.h4 {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1rem;
}
.fifty-fifty-wide-media .media-text-wrapper .media-headline.h4 a {
  color: #b01f24;
  text-decoration: none;
  text-transform: none;
  font-size: 1rem;
}
.fifty-fifty-wide-media .media-text-wrapper .media-headline.h4 a.-external::before {
  margin-top: 3px;
}
.fifty-fifty-wide-media .media-text-wrapper .media-headline.h4 a:hover {
  color: #58595b;
}
.fifty-fifty-wide-media .icon-play {
  position: absolute;
  font-size: 2.7777777778rem;
  color: #fff;
  cursor: pointer;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: 0.32s ease-out;
  line-height: 0.8;
  z-index: 100;
  transform: translateY(calc(-100% - 32px));
  pointer-events: none;
}
.fifty-fifty-wide-media .js-modal-video-btn,
.fifty-fifty-wide-media picture {
  position: relative;
  width: 100%;
  transition: 0.32s ease-out;
}
.fifty-fifty-wide-media .js-modal-video-btn img,
.fifty-fifty-wide-media picture img {
  width: 100%;
}
.fifty-fifty-wide-media .js-modal-video-btn:hover picture,
.fifty-fifty-wide-media picture:hover picture {
  transform: scale(1.05);
}
.fifty-fifty-wide-media .js-modal-video-btn:hover + figcaption .icon-play,
.fifty-fifty-wide-media picture:hover + figcaption .icon-play {
  color: #b01f24;
}
@media (min-width: 800px) {
  .fifty-fifty-wide-media {
    overflow: hidden;
    border-radius: 0 0 104px 0;
    margin-bottom: 0;
  }
}
.fifty-fifty-wide-media.js-link-event:hover picture {
  transform: scale(1.05);
}
@media (min-width: 1000px) {
  .fifty-fifty-wide-text {
    width: 50%;
  }
  .fifty-fifty-wide-media {
    align-self: flex-start;
    width: 58.97%;
  }
}

.fifty-fifty {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  padding: 0;
  position: relative;
}
.fifty-fifty .text {
  padding-inline: 34px;
}
.fifty-fifty .inner {
  grid-column: main;
}
.fifty-fifty > .inner {
  width: 100%;
}
@media (min-width: 800px) {
  .fifty-fifty > .inner {
    max-width: 1243px;
    margin-inline: auto;
    align-items: center;
    display: flex;
    gap: 88px;
  }
}
.fifty-fifty[data-media-align=right] > .inner {
  flex-direction: row-reverse;
}
@media (min-width: 800px) {
  .fifty-fifty[data-media-align=right] .fifty-fifty-media {
    overflow: hidden;
    border-radius: 0 0 0 104px;
  }
}
.fifty-fifty[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #f7f7f7;
}
@media (min-width: 800px) {
  .fifty-fifty[data-background-color=true] .fifty-fifty-media {
    margin-top: unset;
  }
}
@media (min-width: 1000px) {
  .fifty-fifty[data-background-color=true] .fifty-fifty-media {
    margin-top: unset;
  }
}
.fifty-fifty-text {
  height: auto;
  position: relative;
  z-index: 1;
}
.fifty-fifty-text h2 {
  margin-bottom: 24px;
  color: #b01f24;
}
.fifty-fifty-links {
  margin-top: 24px;
  display: flex;
  flex-flow: column wrap;
  font-size: 0;
  gap: 24px;
}
.fifty-fifty-links .button {
  align-self: flex-start;
}
@media (min-width: 1100px) {
  .fifty-fifty-links {
    align-items: center;
    flex-direction: row;
    gap: 20px 30px;
  }
}
.fifty-fifty-links a:last-of-type {
  margin-right: 0;
}
.fifty-fifty-media {
  margin-bottom: 40px;
  display: grid;
  position: relative;
  place-items: center;
  background-color: #58595b;
}
.fifty-fifty-media .js-modal-video-btn {
  position: relative;
  width: 100%;
}
.fifty-fifty-media .js-modal-video-btn:hover picture {
  transform: scale(1.05);
}
.fifty-fifty-media .js-modal-video-btn:hover .icon-play {
  color: #b01f24;
}
.fifty-fifty-media .icon-play {
  position: absolute;
  bottom: 15px;
  left: 25px;
  font-size: 2.7777777778rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: 0.32s ease-out;
  z-index: 100;
}
.fifty-fifty-media picture {
  width: 100%;
  transition: 0.32s ease-out;
}
.fifty-fifty-media picture img {
  width: 100%;
}
@media (min-width: 800px) {
  .fifty-fifty-media {
    overflow: hidden;
    border-radius: 0 0 104px 0;
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  .fifty-fifty-text, .fifty-fifty-media {
    width: 50%;
  }
  .fifty-fifty-media {
    align-self: flex-start;
  }
}

.hero-search-bar {
  position: relative;
  grid-column: main;
  margin-top: 10px;
  padding: 18px;
  background-color: #b01f24;
  border-radius: 6px;
  color: #fff;
}
@media (min-width: 800px) {
  .hero-search-bar {
    width: 100%;
    height: 92px;
  }
}
@media (min-width: 1100px) {
  .hero-search-bar {
    height: 120px;
    padding: 30px 40px;
  }
}
@media (min-width: 800px) {
  .hero-landing .hero-search-bar, .hero-home .hero-search-bar {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.hero-standard .hero-search-bar {
  margin-top: 0;
}
@media (min-width: 800px) {
  .hero-search-bar-inner {
    display: flex;
    align-items: center;
  }
}
.hero-search-bar-label {
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 800px) {
  .hero-search-bar-label {
    font-size: 1.1111111111rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.hero-search-bar-label span {
  display: block;
}
@media (max-width: 799px) {
  .hero-search-bar .label-top {
    font-size: 1.3333333333rem;
    font-weight: 700;
  }
}
.hero-search-bar-input {
  position: relative;
  margin-top: 20px;
}
@media (min-width: 800px) {
  .hero-search-bar-input {
    flex: 1 1 auto;
    margin: 0 0 0 40px;
  }
}
.hero-search-bar input[type=search] {
  padding-right: 65px;
  border-radius: 9px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2) inset;
}
.hero-search-bar-submit {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  background-color: transparent;
  border-radius: 9px;
  color: #000;
}
.hero-search-bar-submit::before {
  content: "\e912";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2222222222rem;
}
.hero-search-bar-submit:hover, .hero-search-bar-submit:focus-visible {
  background-color: #bdbdbe;
  outline: none;
}

.hero-select-nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 800px) {
  .hero-select-nav {
    margin-bottom: 10px;
  }
}
.hero-select-nav .hero-select-link {
  font-size: 0.7777777778rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  color: #474747;
}
.hero-select-nav .hero-select {
  flex: none;
}
@media (min-width: 800px) {
  .hero-select-nav .hero-select {
    position: relative;
  }
}
.hero-select-nav .hero-select-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  padding: 2px;
}
.hero-select-nav .hero-select-toggle::after {
  content: "\e909";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #b01f24;
  border-radius: 50%;
  font-size: 0.3888888889rem;
  color: #fff;
}
.hero-select-nav .hero-select-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
}
.hero-select-nav .hero-select-dropdown {
  position: absolute;
  z-index: 50;
  top: calc(100% + 10px);
  left: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 290px;
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-top: 3px solid #f38740;
  box-shadow: 5px 4px 4px 0 rgba(0, 0, 0, 0.04);
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
}
@media (min-width: 600px) {
  .hero-select-nav .hero-select-dropdown {
    max-width: 290px;
  }
}
.hero-select-nav .hero-select-dropdown[aria-expanded=true] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}
.hero-select-nav .hero-select-dropdown .hero-select-dropdown-item {
  padding: 8px 0;
}
.hero-select-nav .hero-select-dropdown .hero-select-dropdown-link {
  display: block;
  font-size: 0.7222222222rem;
  font-weight: 700;
  line-height: 1.69;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.0555555556rem;
}
.hero-select-nav .hero-select-dropdown .hero-select-dropdown-link:hover, .hero-select-nav .hero-select-dropdown .hero-select-dropdown-link:focus {
  color: #b01f24;
}

.hero-subnav {
  position: relative;
  grid-column: main;
  display: flex;
  align-items: center;
  height: 54px;
  margin-top: 10px;
  padding: 4px 20px 0 4px;
  background-color: #fff;
  color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
  z-index: 4;
}
@media (min-width: 800px) {
  .hero-subnav {
    width: 100%;
    height: 64px;
    padding: 4px 35px 0 4px;
  }
}
@media (min-width: 800px) {
  .hero-landing .hero-subnav, .hero-home .hero-subnav {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.hero-standard .hero-subnav {
  margin-top: 0;
}
.hero-subnav .hero-subnav-label {
  position: relative;
  flex: none;
  padding: 0 40px 0 20px;
  color: #000;
  letter-spacing: 0.0555555556rem;
}
@media (min-width: 800px) {
  .hero-subnav .hero-subnav-label {
    padding-left: 35px;
  }
}
.hero-subnav .hero-subnav-label.eyebrow {
  margin: 0;
}
.hero-subnav .hero-subnav-label::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  width: 15px;
  height: calc(100% + 20px);
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.53) -25%, rgba(217, 217, 217, 0) 50%);
}
.hero-subnav .hero-subnav-container {
  flex: 1 1 0%;
  height: 100%;
}
.hero-subnav .hero-subnav-container:not(:has(.p-plus-container)) {
  visibility: hidden;
}
.hero-subnav .p-plus-container {
  display: flex;
  height: 100%;
}
.hero-subnav .p-plus {
  display: inline-flex;
  align-items: center;
}
.hero-subnav .p-plus__primary-wrapper {
  flex-grow: 0;
  height: 100%;
  margin-right: 15px;
}
.hero-subnav .p-plus__primary {
  align-items: center;
}
.hero-subnav .p-plus__toggle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 32px;
  background-color: #474747;
  color: #fff;
  border-radius: 100px;
  font-family: "Roboto", sans-serif;
  font-size: 0.7222222222rem;
  font-weight: 700;
  letter-spacing: 0.0555555556rem;
  text-transform: uppercase;
}
.hero-subnav .p-plus__toggle-btn::after {
  content: "\e909";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 12px;
  transition: transform 0.1s ease-out;
}
.hero-subnav .p-plus__toggle-btn[aria-expanded=true]::after {
  transform: scaleY(-1);
}
.hero-subnav .p-plus__overflow {
  top: calc(100% - 5px);
  right: 0;
  width: 100%;
  min-width: 210px;
  max-width: 290px;
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-top: 3px solid #f38740;
  box-shadow: 5px 4px 4px 0 rgba(0, 0, 0, 0.04);
}
@media (min-width: 800px) {
  .hero-subnav .p-plus__overflow {
    top: calc(100% - 10px);
  }
}
.hero-subnav .p-plus__overflow .hero-subnav-item {
  padding: 8px 0;
}
.hero-subnav .p-plus__overflow .hero-subnav-item[data-active=true] .hero-subnav-link {
  border-radius: 0;
}
.hero-subnav .p-plus__overflow .hero-subnav-link {
  padding: 0;
  font-size: 0.7222222222rem;
  font-weight: 700;
  line-height: 1.69;
  color: #000;
}
.hero-subnav .p-plus__overflow .hero-subnav-link:hover, .hero-subnav .p-plus__overflow .hero-subnav-link:focus {
  color: #b01f24;
}
.hero-subnav .hero-subnav-list {
  height: 100%;
}
.hero-subnav .hero-subnav-list.p-plus__primary {
  opacity: 1;
}
.hero-subnav .hero-subnav-item {
  height: 100%;
}
.hero-subnav .hero-subnav-item[data-active=true] .hero-subnav-link {
  background-color: #a0191d;
  color: #fff;
  text-decoration: none;
}
.hero-subnav .hero-subnav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 0.7222222222rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0555555556rem;
  color: #474747;
  border-radius: 6px 6px 0 0;
}
.hero-subnav .hero-subnav-link:focus {
  outline-offset: 0;
}
.hero-subnav.-has-overflow {
  justify-content: center;
  cursor: pointer;
}
.hero-subnav.-has-overflow .hero-subnav-label::after {
  display: none;
}
.hero-subnav.-has-overflow .p-plus {
  flex-grow: 1;
}
.hero-subnav.-has-overflow .p-plus__toggle-btn {
  display: flex;
  justify-content: flex-end;
  flex-grow: 0;
  margin-left: auto;
  background-color: transparent;
  transition: none;
}
.hero-subnav.-has-overflow .p-plus__toggle-btn::after {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #474747;
  border-radius: 100px;
  width: 50px;
  height: 100%;
  transition: none;
}
.hero-subnav.-has-overflow .p-plus__overflow {
  z-index: 100;
  top: 100%;
  right: -20px;
  width: calc(100vw - 40px);
  max-width: 1400px;
}
@media (min-width: 500px) {
  .hero-subnav.-has-overflow .p-plus__overflow {
    width: calc(100vw - 68px);
  }
}
@media (min-width: 800px) {
  .hero-subnav.-has-overflow .p-plus__overflow {
    right: -35px;
  }
}
@media (min-width: 1000px) {
  .hero-subnav.-has-overflow .p-plus__overflow {
    width: calc(100vw - 80px);
  }
}
.hero-subnav.-has-overflow[data-label=false]::before {
  content: "In This Section";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 4px 40px 0 24px;
  font-size: 0.7777777778rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.0555555556rem;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  pointer-events: none;
}

.hero-standard.-event .inner {
  padding-bottom: 40px;
}
@media (min-width: 800px) {
  .hero-standard.-event .inner {
    display: block;
  }
}
@media (min-width: 1000px) {
  .hero-standard.-event .inner {
    display: flex;
    justify-content: space-between;
    padding: clamp(40px, 4vw, 70px) 0;
  }
}
.hero-standard.-event .text {
  margin-bottom: 0;
  padding: 40px 0;
}
@media (min-width: 1000px) {
  .hero-standard.-event .text {
    padding: 40px 40px 40px 0;
  }
}
.hero-standard.-event .event-details {
  margin-bottom: 32px;
  background-color: #f7f7f7;
  box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.06);
  font-size: 0.8888888889rem;
  color: #000;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .hero-standard.-event .event-details {
    display: flex;
  }
}
@media (min-width: 1000px) {
  .hero-standard.-event .event-details {
    width: 50%;
  }
}
.hero-standard.-event .event-details[data-image=false] {
  max-width: 425px;
}
.hero-standard.-event .event-details[data-image=false] .event-info {
  width: 100%;
}
@media (min-width: 600px) and (max-width: 799px) {
  .hero-standard.-event .event-details[data-image=true] .event-info-lst li {
    display: block;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .hero-standard.-event .event-details[data-image=true] .event-info-lst li {
    display: block;
  }
}
.hero-standard.-event .event-info {
  padding: 20px;
}
@media (min-width: 600px) {
  .hero-standard.-event .event-info {
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 799px) {
  .hero-standard.-event .event-info {
    display: block;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .hero-standard.-event .event-info {
    display: block;
  }
}
@media (min-width: 500px) {
  .hero-standard.-event .event-info-list li {
    display: flex;
    justify-content: space-between;
  }
}
.hero-standard.-event .event-info-list li + li {
  margin-top: 15px;
}
.hero-standard.-event .event-label {
  font-weight: 700;
}
@media (min-width: 500px) {
  .hero-standard.-event .event-label {
    width: 50%;
    padding-right: 30px;
  }
}
@media (min-width: 600px) and (max-width: 799px) {
  .hero-standard.-event .event-label {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .hero-standard.-event .event-label {
    width: 100%;
  }
}
.hero-standard.-event .event-data {
  margin-top: 5px;
}
@media (min-width: 500px) {
  .hero-standard.-event .event-data {
    width: 50%;
    margin: 0;
  }
}
@media (min-width: 600px) and (max-width: 799px) {
  .hero-standard.-event .event-data {
    width: 100%;
    margin-top: 5px;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .hero-standard.-event .event-data {
    width: 100%;
    margin-top: 5px;
  }
}
.hero-standard.-event .event-button {
  margin-top: 20px;
  text-align: center;
}
.hero-standard.-event .event-button .button {
  width: 100%;
}
.hero-standard.-event .event-image {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
@media (min-width: 600px) {
  .hero-standard.-event .event-image {
    width: 50%;
  }
}
.hero-standard.-event .event-image-label {
  flex: none;
  padding: 16px 20px;
  font-size: 0.6666666667rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.0194444444rem;
  text-align: center;
}
.hero-standard.-event .event-image-img {
  display: flex;
  flex: 1 1 0%;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  padding: 20px;
}

.hero-home {
  position: relative;
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.hero-home .background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(247, 247, 245) 0%, rgb(234, 235, 232) 100%);
}
@media (min-width: 800px) {
  .hero-home .background {
    height: calc(100% - 46px);
  }
}
@media (min-width: 1100px) {
  .hero-home .background {
    height: calc(100% - 60px);
  }
}
.hero-home .background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, rgb(247, 247, 245) 0%, rgb(234, 235, 232) 100%);
}
@media (min-width: 800px) {
  .hero-home .background::after {
    display: none;
  }
}
.hero-home .inner {
  position: relative;
  grid-column: full;
}
@media (min-width: 800px) {
  .hero-home .inner {
    grid-column: main / full;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    min-height: clamp(390px, 48.75vw, 500px);
  }
}
.hero-home .details {
  padding: 20px 34px 30px;
}
@media (min-width: 500px) {
  .hero-home .details {
    padding-inline: 34px;
  }
}
@media (min-width: 800px) {
  .hero-home .details {
    align-self: center;
    width: 50%;
    max-width: 600px;
    margin-bottom: 92px;
    padding: clamp(40px, 5vw, 60px) 30px clamp(40px, 5vw, 60px) 0;
  }
}
@media (min-width: 1100px) {
  .hero-home .details {
    margin-bottom: 120px;
  }
}
.hero-home .eyebrow {
  margin-bottom: 10px;
}
.hero-home h1 {
  text-wrap: unset;
}
.hero-home h1,
.hero-home .h1,
.hero-home h2,
.hero-home .h2 {
  font-size: clamp(2rem, 6vw, 2.4444444444rem);
  line-height: 1.16;
}
@media (min-width: 768px) {
  .hero-home h1,
  .hero-home .h1,
  .hero-home h2,
  .hero-home .h2 {
    line-height: 1.17;
  }
}
.hero-home .description {
  margin-top: 15px;
}
.hero-home .text-link {
  margin-top: 25px;
}
.hero-home .image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 800px) {
  .hero-home .image {
    width: 50%;
    margin-bottom: -35px;
  }
}
.hero-home .image .image-inner {
  width: 100%;
}
.hero-home .image .logo-mark-wrapper {
  position: absolute;
  bottom: 20px;
  left: 12%;
  width: clamp(90px, 25vw, 180px);
  pointer-events: none;
}
@media (min-width: 800px) {
  .hero-home .image .logo-mark-wrapper {
    width: clamp(110px, 13.75vw, 180px);
  }
}
@media (min-width: 1100px) {
  .hero-home .image .logo-mark-wrapper {
    top: clamp(100px, 9.09vw, 180px);
    bottom: auto;
    left: 0;
  }
}
@media (min-width: 1400px) {
  .hero-home .image .logo-mark-wrapper {
    left: -50px;
  }
}
@media (min-width: 1800px) {
  .hero-home .image .logo-mark-wrapper {
    top: 120px;
    left: auto;
    right: calc(100% - clamp(180px, 10vw, 200px));
  }
}
.hero-home .image .hero-home-image {
  clip-path: url("#hero-home-clip");
}

.hero-landing {
  position: relative;
  grid-column: full;
  margin-bottom: 40px;
}
.hero-landing .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  background: linear-gradient(90deg, rgb(247, 247, 245) 0%, rgb(234, 235, 232) 100%);
}
@media (min-width: 800px) {
  .hero-landing .background {
    height: calc(100% - 46px);
  }
}
@media (min-width: 1100px) {
  .hero-landing .background {
    height: calc(100% - 60px);
  }
}
.hero-landing .background::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, rgb(247, 247, 245) 0%, rgb(234, 235, 232) 100%);
  pointer-events: none;
}
@media (min-width: 800px) {
  .hero-landing .background::before {
    display: none;
  }
}
.hero-landing .inner {
  position: relative;
  grid-column: full;
}
@media (min-width: 800px) {
  .hero-landing .inner {
    grid-column: main / full;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    min-height: clamp(280px, 35vw, 400px);
  }
}
.hero-landing .details {
  padding: 20px 34px 30px;
}
@media (min-width: 500px) {
  .hero-landing .details {
    padding-inline: 34px;
  }
}
@media (min-width: 800px) {
  .hero-landing .details {
    align-self: center;
    width: 50%;
    max-width: 700px;
    margin-bottom: 46px;
    padding: clamp(40px, 5vw, 70px) 30px clamp(40px, 5vw, 70px) 0;
  }
}
@media (min-width: 1100px) {
  .hero-landing .details {
    width: 64%;
    margin-bottom: 60px;
  }
}
.hero-landing h1,
.hero-landing .h1,
.hero-landing h2,
.hero-landing .h2 {
  font-size: clamp(2rem, 6vw, 2.4444444444rem);
  line-height: 1.16;
}
@media (min-width: 768px) {
  .hero-landing h1,
  .hero-landing .h1,
  .hero-landing h2,
  .hero-landing .h2 {
    line-height: 1.17;
  }
}
.hero-landing .wysiwyg-content {
  margin-top: 15px;
}
.hero-landing .text-link {
  margin-top: 25px;
}
.hero-landing .image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 800px) {
  .hero-landing .image {
    width: 50%;
  }
}
@media (min-width: 1100px) {
  .hero-landing .image {
    width: 36%;
  }
}
.hero-landing .image .image-inner {
  width: 100%;
}
.hero-landing .image .logo-mark-wrapper {
  position: absolute;
  bottom: 20px;
  left: 12%;
  width: clamp(90px, 25vw, 154px);
  pointer-events: none;
}
@media (min-width: 800px) {
  .hero-landing .image .logo-mark-wrapper {
    bottom: auto;
    top: 50%;
    left: 0;
    margin-top: -20%;
    width: clamp(110px, 13.75vw, 154px);
  }
}
@media (min-width: 1100px) {
  .hero-landing .image .logo-mark-wrapper {
    left: -50px;
  }
}
.hero-landing .image .hero-landing-image {
  clip-path: url("#hero-landing-clip");
}
.hero-landing .image img {
  width: 100%;
}
@media (min-width: 800px) {
  .hero-landing[data-search=true] .background {
    height: calc(100% - 46px);
  }
}
@media (min-width: 1100px) {
  .hero-landing[data-search=true] .background {
    height: calc(100% - 60px);
  }
}
@media (min-width: 800px) {
  .hero-landing[data-search=true] .image {
    margin-bottom: -40px;
  }
}
@media (min-width: 800px) {
  .hero-landing[data-search=true] .watermark {
    bottom: auto;
    top: 25%;
    transform: translateY(0);
  }
}
@media (min-width: 800px) {
  .hero-landing[data-search=true] .details {
    margin-bottom: 92px;
  }
}
@media (min-width: 1100px) {
  .hero-landing[data-search=true] .details {
    width: 64%;
    margin-bottom: 120px;
  }
}
.hero-landing[data-subnav=true] .background {
  height: calc(100% - 32px);
}
@media (min-width: 800px) {
  .hero-landing[data-subnav=true] .image {
    margin-bottom: -40px;
  }
}
@media (min-width: 800px) {
  .hero-landing[data-subnav=true] .watermark {
    bottom: auto;
    top: 25%;
    transform: translateY(0);
  }
}
@media (min-width: 800px) {
  .hero-landing[data-subnav=true] .details {
    margin-bottom: 64px;
  }
}

[data-meeting-site=true] .image .logo-mark-wrapper {
  display: none;
}
[data-meeting-site=true] .hero-landing .h1,
[data-meeting-site=true] .hero-home .h1 {
  text-transform: uppercase;
  font-weight: 900;
}
[data-meeting-site=true] .hero-landing .h1 span.text-primary,
[data-meeting-site=true] .hero-home .h1 span.text-primary {
  color: #b01f24;
}
[data-meeting-site=true] .hero-landing .h1 span.text-secondary,
[data-meeting-site=true] .hero-home .h1 span.text-secondary {
  color: #faa143;
}
[data-meeting-site=true] .meeting-header {
  display: flex;
  flex-direction: column;
}
[data-meeting-site=true] .meeting-header h1 {
  display: flex;
  gap: 1rem;
  color: #f9a241;
  font-weight: 900;
}
[data-meeting-site=true] .meeting-header h1 span {
  font-weight: 300;
  color: #474747;
}
[data-meeting-site=true] .meeting-header h2 {
  text-transform: uppercase;
  font-size: clamp(1.3888888889rem, 4.1666666667vw, 1.9444444444rem);
  font-weight: 800;
}
[data-meeting-site=true] .meeting-header > h1,
[data-meeting-site=true] .meeting-header > h2 {
  margin: 0;
}

.hero-meeting {
  position: relative;
  grid-column: full;
  margin-bottom: 40px;
}
.hero-meeting .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  background-color: #059978;
}
@media (min-width: 800px) {
  .hero-meeting .background {
    height: calc(100% - 46px);
  }
}
@media (min-width: 1100px) {
  .hero-meeting .background {
    height: calc(100% - 60px);
  }
}
.hero-meeting .background-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-size: cover;
  opacity: 0.45;
  pointer-events: none;
}
@media (min-width: 700px) {
  .hero-meeting .background-pattern {
    left: 20%;
  }
}
@media (min-width: 900px) {
  .hero-meeting .background-pattern {
    left: 25%;
    height: 80%;
  }
}
@media (min-width: 1000px) {
  .hero-meeting .background-pattern {
    height: 90%;
  }
}
@media (min-width: 1500px) {
  .hero-meeting .background-pattern {
    left: auto;
    right: 0;
    width: 70%;
    height: 100%;
  }
}
.hero-meeting .background-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-meeting .inner {
  position: relative;
  grid-column: full;
  padding: 50px 0;
}
@media (min-width: 900px) {
  .hero-meeting .inner {
    padding: 0;
  }
}
.hero-meeting-content {
  grid-column: full;
  max-width: 1216px;
  overflow: hidden;
  padding: 0 34px;
}
@media (min-width: 700px) {
  .hero-meeting-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .hero-meeting-content {
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 50px;
    gap: 0;
  }
}
@media (min-width: 1000px) {
  .hero-meeting-content {
    justify-content: flex-start;
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .hero-meeting-content {
    grid-column: main;
    padding-right: 66px;
  }
}
.hero-meeting-title {
  position: relative;
  z-index: 2;
  max-width: 360px;
}
@media (min-width: 700px) {
  .hero-meeting-title {
    max-width: 280px;
  }
}
@media (min-width: 900px) {
  .hero-meeting-title {
    max-width: 340px;
    padding: 50px 0;
  }
}
.hero-meeting-title .h1 {
  font-size: clamp(3.4444444444rem, 10.3333333333vw, 3.6666666667rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 700px) {
  .hero-meeting-title .h1 {
    font-size: clamp(2.6666666667rem, 6.85vw, 3.6666666667rem);
  }
}
.hero-meeting-title span {
  display: block;
}
.hero-meeting-title .title-text-1 {
  color: #fff;
}
.hero-meeting-title .title-text-2 {
  color: #fff6af;
}
.hero-meeting-image {
  position: relative;
  z-index: 1;
  display: none;
}
@media (min-width: 900px) {
  .hero-meeting-image {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(300px, 33.33vw, 340px);
  }
}
@media (min-width: 1000px) {
  .hero-meeting-image {
    position: relative;
    left: auto;
    transform: none;
    margin-left: auto;
  }
}
.hero-meeting-event-block {
  position: relative;
  margin-top: 32px;
}
@media (min-width: 700px) {
  .hero-meeting-event-block {
    flex: 1 1 0%;
    max-width: 384px;
    margin: 0;
  }
}
@media (min-width: 900px) {
  .hero-meeting-event-block {
    max-width: 284px;
    align-content: flex-end;
    margin-block: 32px 64px;
  }
}
@media (min-width: 1000px) {
  .hero-meeting-event-block {
    flex: none;
    width: 284px;
  }
}
.hero-meeting-event-block-meta {
  position: relative;
}
.hero-meeting-event-block-meta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
}
@media (min-width: 500px) {
  .hero-meeting-event-block-meta::before {
    display: none;
  }
}
@media (min-width: 900px) {
  .hero-meeting-event-block-meta::before {
    display: block;
    width: 100px;
  }
}
.hero-meeting-event-block-meta-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 40px 34px 0;
  background-color: #fff;
  clip-path: polygon(0 0, calc(100% - 25px) 0%, 100% 30px, 100% 100%, 0 100%, 0 100%);
}
@media (min-width: 500px) {
  .hero-meeting-event-block-meta-inner {
    padding-left: 26px;
  }
}
@media (min-width: 900px) {
  .hero-meeting-event-block-meta-inner {
    padding-right: 30px;
  }
}
@media (min-width: 1500px) {
  .hero-meeting-event-block-meta-inner {
    padding-inline: 16px;
  }
}
.hero-meeting-event-logo {
  width: 98px;
}
.hero-meeting-event-year-text {
  font-size: 2.2222222222rem;
  font-weight: 300;
}
.hero-meeting-event-info {
  font-size: 0.8888888889rem;
  text-transform: uppercase;
  line-height: 1.18;
  letter-spacing: 0.0333333333rem;
  color: #2c2e35;
}
@media (min-width: 1500px) {
  .hero-meeting-event-info {
    font-size: 1rem;
  }
}
.hero-meeting-event-block-cta {
  position: relative;
  margin-top: -10px;
}
@media (min-width: 500px) {
  .hero-meeting-event-block-cta {
    left: 26px;
  }
}
@media (min-width: 1500px) {
  .hero-meeting-event-block-cta {
    left: 16px;
  }
}
.hero-meeting-event-block-cta a.hero-meeting-event-cta {
  display: block;
  width: calc(100% + 35px);
  padding: 10px 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.0444444444rem;
  text-decoration: none;
  color: #fff;
  background-color: #2c2e35;
}
@media (min-width: 500px) {
  .hero-meeting-event-block-cta a.hero-meeting-event-cta {
    width: calc(100% - 26px);
  }
}
@media (min-width: 900px) {
  .hero-meeting-event-block-cta a.hero-meeting-event-cta {
    width: 100%;
  }
}
@media (min-width: 1500px) {
  .hero-meeting-event-block-cta a.hero-meeting-event-cta {
    width: calc(100% + 16px);
  }
}
.hero-meeting-event-block-cta a.hero-meeting-event-cta:hover, .hero-meeting-event-block-cta a.hero-meeting-event-cta:focus-visible {
  color: #fff;
  background-color: #b01f24;
}
.hero-meeting[data-subnav=true] .background {
  height: calc(100% - 32px);
}
@media (min-width: 900px) {
  .hero-meeting[data-subnav=true] .hero-subnav {
    margin-top: 0;
  }
}

.hero-standard {
  position: relative;
  grid-column: full;
}
.hero-standard .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg-hero-standard.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-standard .inner {
  position: relative;
  grid-column: main;
}
@media (min-width: 800px) {
  .hero-standard .inner {
    display: flex;
    align-items: center;
    min-height: clamp(280px, 35vw, 300px);
  }
}
.hero-standard .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
  pointer-events: none;
}
.hero-standard .text {
  margin-bottom: 32px;
  padding: 40px 0;
}
@media (min-width: 800px) {
  .hero-standard .text {
    align-self: center;
    margin-bottom: 0;
    padding: clamp(40px, 5vw, 70px) 0 clamp(40px, 5vw, 70px);
  }
}
.hero-standard .eyebrow {
  margin-bottom: 15px;
}
@media (min-width: 800px) {
  .hero-standard .eyebrow {
    margin-bottom: 10px;
  }
}
.hero-standard h1,
.hero-standard .h1,
.hero-standard h2,
.hero-standard .h2 {
  font-size: clamp(2rem, 6vw, 2.4444444444rem);
  line-height: 1.16;
}
@media (min-width: 768px) {
  .hero-standard h1,
  .hero-standard .h1,
  .hero-standard h2,
  .hero-standard .h2 {
    line-height: 1.17;
  }
}
.hero-standard h1:has(+ h2) {
  margin-bottom: 0;
}
.hero-standard .h3 {
  margin-top: 10px;
  font-size: clamp(1.2222222222rem, 3.6666666667vw, 1.3333333333rem);
  font-weight: 400;
}
.hero-standard .wysiwyg-content,
.hero-standard .meta {
  max-width: 640px;
  margin-top: 15px;
}
@media (min-width: 600px) {
  .hero-standard .meta {
    display: flex;
    align-items: center;
  }
}
.hero-standard .meta p,
.hero-standard .meta .date {
  font-size: 0.8888888889rem;
}
.hero-standard .meta .date {
  display: block;
}
.hero-standard .meta .author {
  margin-top: 5px;
}
@media (min-width: 600px) {
  .hero-standard .meta .author {
    margin: 0 0 0 18px;
  }
}
.hero-standard.-article {
  margin-bottom: 0;
}
.hero-standard[data-search=true] {
  margin-bottom: clamp(40px, 6.6666666667vw, 80px);
}
.hero-standard[data-search=true] .background {
  height: calc(100% - 40px);
}
@media (min-width: 800px) {
  .hero-standard[data-search=true] .background {
    height: calc(100% - 46px);
  }
}
@media (min-width: 1100px) {
  .hero-standard[data-search=true] .background {
    height: calc(100% - 60px);
  }
}
.hero-standard[data-search=true] .inner::after {
  display: none;
}
.hero-standard[data-search=true] .text {
  margin-bottom: 40px;
  padding: 40px 0 0;
}
@media (min-width: 800px) {
  .hero-standard[data-search=true] .text {
    padding: clamp(40px, 5vw, 70px) 0 0;
  }
}
.hero-standard[data-subnav=true] {
  margin-bottom: clamp(40px, 6.6666666667vw, 80px);
}
.hero-standard[data-subnav=true] .background {
  height: calc(100% - 27px);
}
@media (min-width: 800px) {
  .hero-standard[data-subnav=true] .background {
    height: calc(100% - 32px);
  }
}
.hero-standard[data-subnav=true] .inner::after {
  display: none;
}
.hero-standard[data-subnav=true] .text {
  margin-bottom: 40px;
  padding: 40px 0 0;
}
@media (min-width: 800px) {
  .hero-standard[data-subnav=true] .text {
    padding: clamp(40px, 5vw, 70px) 40px 0;
  }
}

.image-text-grid {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  position: relative;
}
.image-text-grid .logo-mark-wrapper {
  display: none;
}
@media (min-width: 1000px) {
  .image-text-grid .logo-mark-wrapper {
    display: block;
    position: absolute;
    width: auto;
    left: unset;
    top: 0;
    right: clamp(20px, 30vw, 460px);
    z-index: 3;
  }
}
@media (min-width: 1400px) {
  .image-text-grid .logo-mark-wrapper {
    top: 95px;
  }
}
.image-text-grid[data-image-present=false] .logo-mark-wrapper {
  width: 112px;
}
@media (min-width: 1000px) {
  .image-text-grid[data-image-present=false] .logo-mark-wrapper {
    display: block;
    right: 50px;
  }
}
@media (min-width: 1400px) {
  .image-text-grid[data-image-present=false] .logo-mark-wrapper {
    top: 25px;
    right: 200px;
  }
}
.image-text-grid-header {
  grid-column: main;
  justify-self: center;
  margin-bottom: 88px;
}
.image-text-grid-header-content {
  position: relative;
  padding: 0 34px;
  text-align: center;
  z-index: 1;
}
.image-text-grid-header-content .headline-container {
  display: flex;
  flex-direction: column;
}
.image-text-grid-header-content .headline-container svg {
  align-self: center;
}
.image-text-grid-header-content > *:not(.links-wrapper) {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
@media (min-width: 1000px) {
  .image-text-grid-header-content {
    max-width: 500px;
    margin-top: unset;
    align-self: unset;
  }
}
@media (min-width: 1000px) {
  .image-text-grid-header-content {
    padding: 0;
  }
}
.image-text-grid-header-content .links-wrapper {
  align-items: center;
}
@media (min-width: 768px) {
  .image-text-grid-header-content .links-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}
.image-text-grid-header svg.image {
  position: absolute;
  max-width: 830px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  mask-image: linear-gradient(to top, transparent 35%, #000 100%);
  z-index: -1;
}
.image-text-grid-header svg.image picture,
.image-text-grid-header svg.image foreignObject {
  width: 100%;
  height: 100%;
}
.image-text-grid-header svg.image picture img,
.image-text-grid-header svg.image foreignObject img {
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
@media (min-width: 768px) {
  .image-text-grid-header svg.image {
    position: absolute;
    top: 0;
    right: -210px;
    width: calc(100% + 210px);
    width: 100%;
  }
}
.image-text-grid-header .cards {
  padding: clamp(40px, 8vw, 80px) 34px;
}
.image-text-grid .inner {
  grid-column: main;
}
.image-text-grid[data-image-present=true] .img-wrapper {
  display: none;
}
.image-text-grid[data-image-present=true] .img-wrapper img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: grayscale(100%);
}
.image-text-grid[data-image-present=true] .img-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: soft-light;
  background-color: #50ebc6;
  opacity: 0.5;
  z-index: 2;
}
@media (min-width: 1000px) {
  .image-text-grid[data-image-present=true] .img-wrapper {
    position: absolute;
    display: block;
    right: 0;
    width: 40%;
    max-width: 830px;
    aspect-ratio: 1;
    mask: linear-gradient(to bottom, black, transparent 75%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 0;
  }
}
@media (min-width: 1200px) {
  .image-text-grid[data-image-present=true] .img-wrapper {
    width: 100%;
    right: -210px;
  }
}
.image-text-grid[data-image-present=true][data-background-color=true] .img-wrapper {
  top: clamp(48px, 8vw, 120px);
}
.image-text-grid[data-image-present=true] .image-text-grid-header {
  grid-column: full;
}
.image-text-grid[data-image-present=true] .image-text-grid-header-content .headline-container svg {
  align-self: center;
}
@media (min-width: 768px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header-content .headline-container svg {
    align-self: flex-start;
  }
}
@media (min-width: 768px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header-content {
    margin-top: 88px;
    text-align: left;
    align-self: flex-start;
  }
  .image-text-grid[data-image-present=true] .image-text-grid-header-content .links-wrapper {
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header {
    justify-self: start;
  }
}
@media (min-width: 1000px) {
  .image-text-grid[data-image-present=true] .image-text-grid-header {
    grid-column: main / full;
  }
}

.intro-w-search {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.intro-w-search .inner,
.intro-w-search .intro-w-search-form {
  grid-column: main;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .intro-w-search .inner,
  .intro-w-search .intro-w-search-form {
    max-width: 700px;
    margin-inline: auto;
  }
}
.intro-w-search .intro-w-search-form {
  width: 100%;
  gap: 20px;
  margin-top: 40px;
  padding: 18px;
  background-color: #b01f24;
  border-radius: 6px;
  color: #fff;
}
@media (min-width: 500px) {
  .intro-w-search .intro-w-search-form {
    flex-direction: row;
    height: 92px;
  }
}
@media (min-width: 1100px) {
  .intro-w-search .intro-w-search-form {
    height: 120px;
    padding: 30px 40px;
  }
}
.intro-w-search .intro-w-search-form label {
  width: 100%;
  position: relative;
  flex: 1;
}
.intro-w-search .intro-w-search-form input {
  box-shadow: 0 0 0;
}
@media (min-width: 1000px) {
  .intro-w-search .intro-w-search-form {
    max-width: 1000px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .intro-w-search .intro-w-search-form {
    max-width: 1200px;
    margin-inline: auto;
  }
}
.intro-w-search .intro-w-search-or {
  display: flex;
  gap: 10px;
  flex-direction: row;
  color: #fff;
  align-self: flex-start;
}
.intro-w-search .intro-w-search-or span {
  text-transform: uppercase;
  font-weight: 800;
}
@media (min-width: 500px) {
  .intro-w-search .intro-w-search-or {
    gap: 20px;
    align-self: center;
  }
}
.intro-w-search .intro-w-search-or a {
  color: #fff;
  text-underline-offset: 5px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.intro-w-search .intro-w-search-or a:focus, .intro-w-search .intro-w-search-or a:hover {
  color: #fff;
  outline-color: #fff;
}
.intro-w-search[data-hide-link=true] .intro-w-search-or {
  display: none;
}

.link-list {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.link-list .inner {
  grid-column: main;
}
.link-list[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #f7f7f7;
}
.link-list .eyebrow {
  color: #474747;
  font-size: 1.1111111111rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.link-list-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 88px);
}
@media (min-width: 1100px) {
  .link-list-columns {
    grid-template-columns: minmax(300px, 60%) 1fr;
  }
}
.link-list-columns .list li {
  width: 100%;
  margin-bottom: clamp(24px, 4vw, 34px);
  break-inside: avoid;
}
.link-list-columns .list li .date {
  font-size: 0.6666666667rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .link-list-columns .list {
    column-count: 2;
    column-gap: 33px;
  }
  .link-list-columns .list li .date {
    font-size: 0.6666666667rem;
    line-height: 1.5;
    margin-top: 8px;
  }
  .link-list-columns .list li:first-child {
    column-count: 1;
    column-span: all;
  }
}
.link-list-columns .topics {
  padding: clamp(30px, 5vw, 40px);
  background-color: #f7f7f7;
  border-top: 6px solid #f38740;
  border-bottom-right-radius: 104px;
  align-self: start;
}
.link-list-columns .topics li {
  margin-bottom: 16px;
}
.link-list-columns .topics li a {
  color: #b01f24;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}
.link-list-columns .topics li a:hover {
  color: #58595b;
}
.link-list[data-background-color=true] .topics {
  background-color: #fff;
}

.logo-grid-wrapper {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}

.logo-grid {
  grid-column: main;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  position: relative;
}
@media (min-width: 1100px) {
  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.logo-grid::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  box-shadow: 2px 0 0 0 #fff, 0 2px 0 0 #fff;
  z-index: 2;
}
.logo-grid:has(:only-child) .logo-card {
  box-shadow: none;
}
.logo-grid .logo-card:nth-child(n+1) {
  box-shadow: 1px 0 0 0 #dedede, 0 1px 0 0 #dedede;
}
.logo-grid.-no-lines .logo-card {
  box-shadow: none;
}

.media-list {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.media-list-inner {
  grid-column: main;
}
.media-list-inner .sorting-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .media-list-inner .sorting-buttons {
    flex-direction: row;
  }
}

.media-list-items {
  display: grid;
  flex-direction: column;
}

.media-list-item {
  padding-bottom: clamp(32px, 5.3333333333vw, 64px);
  margin-top: clamp(32px, 5.3333333333vw, 64px);
  block-size: auto;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 500ms;
  border-bottom: solid 1px #bdbdbe;
}
.media-list-item > .media-list-content {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.media-list-item > .media-list-content .media {
  flex: 1 1 100%;
}
.media-list-item > .media-list-content .media img {
  width: 100%;
}
@media (min-width: 768px) {
  .media-list-item > .media-list-content {
    flex-direction: row;
    gap: 40px;
  }
  .media-list-item > .media-list-content .media {
    flex: 0 1 auto;
  }
  .media-list-item > .media-list-content .media img {
    width: auto;
    max-width: unset;
  }
}
.media-list-item > .media-list-content h4,
.media-list-item > .media-list-content .h4 {
  color: #b01f24;
}
.media-list-item > .media-list-content p:has(+ .date-time-wrapper) {
  margin-bottom: 0.25rem;
}
.media-list-item > .media-list-content .date-time-wrapper {
  display: flex;
  font-size: 0.8888888889rem;
}
.media-list-item > .media-list-content .date-time-wrapper .date + .subtext {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #000;
}
.media-list-item > .media-list-content .listen-on {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.media-list-item > .media-list-content .listen-on a {
  cursor: pointer;
}
@media (min-width: 768px) {
  .media-list-item > .media-list-content .listen-on {
    margin-top: 8px;
    flex-direction: row;
  }
}
.media-list-item[data-hidden=true] {
  opacity: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  min-height: unset;
  block-size: 0;
  margin: 0;
}
.media-list-item[data-hidden=false] {
  grid-template-rows: 1fr;
}

.show-more {
  margin: 0 auto;
  appearance: none;
  cursor: pointer;
  margin-top: clamp(32px, 5.3333333333vw, 64px);
}
.show-more[data-hidden=true] {
  display: none;
}

.membership {
  grid-column: main;
  margin-bottom: clamp(48px, 8vw, 120px);
}
@media (min-width: 1200px) {
  .membership .inner {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .membership .intro {
    width: 312px;
    flex: none;
    margin-right: clamp(40px, 3.33vw, 110px);
  }
}
@media (min-width: 1200px) {
  .membership .membership-cards {
    flex: 1 1 0%;
  }
}
@media (max-width: 799px) {
  .membership .membership-cards .card:first-child {
    margin-top: 40px;
  }
}
@media (max-width: 799px) {
  .membership .membership-cards .card + .card {
    margin-top: 20px;
  }
}
.membership .membership-cards .card .card-info {
  padding: clamp(20px, 3.3333333333vw, 38px);
}
@media (min-width: 1200px) {
  .membership .membership-cards .card .card-info {
    padding: clamp(20px, 1.66vw, 38px);
  }
}
.membership .membership-cards .card .h4 {
  margin: 0;
}
.membership .membership-cards .card .price {
  margin-top: 5px;
  font-size: 0.7777777778rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.0233333333rem;
}
.membership .membership-cards .card p {
  margin: 16px 0 0;
  font-size: 0.8888888889rem;
  line-height: 1.5;
}
.membership .membership-cards .card .cta-button {
  margin: 24px 0 0;
}
.membership .membership-cards .card .card-list {
  margin: 0 clamp(20px, 3.3333333333vw, 38px) clamp(20px, 3.3333333333vw, 38px);
  padding-top: clamp(20px, 3.3333333333vw, 38px);
  border-top: 1px solid #bdbdbe;
}
@media (min-width: 1200px) {
  .membership .membership-cards .card .card-list {
    margin: 0 clamp(20px, 1.66vw, 38px) clamp(20px, 1.66vw, 38px);
    padding-top: clamp(20px, 1.66vw, 38px);
  }
}
.membership .membership-cards .card .checklist li {
  font-size: 0.6666666667rem;
  line-height: 1.5;
}
.membership .membership-cards .card .checklist li::before {
  top: 4px;
  font-size: 0.6111111111rem;
}
.membership .membership-cards .card .checklist li + li {
  margin-top: 10px;
}
@media (min-width: 800px) {
  .membership .cards-primary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 48px);
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .membership .cards-primary {
    margin-top: 0;
  }
}
.membership .cards-primary .card {
  background-color: #ecf9f5;
  background-image: url("../images/bg-membership-card.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 800px) {
  .membership .cards-primary .card {
    background-image: none;
  }
}
@media (min-width: 800px) {
  .membership .cards-primary .card .card-list {
    margin: 0;
    padding: clamp(20px, 3.3333333333vw, 38px);
    background-color: #fff;
    border: 1px solid #dedede;
    border-top: 0;
  }
}
@media (min-width: 1200px) {
  .membership .cards-primary .card .card-list {
    padding: clamp(20px, 1.66vw, 38px);
  }
}
@media (min-width: 800px) {
  .membership .cards-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 48px);
    margin-top: 40px;
  }
}
.membership .cards-secondary .card {
  background-color: #f7f7f7;
}

html[data-dialog=open] .page-container {
  filter: blur(25px);
}

.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  cursor: pointer;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  transition: opacity 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  transform: translate(0, 100px);
}
.modal-video-body {
  display: flex;
  justify-content: center;
  max-width: 1065px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modal-video-movie-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000;
  border-radius: 10px;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.modal-video-close-btn {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -40px;
  right: -40px;
  color: #fff;
}
.modal-video-close-btn::before {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.modal-video-close-btn::before {
  content: "\e907";
}
@media (orientation: landscape) {
  .modal-video .modal-video-inner {
    padding: 10px 65px;
  }
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.pagination-pages {
  display: flex;
}
.pagination-pages > * {
  display: block;
  flex: none;
  width: 2.4444444444rem;
  height: 2.4444444444rem;
  color: blue;
  font-size: 1rem;
  line-height: 2.4444444444rem;
  text-align: center;
  border-radius: 50%;
}
.pagination-pages > * + * {
  margin-left: 5px;
}
.pagination-pages > a:hover {
  background: blue;
  color: #fff;
}
.pagination-pages > a[data-current=true] {
  pointer-events: none;
  background: #e0e0e0;
}
.pagination-nav {
  display: flex;
  justify-content: space-between;
  width: 5.5555555556rem;
}
.pagination-prev, .pagination-next {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.4444444444rem;
  height: 2.4444444444rem;
  background: #e0e0e0;
  color: blue;
  font-size: 1.6666666667rem;
  border-radius: 50%;
  transition: 0.32s ease-out;
}
.pagination-prev::before, .pagination-next::before {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex: none;
}
.pagination-prev:hover, .pagination-next:hover {
  background: blue;
  color: #fff;
}
.pagination-prev::before {
  content: "";
}
.pagination-next::before {
  content: "";
}

.promo-top {
  width: 100%;
  background-color: #58595b;
  padding-block: 38px;
}
@media (min-width: 2057px) {
  .promo-top {
    max-width: 2056px;
    margin-inline: auto;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  }
}
.promo-top .inner {
  grid-column: main;
  display: grid;
  place-items: center;
}
.promo-top .inner a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-top .inner picture,
.promo-top .inner img {
  width: 100%;
  max-width: 800px;
}

.section-logos-wrapper {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}

.section-logos-inner {
  grid-column: main;
  display: grid;
  gap: 2rem;
}

.section-logos-title-bar {
  background-color: #f7f7f7;
  text-align: center;
  padding: 1rem 2rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.section-logos > * {
  flex: 1 1 250px;
  max-width: 250px;
}
@media (min-width: 1100px) {
  .section-logos {
    justify-content: center;
  }
  .section-logos > * {
    flex: 0 1 calc(20% - 1rem);
    max-width: none;
  }
}
.section-logos[data-no-logo=true] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 1100px) {
  .section-logos[data-no-logo=true] {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-logos[data-no-logo=true] .logo-card {
  display: block;
  height: auto;
  padding: unset;
}
.section-logos[data-no-logo=true] .logo-card img {
  display: none;
}
.section-logos[data-no-logo=true] .logo-card::after {
  content: attr(data-name);
  display: block;
}

.site-footer {
  background: #fff;
}
.site-footer-top {
  position: relative;
  max-width: 1560px;
  margin-inline: auto;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .site-footer-top {
    padding-top: 70px;
  }
}
@media (min-width: 1200px) {
  .site-footer-top {
    display: flex;
    justify-content: space-between;
    padding-top: 44px;
  }
}
.site-footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: #dedede;
}
@media (min-width: 500px) {
  .site-footer-top::before {
    position: absolute;
    top: 0;
    right: 30px;
    left: 30px;
  }
}
@media (min-width: 1600px) {
  .site-footer-top::before {
    right: 0;
    left: 0;
  }
}
.site-footer-branding {
  margin-bottom: 78px;
}
@media (min-width: 1200px) {
  .site-footer-branding {
    width: 33%;
  }
}
.site-footer-branding .inner {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 500px) {
  .site-footer-branding .inner {
    padding: 0 30px;
  }
}
@media (min-width: 768px) {
  .site-footer-branding .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .site-footer-branding .inner {
    display: block;
  }
}
.site-footer .logo {
  display: inline-block;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .site-footer .logo {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .site-footer .logo {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .site-footer-social {
    margin-bottom: 40px;
  }
}
.site-footer-social ul {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .site-footer-social ul {
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .site-footer-social ul {
    justify-content: flex-start;
  }
}
.site-footer-social li {
  flex: none;
  margin-left: 1px;
}
.site-footer-social li:first-child {
  margin: 0;
}
.site-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.1111111111rem;
  color: #fff;
  background: #7a7a7d;
}
.site-footer-social a:hover {
  background: #a0191d;
}
.site-footer-middle {
  padding: 0 20px;
}
@media (min-width: 500px) {
  .site-footer-middle {
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .site-footer-middle {
    width: 66%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .site-footer-middle .inner {
    display: flex;
  }
}
.site-footer-middle .column p,
.site-footer-middle .column a {
  font-size: 0.8888888889rem;
  line-height: 1.62;
}
@media (min-width: 768px) {
  .site-footer-middle .column {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .site-footer-middle .column {
    padding: 0 60px;
    border-left: 1px solid #dedede;
  }
}
.site-footer-middle .column + .column {
  margin: 40px 0 0;
}
@media (min-width: 768px) {
  .site-footer-middle .column + .column {
    border-left: 1px solid #dedede;
    padding: 0 20px 0 60px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .site-footer-middle .column + .column {
    border-left: 1px solid #dedede;
    padding: 0 30px 0 60px;
    margin: 0;
  }
}
.site-footer-middle .column-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer-link-list ul li {
  margin-bottom: 5px;
}
.site-footer-link-list ul li a {
  display: inline;
  color: #474747;
  box-shadow: 0 1px 0 0 transparent;
  transition: 0.32s ease-out;
}
.site-footer-link-list ul li a:hover {
  box-shadow: 0 1px 0 0 #a0191d;
}
.site-footer-bottom {
  background: #a0191d;
  color: #fff;
}
.site-footer-bottom .inner {
  padding: 20px;
}
@media (min-width: 500px) {
  .site-footer-bottom .inner {
    padding: 30px;
  }
}
@media (min-width: 1000px) {
  .site-footer-bottom .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 500px) {
  .site-footer-nav {
    flex: none;
    margin-bottom: 0;
  }
}
.site-footer-nav ul {
  margin-top: 10px;
}
@media (min-width: 500px) {
  .site-footer-nav ul {
    display: flex;
  }
}
@media (min-width: 1000px) {
  .site-footer-nav ul {
    margin: 0;
  }
}
.site-footer-nav li {
  position: relative;
  flex: none;
  padding: 10px 0;
}
@media (min-width: 500px) {
  .site-footer-nav li {
    padding: 0;
  }
}
.site-footer-nav li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
@media (min-width: 500px) {
  .site-footer-nav li + li {
    border: 0;
    padding-left: 11px;
    margin-left: 10px;
  }
  .site-footer-nav li + li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 1px;
    height: 14px;
    background: #fff;
  }
}
.site-footer-nav a {
  color: #fff;
  font-size: 0.7777777778rem;
  transition: 0.32s ease-out;
}
.site-footer-nav a:hover {
  color: white;
  text-decoration: underline;
}
.site-footer-nav a[aria-current=page] {
  text-decoration: underline;
}
@media (min-width: 1000px) {
  .site-footer-copyright {
    flex: 1 1 0%;
    padding-right: 20px;
  }
}
.site-footer-copyright p {
  font-size: 0.7777777778rem;
}

.site-header-search {
  position: fixed;
  top: -200px;
  left: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 170px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  background: #e0e0e0;
  transition: 0.3s ease-out;
}
@media (min-width: 500px) {
  .site-header-search {
    top: -175px;
    height: 145px;
  }
}
html[data-search=open] .site-header-search {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.site-header-search-inner {
  width: 100%;
  margin: 0 20px;
}
@media (min-width: 500px) {
  .site-header-search-inner {
    position: relative;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .site-header-search-inner {
    margin: 0 30px;
  }
}
.site-header-search form {
  position: relative;
  margin: 45px auto 0;
}
@media (min-width: 500px) {
  .site-header-search form {
    margin: 0 auto;
  }
}
@media (min-width: 800px) {
  .site-header-search form {
    width: 70%;
  }
}
@media (min-width: 1100px) {
  .site-header-search form {
    width: 865px;
  }
}
.site-header-search form input[type=search] {
  width: 100%;
  height: 60px;
  margin: 0;
}
.site-header-search form button {
  display: block;
  position: absolute;
  top: 18px;
  right: 15px;
  color: red;
  font-size: 1.3333333333rem;
}
.site-header-search form button::before {
  content: "\e912";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
}
.site-header-search form button:hover {
  color: blue;
}
.site-header-search-close {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: blue;
  font-size: 1.3333333333rem;
  border-radius: 50%;
}
@media (min-width: 500px) {
  .site-header-search-close {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.site-header-search-close::before {
  content: "\e907";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex: none;
}
.site-header-search-close:hover {
  cursor: pointer;
  background-color: blue;
  color: #fff;
}

:root {
  --width: 100%;
  --height: 68px;
  --promo-height: 0px;
}
@media (min-width: 768px) {
  :root {
    --width: 500px;
    --height: 73px;
  }
}
@media (min-width: 1000px) {
  :root {
    --height: 97px;
  }
}

body {
  padding-top: var(--height);
}
body:has(.promo-top) {
  padding-top: 0;
}

.site-header-wrap {
  max-width: 2056px;
  margin-inline: auto;
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.5s ease;
  z-index: 1000;
}
.site-header-wrap:not(:has(.meeting-banner)) {
  height: var(--height);
}
body:has(.promo-top) .site-header-wrap {
  position: relative;
}
body:has(.promo-top) .site-header-wrap.-fixed {
  position: fixed;
}
.site-header-wrap .site-header {
  max-width: 2056px;
  margin-inline: auto;
  margin-inline: unset;
}
.site-header-wrap .site-header-bar {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.5s ease;
}
@media (max-width: 1099px) {
  .site-header-wrap .site-header-bar:has(.meeting-banner) {
    display: flex;
    flex-direction: column-reverse;
  }
}
.site-header-wrap::before, .site-header-wrap::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100vh;
  top: 0;
  background-color: #fff;
  overflow: hidden;
  z-index: 9999;
}
.site-header-wrap::after {
  width: 100px;
  left: -100px;
  background: red;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.045), rgba(0, 0, 0, 0));
}
.site-header-wrap.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.5s ease;
}
.site-header-wrap.scrolled-down.peaking {
  transform: translateY(0);
}
.site-header-wrap:not(.breadcrumbs-past-header) .site-header-bar {
  border-bottom: none;
  box-shadow: 0 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.site-header {
  position: relative;
  display: grid;
}
.site-header:not(:has(.meeting-banner)) {
  height: var(--height);
}
.site-header .logo img:not(.mobile-logo) {
  display: none;
}
@media (min-width: 500px) {
  .site-header .logo {
    min-width: 145px;
  }
}
@media (min-width: 768px) {
  .site-header .logo img:not(.mobile-logo) {
    display: block;
  }
  .site-header .logo img.mobile-logo {
    display: none;
  }
}
.site-header-bar {
  display: flex;
  position: relative;
  padding-inline: 30px;
  align-items: center;
  background-color: #fff;
}
@media (min-width: 768px) {
  .site-header-bar {
    padding-left: 100px;
  }
}
@media (min-width: 1000px) {
  .site-header-bar {
    padding-left: 120px;
  }
}
.site-header-bar:has(.meeting-banner) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 1100px) {
  .site-header-bar:has(.meeting-banner) {
    flex-direction: row;
    gap: 20px;
  }
}
.site-header-bar .main {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.site-header-bar .logos {
  display: flex;
  align-items: center;
  height: var(--height);
  width: 100%;
}
@media (min-width: 500px) {
  .site-header-bar .logos {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .site-header-bar .logos {
    gap: 40px;
    height: var(--height);
  }
}
.site-header-bar .logo {
  display: flex;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: 0.32s ease-out;
}
.site-header-bar .logo:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
}
@media (min-width: 768px) {
  .site-header-bar .logo {
    margin-top: -6px;
    width: auto;
    max-width: 150px;
  }
}
@media (min-width: 1000px) {
  .site-header-bar .logo {
    margin-top: -8px;
    max-width: 301px;
  }
}
.site-header-bar .logo-second {
  margin-top: unset;
}
@media (min-width: 500px) {
  .site-header-bar .logo-second {
    max-width: 100px;
  }
  .site-header-bar .logo-second img:not(.mobile-logo) {
    display: flex;
  }
}
@media (min-width: 1000px) {
  .site-header-bar .logo-second {
    max-width: 250px;
  }
}
.site-header-bar .user-controls-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 500px) {
  .site-header-bar .user-controls-container {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .site-header-bar .user-controls-container {
    gap: 40px;
  }
}
.site-header-bar .user-controls {
  opacity: 0;
  position: absolute;
  right: -1000em;
  pointer-events: none;
  transition: 0.32s ease-out;
}
.site-header-bar .user-controls:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
}
.site-header-bar .user-controls.login, .site-header-bar .user-controls.profile {
  color: #58595b;
  font-size: 0.7777777778rem;
  font-weight: 700;
  text-transform: uppercase;
}
.site-header-bar .user-controls.button {
  margin-left: auto;
}
@media (min-width: 768px) {
  .site-header-bar .user-controls {
    position: relative;
    right: unset;
    opacity: 1;
    pointer-events: all;
  }
  .site-header-bar .user-controls.login, .site-header-bar .user-controls.profile {
    font-size: 0.7222222222rem;
  }
  .site-header-bar .user-controls.login {
    margin-left: auto;
  }
  .site-header-bar .user-controls.button {
    margin-left: unset;
  }
}
.site-header-bar-toggle {
  position: relative;
  width: 58px;
  height: var(--height);
  background-color: #f7f7f7;
  font-size: 0.7777777778rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: -30px;
  transition: 0.32s ease-out;
  text-transform: uppercase;
}
.site-header-bar-toggle:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #b01f24;
  opacity: 1;
  background-color: #dedede;
}
.site-header-bar-toggle::before {
  content: "\e90e";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5555555556rem;
  transition: 0.32s ease-out;
}
@media (min-width: 768px) {
  .site-header-bar-toggle {
    position: absolute;
    left: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 71px;
    transition: 0.32s ease-out;
  }
  .site-header-bar-toggle::before {
    content: "\e90e";
    display: inline-block;
    font-family: "icomoon" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 2.0555555556rem;
  }
  .site-header-bar-toggle:hover {
    background-color: #dedede;
  }
  html[data-mobile-menu=open] .site-header-bar-toggle {
    margin-left: var(--width);
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  .site-header-bar-toggle {
    font-size: 0.8888888889rem;
  }
}
@media (min-width: 1000px) {
  .site-header-bar-toggle {
    width: 89px;
  }
}
html[data-mobile-menu=open] .site-header-bar {
  background-color: #ededed;
}
html[data-mobile-menu=open] .site-header-bar .logo {
  position: absolute;
  pointer-events: none;
}
@media (min-width: 768px) {
  html[data-mobile-menu=open] .site-header-bar .logo {
    position: unset;
    top: unset;
  }
}
html[data-mobile-menu=open] .site-header-bar .user-controls {
  opacity: 1;
  pointer-events: all;
}
html[data-mobile-menu=open] .site-header-bar-toggle {
  background-color: transparent;
}
html[data-mobile-menu=open] .site-header-bar-toggle::before {
  content: "\e907";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.1111111111rem;
}
@media (min-width: 768px) {
  html[data-mobile-menu=open] .site-header-bar-toggle::before {
    content: "\e907";
    display: inline-block;
    font-family: "icomoon" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.6666666667rem;
  }
}
@media (min-width: 768px) {
  html[data-mobile-menu=open] .site-header-bar {
    background-color: #fff;
  }
  html[data-mobile-menu=open] .site-header-bar-toggle {
    background-color: #f7f7f7;
  }
}
.site-header-bar .meeting-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  width: calc(100% + 60px);
  margin-inline: -30px;
  padding-block: 16px;
  padding-inline: 30px;
}
@media (max-width: 1099px) {
  .site-header-bar .meeting-banner {
    background-color: #ededed;
  }
}
@media (min-width: 768px) {
  .site-header-bar .meeting-banner {
    width: calc(100% + 130px);
    margin-inline-start: -100px;
    padding-inline-start: 100px;
  }
}
@media (min-width: 1000px) {
  .site-header-bar .meeting-banner {
    width: calc(100% + 160px);
    margin-inline-start: -120px;
    padding-inline-start: 120px;
  }
}
@media (min-width: 1100px) {
  .site-header-bar .meeting-banner {
    margin-inline: unset;
    padding-inline: unset;
    width: 100%;
    margin-left: auto;
    justify-content: flex-end;
    border: 0;
  }
}
.site-header-bar .meeting-banner p {
  font-size: 16px;
}
.site-header-bar .meeting-banner a {
  color: #b01f24;
  text-decoration: none;
  font-weight: 700;
  text-decoration: underline !important;
}
.site-header-bar .meeting-banner a:hover {
  color: #58595b;
}
@media (max-width: 767px) {
  [data-mobile-menu=open] .site-header-bar .meeting-banner {
    display: none;
  }
}
.site-header-menu {
  position: absolute;
  width: var(--width);
  grid-row: 1/-1;
  padding-bottom: var(--promo-top-height, 0);
  margin-left: 100%;
  overflow-x: clip;
  background-color: #474747;
  z-index: 1000;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  transition: all 0.32s ease-out;
  height: calc(100dvh - var(--promo-top-height, 0) - var(--height));
  overflow-y: auto;
}
[data-mobile-menu=open] .site-header-menu {
  margin-left: 0;
}
@media (min-width: 768px) {
  .site-header-menu {
    margin-left: -100%;
    height: 100dvh;
  }
  [data-mobile-menu=open] .site-header-menu {
    margin-left: 0;
  }
}
.site-header-menu ul {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding-block: 32px;
}
.site-header-menu ul:first-of-type {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.site-header-menu ul li {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  font-size: 0.8888888889rem;
}
.site-header-menu ul li:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}
.site-header-menu ul li.sub-title {
  text-transform: uppercase;
  color: #bdbdbe;
  font-size: 0.7777777778rem;
  letter-spacing: 0.56px;
}
.site-header-menu ul li a {
  width: 100%;
  padding: 17px 30px;
  color: inherit;
  transition: ease-out 0.32s;
}
.site-header-menu ul li a:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #fff;
  opacity: 1;
}
.site-header-menu ul li a:hover {
  background-color: #333;
}
.site-header-menu ul li button:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 3px;
  outline-color: #fff;
  opacity: 1;
}
.site-header-menu ul li:hover button::before, .site-header-menu ul li:focus-visible button::before {
  border-color: rgba(255, 255, 255, 0);
}
.site-header-menu ul.site-header-nav-main.-sub li {
  font-weight: 500;
}
.site-header-menu ul.site-header-nav-main.-sub li.is-empty {
  padding: 0 !important;
}
.site-header-menu ul.site-header-nav-main.-sub li.sub-title {
  padding: 12px 30px;
}
.site-header-menu::-webkit-scrollbar {
  width: 0;
}
.site-header-menu::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.site-header-menu::-webkit-scrollbar-track {
  background-color: transparent;
}
.site-header-menu.-fixed {
  overflow: hidden;
}
.site-header-menu:not([data-level="1"]) {
  overflow-y: unset;
}
.site-header .site-header-menu-search {
  padding: 24px;
}
.site-header .site-header-menu-search .form-field {
  position: relative;
  margin-bottom: 0;
}
.site-header .site-header-menu-search .main_nav-search {
  box-shadow: 0 0 0;
}
.site-header .site-header-menu-search button {
  position: absolute;
  border-radius: 16px;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  font-size: 1.3333333333rem;
}
.site-header .site-header-menu-search button:focus-visible {
  background-color: #bdbdbe;
  outline: none;
}
.site-header .nav-main-back, .site-header .nav-main-next {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
}
.site-header .nav-main-back::before, .site-header .nav-main-next::before {
  content: "\e906";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.6666666667rem;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: solid #7a7a7d;
  border-width: 0 0 0 1px;
  transition: 0.32s ease-out;
  box-shadow: 0 7px 0 0 rgba(122, 122, 125, 0), 0 -7px 0 0 rgba(122, 122, 125, 0);
}
.site-header .nav-main-back:hover::before, .site-header .nav-main-back:focus-visible::before, .site-header .nav-main-next:hover::before, .site-header .nav-main-next:focus-visible::before {
  background-color: #333;
  border: solid rgba(122, 122, 125, 0);
  border-width: 0 0 0 1px;
  box-shadow: 0 7px 0 0 #333, 0 -7px 0 0 #333;
}
.site-header .nav-main-back {
  padding-block: 7px;
}
.site-header .nav-main-back::before {
  transform: rotate(180deg);
  margin-right: 10px;
}
.site-header .nav-main-panel {
  position: fixed;
  padding-bottom: var(--promo-top-height, 0);
  width: var(--width);
  height: 100dvh;
  transform: translateZ(0);
  clip-path: inset(0);
  overflow-y: auto;
  z-index: 1;
  transition: all 0.32s ease-out;
  background-color: #474747;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  top: 0 !important;
}
.site-header .nav-main-panel[aria-hidden=true] {
  margin-left: 100%;
}
@media (min-width: 768px) {
  .site-header .nav-main-panel[aria-hidden=true] {
    margin-left: var(--width);
  }
}
.site-header .nav-main-panel[aria-hidden=false] {
  margin-left: 0;
}
@media (min-width: 768px) {
  .site-header .nav-main-panel[aria-hidden=false] {
    margin-right: unset;
  }
}
.site-header .nav-main-panel::-webkit-scrollbar {
  width: 0;
}
.site-header .nav-main-panel::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.site-header .nav-main-panel::-webkit-scrollbar-track {
  background-color: transparent;
}
.site-header .nav-main-panel ul li {
  display: flex;
}
.site-header .nav-main-panel ul li:last-child {
  margin: 0;
}
.site-header .nav-main-panel ul li a {
  flex: 1 1 0%;
  display: block;
  transition: 0.32s ease-out;
}
.site-header .nav-main-panel ul li a:hover, .site-header .nav-main-panel ul li a:focus-visible {
  background-color: #b01f24;
}
.site-header .nav-main-panel ul li a[data-active=true] {
  font-weight: 700;
}
.site-header .countdown-clock {
  display: none;
}
@media (min-width: 1300px) {
  .site-header .countdown-clock {
    display: block;
  }
}
.site-header .countdown-clock .countdown-clock-inner {
  padding: 8px;
}
.site-header .countdown-clock .countdown-clock-inner > div {
  padding: 10px 8px;
}
.site-header .countdown-clock .number {
  font-size: 0.9444444444rem;
}

.nav-wrapper {
  margin-top: var(--height);
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: clip;
  background-color: #474747;
  position: absolute;
  top: 0;
  left: var(--width);
  transition: all 0.32s ease-out;
  transform: translateZ(0);
  clip-path: inset(0);
  scrollbar-width: none;
  width: var(--width);
}
.nav-wrapper::-webkit-scrollbar {
  display: none;
}
[data-mobile-menu=open] .nav-wrapper {
  left: 0;
}
@media (min-width: 768px) {
  .nav-wrapper {
    left: calc(-1 * var(--width));
  }
}
@media (min-width: 768px) {
  .nav-wrapper {
    margin-top: 0;
  }
}

.social-share {
  display: none;
}
@media (min-width: 1000px) {
  .social-share {
    position: absolute;
    top: clamp(26px, 2.6vw, 70px);
    left: -32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
  }
}
@media (min-width: 1600px) {
  .social-share {
    left: -40px;
  }
}
.kss-body .social-share {
  display: flex !important;
  position: static !important;
}
.social-share-title {
  margin-bottom: 24px;
  font-size: 0.5555555556rem;
  font-weight: 700;
  letter-spacing: 0.0233333333rem;
  text-transform: uppercase;
}
.social-share-services li {
  display: grid;
  place-items: center;
}
.social-share-services li + li {
  margin-top: 24px;
}
.social-share-services li button,
.social-share-services li a {
  color: #474747;
  font-size: 1rem;
  text-align: center;
}
.social-share-services li button::before,
.social-share-services li a::before {
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.social-share-services li button[data-service=facebook]::before,
.social-share-services li a[data-service=facebook]::before {
  content: "\e914";
}
.social-share-services li button[data-service=facebook]:hover,
.social-share-services li a[data-service=facebook]:hover {
  color: #b01f24;
}
.social-share-services li button[data-service=twitter]::before,
.social-share-services li a[data-service=twitter]::before {
  content: "\e903";
}
.social-share-services li button[data-service=twitter]:hover,
.social-share-services li a[data-service=twitter]:hover {
  color: #b01f24;
}
.social-share-services li button[data-service=linkedin]::before,
.social-share-services li a[data-service=linkedin]::before {
  content: "\e915";
}
.social-share-services li button[data-service=linkedin]:hover,
.social-share-services li a[data-service=linkedin]:hover {
  color: #b01f24;
}
.social-share-services li button[data-service=email]::before,
.social-share-services li a[data-service=email]::before {
  content: "\e913";
}
.social-share-services li button[data-service=email]:hover,
.social-share-services li a[data-service=email]:hover {
  color: #b01f24;
}
.social-share-services li button[data-service=youtube]::before,
.social-share-services li a[data-service=youtube]::before {
  content: "\e916";
}
.social-share-services li button[data-service=youtube]:hover,
.social-share-services li a[data-service=youtube]:hover {
  color: #b01f24;
}
.social-share-services li button[data-service=instagram]::before,
.social-share-services li a[data-service=instagram]::before {
  content: "\e900";
}
.social-share-services li button[data-service=instagram]:hover,
.social-share-services li a[data-service=instagram]:hover {
  color: #b01f24;
}

.layout-two-col-aside {
  align-items: center;
  color: #333;
  display: flex;
  flex-direction: column;
  left: -32px;
  position: absolute;
  top: clamp(26px, 2.6vw, 70px);
}
@media (min-width: 1600px) {
  .layout-two-col-aside {
    left: -40px;
  }
}

.stats-panel {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.stats-panel .inner {
  grid-column: main;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
@media (min-width: 1000px) {
  .stats-panel .inner {
    max-width: 700px;
    margin-inline: auto;
  }
}
.stats-panel .links-wrapper {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  gap: 24px;
}
.stats-panel .links-wrapper a,
.stats-panel .links-wrapper button {
  display: flex;
  align-self: center;
}
@media (min-width: 800px) {
  .stats-panel .links-wrapper {
    justify-content: center;
    flex-direction: row;
    gap: 32px;
  }
}
.stats-panel .stats {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-direction: column;
}
.stats-panel .stats-item {
  min-width: 130px;
  flex: 1 0 0;
  border-top: 6px solid #f38740;
}
.stats-panel .stats-item .figure {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 2.5555555556rem;
  font-weight: 700;
  line-height: 1.17;
}
.stats-panel .stats-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-panel .stats .description {
  color: #474747;
  font-size: 0.8888888889rem;
  line-height: 1.5;
  text-wrap: balance;
  width: 24ch;
}
@media (min-width: 1000px) {
  .stats-panel .stats {
    flex-direction: row;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
  }
  .stats-panel .stats .description {
    width: 15ch;
  }
}
.stats-panel .logo-mark-wrapper {
  display: none;
}
@media (min-width: 1300px) {
  .stats-panel .logo-mark-wrapper {
    display: block;
    position: absolute;
    width: 112px;
    top: 170px;
    right: clamp(30px, 14vw, 320px);
    z-index: -1;
  }
}
@media (min-width: 1000px) {
  .stats-panel:not([data-background-color=true]) .logo-mark-wrapper {
    top: 50px;
  }
}
.stats-panel[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #ecf9f5;
}
.stats-panel[data-background-color=true]::before, .stats-panel[data-background-color=true]::after {
  content: "";
  position: absolute;
  background: url("/images/logo-mark-white.svg") no-repeat center;
  height: 100%;
  filter: blur(6px);
  opacity: 0.8;
  z-index: 0;
}
.stats-panel[data-background-color=true]::before {
  width: 135px;
  background-size: 135px 135px;
  animation: width-smoosh 130s ease-in-out infinite alternate, side-motion 140s ease-in-out infinite alternate, vert-motion 155s ease-in-out infinite alternate;
}
.stats-panel[data-background-color=true]::after {
  width: 220px;
  background-size: 220px 220px;
  animation: width-smoosh1 120s ease-in-out infinite alternate, side-motion1 110s ease-in-out infinite alternate, vert-motion1 155s ease-in-out infinite alternate;
}

@keyframes width-smoosh {
  to {
    width: 180px;
  }
}
@keyframes side-motion {
  0%, 100% {
    right: 150px;
    transform: rotate(0deg);
  }
  20%, 60%, 80% {
    right: 100px;
    transform: rotate(-10deg);
  }
  40% {
    right: 150px;
    transform: rotate(10deg);
  }
}
@keyframes vert-motion {
  0%, 100% {
    top: -150px;
  }
  20% {
    top: 160px;
  }
  40% {
    top: 144px;
  }
  60%, 90% {
    top: 100px;
  }
  80% {
    top: 90px;
  }
}
@keyframes width-smoosh1 {
  to {
    width: 280px;
  }
}
@keyframes side-motion1 {
  0%, 100% {
    left: 70px;
    transform: rotate(0deg);
  }
  20%, 60% {
    left: 200px;
    transform: rotate(-20deg);
  }
  40% {
    left: 10px;
    transform: rotate(20deg);
  }
}
@keyframes vert-motion1 {
  0%, 100% {
    top: 10px;
  }
  20% {
    top: 100px;
  }
  40% {
    top: 80px;
  }
  60%, 80% {
    top: 250px;
  }
}
.testimonial {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.testimonial[data-contained=true] {
  grid-column: main;
}
.testimonial .inner {
  position: relative;
  grid-column: main;
  background-color: #a0191d;
  color: #fff;
  text-align: center;
}
@media (min-width: 1000px) {
  .testimonial .inner {
    grid-column: main;
  }
}
.testimonial .background {
  display: none;
}
.testimonial-quote {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) 34px;
  background-color: #a0191d;
}
@media (min-width: 500px) {
  .testimonial-quote {
    padding-inline: 34px;
  }
}
@media (min-width: 1000px) {
  .testimonial-quote {
    padding-inline: clamp(40px, 8vw, 80px);
  }
}
.testimonial-quote h2 {
  position: relative;
  margin: 0;
  font-size: clamp(1.3333333333rem, 4vw, 1.8333333333rem);
  line-height: 1.36;
  font-weight: 300;
  font-style: italic;
  color: #fff;
}
.testimonial-quote h2::before {
  content: "\e911";
  display: inline-block;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  margin-bottom: 20px;
  font-size: 2.2222222222rem;
  color: #f38740;
}
.testimonial-quote .attribution {
  display: block;
  margin-top: 20px;
  font-size: 0.8888888889rem;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) and (max-width: 999px) {
  .testimonial[data-image=true] {
    padding-top: clamp(90px, 15vw, 100px);
  }
}
.testimonial[data-image=true] .inner {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
  }
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .background {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 45px);
    background-color: #a0191d;
  }
}
.testimonial[data-image=true] .testimonial-quote {
  max-width: none;
}
@media (min-width: 600px) and (max-width: 999px) {
  .testimonial[data-image=true] .testimonial-quote {
    padding-top: 20px;
  }
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .testimonial-quote {
    width: calc(100% - clamp(500px, 50vw, 597px));
    max-width: 800px;
    margin: 45px 0 0;
    padding-block: clamp(40px, 4vw, 80px);
    text-align: left;
    background-color: transparent;
  }
}
.testimonial[data-image=true] h2 {
  font-size: clamp(1.3333333333rem, 2.4vw, 1.8333333333rem);
}
@media (min-width: 600px) and (max-width: 999px) {
  .testimonial[data-image=true] h2 {
    font-size: clamp(1.3333333333rem, 4vw, 1.8333333333rem);
  }
}
.testimonial[data-image=true] .testimonial-image {
  position: relative;
}
@media (min-width: 600px) and (max-width: 999px) {
  .testimonial[data-image=true] .testimonial-image {
    flex: none;
    margin-top: -100px;
  }
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .testimonial-image {
    margin-right: -1px;
    width: clamp(500px, 50vw, 597px);
    align-self: flex-end;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  .testimonial[data-image=true] .testimonial-image img {
    width: clamp(180px, 30vw, 200px);
    height: clamp(180px, 30vw, 200px);
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
  }
}
.testimonial[data-image=true] .testimonial-curve {
  position: absolute;
  top: -1px;
  left: 0;
}
@media (min-width: 600px) {
  .testimonial[data-image=true] .testimonial-curve {
    display: none;
  }
}
.testimonial[data-image=true] .testimonial-image-inner {
  position: relative;
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .testimonial-image-inner svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .testimonial-image-picture {
    clip-path: url("#testimonial-image-clip-desktop");
  }
}
.testimonial[data-image=true] .testimonial-svg-desktop {
  display: none;
}
@media (min-width: 1000px) {
  .testimonial[data-image=true] .testimonial-svg-desktop {
    display: block;
  }
}
.testimonial[data-bg=teal] .inner {
  background-color: #ecf9f5;
}
.testimonial[data-bg=teal] .background {
  background-color: #ecf9f5;
}
.testimonial[data-bg=teal] .testimonial-quote {
  background-color: #ecf9f5;
  color: #58595b;
}
.testimonial[data-bg=teal] h2 {
  color: #58595b;
}
@media (min-width: 1000px) {
  .testimonial[data-bg=teal][data-image=true] .inner {
    background-color: transparent;
  }
}

.text-block {
  grid-column: main;
}
.text-block:last-child p:last-child {
  margin-bottom: clamp(48px, 8vw, 120px);
}
.layout-two-col-sidebar .text-block:last-child p:last-child {
  margin-bottom: 0;
}
.text-block p[style*="text-align: center;"] img {
  margin-inline: auto;
}
.text-block > a[name] {
  margin-bottom: 20px;
  display: inline-block;
}
.text-block img {
  /* some client code has inline style widths larger than device width */
  max-width: 100% !important;
}
.text-block figure {
  display: block;
  position: relative;
  margin: 40px auto;
}
.text-block figure figcaption {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 16px;
  font-size: 0.7777777778rem;
  line-height: 1.4;
  background-color: #f7f7f7;
  color: #000;
}
.text-block figure.align-right, .text-block figure.align-left, .text-block figure.align-center {
  display: table;
}
.text-block figure.align-right picture, .text-block figure.align-left picture, .text-block figure.align-center picture {
  max-width: 100%;
}
.text-block figure.align-right figcaption, .text-block figure.align-left figcaption, .text-block figure.align-center figcaption {
  display: table-caption;
  caption-side: bottom;
  max-width: 100%;
}
.text-block figure.align-right, .text-block figure.align-left {
  float: none !important;
  transition: 0.32s ease-out;
}
.text-block figure.align-right,
.text-block figure.align-right figcaption, .text-block figure.align-left,
.text-block figure.align-left figcaption {
  max-width: 320px;
}
.text-block figure.align-right img, .text-block figure.align-left img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .text-block figure.align-right {
    float: right !important;
    margin: 5px 0 50px 25px;
  }
}
@media (min-width: 768px) {
  .text-block figure.align-left {
    float: left !important;
    margin: 5px 50px 25px 0;
  }
}
.text-block figure.align-center {
  clear: both;
}
.text-block figure.align-center,
.text-block figure.align-center picture,
.text-block figure.align-center img {
  width: 100%;
}
.text-block figure.align-center img {
  margin-left: auto;
  margin-right: auto;
}
.text-block figure:first-child.align-center {
  margin-top: 0;
}
.text-block figure .video-container {
  margin-bottom: 0;
}
.text-block figure .media-link {
  position: relative;
  overflow: hidden;
}
.text-block figure .media-link .js-modal-video-btn {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.text-block figure .media-link picture {
  transition: 0.32s ease-out;
}
.text-block figure .media-link .icon-play {
  position: absolute;
  bottom: 30px;
  left: 35px;
  font-size: 2.7777777778rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: 0.32s ease-out;
  z-index: 100;
}
.text-block figure .media-link:hover picture {
  transform: scale(1.05);
}
.text-block figure .media-link:hover .icon-play {
  color: #b01f24;
}

.wysiwyg-table {
  position: relative;
  overflow: auto;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .wysiwyg-table {
    margin-top: 40px;
  }
}
.wysiwyg-table .swipe-indicator {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 126px;
  height: 126px;
  margin-left: -63px;
  z-index: 3;
}
@media (min-width: 1100px) {
  .wysiwyg-table .swipe-indicator {
    display: none;
  }
}
.wysiwyg-table table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  caption-side: bottom;
}
.wysiwyg-table table th {
  padding: 15px 20px;
  vertical-align: middle;
  text-align: left;
  background-color: #474747;
  color: #fff;
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.5;
}
.wysiwyg-table table tr {
  background-color: #f5f5f5;
}
.wysiwyg-table table tr:nth-child(odd) {
  background-color: #fff;
}
.wysiwyg-table table tr.-row-header th {
  background-color: #bdbdbe;
  color: #000;
}
.wysiwyg-table table td {
  padding: 15px 20px;
  vertical-align: top;
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.wysiwyg-table table td:first-child {
  min-width: 160px;
}
.wysiwyg-table table td p:last-child {
  margin: 0;
}

.text-card-grid {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.text-card-grid .inner {
  grid-column: main;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 800px) {
  .text-card-grid .inner {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .text-card-grid .inner {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.text-card-grid .inner .text-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  padding: 24px;
  text-decoration: none;
}
@media (min-width: 800px) {
  .text-card-grid .inner .text-card {
    padding: 32px 48px 48px;
  }
}
.text-card-grid .inner .text-card.-header-card, .text-card-grid .inner .text-card:first-child {
  position: relative;
  min-height: unset;
  padding: 0;
  justify-content: center;
  background-color: transparent;
}
@media (min-width: 800px) {
  .text-card-grid .inner .text-card.-header-card, .text-card-grid .inner .text-card:first-child {
    min-height: 340px;
    padding: 32px 48px 48px 0;
  }
}
.text-card-grid .inner .text-card.-header-card .headline-container h2,
.text-card-grid .inner .text-card.-header-card .headline-container .h2, .text-card-grid .inner .text-card:first-child .headline-container h2,
.text-card-grid .inner .text-card:first-child .headline-container .h2 {
  margin-bottom: 0;
}
.text-card-grid .inner .text-card.-header-card .logo-mark-wrapper, .text-card-grid .inner .text-card:first-child .logo-mark-wrapper {
  display: none;
}
@media (min-width: 1000px) {
  .text-card-grid .inner .text-card.-header-card .logo-mark-wrapper, .text-card-grid .inner .text-card:first-child .logo-mark-wrapper {
    display: block;
    position: absolute;
    width: 112px;
    top: -26px;
    right: 0;
  }
}
.text-card-grid .inner .text-card:is(article) {
  transition: ease-out 0.32s;
}
.text-card-grid .inner .text-card:is(article) .eyebrow {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: solid 1px #bdbdbe;
}
.text-card-grid .inner .text-card:is(article):hover {
  background-color: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  color: #58595b;
}
.text-card-grid .inner .text-card:last-child {
  overflow: hidden;
  border-radius: 0 0 104px 0;
}
.text-card-grid .inner .text-card .h4 {
  display: block;
  margin-bottom: 8px;
  color: #b01f24;
}
.text-card-grid .inner .text-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.text-card-grid .inner a + a {
  margin-left: 0;
}
.text-card-grid[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #f7f7f7;
}
.text-card-grid[data-background-color=true] .text-card {
  background-color: #fff;
}

.text-grid-2-col {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.text-grid-2-col .inner {
  grid-column: main;
  grid-column: main;
}
.text-grid-2-col[data-background-color=true] {
  padding: clamp(48px, 8vw, 120px) 0;
  background-color: #f7f7f7;
}
.text-grid-2-col-header {
  position: relative;
  text-align: center;
  margin-bottom: 55px;
}
.text-grid-2-col-header svg {
  margin-inline: auto;
}
.text-grid-2-col-header .links-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-top: 24px;
  font-size: 0;
}
@media (min-width: 1100px) {
  .text-grid-2-col-header .links-wrapper {
    justify-content: center;
    flex-direction: row;
  }
}
.text-grid-2-col-header .logo-mark-wrapper {
  display: none;
}
@media (min-width: 1000px) {
  .text-grid-2-col-header .logo-mark-wrapper {
    position: absolute;
    display: block;
    width: 112px;
    top: 100px;
    right: 0;
  }
}
.text-grid-2-col-items {
  max-width: 1062px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 60px;
}
@media (min-width: 768px) {
  .text-grid-2-col-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.text-grid-2-col-items .text-grid-item .eyebrow {
  margin-bottom: 16px;
}
.text-grid-2-col-items .text-grid-item .h5 {
  display: block;
  margin-bottom: 24px;
}

.upcoming-calendar {
  grid-column: full;
  margin-bottom: clamp(48px, 8vw, 120px);
}
.upcoming-calendar .inner {
  grid-column: main;
}
.upcoming-calendar-list li {
  padding-block: 42px;
  display: grid;
  grid-template-columns: minmax(0, 77px) auto;
  gap: 30px;
}
.upcoming-calendar-list li:not(:last-child) {
  border-bottom: solid 1px #bdbdbe;
}
.upcoming-calendar-list li .date {
  display: grid;
  place-items: center;
  width: 77px;
  padding: 16px 16px 6px;
  background-color: #f7f7f7;
  color: #474747;
}
.upcoming-calendar-list li .date .month {
  font-size: 0.9444444444rem;
  font-weight: 700;
  letter-spacing: 0.504px;
  line-height: 1.14;
  text-transform: uppercase;
}
.upcoming-calendar-list li .date .day {
  font-size: 2.1111111111rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}
.upcoming-calendar-list li .content {
  display: grid;
  gap: 12px;
}
.upcoming-calendar-list li .content .h5 {
  margin-bottom: 0;
}
.upcoming-calendar-list li .content a:focus-visible {
  outline-offset: 8px;
  outline: dashed;
  outline-width: 2px;
  outline-color: #b01f24;
  opacity: 1;
}
.upcoming-calendar-list li .pub-date {
  font-size: 0.7777777778rem;
  line-height: 1.14;
}
/*# sourceMappingURL=sourcemaps/style.css.map */
