@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
/**
 * Foundation for Sites
 * Version 6.7.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 48em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&medium=48em&large=64em&xlarge=90em&xxlarge=120em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #FFF;
  font-family: "shnebuch", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #00002E;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.fluid {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0px;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 48em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 48em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto;
  }

  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }

  .grid-x > .medium-shrink {
    width: auto;
  }

  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }

  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }

  .grid-x > .medium-3 {
    width: 25%;
  }

  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }

  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }

  .grid-x > .medium-6 {
    width: 50%;
  }

  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }

  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }

  .grid-x > .medium-9 {
    width: 75%;
  }

  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }

  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }

  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto;
  }

  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }

  .grid-x > .large-shrink {
    width: auto;
  }

  .grid-x > .large-1 {
    width: 8.3333333333%;
  }

  .grid-x > .large-2 {
    width: 16.6666666667%;
  }

  .grid-x > .large-3 {
    width: 25%;
  }

  .grid-x > .large-4 {
    width: 33.3333333333%;
  }

  .grid-x > .large-5 {
    width: 41.6666666667%;
  }

  .grid-x > .large-6 {
    width: 50%;
  }

  .grid-x > .large-7 {
    width: 58.3333333333%;
  }

  .grid-x > .large-8 {
    width: 66.6666666667%;
  }

  .grid-x > .large-9 {
    width: 75%;
  }

  .grid-x > .large-10 {
    width: 83.3333333333%;
  }

  .grid-x > .large-11 {
    width: 91.6666666667%;
  }

  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 48em) {
  .medium-up-1 > .cell {
    width: 100%;
  }

  .medium-up-2 > .cell {
    width: 50%;
  }

  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }

  .medium-up-4 > .cell {
    width: 25%;
  }

  .medium-up-5 > .cell {
    width: 20%;
  }

  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }

  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }

  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }

  .large-up-2 > .cell {
    width: 50%;
  }

  .large-up-3 > .cell {
    width: 33.3333333333%;
  }

  .large-up-4 > .cell {
    width: 25%;
  }

  .large-up-5 > .cell {
    width: 20%;
  }

  .large-up-6 > .cell {
    width: 16.6666666667%;
  }

  .large-up-7 > .cell {
    width: 14.2857142857%;
  }

  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.25rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.25rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.25rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 48em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }

  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }

  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }

  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }

  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }

  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }

  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }

  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }

  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }

  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }

  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }

  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }

  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }

  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }

  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 48em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 48em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 48em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 48em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1.25rem / 2);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1.25rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1.25rem / 2);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1.25rem / 2);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1.25rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1.25rem / 2);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1.25rem / 2);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1.25rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1.25rem / 2);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1.25rem / 2);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1.25rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1.25rem / 2);
}

@media print, screen and (min-width: 48em) {
  .medium-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.875rem / 2);
  }

  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }

  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.875rem / 2);
  }

  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }

  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.875rem / 2);
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.875rem / 2);
  }

  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }

  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.875rem / 2);
  }

  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }

  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.875rem / 2);
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.875rem / 2);
  }

  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }

  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.875rem / 2);
  }

  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }

  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.875rem / 2);
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.875rem / 2);
  }

  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }

  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.875rem / 2);
  }

  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }

  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.875rem / 2);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.875rem / 2);
  }

  .large-offset-1 {
    margin-left: 8.3333333333%;
  }

  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.875rem / 2);
  }

  .large-offset-2 {
    margin-left: 16.6666666667%;
  }

  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.875rem / 2);
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.875rem / 2);
  }

  .large-offset-4 {
    margin-left: 33.3333333333%;
  }

  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.875rem / 2);
  }

  .large-offset-5 {
    margin-left: 41.6666666667%;
  }

  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.875rem / 2);
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.875rem / 2);
  }

  .large-offset-7 {
    margin-left: 58.3333333333%;
  }

  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.875rem / 2);
  }

  .large-offset-8 {
    margin-left: 66.6666666667%;
  }

  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.875rem / 2);
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.875rem / 2);
  }

  .large-offset-10 {
    margin-left: 83.3333333333%;
  }

  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.875rem / 2);
  }

  .large-offset-11 {
    margin-left: 91.6666666667%;
  }

  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.875rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 48em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .grid-y > .medium-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-padding-y > .cell {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 48em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }

  .cell .medium-grid-frame {
    width: 100%;
  }

  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }

  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }

  .cell .large-grid-frame {
    width: 100%;
  }

  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }

  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 48em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 48em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 48em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 48em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 48em) {
  .medium-flex-container {
    display: flex;
  }

  .medium-flex-child-auto {
    flex: 1 1 auto;
  }

  .medium-flex-child-grow {
    flex: 1 0 auto;
  }

  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }

  .medium-flex-dir-row {
    flex-direction: row;
  }

  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .medium-flex-dir-column {
    flex-direction: column;
  }

  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }

  .large-flex-child-auto {
    flex: 1 1 auto;
  }

  .large-flex-child-grow {
    flex: 1 0 auto;
  }

  .large-flex-child-shrink {
    flex: 0 1 auto;
  }

  .large-flex-dir-row {
    flex-direction: row;
  }

  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .large-flex-dir-column {
    flex-direction: column;
  }

  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "shnebuch", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #FFF;
}

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 48em) {
  h1, .h1 {
    font-size: 3rem;
  }

  h2, .h2 {
    font-size: 2.5rem;
  }

  h3, .h3 {
    font-size: 1.9375rem;
  }

  h4, .h4 {
    font-size: 1.5625rem;
  }

  h5, .h5 {
    font-size: 1.25rem;
  }

  h6, .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #FFF;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #FFF;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #FFF;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #00002E;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #FFF;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #00002E;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #FFF;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #FFF;
  font-size: 0.8125rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  border: 1px solid #FFF;
  background-color: #FFF;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #00002E;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #FFF;
  background-color: #FFF;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #00002E;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

  .medium-text-center {
    text-align: center;
  }

  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

  .large-text-center {
    text-align: center;
  }

  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  pre,
blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  .print-break-inside {
    page-break-inside: auto;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #FFF;
  border-radius: 0;
  background-color: #FFF;
  box-shadow: inset 0 1px 2px rgba(0, 0, 46, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #00002E;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #FFF;
  background-color: #FFF;
  box-shadow: 0 0 5px #FFF;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #FFF;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

::placeholder {
  color: #FFF;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #00002E;
}
label.middle {
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #00002E;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #FFF;
  background: #FFF;
  color: #00002E;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #FFF;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  appearance: none;
  border: 1px solid #FFF;
  border-radius: 0;
  background-color: #FFF;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #00002E;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28255, 255, 255%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMBJREFUeNrEllsOhCAMRVszC9IlzU7KCmVHTJsoMWYMUtpyv9BgbuXQB5ZSdgBYYY4ycgBivk8KYFsQMfMiTTBP4o3nUzCKzOabLJbLy2/g31evGkAginR4/ZegKH5qX3bJCscA3t0x3kgO5tQFyhhFf50xRqFLbyMUNJQzgyjGS/wgCpvKqkRBpuWrE4V9d+1E4dPUXqIg107SQOE/2DRQxMwTDygIInVDET9T3lCoj/6j/VCmGjZOl2lKpZ8AAwDQP7zIimDGFQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #FFF;
  background-color: #FFF;
  box-shadow: 0 0 5px #FFF;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #FFF;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #1779ba;
  color: #FFF;
}
.button:hover, .button:focus {
  background-color: #14679e;
  color: #FFF;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #FFF;
}
.button.primary:hover, .button.primary:focus {
  background-color: #126195;
  color: #FFF;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #767676;
  color: #FFF;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #5e5e5e;
  color: #FFF;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #3adb76;
  color: #00002E;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #00002E;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #00002E;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #00002E;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #FFF;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #FFF;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #1779ba;
}
.button.clear:hover, .button.clear:focus {
  color: #0c3d5d;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: #0c3d5d;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: #157539;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: #805700;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: #67251a;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #FFF transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

.accordion {
  margin-left: 0;
  background: #FFF;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #FFF;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #FFF;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #FFF;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #FFF;
  border-bottom: 0;
  background-color: #FFF;
  color: #00002E;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #FFF;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #FFF;
}
.badge.primary {
  background: #1779ba;
  color: #FFF;
}
.badge.secondary {
  background: #767676;
  color: #FFF;
}
.badge.success {
  background: #3adb76;
  color: #00002E;
}
.badge.warning {
  background: #ffae00;
  color: #00002E;
}
.badge.alert {
  background: #cc4b37;
  color: #FFF;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #00002E;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #FFF;
}
.breadcrumbs a {
  color: #1779ba;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #FFF;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-grow: 1;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group::before, .button-group::after {
  display: none;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #1779ba;
  color: #FFF;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #126195;
  color: #FFF;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #767676;
  color: #FFF;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #FFF;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: #3adb76;
  color: #00002E;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #00002E;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: #ffae00;
  color: #00002E;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #00002E;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #cc4b37;
  color: #FFF;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #FFF;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: #157539;
  color: #157539;
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #1779ba;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: #0c3d5d;
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: #0c3d5d;
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: #157539;
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: #805700;
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: #67251a;
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 48em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 47.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 46, 0.25);
  border-radius: 0;
  background-color: white;
  color: #00002E;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d7ecfa;
  color: #00002E;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #00002E;
}
.callout.success {
  background-color: #e1faea;
  color: #00002E;
}
.callout.warning {
  background-color: #fff3d9;
  color: #00002E;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #00002E;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #FFF;
  border-radius: 0;
  background: #FFF;
  box-shadow: none;
  overflow: hidden;
  color: #00002E;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #FFF;
}
.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}

.card-image {
  min-height: 1px;
}

.close-button {
  position: absolute;
  z-index: 10;
  color: #FFF;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #00002E;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 48em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #1779ba;
  color: #FFF;
}
.menu .active > a {
  background: #1779ba;
  color: #FFF;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #FFF;
  box-shadow: 0 7px 0 #FFF, 0 14px 0 #FFF;
  content: "";
}
.menu-icon:hover::after {
  background: #FFF;
  box-shadow: 0 7px 0 #FFF, 0 14px 0 #FFF;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #00002E;
  box-shadow: 0 7px 0 #00002E, 0 14px 0 #00002E;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #FFF;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #FFF;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #FFF;
  border-radius: 0;
  background-color: #FFF;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #1779ba transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #1779ba;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #1779ba;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #1779ba transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #1779ba transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #1779ba;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #FFF;
  background: #FFF;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #1779ba transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #1779ba;
  color: #FFF;
}
.label.primary {
  background: #1779ba;
  color: #FFF;
}
.label.secondary {
  background: #767676;
  color: #FFF;
}
.label.success {
  background: #3adb76;
  color: #00002E;
}
.label.warning {
  background: #ffae00;
  color: #00002E;
}
.label.alert {
  background: #cc4b37;
  color: #FFF;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 47.99875em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 47.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #FFF;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 0, 46, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #FFF;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 0, 46, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(250px);
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(0, 0, 46, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-250px);
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(0, 0, 46, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(0, 0, 46, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(0, 0, 46, 0.25);
}

.off-canvas-content {
  transform: none;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 48em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }

  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }

  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }

  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }

  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }

  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }

  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }

  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }

  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 48em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
  position: absolute;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(0, 0, 46, 0.5);
  color: #FFF;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #FFF;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(0, 0, 46, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput=mouse] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #FFF;
}
.orbit-bullets button:hover {
  background-color: #FFF;
}
.orbit-bullets button.is-active {
  background-color: #FFF;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 48em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #00002E;
}
.pagination a:hover,
.pagination button:hover {
  background: #FFF;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #1779ba;
  color: #FFF;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #FFF;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "…";
  color: #00002E;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #FFF;
}
.progress.primary .progress-meter {
  background-color: #1779ba;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #1779ba;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #FFF;
  white-space: nowrap;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #FFF;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #FFF;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1779ba;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #14679e;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(0, 0, 46, 0.45);
  overflow-y: auto;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #FFF;
  border-radius: 0;
  background-color: #FFF;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 48em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 48em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 48em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 48em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 48em) {
  .reveal.large {
    width: 90%;
    max-width: 75rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media print, screen and (max-width: 47.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #FFF;
  user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #FFF;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #FFF;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #1779ba;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}
thead,
tbody,
tfoot {
  border: 1px solid #f2f2f2;
  background-color: #FFF;
}

caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}

thead {
  background: #f9f9f9;
  color: #00002E;
}

tfoot {
  background: #f2f2f2;
  color: #00002E;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f2f2f2;
}

table.unstriped tbody {
  background-color: #FFF;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f2f2f2;
  background-color: #FFF;
}

@media print, screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
table.stack th,
table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f4f4f4;
}
table.hover tfoot tr:hover {
  background-color: #ededed;
}
table.hover tbody tr:hover {
  background-color: #fafafa;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ededed;
}

.table-scroll {
  overflow-x: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #FFF;
  background: #FFF;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #FFF;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #1779ba;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #FFF;
  color: #1468a0;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #FFF;
  color: #1779ba;
}

.tabs-content {
  border: 1px solid #FFF;
  border-top: 0;
  background: #FFF;
  color: #00002E;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #FFF;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #FFF;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 46, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #00002E;
  color: #FFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

.title-bar-right {
  text-align: right;
}

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #FFF;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #00002E;
  font-size: 80%;
  color: #FFF;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-top-width: 0;
  border-color: transparent transparent #00002E;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-color: #00002E transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #00002E;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #00002E transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #FFF;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 48em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
.top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 89.99875em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
.top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0;
}

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 47.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 48em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 47.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 48em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 89.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 90em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
.hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
.hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
.show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
.show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

/************************************************ Stylesheet: Global Stylesheet - Jscrambler *************************************************/
html {
  scroll-behavior: smooth;
  background-color: #FFF;
}

*::selection {
  background: #00002E;
  color: #FFF;
}

/********************* TYPOGRAPHY *********************/
@font-face {
  font-family: "pangeasemibold";
  src: url("/wp-content/themes/Starter/assets/fonts/pangea-semibold-webfont.woff2") format("woff2"), url("/wp-content/themes/Starter/assets/fonts/pangea-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pangeabold";
  src: url("/wp-content/themes/Starter/assets/fonts/pangea-bold-webfont.woff2") format("woff2"), url("/wp-content/themes/Starter/assets/fonts/pangea-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pangeamedium";
  src: url("/wp-content/themes/Starter/assets/fonts/pangea-medium-webfont.woff2") format("woff2"), url("/wp-content/themes/Starter/assets/fonts/pangea-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pangearegular";
  src: url("/wp-content/themes/Starter/assets/fonts/pangea-regular-webfont.woff2") format("woff2"), url("/wp-content/themes/Starter/assets/fonts/pangea-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "pangeamedium";
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #00002E;
}

.pangea-regular, .single-leadership-about__copy p, .single-leadership-header__job-title, .product-release-hub__empty, .product-release-card__excerpt, .product-release-card__content, .product-release-card__product, .product-release-hub__search input[type=search], .newsroom-pagination .page-numbers, #subscribe-card.newsletter-sidebar .newsletter-sidebar__form .submitted-message, #subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=email],
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=text], #subscribe-card.newsletter-sidebar .newsletter-sidebar__heading p, .hbspt-form .hs-form .hs-richtext,
.hbspt-form .hs-form .legal-consent-container,
.hubspot-form .hs-form .hs-richtext,
.hubspot-form .hs-form .legal-consent-container,
.site-hubspot-form .hs-form .hs-richtext,
.site-hubspot-form .hs-form .legal-consent-container,
.event-single-form .hs-form .hs-richtext,
.event-single-form .hs-form .legal-consent-container, .hbspt-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hbspt-form .hs-form select,
.hbspt-form .hs-form textarea,
.hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hubspot-form .hs-form select,
.hubspot-form .hs-form textarea,
.site-hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.site-hubspot-form .hs-form select,
.site-hubspot-form .hs-form textarea,
.event-single-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.event-single-form .hs-form select,
.event-single-form .hs-form textarea, .hbspt-form .hs-form label,
.hubspot-form .hs-form label,
.site-hubspot-form .hs-form label,
.event-single-form .hs-form label, .hbspt-form .hs-form p,
.hbspt-form .hs-form li,
.hubspot-form .hs-form p,
.hubspot-form .hs-form li,
.site-hubspot-form .hs-form p,
.site-hubspot-form .hs-form li,
.event-single-form .hs-form p,
.event-single-form .hs-form li, .single-event-header__meta > span, .global-search-pagination ul.pagination .page-numbers, .global-search-form input[type=search], .site-search-panel input[type=search], .learning-hub #pagination .page-numbers, .learning-filter-selects select, .learning-search input[type=search], .single-glossary-card p, .glossary-term__lead p, .single-customer-story-sidebar__value, .single-customer-story-header__lead, .single-blog-toc__item a, .single-blog-entry pre,
.single-blog-entry .wp-block-code, .single-blog-entry table td,
.single-blog-entry .wp-block-table table td, .single-blog-entry figcaption,
.single-blog-entry .wp-element-caption, .single-blog-entry p,
.single-blog-entry li, .single-blog-entry, .single-blog-meta__pill, .footer .footer-bottom .utility-links span, .footer .footer-bottom .utility-links a, section#cta.layout-subscribe .cta-form-embed input[type=email],
section#cta.layout-subscribe .cta-form-embed input[type=text],
section#cta.layout-subscribe .cta-form-embed input[type=tel], section#cta.layout-subscribe .cta-copy .body-m,
section#cta.layout-subscribe .cta-copy .body-m p, section#pricing .pricing-feature.muted span:last-child, blockquote, .tag, .eyebrow, .paragraph, p, li {
  font-family: "pangearegular", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.pangea-medium, .product-release-card__date, .product-release-hub__heading .lead, .product-release-hub__heading .eyebrow, .single-event-header__lead, .events-hub__heading .eyebrow, .events-library .event-card .eyebrow,
.single-event .event-card .eyebrow, .single-learning-header__lead, .learning-hub__heading .lead, .single-glossary-card__eyebrow, .glossary-hero__lead p, .single-blog-breadcrumb a, .single-blog-header__lead, .footer .section-footer .top-row .column .footer-nav-group > a, section #heading-container .eyebrow, section#quotes .quote-card-slider.quote-card-style-label .quote-category-pill, section.tabs-section.menu-side .tab-button, header .top-bar .top-bar-right .submenu #main-container .menu-title,
header .top-bar .top-bar-left .submenu #main-container .menu-title, header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content span.eyebrow,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content span.eyebrow, header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a, div.lead p, div.lead li, a.nav-link, .stat, p.nav-link, li.nav-link, p.stat, li.stat, p.lead, li.lead {
  font-family: "pangeamedium", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.pangea-semibold, .single-blog-entry table th,
.single-blog-entry .wp-block-table table th, .footer span.eyebrow, section#pricing .pricing-feature span:last-child, section.tabs-section.menu-side .tab-number {
  font-family: "pangeasemibold", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.pangea-bold, .newsroom-pagination .page-numbers.current, .single-blog-entry strong, .paragraph strong, p strong, li strong {
  font-family: "pangeabold", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.space-grotesk, .single-leadership-header__social > span, .product-release-card__toggle, .product-release-card h2, .product-release-hub__heading h1, .directory-module__filters a, #subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=submit],
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form button[type=submit], #subscribe-card.newsletter-sidebar .newsletter-sidebar__heading h5, .hbspt-form .hs-form input[type=submit],
.hbspt-form .hs-form button[type=submit],
.hubspot-form .hs-form input[type=submit],
.hubspot-form .hs-form button[type=submit],
.site-hubspot-form .hs-form input[type=submit],
.site-hubspot-form .hs-form button[type=submit],
.event-single-form .hs-form input[type=submit],
.event-single-form .hs-form button[type=submit], .hbspt-form .hs-form h2,
.hbspt-form .hs-form h3,
.hbspt-form .hs-form h4,
.hubspot-form .hs-form h2,
.hubspot-form .hs-form h3,
.hubspot-form .hs-form h4,
.site-hubspot-form .hs-form h2,
.site-hubspot-form .hs-form h3,
.site-hubspot-form .hs-form h4,
.event-single-form .hs-form h2,
.event-single-form .hs-form h3,
.event-single-form .hs-form h4, .hbspt-form .hs-form h1,
.hubspot-form .hs-form h1,
.site-hubspot-form .hs-form h1,
.event-single-form .hs-form h1, .single-event-header__media span, .events-library .event-card__link,
.single-event .event-card__link, .learning-filter-pill, .learning-card__link, main.resource-type-archive .resource-type-featured__link, main.resource-center-hub .resource-center-filter, main.resource-center-hub .resource-featured-card__link, section.resources-module .resources-card__link, main.blog-hub .blog-hub-filter, main.blog-hub .blog-featured-card .blog-card-link, .single-glossary-card__link, .glossary-alphabet__list a,
.glossary-alphabet__list span, .single-customer-story-sidebar__label, .footer #social-links a, section aside #form-container form label#LblprivacyPolicyAgreement a,
section aside #form-container form label#LblconsenttoProcessing a,
section aside #form-container form .mktoFieldWrap a,
section aside #form-container form .mktoCaptchaDisclaimer a, section aside #form-container form label#LblprivacyPolicyAgreement,
section aside #form-container form label#LblconsenttoProcessing,
section aside #form-container form .mktoFieldWrap,
section aside #form-container form .mktoCaptchaDisclaimer, section aside #form-container form textarea::placeholder, section aside #form-container form textarea, section aside #form-container form input[type=email]::placeholder,
section aside #form-container form input[type=text]::placeholder,
section aside #form-container form input[type=tel]::placeholder,
section aside #form-container form select::placeholder, section aside #form-container form input[type=email],
section aside #form-container form input[type=text],
section aside #form-container form input[type=tel],
section aside #form-container form select, section #form-container form label#LblprivacyPolicyAgreement a,
section #form-container form label#LblconsenttoProcessing a,
section #form-container form .mktoFieldWrap a,
section #form-container form .mktoCaptchaDisclaimer a, section #form-container form label#LblprivacyPolicyAgreement,
section #form-container form label#LblconsenttoProcessing,
section #form-container form .mktoFieldWrap,
section #form-container form .mktoCaptchaDisclaimer, section #form-container form textarea::placeholder, section #form-container form textarea, section #form-container form input[type=email]::placeholder,
section #form-container form input[type=text]::placeholder,
section #form-container form input[type=tel]::placeholder,
section #form-container form select::placeholder, section #form-container form input[type=email],
section #form-container form input[type=text],
section #form-container form input[type=tel],
section #form-container form select, section #form-container form label, section#text-block .text-block-wysiwyg blockquote p, section#text-block .text-block-wysiwyg h3,
section#text-block .text-block-wysiwyg h4,
section#text-block .text-block-wysiwyg h5, section#main-content.text-block-module #body-copy .quote-block-container .quote-block-name, section#main-content.text-block-module #body-copy .quote-block-container .quote-block-text p, section#main-content.text-block-module #body-copy .quote-block-container .quote-block-text, section#main-content.text-block-module #body-copy h4, section#main-content.text-block-module #body-copy h3, section #body-copy figcaption, section #body-copy blockquote p, section form.blog-search-form input[type=search]::placeholder, section form.blog-search-form input[type=search], section .accordion-menu .accordion-item .accordion-content li a, section #resource-card p.date, section#search-results #search-container form input::placeholder, section#search-results #search-container form input, section#cta.layout-subscribe .cta-copy h4, section#careers .job-card p.body-l, section#quotes .quote-card blockquote, section#pricing .pricing-tab, section#columns.columns-slider .column.slider .content-container h5, section#columns .column.boxed .content-container h5, section#logos.logos-slider .logo-slider-hover-text, section#copy-image #form-container button, section#copy-image #form-container form label#LblprivacyPolicyAgreement a,
section#copy-image #form-container form label#LblconsenttoProcessing a,
section#copy-image #form-container form .mktoFieldWrap a,
section#copy-image #form-container form .mktoCaptchaDisclaimer a, section#copy-image #form-container form label#LblprivacyPolicyAgreement,
section#copy-image #form-container form label#LblconsenttoProcessing,
section#copy-image #form-container form .mktoFieldWrap,
section#copy-image #form-container form .mktoCaptchaDisclaimer, section#copy-image #form-container form textarea::placeholder, section#copy-image #form-container form textarea, section#copy-image #form-container form input[type=email]::placeholder,
section#copy-image #form-container form input[type=text]::placeholder,
section#copy-image #form-container form input[type=tel]::placeholder,
section#copy-image #form-container form select::placeholder, section#copy-image #form-container form input[type=email],
section#copy-image #form-container form input[type=text],
section#copy-image #form-container form input[type=tel],
section#copy-image #form-container form select, #mobile-menu.section-title, header .top-bar #utility-nav a, header .top-bar .top-bar-right .submenu #main-container a.section_title,
header .top-bar .top-bar-right .submenu #main-container .section_title,
header .top-bar .top-bar-left .submenu #main-container a.section_title,
header .top-bar .top-bar-left .submenu #main-container .section_title, header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.mega_link_title,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.mega_link_title, header .top-bar .top-bar-right #main-nav li:not(.button, .text-button) a,
header .top-bar .top-bar-left #main-nav li:not(.button, .text-button) a, a.filter-button, div#text-button,
a#text-button,
a.text-button, li.text-button a, li.button, a#button,
a.button,
button#button,
div#button,
input.button,
input.hs-button, a.button-link, p.button-link, li.button-link, p.quote, li.quote, .heading, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.heading, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  position: relative;
  z-index: 3;
  color: #00002E;
  margin-bottom: 0;
}
.heading a, h6 a, .h6 a, h5 a, .h5 a, h4 a, .h4 a, h3 a, .h3 a, h2 a, .h2 a, h1 a, .h1 a {
  color: #00002E;
}

.paragraph, p, li {
  margin-bottom: 0;
  color: #00002E;
}
h1, .h1 {
  font-size: 62px;
  line-height: 105%;
}
@media (max-width: 1024px) {
  h1, .h1 {
    font-size: 50px;
  }
}

h2, .h2 {
  font-size: 52px;
  line-height: 105%;
}
@media (max-width: 1024px) {
  h2, .h2 {
    font-size: 38px;
  }
}

h3, .h3 {
  font-size: 42px;
  line-height: 110%;
}
@media (max-width: 1024px) {
  h3, .h3 {
    font-size: 32px;
  }
}

h4, .h4 {
  font-size: 32px;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 1024px) {
  h4, .h4 {
    font-size: 20px;
  }
}

h5, .h5 {
  font-size: 22px;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 1024px) {
  h5, .h5 {
    font-size: 18px;
  }
}

h6, .h6 {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 1024px) {
  h6, .h6 {
    font-size: 16px;
  }
}

.eyebrow {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .eyebrow {
    font-size: 12px;
  }
}

.tag {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .tag {
    font-size: 12px;
  }
}

a {
  color: #0002D1;
}
a:hover {
  color: #00013F;
}

p, li {
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  p, li {
    font-size: 16px;
  }
}
p.lead, li.lead {
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  p.lead, li.lead {
    font-size: 18px;
  }
}
p.body-l, li.body-l {
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  p.body-l, li.body-l {
    font-size: 16px;
  }
}
p.body-s, li.body-s {
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  p.body-s, li.body-s {
    font-size: 14px;
  }
}
p.caption, li.caption {
  font-size: 14px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  p.caption, li.caption {
    font-size: 12px;
  }
}
p.stat, li.stat {
  font-size: 46px;
  line-height: 110%;
}
@media (max-width: 1024px) {
  p.stat, li.stat {
    font-size: 36px;
  }
}
p.quote, li.quote {
  font-size: 20px;
  line-height: 160%;
}
@media (max-width: 1024px) {
  p.quote, li.quote {
    font-size: 16px;
  }
}
p.button-link, li.button-link {
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 1024px) {
  p.button-link, li.button-link {
    font-size: 14px;
  }
}
p.nav-link, li.nav-link {
  font-size: 14px;
  font-style: normal;
  line-height: 120%;
}
@media (max-width: 1024px) {
  p.nav-link, li.nav-link {
    font-size: 13px;
  }
}

.stat {
  font-size: 46px;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .stat {
    font-size: 36px;
  }
}

.breadcrumbs {
  margin-bottom: 30px;
}
.breadcrumbs a {
  position: relative;
  text-decoration: none;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
  color: #FFF;
  letter-spacing: 0.32px;
}
.breadcrumbs a:hover {
  color: #E0FF00;
  text-decoration: none;
}

a.button-link {
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 1024px) {
  a.button-link {
    font-size: 14px;
  }
}
a.nav-link {
  font-size: 14px;
  font-style: normal;
  line-height: 120%;
}
@media (max-width: 1024px) {
  a.nav-link {
    font-size: 13px;
  }
}

blockquote {
  font-size: 44px;
  line-height: 120%;
}
@media (max-width: 1024px) {
  blockquote {
    font-size: 30px;
    line-height: 120%;
  }
}
blockquote.quote-s {
  font-size: 30px;
  line-height: 120%;
}
@media (max-width: 1024px) {
  blockquote.quote-s {
    font-size: 22px;
    line-height: 120%;
  }
}

div.lead p, div.lead li {
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  div.lead p, div.lead li {
    font-size: 18px;
  }
}

div.body-l p, div.body-l li {
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  div.body-l p, div.body-l li {
    font-size: 16px;
  }
}

div.body-s p, div.body-s li {
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  div.body-s p, div.body-s li {
    font-size: 14px;
  }
}

div.caption p, div.caption li {
  font-size: 14px;
  line-height: 140%;
}
@media (max-width: 1024px) {
  div.caption p, div.caption li {
    font-size: 12px;
  }
}

/********************* BUTTONS & LINKS *********************/
a#button,
a.button,
button#button,
div#button,
input.button,
input.hs-button {
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  width: max-content;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  color: #00002E;
  text-align: center;
  border-radius: 100px;
  font-weight: 500;
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
  box-sizing: content-box;
  height: 50px;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  outline: none;
  border: none;
  box-shadow: none;
  flex-grow: unset;
  justify-content: unset;
  gap: 8px;
}
a#button:hover,
a.button:hover,
button#button:hover,
div#button:hover,
input.button:hover,
input.hs-button:hover {
  background-position: 0% 50%;
}
a#button.secondary,
a.button.secondary,
button#button.secondary,
div#button.secondary,
input.button.secondary,
input.hs-button.secondary {
  background: linear-gradient(90deg, #CFD9EF 0%, #CFD9EF 49%, #E3EBFD 50%, #E3EBFD 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
  border: 1px solid rgba(185, 195, 216, 0.5);
}
a#button.secondary:hover,
a.button.secondary:hover,
button#button.secondary:hover,
div#button.secondary:hover,
input.button.secondary:hover,
input.hs-button.secondary:hover {
  background-position: 0% 50%;
}
a#button.filter-button,
a.button.filter-button,
button#button.filter-button,
div#button.filter-button,
input.button.filter-button,
input.hs-button.filter-button {
  height: 42px;
}
@media screen and (max-width: 1024px) {
  a#button,
a.button,
button#button,
div#button,
input.button,
input.hs-button {
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
  }
}

li.button {
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  width: max-content;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  color: #00002E;
  text-align: center;
  background: linear-gradient(90deg, #E0FF00 0%, #E0FF00 49%, #B7CF00 50%, #B7CF00 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
  box-sizing: content-box;
  height: 50px;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  outline: none;
  border: none;
  box-shadow: none;
  flex-grow: unset;
  justify-content: unset;
  gap: 8px;
}
li.button:hover {
  background-position: 0% 50%;
}
li.button.secondary {
  background: linear-gradient(90deg, #E3EBFD 0%, #E3EBFD 49%, #CFD9EF 50%, #CFD9EF 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
  border: 1px solid rgba(185, 195, 216, 0.5);
}
li.button.filter-button {
  height: 42px;
}
@media screen and (max-width: 1024px) {
  li.button {
    padding: 0 16px;
    height: 40px;
    font-size: 14px;
  }
}

li.text-button {
  background: none;
  margin: 0 10px 0 50px;
  padding-right: 0;
}
li.text-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: max-content;
  padding: 8px 0;
  font-style: normal;
  font-size: 12px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  height: 36px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  text-transform: uppercase;
  position: relative;
  color: #FFF;
}
li.text-button a::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 10px;
}
div#text-button,
a#text-button,
a.text-button {
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  padding: 6px 0;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  color: #0002D1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
div#text-button:hover,
a#text-button:hover,
a.text-button:hover {
  color: #00013F;
}

#button-container {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
#button-container.center {
  justify-content: center;
}
#button-container.padding-medium {
  margin-top: 25px;
}
#button-container.padding-small {
  margin-top: 15px;
}
#button-container.padding-20 {
  margin-top: 20px;
}
#button-container.padding-0 {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  #button-container {
    margin-top: 30px;
  }
  #button-container.padding-medium {
    margin-top: 20px;
  }
  #button-container.padding-small {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  #button-container {
    align-items: baseline;
    flex-direction: column;
  }
}

span.anchor {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}

a.filter-button {
  padding: 14px 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #00013F;
  background: #00013F;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  line-height: 100%;
  /* 14px */
  letter-spacing: 0.14px;
  text-transform: uppercase;
  transition: 0.2s all cubic-bezier(0.25, 1, 0.5, 1);
}
a.filter-button:hover, a.filter-button.active {
  background-color: #E0FF00;
  color: #00002E;
  border-color: #E0FF00;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0002D1 !important;
  /* Use a visible color */
  outline-offset: 1px !important;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none !important;
}

/********************* GRID *********************/
.grid {
  display: grid;
  width: 100%;
  max-width: 1600px;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 20px;
  margin: auto;
  align-items: flex-start;
  position: relative;
  padding: 0 80px;
}
.grid.align-center {
  align-items: center;
}
.grid.flex-end {
  align-items: flex-end;
}
.grid.flex-end #header-button-container {
  display: flex;
  justify-content: end;
}
.grid.stretch {
  align-items: stretch;
}
.grid.gap-20 {
  row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .grid.gap-20 {
    row-gap: 20px;
  }
}
.grid.gap-40 {
  row-gap: 50px;
}
.grid.gap-50 {
  row-gap: 50px;
}
.grid.gap-60 {
  row-gap: 60px;
}
.grid.gap-75 {
  row-gap: 75px;
}
.grid.gap-100 {
  row-gap: 100px;
}
.grid .full {
  grid-column: auto/span 12;
}
.grid .eleven {
  grid-column: auto/span 11;
}
.grid .ten {
  grid-column: auto/span 10;
}
.grid .three-quarters {
  grid-column: auto/span 9;
}
.grid .two-thirds {
  grid-column: auto/span 8;
}
.grid .seven {
  grid-column: auto/span 7;
}
.grid .half {
  grid-column: auto/span 6;
}
.grid .six {
  grid-column: auto/span 6;
}
.grid .five {
  grid-column: auto/span 5;
}
.grid .third {
  grid-column: auto/span 4;
}
.grid .quarter {
  grid-column: auto/span 3;
}
.grid .fourth {
  grid-column: auto/span 3;
}
.grid .sixth {
  grid-column: auto/span 2;
}
.grid .large-center {
  grid-column: 2/span 10;
}
.grid .medium-center {
  grid-column: 3/span 8;
}
.grid .start-2 {
  grid-column-start: 2;
}
.grid .start-3 {
  grid-column-start: 3;
}
.grid .start-4 {
  grid-column-start: 4;
}
.grid .start-5 {
  grid-column-start: 5;
}
.grid .start-6 {
  grid-column-start: 6;
}
.grid .start-7 {
  grid-column-start: 7;
}
.grid .start-8 {
  grid-column-start: 8;
}
.grid .start-9 {
  grid-column-start: 9;
}
.grid .start-10 {
  grid-column-start: 10;
}
.grid.grid-wide {
  padding: 0 20px;
}
@media screen and (max-width: 1960px) {
  .grid {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(8, 9.01857%);
    gap: 0 3.97878%;
    padding: 0 40px;
  }
  .grid .full {
    grid-column: auto/span 8;
  }
  .grid .ten {
    grid-column: auto/span 8;
  }
  .grid .three-quarters {
    grid-column: auto/span 8;
  }
  .grid .two-thirds {
    grid-column: auto/span 8;
  }
  .grid .seven {
    grid-column: auto/span 8;
  }
  .grid .half {
    grid-column: auto/span 4;
  }
  .grid .six {
    grid-column: auto/span 4;
  }
  .grid .five {
    grid-column: auto/span 8;
  }
  .grid .third {
    grid-column: auto/span 8;
  }
  .grid .quarter {
    grid-column: auto/span 4;
  }
  .grid .fourth {
    grid-column: auto/span 4;
  }
  .grid .sixth {
    grid-column: auto/span 4;
  }
  .grid .large-center {
    grid-column: 1/span 8;
  }
  .grid .medium-center {
    grid-column: 1/span 8;
  }
  .grid .start-2 {
    grid-column-start: auto;
  }
  .grid .start-3 {
    grid-column-start: auto;
  }
  .grid .start-5 {
    grid-column-start: auto;
  }
  .grid .start-6 {
    grid-column-start: auto;
  }
  .grid .start-7 {
    grid-column-start: auto;
  }
  .grid .start-8 {
    grid-column-start: auto;
  }
  .grid .start-9 {
    grid-column-start: auto;
  }
  .grid.gap-100 {
    row-gap: 70px;
  }
}
@media screen and (max-width: 768px) {
  .grid {
    max-width: 768px;
    grid-template-columns: repeat(4, 18.51743%);
    gap: 0 8.57143%;
  }
  .grid .full {
    grid-column: auto/span 4;
  }
  .grid .ten {
    grid-column: auto/span 4;
  }
  .grid .three-quarters {
    grid-column: auto/span 4;
  }
  .grid .two-thirds {
    grid-column: auto/span 4;
  }
  .grid .seven {
    grid-column: auto/span 4;
  }
  .grid .half {
    grid-column: auto/span 4;
  }
  .grid .six {
    grid-column: auto/span 4;
  }
  .grid .five {
    grid-column: auto/span 4;
  }
  .grid .third {
    grid-column: auto/span 4;
  }
  .grid .quarter {
    grid-column: auto/span 4;
  }
  .grid .fourth {
    grid-column: auto/span 4;
  }
  .grid .sixth {
    grid-column: auto/span 2;
  }
  .grid .large-center {
    grid-column: auto/span 4;
  }
  .grid .medium-center {
    grid-column: auto/span 4;
  }
  .grid.gap-100 {
    row-gap: 50px;
  }
}

.flex-columns {
  display: flex;
  max-width: 1280px;
  margin: auto;
  box-sizing: content-box;
  position: relative;
  padding: 0 22px;
  flex-wrap: wrap;
}
.flex-columns .title-container {
  width: 100%;
}
.flex-columns.four-columns {
  justify-content: space-around;
}
.flex-columns.five-columns {
  justify-content: space-around;
  padding: 0 80px;
  box-sizing: border-box;
}
.flex-columns.six-columns {
  justify-content: space-between;
}
.flex-columns.with-content {
  gap: 0 3.2056%;
  justify-content: space-between;
}
.flex-columns.with-content > div {
  width: 17.1%;
}
.flex-columns.gap-40 {
  row-gap: 40px;
}
.flex-columns.basic-five {
  justify-content: space-between;
}
.flex-columns.basic-five > div {
  width: 17.1%;
}
@media screen and (max-width: 1024px) {
  .flex-columns.with-content {
    row-gap: 40px;
  }
  .flex-columns.with-content > div {
    width: 30%;
  }
  .flex-columns.basic-five {
    row-gap: 40px;
  }
  .flex-columns.basic-five > div {
    width: 30%;
  }
  .flex-columns.five-columns {
    row-gap: 40px;
    justify-content: center;
  }
  .flex-columns.five-columns > div {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .flex-columns.with-content > div {
    width: 45%;
  }
  .flex-columns.basic-five > div {
    width: 45%;
  }
  .flex-columns.five-columns {
    padding: 0;
  }
  .flex-columns.five-columns > div {
    width: 45%;
  }
}

/********************* Header Nav *********************/
.off-canvas-content.promo-active {
  margin-top: 120px;
}
@media screen and (max-width: 1208px) {
  .off-canvas-content.promo-active {
    margin-top: 148px;
  }
}

body.menu-active {
  overflow: hidden !important;
}

.menu .active > a {
  background: transparent;
}

header {
  transition: top 0.2s ease-in-out;
  top: 0;
  position: relative;
  z-index: 10;
  transition: 1s all cubic-bezier(0.25, 1, 0.5, 1);
  padding: 30px 40px 0;
}
header.nav-up {
  top: -140px !important;
}
header.topHeader, header.fixedHeader {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
}
header.topHeader.simple-nav .top-bar-right, header.fixedHeader.simple-nav .top-bar-right {
  display: none !important;
}
header.topHeader.simple-nav #hamburger, header.fixedHeader.simple-nav #hamburger {
  display: none !important;
}
header.topHeader.simple-nav #mobile-menu, header.fixedHeader.simple-nav #mobile-menu {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  header #mobile-menu {
    display: none;
  }
}
header .top-bar {
  max-width: 1440px;
  padding: 16px 30px;
  border-radius: 70px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 46, 0.8);
  backdrop-filter: blur(5px);
  margin: 0 auto;
}
@media (max-width: 1960px) {
  header .top-bar {
    max-width: 1280px;
  }
}
header .top-bar nav {
  background-color: transparent;
  align-items: center;
}
header .top-bar .top-bar-left {
  display: flex;
  grid-column-start: 1;
  grid-column-end: span 2;
}
header .top-bar .top-bar-left .logo {
  padding: 0;
  display: flex;
}
header .top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .top-bar .top-bar-right,
header .top-bar .top-bar-left {
  margin-left: 0;
  grid-column-start: 3;
  grid-column-end: span 10;
}
header .top-bar .top-bar-right #main-nav,
header .top-bar .top-bar-left #main-nav {
  position: relative;
  width: 100%;
  justify-content: center;
}
header .top-bar .top-bar-right #main-nav li:not(.button, .text-button),
header .top-bar .top-bar-left #main-nav li:not(.button, .text-button) {
  height: 45px;
  display: flex;
  align-items: center;
}
header .top-bar .top-bar-right #main-nav li:not(.button, .text-button) a,
header .top-bar .top-bar-left #main-nav li:not(.button, .text-button) a {
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
}
header .top-bar .top-bar-right #main-nav li:not(.button, .text-button).is-dropdown-submenu-parent,
header .top-bar .top-bar-left #main-nav li:not(.button, .text-button).is-dropdown-submenu-parent {
  position: inherit;
}
header .top-bar .top-bar-right #main-nav li:last-child,
header .top-bar .top-bar-left #main-nav li:last-child {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}
header .top-bar .top-bar-right #main-nav li.Right,
header .top-bar .top-bar-left #main-nav li.Right {
  margin-left: auto;
  margin-right: 16px;
}
header .top-bar .top-bar-right #main-nav .active > a,
header .top-bar .top-bar-left #main-nav .active > a {
  background: transparent;
}
header .top-bar .top-bar-right #main-nav .active > a:after,
header .top-bar .top-bar-left #main-nav .active > a:after {
  display: none;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a {
  position: relative;
  align-items: center;
  display: flex;
  font-size: 14px;
  line-height: 100%;
  padding: 26px 20px 26px;
  color: #FFF;
  transition: 0.3s opacity cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a.active, header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a:hover,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a.active,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a:hover {
  color: #E0FF00;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button).right,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button).right {
  margin-left: 48px;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button).is-active a:after,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button).is-active a:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button).is-dropdown-submenu-item a,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button).is-dropdown-submenu-item a {
  padding: 0.9rem 1rem;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button).is-dropdown-submenu-item a:after,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button).is-dropdown-submenu-item a:after {
  content: "";
  position: absolute;
  width: calc(100% - 36px);
  transform: scaleX(0);
  height: 3px;
  bottom: 3px;
  left: 0;
  right: 0;
  transform-origin: bottom right;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
  border: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button).is-dropdown-submenu-item a:hover:after,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button).is-dropdown-submenu-item a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .top-bar .top-bar-right .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a,
header .top-bar .top-bar-left .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
  padding-right: 1rem;
}
header .top-bar .top-bar-right .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:after,
header .top-bar .top-bar-left .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:after {
  display: none;
}
header .top-bar .top-bar-right .is-dropdown-submenu,
header .top-bar .top-bar-left .is-dropdown-submenu {
  z-index: 9999;
  background: #222246;
  border-radius: 0 0 20px 20px;
  border: none;
  top: 77px;
  left: 50%;
  right: auto;
  width: max-content;
  max-width: calc(100vw - 80px);
  padding: 30px 40px;
  grid-column-start: 2;
  grid-column-end: span 10;
  margin: 0;
  display: flex !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -10px, 0) scale(0.985);
  transform-origin: top center;
  visibility: hidden;
  will-change: opacity, transform;
  transition: opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.24s;
}
header .top-bar .top-bar-right .is-dropdown-submenu.js-dropdown-active, header .top-bar .top-bar-right .is-dropdown-submenu.active,
header .top-bar .top-bar-left .is-dropdown-submenu.js-dropdown-active,
header .top-bar .top-bar-left .is-dropdown-submenu.active {
  display: flex !important;
  visibility: visible;
  flex-flow: row wrap;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition-delay: 0s;
}
header .top-bar .top-bar-right .is-dropdown-submenu.js-dropdown-active li, header .top-bar .top-bar-right .is-dropdown-submenu.active li,
header .top-bar .top-bar-left .is-dropdown-submenu.js-dropdown-active li,
header .top-bar .top-bar-left .is-dropdown-submenu.active li {
  width: calc(33.33% - 10px);
}
header .top-bar .top-bar-right .is-dropdown-submenu.js-dropdown-active li:nth-child(-n+3), header .top-bar .top-bar-right .is-dropdown-submenu.active li:nth-child(-n+3),
header .top-bar .top-bar-left .is-dropdown-submenu.js-dropdown-active li:nth-child(-n+3),
header .top-bar .top-bar-left .is-dropdown-submenu.active li:nth-child(-n+3) {
  padding-bottom: 6px;
}
header .top-bar .top-bar-right .submenu[data-menu-page=Resources] #main-container .mega_menu_page_section.links-desc,
header .top-bar .top-bar-left .submenu[data-menu-page=Resources] #main-container .mega_menu_page_section.links-desc {
  column-gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 254px) 452px;
  grid-template-rows: repeat(3, auto);
  row-gap: 10px;
}
header .top-bar .top-bar-right .submenu[data-menu-page=Resources] #main-container .mega_menu_page_section.links-desc .mega_menu_links,
header .top-bar .top-bar-left .submenu[data-menu-page=Resources] #main-container .mega_menu_page_section.links-desc .mega_menu_links {
  grid-row: 1/span 3;
}
header .top-bar .top-bar-right .submenu[data-menu-page=Resources] #main-container .mega_menu_page_section.links-desc .resource-link,
header .top-bar .top-bar-left .submenu[data-menu-page=Resources] #main-container .mega_menu_page_section.links-desc .resource-link {
  grid-column: 3;
}
header .top-bar .top-bar-right .submenu #main-container,
header .top-bar .top-bar-left .submenu #main-container {
  width: max-content;
  max-width: 100%;
  margin: 0;
  display: flex;
  position: relative;
}
header .top-bar .top-bar-right .submenu #main-container:not(:last-child),
header .top-bar .top-bar-left .submenu #main-container:not(:last-child) {
  border-bottom: 1px solid #FFF;
}
header .top-bar .top-bar-right .submenu #main-container .section-title,
header .top-bar .top-bar-left .submenu #main-container .section-title {
  width: calc(100% / 6);
}
header .top-bar .top-bar-right .submenu #main-container > div:last-child::after,
header .top-bar .top-bar-left .submenu #main-container > div:last-child::after {
  display: none !important;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a {
  font-size: 14px;
  margin-bottom: 12px;
  padding: 0;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a .content-container,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a .content-container {
  display: flex;
  gap: 8px;
  align-items: center;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.mega_link_title,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.mega_link_title {
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.mega_link_title:hover, header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.mega_link_title.is-active,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.mega_link_title:hover,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.mega_link_title.is-active {
  color: #E0FF00;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.featured-button,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.featured-button {
  border-radius: 8px;
  border: 1px solid #686887;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 75%), rgba(255, 255, 255, 0.07);
  padding: 20px;
  margin-bottom: 20px !important;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a .icon-container,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a .icon-container {
  padding: 6px;
  border-radius: 2px;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 75%), rgba(255, 255, 255, 0.07);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a:last-child,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a:last-child {
  margin-bottom: 0;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.button,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.button {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a:hover .icon-container,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a:hover .icon-container {
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(248, 237, 63, 0.25) 0%, rgba(248, 237, 63, 0) 75%), rgba(248, 237, 63, 0.2);
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.has-icon:not(.section_title):hover::before,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_links a.has-icon:not(.section_title):hover::before {
  background-color: #3838F9 !important;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: max-content;
  max-width: 100%;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .mega_menu_links,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .mega_menu_links {
  flex: 0 0 254px;
  flex-flow: column nowrap;
  column-gap: 6px;
  width: 254px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link {
  flex: 0 0 452px;
  flex-flow: column nowrap;
  column-gap: 6px;
  padding-right: 0;
  width: 452px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link a,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  background: #00002E;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content {
  flex: 1 1 auto;
  min-width: 0;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content span.eyebrow,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content span.eyebrow {
  font-size: 10px;
  color: #A6A7FF;
  text-transform: uppercase;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content h6,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content h6 {
  margin-top: 5px;
  color: #FFF;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .media,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .media {
  flex: 0 0 163px;
  height: 102px;
  overflow: hidden;
  width: 163px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .media img,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .media img {
  height: 100%;
  object-fit: cover;
  width: 100% !important;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .svg-container,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .svg-container {
  display: flex;
  justify-content: end;
}
header .top-bar .top-bar-right .submenu #main-container .menu-title,
header .top-bar .top-bar-left .submenu #main-container .menu-title {
  padding: 0;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #A6A7FF;
}
header .top-bar .top-bar-right .submenu #main-container a.section_title,
header .top-bar .top-bar-right .submenu #main-container .section_title,
header .top-bar .top-bar-left .submenu #main-container a.section_title,
header .top-bar .top-bar-left .submenu #main-container .section_title {
  padding: 0;
  font-size: 26px;
  line-height: 115%;
  position: relative;
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right .submenu #main-container a.section_title svg,
header .top-bar .top-bar-right .submenu #main-container .section_title svg,
header .top-bar .top-bar-left .submenu #main-container a.section_title svg,
header .top-bar .top-bar-left .submenu #main-container .section_title svg {
  position: absolute;
  top: 9px;
  right: -31px;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right .submenu #main-container a.section_title svg path,
header .top-bar .top-bar-right .submenu #main-container .section_title svg path,
header .top-bar .top-bar-left .submenu #main-container a.section_title svg path,
header .top-bar .top-bar-left .submenu #main-container .section_title svg path {
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar #utility-nav {
  background-color: transparent !important;
  align-items: center;
  gap: 12px;
}
header .top-bar #utility-nav a {
  font-weight: 500;
  display: flex;
  font-size: 14px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
  color: #00002E;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar #utility-nav a:hover {
  background-position: 0% 50%;
}
header .top-bar #utility-nav li.secondary a,
header .top-bar #utility-nav .secondary a {
  color: #FFF;
  background: linear-gradient(90deg, #30305D 0%, #30305D 49%, #222246 50%, #222246 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
}
header .top-bar #utility-nav li.secondary a:hover,
header .top-bar #utility-nav .secondary a:hover {
  background-position: 0% 50%;
}
header .top-bar #utility-nav.jscram-auth .logged-in,
header .top-bar #utility-nav.jscram-auth .logged-out {
  align-items: center;
  gap: 12px;
}
header .top-bar #utility-nav.jscram-auth .logged-in:not([hidden]),
header .top-bar #utility-nav.jscram-auth .logged-out:not([hidden]) {
  display: flex;
}
header .top-bar #utility-nav.jscram-auth .logged-in p {
  color: #FFF;
  margin: 0;
}
header .top-bar #utility-nav.jscram-auth .username {
  color: #E0FF00;
}
header.promo-active .is-dropdown-submenu {
  top: 70px !important;
}
header.promo-active #hamburger {
  top: 18px !important;
}
@media (max-width: 768px) {
  header.promo-active #hamburger {
    top: 17px !important;
  }
  header.promo-active #mobile-menu.menu-active {
    top: 68px !important;
  }
}

@media only screen and (max-width: 1208px) {
  header {
    padding: 20px 40px 0;
  }

  header.header.topHeader.menu-active {
    background: #00002E;
  }

  header.header.menu-active {
    height: 95%;
    max-height: 100vh;
  }

  header.header .top-bar {
    justify-content: space-between;
    margin: 0 auto;
    padding: 0px 20px;
    height: 76px;
    position: relative;
  }
  header.header .top-bar .hide-for-mobile {
    display: none !important;
  }

  .top-bar .top-bar-left {
    flex: none;
    margin-right: 0;
  }

  .top-bar .top-bar-right {
    flex: none;
    margin-left: 0;
  }

  header.topHeader, header.fixedHeader {
    top: 0;
  }

  header.fixedHeader .top-bar {
    background: #fff;
    border: none;
    border-radius: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFF;
    z-index: 5;
    display: none;
  }
  #mobile-menu #offcanvas-nav {
    align-content: flex-start;
    width: 100%;
  }
  #mobile-menu #offcanvas-nav > li {
    border-bottom: 1px solid #434361;
  }
  #mobile-menu #offcanvas-nav > li > ul {
    padding: 0 20px;
  }
  #mobile-menu #offcanvas-nav > li > ul > li a {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.title a {
    font-family: "shnebuch";
    color: #FFF;
    font-size: 14px;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.title a span.menu-item-desc {
    color: #0002D1;
    font-size: 14px;
    display: inline;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.title a:hover {
    color: #E0FF00;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.has-arrow a {
    position: relative;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.has-arrow a span:first-child {
    position: relative;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.has-arrow a span:first-child::before {
    position: absolute;
    width: 14px;
    height: 15px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'%3E%3Cg clip-path='url(%23clip0_195_1237)'%3E%3Cpath d='M2 6.90016L12 6.90016M12 6.90016L6.92869 11.9355M12 6.90016L7.00004 1.93555' stroke='black' stroke-width='1.5' stroke-linecap='square'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_195_1237'%3E%3Crect width='14' height='14' fill='white' transform='translate(0 0.18457)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    right: -30px;
  }
  #mobile-menu #offcanvas-nav > li > ul > li:not(.title, .menu-header) a {
    font-family: "shnebuch";
    color: #00002E;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }
  #mobile-menu #offcanvas-nav > li > ul > li:not(.title, .menu-header) a:hover {
    color: #00013F;
  }
  #mobile-menu #offcanvas-nav > li > ul > li:not(.title, .menu-header) span.menu-item-desc {
    font-family: "shnebuch";
    color: #FFF;
    font-size: 14px;
    display: inline;
  }
  #mobile-menu #offcanvas-nav li a {
    font-size: 22px;
    font-weight: 500;
    line-height: 138%;
    padding: 20px 0;
  }
  #mobile-menu #offcanvas-nav li.active > a {
    background: transparent;
  }
  #mobile-menu #offcanvas-nav li ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  #mobile-menu #offcanvas-nav li li {
    border-bottom: none;
  }
  #mobile-menu #offcanvas-nav li li a {
    padding: 0;
  }
  #mobile-menu #offcanvas-nav li li.section-title:not(:first-child) {
    margin-top: 20px;
  }
  #mobile-menu #offcanvas-nav li li.section-title a {
    font-family: "Aeonik-SemiBold", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0.4px;
  }
  #mobile-menu #offcanvas-nav li li.has-icon {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-left: 30px;
    flex-flow: column;
  }
  #mobile-menu #offcanvas-nav li li.has-icon:before {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 2px;
    left: 0;
  }
  #mobile-menu #offcanvas-nav li li.sub-page a {
    padding: 6px 30px;
    color: #00002E;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item a .caption {
    color: #00002E;
    margin-top: 6px;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item.title a {
    color: #0002D1 !important;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item.title a:hover {
    color: #E0FF00 !important;
  }
  #mobile-menu #offcanvas-nav li:last-child {
    margin-left: 0;
  }
  #mobile-menu #offcanvas-nav.menu-active {
    display: flex;
    height: 90vh;
    flex-flow: row wrap;
    overflow-y: scroll;
  }
  #mobile-menu #offcanvas-nav li.nav-button {
    padding: 25px 25px 10px;
  }
  #mobile-menu #offcanvas-nav li.nav-button a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 100%;
    border-radius: 5px;
    color: #00002E;
    text-align: center;
    box-sizing: border-box;
    height: 48px;
    transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0;
  }
  #mobile-menu #offcanvas-nav li.nav-button::after {
    display: none !important;
  }
  #mobile-menu #offcanvas-nav li.utility a {
    font-size: 14px !important;
    line-height: 22px !important;
    padding: 6px 25px;
  }
  #mobile-menu #offcanvas-nav li.utility::after {
    display: none !important;
  }
  #mobile-menu #offcanvas-nav li:not(.is-submenu-item) a {
    font-size: 16px;
    line-height: 140%;
    color: #FFF;
  }
  #mobile-menu #offcanvas-nav li:not(.is-submenu-item) a:hover {
    color: #E0FF00;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item a {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
    /* 26.64px */
    letter-spacing: 0.36px;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu {
    padding: 13px 20px 20px;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu li a {
    border-bottom: none;
  }
  #mobile-menu #offcanvas-nav.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
    display: flex;
    width: 14px;
    height: 15px;
    border: none;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M13 4.5L7 10.5L1 4.5H13Z' fill='%23E0FF00'/%3E%3C/svg%3E");
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 0;
    align-items: center;
  }
  #mobile-menu #offcanvas-nav.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
    transform: rotate(180deg);
    transform-origin: center;
    margin-top: -10px;
  }
  #mobile-menu #offcanvas-nav .lower-menu {
    width: 100%;
    height: fit-content;
    margin-top: auto;
    margin-bottom: 40px;
    padding: 30px 0 0;
    border-top: 1px solid #AFABB3;
  }
  #mobile-menu #offcanvas-nav .lower-menu .Right {
    margin-right: auto;
  }
}
@media only screen and (max-width: 1208px) and (max-width: 768px) {
  #mobile-menu #offcanvas-nav .lower-menu .Right {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1208px) {
  #mobile-menu #offcanvas-nav .lower-menu .Right.menu-item, #mobile-menu #offcanvas-nav .lower-menu .button.menu-item {
    width: auto;
  }
}
@media only screen and (max-width: 1208px) {
  #mobile-menu #offcanvas-nav .lower-menu .button:not(.secondary) a {
    color: #fff;
  }
}
@media only screen and (max-width: 1208px) {
  #mobile-menu #offcanvas-nav .lower-menu .button.menu-item {
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
  #mobile-menu #offcanvas-nav .lower-menu .button.menu-item a {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 1208px) and (max-width: 768px) {
  #mobile-menu #offcanvas-nav .lower-menu .button.menu-item {
    padding: 0 10px;
    margin: 0 5px;
  }
}
@media only screen and (max-width: 1208px) and (max-width: 768px) {
  #mobile-menu #offcanvas-nav .lower-menu li a {
    padding: 20px;
  }
}
@media only screen and (max-width: 1208px) {
  #mobile-menu #offcanvas-nav .is-accordion-submenu .menu-item:not(.button) a {
    position: relative;
  }
  #mobile-menu #offcanvas-nav .is-accordion-submenu .menu-item:not(.button).is-accordion-submenu-item a:after {
    display: none;
  }
}
@media only screen and (max-width: 1208px) {
  #mobile-menu #mobile-utility {
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu #mobile-utility .social-icons {
    display: flex;
    gap: 8px;
  }
}
@media only screen and (max-width: 1208px) {
  #mobile-menu #utility-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 20px;
  }
  #mobile-menu #utility-nav li {
    width: auto;
  }
  #mobile-menu #utility-nav li:not(.button) a {
    color: #00002E;
    font-size: 16px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 1208px) {
  header.header .menu svg {
    max-width: 170px;
  }
  header.header .top-bar .top-bar-left .menu li a {
    padding: 14px 0;
  }
}
@media only screen and (max-width: 1208px) {
  header.header.fixedHeader #hamburger {
    top: 16px;
  }
}
#hamburger {
  display: none;
}

@media (max-width: 1208px) {
  .menu-overlay {
    display: none !important;
  }

  .top-bar-right {
    display: none !important;
  }

  #main-nav {
    display: none !important;
  }

  .top-bar ul {
    background-color: transparent !important;
  }

  #hamburger {
    height: 36px;
    width: 36px;
    position: absolute;
    cursor: pointer;
    top: 18px;
    right: 20px;
    cursor: pointer;
    display: block;
    background: #222246;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
  }
  #hamburger span {
    background-color: #FFF;
    height: 2px;
    width: 15px;
    display: block;
    position: absolute;
    left: 10px;
  }
  #hamburger span:first-child {
    top: 11px;
  }
  #hamburger span:nth-child(2) {
    top: 17px;
  }
  #hamburger span:nth-child(3) {
    top: 23px;
  }

  #mobile-menu.menu-active {
    display: flex !important;
    height: calc(100vh - 60px);
    flex-flow: column;
    gap: 60px;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: #00002E;
    z-index: 5;
    padding: 20px 0;
    overflow-y: auto;
    box-sizing: border-box;
  }
  #mobile-menu.menu-active .utility-nav #button-container {
    margin-top: 0;
    padding: 37px 0;
  }
  #mobile-menu.menu-active .utility-nav #button-container .text-link {
    color: #FFF;
  }
  #mobile-menu.menu-active .utility-nav .links {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
    border-top: 1px solid #434361;
    background: #1A2323;
  }
  #mobile-menu.menu-active .utility-nav .links span {
    color: #00002E;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1208px) {
  #hamburger span {
    transition: opacity 180ms ease, transform 180ms ease, top 180ms ease;
    transform-origin: center;
  }
  #hamburger.menu-active span:first-child {
    top: 17px;
    transform: rotate(45deg);
  }
  #hamburger.menu-active span:nth-child(2) {
    opacity: 0;
  }
  #hamburger.menu-active span:nth-child(3) {
    top: 17px;
    transform: rotate(-45deg);
  }

  #mobile-menu.menu-active {
    top: 92px;
    left: 50%;
    width: 100vw;
    height: calc(100vh - 92px);
    padding: 20px 0 40px;
    gap: 50px;
    transform: translateX(-50%);
    background: #00002E;
  }

  #mobile-menu #offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    background: #00002E;
  }
  #mobile-menu #offcanvas-nav > li {
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
    border: 0;
    border-bottom: 1px solid #434361;
  }
  #mobile-menu #offcanvas-nav > li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  #mobile-menu #offcanvas-nav > li > a {
    font-family: "pangearegular", sans-serif;
    display: block;
    position: relative;
    padding: 0 26px 0 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: none;
  }
  #mobile-menu #offcanvas-nav > li > a:hover {
    color: #E0FF00;
  }
  #mobile-menu #offcanvas-nav > li[aria-expanded=true] > a {
    color: #DDFE55;
  }
  #mobile-menu #offcanvas-nav.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: 0;
    width: 12px;
    height: 6px;
    margin: 0;
    border: 0;
    background: center/12px 6px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6' fill='none'%3E%3Cpath d='M12 0L6 6L0 0H12Z' fill='%23E0FF00'/%3E%3C/svg%3E");
    transform: none;
    transform-origin: center;
    transition: transform 180ms ease;
  }
  #mobile-menu #offcanvas-nav.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
    margin: 0;
    transform: rotate(180deg);
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu {
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 20px 20px 10px;
    background: #00002E;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu > li {
    width: 100%;
    margin: 0 0 6px;
    padding: 0;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu > li > a {
    font-family: "pangearegular", sans-serif;
    display: block;
    padding: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: none;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu > li > a:hover {
    color: #E0FF00;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu > li.title {
    margin-top: 18px;
    margin-bottom: 12px;
    pointer-events: none;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu > li.title:first-child {
    margin-top: 0;
  }
  #mobile-menu #offcanvas-nav .menu.submenu.is-accordion-submenu > li.title > a {
    font-family: "pangeamedium", sans-serif;
    color: #A6A7FF !important;
    font-size: 10px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  #mobile-menu #mobile-utility {
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
  }
  #mobile-menu #mobile-utility #utility-nav {
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 0;
  }
  #mobile-menu #mobile-utility #utility-nav li {
    margin: 0;
  }
  #mobile-menu #mobile-utility #utility-nav li a {
    font-family: "Space Grotesk", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: #E0FF00;
    color: #00002E;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.28px;
  }
}
#promotion-bar {
  height: 34px;
  width: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#promotion-bar a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #FFF;
  text-underline-offset: 2px;
}
#promotion-bar a:hover {
  text-decoration: underline;
}
#promotion-bar a svg {
  margin-left: 8px;
}

/********************* SECTIONS *********************/
@media screen and (min-width: 1024px) {
  .hide-for-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .hide-for-tablet {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hide-for-mobile {
    display: none !important;
  }

  .show-for-mobile {
    display: block !important;
  }
  .show-for-mobile#button-container {
    display: flex !important;
  }
}
.padding-0 {
  padding: 0;
}

html {
  scroll-padding-top: 120px;
}

.off-canvas-wrapper {
  overflow: visible;
}

.off-canvas-content {
  overflow: visible;
  overflow-x: clip;
}

section {
  padding: 100px 0;
  background-color: #FFF;
  z-index: 21;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
section.in-scroll-grid {
  z-index: 19;
}
section.gap-small {
  gap: 20px;
}
section.gap-medium {
  gap: 40px;
}
section.gap-large {
  gap: 80px;
}
section.gap-xlarge {
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 90px 0;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}
section.padding-top-0 {
  padding-top: 0;
}
section.padding-top-80 {
  padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  section.padding-top-80 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  section.padding-top-80 {
    padding-top: 40px;
  }
}
section.padding-top-50 {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  section.padding-top-50 {
    padding-top: 35px;
  }
}
section.padding-top-25 {
  padding-top: 25px;
}
section.padding-top-150 {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  section.padding-top-150 {
    padding-top: 110px;
  }
}
section.padding-bottom-0 {
  padding-bottom: 0;
}
section.padding-bottom-80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  section.padding-bottom-80 {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  section.padding-bottom-80 {
    padding-bottom: 40px;
  }
}
section.padding-bottom-50 {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section.padding-bottom-50 {
    padding-bottom: 35px;
  }
}
section.padding-bottom-150 {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  section.padding-bottom-150 {
    padding-bottom: 110px;
  }
}
section#hero {
  overflow: hidden;
  position: relative;
  padding-top: 175px;
}
section#hero.light {
  background-color: #FFF;
}
section#hero.gray {
  background-color: #FAFAFF;
}
section#hero.space {
  background-color: #00002E;
}
section#hero.blue {
  background-color: #00013F;
}
section#hero.space #heading-container h1,
section#hero.space #heading-container .lead p,
section#hero.space #heading-container .body-s p, section#hero.blue #heading-container h1,
section#hero.blue #heading-container .lead p,
section#hero.blue #heading-container .body-s p {
  color: #FFF;
}
section#hero.space #heading-container .lead p,
section#hero.space #heading-container .body-s p, section#hero.blue #heading-container .lead p,
section#hero.blue #heading-container .body-s p {
  color: #CFD6EC;
}
section#hero.layout-full-width {
  display: flex;
  align-items: flex-end;
  min-height: 862px;
  padding: 175px 0 100px;
}
section#hero.layout-full-width > .grid {
  position: relative;
  z-index: 3;
  align-items: end;
}
section#hero.layout-full-width .hero-copy {
  grid-column: auto/span 7;
  max-width: 738px;
}
section#hero.layout-full-width #heading-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#hero.layout-full-width #heading-container .content-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section#hero.layout-full-width .hero-full-media {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: 850px;
  background: #F6F9FF;
  overflow: hidden;
}
section#hero.layout-full-width .hero-full-media img,
section#hero.layout-full-width .hero-full-media iframe,
section#hero.layout-full-width .hero-full-media video,
section#hero.layout-full-width .hero-full-media .hero-full-embed,
section#hero.layout-full-width .hero-full-media .hero-full-lottie,
section#hero.layout-full-width .hero-full-media .animation,
section#hero.layout-full-width .hero-full-media svg {
  width: 100%;
  height: 100%;
}
section#hero.layout-full-width .hero-full-media img,
section#hero.layout-full-width .hero-full-media video {
  object-fit: cover;
  object-position: center top;
}
section#hero.layout-full-width .hero-full-media iframe {
  display: block;
  border: 0;
}
section#hero.layout-full-width .hero-full-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 381px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 61.5%);
}
section#hero.layout-full-width.gray .hero-full-media {
  background: #F6F9FF;
}
section#hero.layout-full-width.gray .hero-full-fade {
  background: linear-gradient(180deg, rgba(246, 249, 255, 0) 0%, #F6F9FF 61.5%);
}
section#hero.layout-full-width.space .hero-full-media {
  background: #00002E;
}
section#hero.layout-full-width.space .hero-full-fade {
  background: linear-gradient(180deg, rgba(0, 0, 46, 0) 0%, #00002E 61.5%);
}
section#hero.layout-full-width.blue .hero-full-media {
  background: #00013F;
}
section#hero.layout-full-width.blue .hero-full-fade {
  background: linear-gradient(180deg, rgba(0, 1, 63, 0) 0%, #00013F 61.5%);
}
section#hero.layout-fifty-fifty .grid {
  align-items: center;
}
section#hero.layout-fifty-fifty .hero-inline-content {
  margin-top: 40px;
}
section#hero.layout-fifty-fifty .media-container {
  align-self: center;
}
section#hero.layout-simple #heading-container {
  align-items: center;
}
section#hero.layout-simple #heading-container .content-container {
  align-items: center;
}
section#hero.layout-simple .media-container {
  margin-top: 20px;
}
section#hero #media-container #image-container {
  border-radius: 4px;
  overflow: hidden;
}
section#hero .content-container {
  position: relative;
  z-index: 2;
}
section#hero .media-container {
  position: relative;
  z-index: 1;
}
section#hero .hero-background-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
section#hero .hero-background-media img,
section#hero .hero-background-media iframe,
section#hero .hero-background-media video,
section#hero .hero-background-media .hero-background-embed,
section#hero .hero-background-media .hero-background-lottie,
section#hero .hero-background-media .animation,
section#hero .hero-background-media svg {
  width: 100%;
  position: absolute;
  bottom: 0;
}
section#hero .hero-background-media img,
section#hero .hero-background-media video {
  display: block;
  object-fit: cover;
  object-position: center center;
}
section#hero .hero-background-media iframe {
  display: block;
  border: 0;
}
section#hero.layout-simple > .grid, section#hero.layout-fifty-fifty > .grid {
  position: relative;
  z-index: 2;
}
section#hero.layout-simple:has(.hero-background-media), section#hero.layout-fifty-fifty:has(.hero-background-media) {
  isolation: isolate;
}
section#hero.layout-simple.hero-layered-media {
  min-height: 0;
}
section#hero.layout-simple.hero-layered-media > .grid {
  position: static;
}
section#hero.layout-simple.hero-layered-media.heading-left #heading-container,
section#hero.layout-simple.hero-layered-media.heading-left #heading-container .content-container {
  align-items: flex-start;
}
section#hero.layout-simple.hero-layered-media .media-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin-top: 0;
  pointer-events: none;
}
section#hero.layout-simple.hero-layered-media .media-container,
section#hero.layout-simple.hero-layered-media #media-container,
section#hero.layout-simple.hero-layered-media #image-container,
section#hero.layout-simple.hero-layered-media #video-container,
section#hero.layout-simple.hero-layered-media #animation-container,
section#hero.layout-simple.hero-layered-media .animation,
section#hero.layout-simple.hero-layered-media img,
section#hero.layout-simple.hero-layered-media video,
section#hero.layout-simple.hero-layered-media iframe,
section#hero.layout-simple.hero-layered-media svg {
  width: 100%;
  height: 100%;
}
section#hero.layout-simple.hero-layered-media #image-container {
  border-radius: 0;
}
section#hero.layout-simple.hero-layered-media img,
section#hero.layout-simple.hero-layered-media video {
  display: block;
  object-fit: cover;
  object-position: center center;
}
section#hero .background-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
section#hero .background-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
section#hero .background-image svg {
  height: 100%;
}
section#hero .background-image-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
section#hero .bottom-right-img {
  position: absolute;
  bottom: 0;
  right: 0;
}
section#hero #date-container {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}
section#hero #date-container #date, section#hero #date-container #time {
  display: flex;
  gap: 14px;
  align-items: center;
}
section#hero #presenters .eyebrow {
  margin-bottom: 20px;
}
section#hero #presenters #presenter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
section#hero #presenters #presenter-container #presenter {
  display: flex;
  gap: 20px;
}
section#hero #presenters #presenter-container #presenter img {
  height: 51px;
}
section#hero #presenters #presenter-container #presenter p {
  margin-bottom: 0;
}
section#hero #presenters #presenter-container #presenter p.body-s {
  color: #FFF;
}
section#hero #presenters #presenter-container #presenter p.caption {
  color: #FFF;
}
section#hero .full-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
section#hero .byline span {
  display: inline-block;
  height: 18px;
  width: 1px;
  margin: 0 14px;
  background: #00013F;
  position: relative;
  top: 2px;
}
section#hero .full-screen-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section#hero .full-screen-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: top right;
}
section#hero .full-screen-container video {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: top right;
}
section#hero .hero-inline-content {
  position: relative;
  z-index: 2;
}
section#hero .hero-inline-content img {
  display: block;
  max-width: 100%;
  height: auto;
}
section#hero.blog-search h1 {
  padding-bottom: 50px;
}
section#hero #author-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
section#hero #author-social span {
  margin-bottom: 0;
}
section#hero .grid {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  section#hero.layout-full-width {
    min-height: 720px;
    padding: 140px 0 70px;
  }
  section#hero.layout-full-width .hero-copy {
    grid-column: auto/span 8;
  }
  section#hero.layout-full-width #heading-container h1 {
    font-size: 50px;
  }
  section#hero.layout-full-width .hero-full-media {
    height: 680px;
  }
  section#hero .background-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section#hero.layout-full-width {
    min-height: 650px;
    padding: 120px 0 50px;
  }
  section#hero.layout-full-width .hero-copy {
    grid-column: auto/span 4;
  }
  section#hero.layout-full-width #heading-container h1 {
    font-size: 42px;
  }
  section#hero.layout-full-width .hero-full-media {
    height: 610px;
  }
  section#hero.layout-full-width .hero-full-fade {
    height: 330px;
  }
  section#hero.layout-fifty-fifty .media-container {
    margin-top: 40px;
  }
  section#hero .full-screen-container img {
    height: auto !important;
  }
  section#hero .full-screen-container video {
    height: auto !important;
  }
  section#hero.news .background-image {
    display: none;
  }
}
section#hero.padding-top-0 {
  padding-top: 0;
}
section#hero.padding-top-50 {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  section#hero.padding-top-50 {
    padding-top: 35px;
  }
}
section#hero.padding-bottom-0 {
  padding-bottom: 0;
}
section#hero.padding-bottom-50 {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section#hero.padding-bottom-50 {
    padding-bottom: 35px;
  }
}
section#hero #heading-container .content-container {
  gap: 24px;
}
section#copy-image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
section#copy-image .copy-image-background {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
section#copy-image .copy-image-background .module-background-image {
  display: block;
  left: 50%;
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 100%;
}
section#copy-image > .grid {
  position: relative;
  z-index: 2;
}
section#copy-image.full .image-container {
  margin-top: 75px;
}
section#copy-image.half .half.content, section#copy-image.half .half.image-container {
  align-self: center;
}
section#copy-image .grid {
  align-items: center;
}
section#copy-image > .grid.image-first .five.content {
  grid-column-start: 8;
}
@media screen and (max-width: 1024px) {
  section#copy-image > .grid.image-first .five.content {
    grid-column: auto/span 8;
    grid-row-start: auto;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image > .grid.image-first .five.content {
    grid-column: auto/span 4;
  }
}
section#copy-image > .grid.image-first > .half.media-container {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media screen and (max-width: 1024px) {
  section#copy-image > .grid.image-first > .half.media-container {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image > .grid.image-first > .half.media-container {
    grid-column: auto/span 4;
  }
}
section#copy-image > .grid.content-first > .half.media-container {
  grid-column-start: 7;
  grid-row-start: 1;
}
@media screen and (max-width: 1024px) {
  section#copy-image > .grid.content-first > .half.media-container {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image > .grid.content-first > .half.media-container {
    grid-column: auto/span 4;
  }
}
section#copy-image > .grid .bottom-content-container, section#copy-image > .grid .stacked-columns-container {
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  section#copy-image > .grid .bottom-content-container, section#copy-image > .grid .stacked-columns-container {
    margin-top: 50px;
  }
}
section#copy-image > .grid .stacked-columns-container .icon-container {
  margin-bottom: 15px;
  max-width: 30px;
}
@media screen and (max-width: 1024px) {
  section#copy-image > .grid .stacked-columns-container .column {
    margin-bottom: 40px;
  }
}
section#copy-image #form-container {
  position: relative;
  background: #00002E;
  border: 1px solid #00013F;
  padding: 30px;
}
section#copy-image #form-container h4 {
  color: #FFF;
  margin-bottom: 30px;
}
section#copy-image #form-container form {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#copy-image #form-container form .mktoFormRow {
  width: 100% !important;
}
section#copy-image #form-container form .mktoFormRow * {
  width: 100% !important;
}
section#copy-image #form-container form .mktoFieldWrap {
  float: none !important;
  display: flex;
  flex-direction: column;
}
section#copy-image #form-container form .mktoGutter,
section#copy-image #form-container form .mktoClear,
section#copy-image #form-container form .mktoErrorArrowWrap,
section#copy-image #form-container form .mktoOffset {
  display: none !important;
}
section#copy-image #form-container form .mktoAsterix {
  font-size: 18px;
  color: #00013F;
  line-height: 50%;
}
section#copy-image #form-container form .mktoError {
  left: 0;
}
section#copy-image #form-container form fieldset {
  max-width: none;
}
section#copy-image #form-container form label {
  color: #FFF;
  font-size: 12px;
  line-height: 150%;
  margin-bottom: 6px;
}
section#copy-image #form-container form input[type=email],
section#copy-image #form-container form input[type=text],
section#copy-image #form-container form input[type=tel],
section#copy-image #form-container form select {
  display: flex;
  height: 42px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00013F;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  box-shadow: none;
  width: 100%;
  margin-bottom: 0;
}
section#copy-image #form-container form input[type=email]::placeholder,
section#copy-image #form-container form input[type=text]::placeholder,
section#copy-image #form-container form input[type=tel]::placeholder,
section#copy-image #form-container form select::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  opacity: 0.5;
}
section#copy-image #form-container form .hs-dependent-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#copy-image #form-container form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M13 4.5L7 10.5L1 4.5H13Z' fill='%23FEFDFB'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  /* move arrow */
  background-size: 14px 14px;
}
section#copy-image #form-container form input[type=checkbox] {
  width: auto !important;
}
section#copy-image #form-container form textarea {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00013F;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  width: 100%;
}
section#copy-image #form-container form textarea::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  opacity: 0.5;
}
section#copy-image #form-container form label#LblprivacyPolicyAgreement,
section#copy-image #form-container form label#LblconsenttoProcessing,
section#copy-image #form-container form .mktoFieldWrap,
section#copy-image #form-container form .mktoCaptchaDisclaimer {
  font-size: 16px;
  line-height: 150%;
  color: #00002E;
  font-weight: 400 !important;
}
section#copy-image #form-container form label#LblprivacyPolicyAgreement a,
section#copy-image #form-container form label#LblconsenttoProcessing a,
section#copy-image #form-container form .mktoFieldWrap a,
section#copy-image #form-container form .mktoCaptchaDisclaimer a {
  font-size: 16px;
  line-height: 150%;
  color: #00002E;
  font-weight: 400 !important;
  text-decoration: underline !important;
}
section#copy-image #form-container form label#LblprivacyPolicyAgreement,
section#copy-image #form-container form label#LblconsenttoProcessing {
  order: 1;
}
section#copy-image #form-container button {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 18px 22px;
  font-style: normal;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 2px;
  color: #00002E;
  text-align: center;
  box-sizing: border-box;
  height: 56px;
  margin: 0;
  cursor: pointer;
  transition: 0.3s background-position cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
section#copy-image #form-container button:hover {
  background-position: 0;
}
section#copy-image ul {
  margin-left: 0;
}
section#copy-image ul > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  list-style-type: none;
  text-indent: 0px;
}
section#copy-image ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M1.6665 4.58256L5.13317 8.1776L12.3332 0.710938' stroke='%23A80C74' stroke-width='2'/%3E%3C/svg%3E");
  left: -4px;
  position: absolute;
  top: 5px;
  display: block;
}
section#copy-image .image-container img {
  border-radius: 16px;
}
section#copy-image.image-active.full-column .content {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  section#copy-image.image-active.full-column .content {
    margin-bottom: 60px;
  }
}
section#copy-image #inline-image {
  margin-top: 40px;
}
section#logos {
  position: relative;
  overflow: hidden;
}
section#logos.logos-slider {
  background: #00002E;
  gap: 40px;
  padding-left: 0;
  padding-right: 0;
}
section#logos.logos-slider .logos-slider-heading {
  margin: 0 auto;
  max-width: 1280px;
  text-align: center;
  width: calc(100% - 160px);
}
section#logos.logos-slider .logos-slider-heading #heading-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#logos.logos-slider .logos-slider-heading #heading-container .content-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#logos.logos-slider .logos-slider-heading #heading-container .eyebrow,
section#logos.logos-slider .logos-slider-heading #heading-container h1,
section#logos.logos-slider .logos-slider-heading #heading-container h2,
section#logos.logos-slider .logos-slider-heading #heading-container h3,
section#logos.logos-slider .logos-slider-heading #heading-container h4,
section#logos.logos-slider .logos-slider-heading #heading-container h5,
section#logos.logos-slider .logos-slider-heading #heading-container h6,
section#logos.logos-slider .logos-slider-heading #heading-container .lead,
section#logos.logos-slider .logos-slider-heading #heading-container .body-l,
section#logos.logos-slider .logos-slider-heading #heading-container .body-s {
  margin-bottom: 0;
}
section#logos.logos-slider .logos-slider-heading #heading-container h1,
section#logos.logos-slider .logos-slider-heading #heading-container h2,
section#logos.logos-slider .logos-slider-heading #heading-container h3,
section#logos.logos-slider .logos-slider-heading #heading-container h4,
section#logos.logos-slider .logos-slider-heading #heading-container h5,
section#logos.logos-slider .logos-slider-heading #heading-container h6 {
  font-size: 18px;
  line-height: 1.2;
}
section#logos.logos-slider .logos-slider-heading #heading-container h1,
section#logos.logos-slider .logos-slider-heading #heading-container h2,
section#logos.logos-slider .logos-slider-heading #heading-container h3,
section#logos.logos-slider .logos-slider-heading #heading-container h4,
section#logos.logos-slider .logos-slider-heading #heading-container h5,
section#logos.logos-slider .logos-slider-heading #heading-container h6,
section#logos.logos-slider .logos-slider-heading #heading-container .lead,
section#logos.logos-slider .logos-slider-heading #heading-container .body-l,
section#logos.logos-slider .logos-slider-heading #heading-container .body-s,
section#logos.logos-slider .logos-slider-heading #heading-container p {
  color: #FFF;
}
section#logos.logos-slider .logos-slider-heading #heading-container #button-container {
  justify-content: center;
}
section#logos.logos-slider .logos-slider-window {
  overflow: hidden;
  width: 100%;
}
section#logos.logos-slider .logos-slider-window:hover .logos-slider-track {
  animation-play-state: paused;
}
section#logos.logos-slider .logos-slider-track {
  animation: logoScrollLeft 112s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}
section#logos.logos-slider .logo-slider-card {
  align-items: center;
  background: #00002E;
  border: 1px solid #000191;
  display: flex;
  flex: 0 0 250px;
  height: 150px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 250px;
}
section#logos.logos-slider .logo-slider-card img {
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
section#logos.logos-slider .logo-slider-card::before {
  background: radial-gradient(circle, rgba(0, 2, 209, 0.9) 0%, rgba(0, 2, 209, 0.7) 28%, rgba(0, 2, 209, 0) 68%);
  border-radius: 100%;
  content: "";
  height: 184px;
  opacity: 0;
  position: absolute;
  right: -70px;
  top: 58px;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  width: 184px;
}
section#logos.logos-slider .logo-slider-card:hover::before,
section#logos.logos-slider .logo-slider-card:hover .logo-slider-hover-text, section#logos.logos-slider .logo-slider-card:focus-visible::before,
section#logos.logos-slider .logo-slider-card:focus-visible .logo-slider-hover-text {
  opacity: 1;
}
section#logos.logos-slider .logo-slider-card:focus-visible {
  outline: 2px solid #E0FF00 !important;
  outline-offset: -4px !important;
}
section#logos.logos-slider .logo-slider-hover-text {
  bottom: 26px;
  color: #E0FF00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  line-height: 140%;
  opacity: 0;
  position: absolute;
  right: 24px;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}
section#logos.logos-columns.light {
  background: #FFF;
}
section#logos.logos-columns.gray {
  background: #FAFAFF;
}
section#logos.logos-columns.space {
  background: #00002E;
}
section#logos.logos-columns.blue {
  background: #00013F;
}
section#logos.logos-columns .logos-columns-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  max-width: 1280px;
  width: calc(100% - 160px);
}
section#logos.logos-columns .logos-columns-heading {
  max-width: 846px;
  width: 100%;
}
section#logos.logos-columns .logos-columns-heading #heading-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#logos.logos-columns .logos-columns-heading #heading-container .content-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#logos.logos-columns .logos-columns-heading #heading-container .eyebrow,
section#logos.logos-columns .logos-columns-heading #heading-container h1,
section#logos.logos-columns .logos-columns-heading #heading-container h2,
section#logos.logos-columns .logos-columns-heading #heading-container h3,
section#logos.logos-columns .logos-columns-heading #heading-container h4,
section#logos.logos-columns .logos-columns-heading #heading-container h5,
section#logos.logos-columns .logos-columns-heading #heading-container h6,
section#logos.logos-columns .logos-columns-heading #heading-container .lead,
section#logos.logos-columns .logos-columns-heading #heading-container .body-l,
section#logos.logos-columns .logos-columns-heading #heading-container .body-s {
  margin-bottom: 0;
}
section#logos.logos-columns .logos-columns-heading #heading-container #button-container {
  justify-content: center;
}
section#logos.logos-columns .logos-columns-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
}
section#logos.logos-columns .logos-column-card {
  align-items: center;
  display: flex;
  grid-column: span 2;
  justify-content: center;
  overflow: hidden;
}
section#logos.logos-columns .logos-column-card img {
  display: block;
  object-fit: contain;
}
section#logos.logos-columns.logo-count-3 .logos-columns-inner {
  gap: 0;
}
section#logos.logos-columns.logo-count-3 .logos-columns-grid {
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 197px));
  justify-content: center;
}
section#logos.logos-columns.logo-count-3 .logos-column-card {
  grid-column: span 1;
}
section#logos.logos-columns.logo-count-3 .logos-column-card img {
  max-width: 197px;
  width: 100%;
}
section#logos.logos-columns.logo-count-12 .logos-columns-grid {
  row-gap: 60px;
}
section#logos.logos-columns.logo-count-12 .logos-column-card img {
  max-width: 197px;
  width: 100%;
}
section#logos.logos-columns.space .logos-columns-heading .eyebrow, section#logos.logos-columns.blue .logos-columns-heading .eyebrow {
  color: #A6A7FF;
}
section#logos.logos-columns.space .logos-columns-heading h1,
section#logos.logos-columns.space .logos-columns-heading h2,
section#logos.logos-columns.space .logos-columns-heading h3,
section#logos.logos-columns.space .logos-columns-heading h4,
section#logos.logos-columns.space .logos-columns-heading h5,
section#logos.logos-columns.space .logos-columns-heading h6, section#logos.logos-columns.blue .logos-columns-heading h1,
section#logos.logos-columns.blue .logos-columns-heading h2,
section#logos.logos-columns.blue .logos-columns-heading h3,
section#logos.logos-columns.blue .logos-columns-heading h4,
section#logos.logos-columns.blue .logos-columns-heading h5,
section#logos.logos-columns.blue .logos-columns-heading h6 {
  color: #FFF;
}
section#logos.logos-columns.space .logos-columns-heading .lead,
section#logos.logos-columns.space .logos-columns-heading .body-l,
section#logos.logos-columns.space .logos-columns-heading .body-s,
section#logos.logos-columns.space .logos-columns-heading p, section#logos.logos-columns.blue .logos-columns-heading .lead,
section#logos.logos-columns.blue .logos-columns-heading .body-l,
section#logos.logos-columns.blue .logos-columns-heading .body-s,
section#logos.logos-columns.blue .logos-columns-heading p {
  color: #CFD6EC;
}
section#logos.logos-columns.space .logos-columns-heading #button.secondary, section#logos.logos-columns.blue .logos-columns-heading #button.secondary {
  background-color: #222246;
  color: #FFF;
}
section#logos.logos-columns.space .logos-column-card img, section#logos.logos-columns.blue .logos-column-card img {
  opacity: 0.85;
}
@media screen and (max-width: 1024px) {
  section#logos.logos-slider .logos-slider-heading {
    width: calc(100% - 80px);
  }
  section#logos.logos-columns .logos-columns-inner {
    width: calc(100% - 80px);
  }
  section#logos.logos-columns .logos-columns-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  section#logos.logos-columns .logos-column-card {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  section#logos.logos-slider .logos-slider-heading {
    width: calc(100% - 40px);
  }
  section#logos.logos-slider .logo-slider-card {
    flex-basis: 210px;
    height: 126px;
    width: 210px;
  }
  section#logos.logos-columns .logos-columns-inner {
    gap: 40px;
    width: calc(100% - 40px);
  }
  section#logos.logos-columns .logos-columns-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  section#logos.logos-columns .logos-column-card {
    grid-column: span 2;
  }
  section#logos.logos-columns.logo-count-3 .logos-columns-grid {
    grid-template-columns: 1fr;
  }
  section#logos.logos-columns.logo-count-3 .logos-column-card {
    grid-column: span 1;
  }
}
@keyframes logoScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
section#resources .title-container {
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  section#resources .title-container {
    margin-bottom: 60px;
  }
}
section#columns .column h2,
section#columns .column h3,
section#columns .column h4,
section#columns .column h5,
section#columns .column h6 {
  color: #0002D1;
}
section#columns .column .body-m,
section#columns .column .body-m p,
section#columns .column .body-s,
section#columns .column .body-s p,
section#columns .column li {
  color: #434361;
}
section#columns .column ul {
  margin-left: 0;
}
section#columns .column ul > li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  list-style-type: none;
  text-indent: 0;
}
section#columns .column ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='24' viewBox='0 0 3 24' fill='none'%3E%3Ccircle cx='1.5' cy='12' r='1.5' fill='%236264FF'/%3E%3C/svg%3E");
  left: 0px;
  position: absolute;
  top: 1px;
  display: block;
}
section#columns .column .icon-container {
  margin-bottom: 16px;
  max-width: 70px;
}
section#columns .column .image-container {
  margin-bottom: 24px;
}
section#columns .column.boxed .content-container {
  border-radius: 12px;
  border: 1px solid #CFD6EC;
  background: #F6F9FF;
  height: 100%;
  padding: 30px;
}
section#columns .column.boxed .content-container h5 {
  color: #0002D1;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
section#columns .column.boxed .content-container .body-m,
section#columns .column.boxed .content-container .body-m p,
section#columns .column.boxed .content-container .body-s,
section#columns .column.boxed .content-container .body-s p,
section#columns .column.boxed .content-container li {
  font-size: 16px;
  line-height: 140%;
}
section#columns .column .content-container {
  display: flex;
  flex-direction: column;
}
section#columns .column .content-container h2, section#columns .column .content-container h3, section#columns .column .content-container h4, section#columns .column .content-container h5, section#columns .column .content-container h6, section#columns .column .content-container p {
  margin-bottom: 10px;
}
section#columns .column .content-container #button-container {
  margin-top: 20px;
}
section#columns.explore #heading-container {
  margin-bottom: 75px;
}
section#columns .boxed-column-container {
  border: 1px solid #00013F;
  background: #00002E;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
}
section#columns .boxed-column-container .column {
  padding: 30px;
  flex-basis: 100%;
  border-left: 1px solid #00013F;
}
section#columns .boxed-column-container .column:first-child {
  border-left: none;
}
section#columns .boxed-column-container .corner-piece {
  top: -2px;
  right: -2px;
}
section#columns .flex-column-container {
  display: flex;
  gap: 20px;
}
section#columns .flex-column-container .column {
  flex-basis: 100%;
}
section#columns.columns-slider {
  overflow: visible;
}
section#columns.columns-slider .top-content {
  margin-bottom: 60px;
}
section#columns.columns-slider .title-container #heading-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#columns.columns-slider .title-container #heading-container .content-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#columns.columns-slider .title-container #heading-container .eyebrow,
section#columns.columns-slider .title-container #heading-container h1,
section#columns.columns-slider .title-container #heading-container h2,
section#columns.columns-slider .title-container #heading-container h3,
section#columns.columns-slider .title-container #heading-container h4,
section#columns.columns-slider .title-container #heading-container h5,
section#columns.columns-slider .title-container #heading-container h6,
section#columns.columns-slider .title-container #heading-container .lead,
section#columns.columns-slider .title-container #heading-container .body-l,
section#columns.columns-slider .title-container #heading-container .body-s {
  margin-bottom: 0;
}
section#columns.columns-slider .title-container #heading-container .eyebrow {
  color: #0002D1;
}
section#columns.columns-slider .title-container #heading-container #button-container {
  justify-content: center;
  margin-top: 0;
}
section#columns.columns-slider .columns-slider-outer {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  overflow: visible;
  position: relative;
  transform: none;
  width: calc(100% - 160px);
}
section#columns.columns-slider .columns-slider-track {
  padding-left: 0;
}
section#columns.columns-slider .columns-slider-track .slick-list {
  height: auto !important;
  overflow-x: hidden;
  overflow-y: visible;
}
section#columns.columns-slider .columns-slider-track .slick-track {
  display: flex;
  height: auto !important;
  align-items: flex-start;
}
section#columns.columns-slider .columns-slider-track .slick-slide {
  background: transparent !important;
  height: auto !important;
}
section#columns.columns-slider .columns-slider-track .slick-slide > div {
  background: transparent !important;
  height: auto !important;
}
section#columns.columns-slider .columns-slider-controls {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  pointer-events: auto;
  position: relative;
  z-index: 5;
}
section#columns.columns-slider .columns-slider-controls .slick-dots {
  align-items: center;
  bottom: auto !important;
  display: flex;
  gap: 16px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: static !important;
}
section#columns.columns-slider .columns-slider-controls .slick-dots li {
  height: 10px;
  margin: 0;
  padding: 0;
  width: 10px;
}
section#columns.columns-slider .columns-slider-controls .slick-dots li::before {
  display: none;
}
section#columns.columns-slider .columns-slider-controls .slick-dots li button {
  background: #A6A7FF;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 10px;
  line-height: 0;
  margin: 0;
  padding: 0;
  position: relative;
  transition: width 0.25s cubic-bezier(0.25, 1, 0.5, 1), background 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 10px;
  z-index: 2;
}
section#columns.columns-slider .columns-slider-controls .slick-dots li button::before {
  display: none;
}
section#columns.columns-slider .columns-slider-controls .slick-dots li.slick-active {
  width: 42px;
}
section#columns.columns-slider .columns-slider-controls .slick-dots li.slick-active button {
  background: #0002D1;
  width: 42px;
}
section#columns.columns-slider .column.slider {
  background: transparent !important;
  flex: 0 0 413px;
  margin-right: 20px;
  width: 413px !important;
}
section#columns.columns-slider .column.slider .image-container {
  align-items: center;
  aspect-ratio: 630/320;
  background: #dfdfdf;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  width: 100%;
}
section#columns.columns-slider .column.slider .image-container img {
  border-radius: 0;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
section#columns.columns-slider .column.slider .content-container {
  background: transparent !important;
  border: 0 !important;
  padding-right: 30px;
}
section#columns.columns-slider .column.slider .content-container h5 {
  color: #0002D1;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
section#columns.columns-slider .column.slider .content-container .body-m,
section#columns.columns-slider .column.slider .content-container .body-m p,
section#columns.columns-slider .column.slider .content-container .body-s,
section#columns.columns-slider .column.slider .content-container .body-s p,
section#columns.columns-slider .column.slider .content-container li {
  font-size: 16px;
  line-height: 140%;
  color: #434361;
}
section#columns.columns-slider .column.slider .content-container .body-m,
section#columns.columns-slider .column.slider .content-container .body-s {
  margin-bottom: 0;
}
section#columns.columns-slider .column.slider .content-container #button-container {
  margin-top: 20px;
}
section#columns.columns-slider .column.slider .content-container #text-button {
  color: #0002D1;
}
section#columns.columns-slider.space .title-container #heading-container .eyebrow, section#columns.columns-slider.blue .title-container #heading-container .eyebrow {
  color: #A6A7FF;
}
section#columns.columns-slider.space .title-container #heading-container h1,
section#columns.columns-slider.space .title-container #heading-container h2,
section#columns.columns-slider.space .title-container #heading-container h3,
section#columns.columns-slider.space .title-container #heading-container h4,
section#columns.columns-slider.space .title-container #heading-container h5,
section#columns.columns-slider.space .title-container #heading-container h6, section#columns.columns-slider.blue .title-container #heading-container h1,
section#columns.columns-slider.blue .title-container #heading-container h2,
section#columns.columns-slider.blue .title-container #heading-container h3,
section#columns.columns-slider.blue .title-container #heading-container h4,
section#columns.columns-slider.blue .title-container #heading-container h5,
section#columns.columns-slider.blue .title-container #heading-container h6 {
  color: #FFF;
}
section#columns.columns-slider.space .title-container #heading-container .lead,
section#columns.columns-slider.space .title-container #heading-container .body-l,
section#columns.columns-slider.space .title-container #heading-container .body-s,
section#columns.columns-slider.space .title-container #heading-container p, section#columns.columns-slider.blue .title-container #heading-container .lead,
section#columns.columns-slider.blue .title-container #heading-container .body-l,
section#columns.columns-slider.blue .title-container #heading-container .body-s,
section#columns.columns-slider.blue .title-container #heading-container p {
  color: #CFD6EC;
}
section#columns.columns-slider.space .title-container #heading-container #button.secondary, section#columns.columns-slider.blue .title-container #heading-container #button.secondary {
  background: #222246;
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
section#columns.columns-slider.space .column.slider .content-container h5, section#columns.columns-slider.blue .column.slider .content-container h5 {
  color: #A6A7FF;
}
section#columns.columns-slider.space .column.slider .content-container .body-m,
section#columns.columns-slider.space .column.slider .content-container .body-m p,
section#columns.columns-slider.space .column.slider .content-container .body-s,
section#columns.columns-slider.space .column.slider .content-container .body-s p,
section#columns.columns-slider.space .column.slider .content-container li, section#columns.columns-slider.blue .column.slider .content-container .body-m,
section#columns.columns-slider.blue .column.slider .content-container .body-m p,
section#columns.columns-slider.blue .column.slider .content-container .body-s,
section#columns.columns-slider.blue .column.slider .content-container .body-s p,
section#columns.columns-slider.blue .column.slider .content-container li {
  color: #CFD6EC;
}
section#columns.columns-slider.space .column.slider .content-container ul > li::before, section#columns.columns-slider.blue .column.slider .content-container ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='24' viewBox='0 0 3 24' fill='none'%3E%3Ccircle cx='1.5' cy='12' r='1.5' fill='%23A6A7FF'/%3E%3C/svg%3E");
}
section#columns.columns-slider.space .column.slider .content-container #text-button, section#columns.columns-slider.blue .column.slider .content-container #text-button {
  color: #E0FF00;
}
section#columns.columns-slider.space .columns-slider-controls .slick-dots li button, section#columns.columns-slider.blue .columns-slider-controls .slick-dots li button {
  background: #686887;
}
section#columns.columns-slider.space .columns-slider-controls .slick-dots li.slick-active button, section#columns.columns-slider.blue .columns-slider-controls .slick-dots li.slick-active button {
  background: #E0FF00;
}
@media screen and (max-width: 768px) {
  section#columns .boxed-column-container {
    flex-direction: column;
  }
  section#columns .boxed-column-container .column {
    border-left: none;
    border-bottom: 1px solid #00013F;
  }
  section#columns .boxed-column-container .column:last-child {
    border-bottom: none;
  }
  section#columns.columns-slider .top-content {
    margin-bottom: 40px;
  }
  section#columns.columns-slider .columns-slider-track {
    padding-left: 20px;
    padding-right: 20px;
  }
  section#columns.columns-slider .columns-slider-track .slick-list {
    overflow-x: hidden;
    overflow-y: visible;
  }
  section#columns.columns-slider .columns-slider-controls {
    margin-top: 30px;
  }
  section#columns.columns-slider .columns-slider-controls .slick-dots {
    gap: 12px;
  }
  section#columns.columns-slider .column.slider {
    margin-right: 0;
    width: 100% !important;
  }
  section#columns.columns-slider .column.slider .content-container {
    padding-right: 0;
  }
}
section#columns.light .column.outlined .content-container, section#columns.gray .column.outlined .content-container {
  border: 1px solid #969CB9;
}
section#columns.light .column.boxed .content-container, section#columns.gray .column.boxed .content-container {
  background: #F6F9FF;
  border-color: #CFD6EC;
}
section#columns.light .column h2,
section#columns.light .column h3,
section#columns.light .column h4,
section#columns.light .column h5,
section#columns.light .column h6, section#columns.gray .column h2,
section#columns.gray .column h3,
section#columns.gray .column h4,
section#columns.gray .column h5,
section#columns.gray .column h6 {
  color: #0002D1;
}
section#columns.light .column .body-m,
section#columns.light .column .body-m p,
section#columns.light .column .body-s,
section#columns.light .column .body-s p,
section#columns.light .column li, section#columns.gray .column .body-m,
section#columns.gray .column .body-m p,
section#columns.gray .column .body-s,
section#columns.gray .column .body-s p,
section#columns.gray .column li {
  color: #434361;
}
section#columns.light .column .text-button,
section#columns.light .column #text-button, section#columns.gray .column .text-button,
section#columns.gray .column #text-button {
  color: #0002D1;
}
section#columns.space .column h2,
section#columns.space .column h3,
section#columns.space .column h4,
section#columns.space .column h5,
section#columns.space .column h6, section#columns.blue .column h2,
section#columns.blue .column h3,
section#columns.blue .column h4,
section#columns.blue .column h5,
section#columns.blue .column h6 {
  color: #A6A7FF;
}
section#columns.space .column .body-m,
section#columns.space .column .body-m p,
section#columns.space .column .body-s,
section#columns.space .column .body-s p,
section#columns.space .column li, section#columns.blue .column .body-m,
section#columns.blue .column .body-m p,
section#columns.blue .column .body-s,
section#columns.blue .column .body-s p,
section#columns.blue .column li {
  color: #CFD6EC;
}
section#columns.space .column ul > li::before, section#columns.blue .column ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='24' viewBox='0 0 3 24' fill='none'%3E%3Ccircle cx='1.5' cy='12' r='1.5' fill='%23E0FF00'/%3E%3C/svg%3E");
}
section#columns.space .column .text-button,
section#columns.space .column #text-button, section#columns.blue .column .text-button,
section#columns.blue .column #text-button {
  color: #E0FF00;
}
section#columns.space .column.boxed .content-container, section#columns.blue .column.boxed .content-container {
  background: linear-gradient(#222246, #222246) padding-box, linear-gradient(135deg, rgba(166, 167, 255, 0.5), rgba(67, 67, 97, 0.7) 52%, rgba(224, 255, 0, 0.2)) border-box;
  border: 1px solid transparent;
}
section#columns.space .column.boxed .content-container h5, section#columns.blue .column.boxed .content-container h5 {
  color: #A6A7FF;
}
section.tabs-section.blue.menu-top {
  background: #00002E;
}
section.tabs-section .tabs-heading-row {
  margin-bottom: 20px;
  position: relative;
}
section.tabs-section .tabs-heading-decoration {
  background: url("/wp-content/themes/Starter/assets/images/tabs-heading-dots.svg") center/72px 72px no-repeat;
  height: 87px;
  -webkit-mask: url("/wp-content/themes/Starter/assets/images/tabs-heading-dots-mask.svg") center/87px 87px no-repeat;
  mask: url("/wp-content/themes/Starter/assets/images/tabs-heading-dots-mask.svg") center/87px 87px no-repeat;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 87px;
}
section.tabs-section .tabs-layout {
  row-gap: 24px;
}
section.tabs-section .tab-button {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
section.tabs-section .tab-dropdown {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M11.2426 5.24191L7 9.48455L2.75736 5.24191' stroke='%230002D1' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  border-radius: 4px;
  border: 1px solid #CFD6EC;
  color: #00002E;
  margin-bottom: 24px;
}
section.tabs-section .tab-panel,
section.tabs-section .tab-media {
  display: block;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear 0.35s;
}
section.tabs-section .tab-panel.active,
section.tabs-section .tab-media.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear 0s;
}
section.tabs-section .tab-panel-media,
section.tabs-section .tabs-media-stage {
  border-radius: 8px;
  overflow: hidden;
}
section.tabs-section .tab-panel-media img,
section.tabs-section .tab-panel-media iframe,
section.tabs-section .tab-panel-media video,
section.tabs-section .tabs-media-stage img,
section.tabs-section .tabs-media-stage iframe,
section.tabs-section .tabs-media-stage video {
  display: block;
  width: 100%;
}
section.tabs-section .tab-panel-media img,
section.tabs-section .tab-panel-media video,
section.tabs-section .tabs-media-stage img,
section.tabs-section .tabs-media-stage video {
  height: 100%;
  object-fit: cover;
}
section.tabs-section .tabs-embed {
  height: 100%;
}
section.tabs-section .tabs-embed iframe {
  height: 100%;
  min-height: 420px;
}
section.tabs-section .tabs-lottie {
  min-height: 420px;
  width: 100%;
}
section.tabs-section.menu-side .tabs-layout-side {
  align-items: center;
}
section.tabs-section.menu-side .tabs-controls-side {
  align-self: stretch;
}
section.tabs-section.menu-side .tabs-controls-side nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
section.tabs-section.menu-side .tabs-controls-side nav::before {
  background: #E3EBFD;
  content: "";
  height: calc(100% - 29px);
  left: 14px;
  position: absolute;
  top: 14px;
  width: 2px;
}
section.tabs-section.menu-side .tabs-controls-side nav::after {
  background: url("/wp-content/themes/Starter/assets/images/tabs-fade-line.svg") left center/674px 3px no-repeat;
  content: "";
  height: 3px;
  left: 15px;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 14px);
  transform: rotate(90deg);
  transform-origin: left center;
  width: 674px;
  z-index: 0;
}
section.tabs-section.menu-side .tab-button {
  align-items: flex-start;
  background: transparent;
  border-radius: 0;
  color: #B9BFD8;
  display: flex;
  font-size: 20px;
  gap: 30px;
  line-height: 110%;
  min-height: 0;
  padding: 0;
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgba(215, 243, 164, 0.01);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
section.tabs-section.menu-side .tab-button.active, section.tabs-section.menu-side .tab-button:hover {
  background: transparent;
  box-shadow: none;
  color: #0002D1;
}
section.tabs-section.menu-side .tab-number {
  align-items: center;
  background: #E3EBFD;
  border: 2px solid #FFF;
  border-radius: 100%;
  color: #A6A7FF;
  display: flex;
  flex: 0 0 29px;
  font-size: 14px;
  height: 29px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 29px;
  z-index: 1;
}
section.tabs-section.menu-side .tab-button.active .tab-number,
section.tabs-section.menu-side .tab-button:hover .tab-number {
  background: #E0FF00;
  color: #00002E;
}
section.tabs-section.menu-side .tab-control-icon {
  display: none;
  height: 30px;
  object-fit: contain;
  width: 30px;
}
section.tabs-section.menu-side .tabs-panels {
  position: relative;
}
section.tabs-section.menu-side .tab-panel {
  background: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
section.tabs-section.menu-side .tab-panel.active {
  position: relative;
}
section.tabs-section.menu-side .tab-panel-copy {
  align-items: flex-start;
  display: grid;
  gap: 0 30px;
  grid-template-columns: 70px minmax(0, 1fr);
  padding: 40px;
}
section.tabs-section.menu-side .tab-panel-copy .eyebrow {
  color: #0002D1;
  grid-column: 2;
  margin-bottom: 10px;
}
section.tabs-section.menu-side .tab-panel-copy h4 {
  font-size: 32px;
  grid-column: 2;
  line-height: 120%;
  margin-bottom: 10px;
}
section.tabs-section.menu-side .tab-panel-copy .body-l,
section.tabs-section.menu-side .tab-panel-copy .body-s {
  grid-column: 2;
}
section.tabs-section.menu-side .tab-panel-copy .body-l p, section.tabs-section.menu-side .tab-panel-copy .body-l li,
section.tabs-section.menu-side .tab-panel-copy .body-s p,
section.tabs-section.menu-side .tab-panel-copy .body-s li {
  font-size: 16px;
  line-height: 140%;
  color: #434361;
}
section.tabs-section.menu-side .tab-panel-copy #button-container {
  grid-column: 2;
  margin-top: 30px;
}
section.tabs-section.menu-side .tab-panel-copy.no-icon {
  grid-template-columns: minmax(0, 1fr);
}
section.tabs-section.menu-side .tab-panel-copy.no-icon .eyebrow,
section.tabs-section.menu-side .tab-panel-copy.no-icon h4,
section.tabs-section.menu-side .tab-panel-copy.no-icon .body-l,
section.tabs-section.menu-side .tab-panel-copy.no-icon .body-s,
section.tabs-section.menu-side .tab-panel-copy.no-icon #button-container {
  grid-column: 1;
}
section.tabs-section.menu-side .tab-panel-icon {
  background: #CFD6EC;
  display: block;
  grid-column: 1;
  grid-row: 1/span 5;
  height: 70px;
  margin-bottom: 0;
  object-fit: contain;
  padding: 14px;
  width: 54px;
  width: 70px;
}
section.tabs-section.menu-side .tab-panel-media {
  aspect-ratio: 977/434;
  background: #CFD6EC;
  border-radius: 0;
}
section.tabs-section.menu-top .tabs-top-card {
  background: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 50px;
}
section.tabs-section.menu-top .tabs-media-stage {
  aspect-ratio: 1180/500;
  border-radius: 6px;
  position: relative;
}
section.tabs-section.menu-top .tab-media {
  inset: 0;
  position: absolute;
}
section.tabs-section.menu-top .tab-media img,
section.tabs-section.menu-top .tab-media video,
section.tabs-section.menu-top .tab-media iframe,
section.tabs-section.menu-top .tab-media .tabs-embed,
section.tabs-section.menu-top .tab-media .tabs-lottie {
  height: 100%;
}
section.tabs-section.menu-top .tabs-controls-top {
  margin-top: 0;
}
section.tabs-section.menu-top .tabs-control-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
section.tabs-section.menu-top .tab-card {
  background: transparent;
  border: 0;
  color: #434361;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  opacity: 0.6;
  padding: 24px 30px 20px 0;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section.tabs-section.menu-top .tab-card:first-child {
  border-left: 0;
}
section.tabs-section.menu-top .tab-card .h5 {
  color: #0002D1;
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 0;
}
section.tabs-section.menu-top .tab-card .body-s {
  color: inherit;
  display: block;
  font-size: 16px;
  line-height: 140%;
}
section.tabs-section.menu-top .tab-card .text-button {
  color: #0002D1;
  display: block;
  margin-top: auto;
}
section.tabs-section.menu-top .tab-card.active, section.tabs-section.menu-top .tab-card:hover {
  background: transparent;
  color: #434361;
  opacity: 1;
}
section.tabs-section.menu-top .tab-timer {
  background: #CFD6EC;
  display: block;
  height: 3px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}
section.tabs-section.menu-top .tab-timer span {
  background: #0002D1;
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
}
section.tabs-section.menu-top .tab-card.active .tab-timer span {
  animation: tabTimerFill 10s linear forwards;
}
section.tabs-section.space.menu-side .tabs-controls-side nav::before, section.tabs-section.blue.menu-side .tabs-controls-side nav::before {
  background: #0002D1;
}
section.tabs-section.space.menu-side .tabs-controls-side nav::after, section.tabs-section.blue.menu-side .tabs-controls-side nav::after {
  background: linear-gradient(90deg, #0002D1 0%, rgba(0, 2, 209, 0.5) 88.5%, rgba(0, 2, 209, 0) 100%);
}
section.tabs-section.space.menu-side .tab-button, section.tabs-section.blue.menu-side .tab-button {
  background: transparent;
  color: #A6A7FF;
}
section.tabs-section.space.menu-side .tab-button.active, section.tabs-section.space.menu-side .tab-button:hover, section.tabs-section.blue.menu-side .tab-button.active, section.tabs-section.blue.menu-side .tab-button:hover {
  background: transparent;
  color: #E0FF00;
}
section.tabs-section.space.menu-side .tab-number, section.tabs-section.blue.menu-side .tab-number {
  background: #0002D1;
  border-color: #0002D1;
  color: #A6A7FF;
}
section.tabs-section.space.menu-side .tab-button.active .tab-number,
section.tabs-section.space.menu-side .tab-button:hover .tab-number, section.tabs-section.blue.menu-side .tab-button.active .tab-number,
section.tabs-section.blue.menu-side .tab-button:hover .tab-number {
  background: #E0FF00;
  color: #00002E;
}
section.tabs-section.space.menu-side .tab-panel, section.tabs-section.blue.menu-side .tab-panel {
  background: #F6F9FF;
  border-color: #CFD6EC;
}
section.tabs-section.space.menu-side .tab-panel-copy .eyebrow, section.tabs-section.blue.menu-side .tab-panel-copy .eyebrow {
  color: #0002D1;
}
section.tabs-section.space.menu-side .tab-panel-copy h4, section.tabs-section.blue.menu-side .tab-panel-copy h4 {
  color: #00002E;
}
section.tabs-section.space.menu-side .tab-panel-copy .body-l p, section.tabs-section.space.menu-side .tab-panel-copy .body-l li,
section.tabs-section.space.menu-side .tab-panel-copy .body-s p,
section.tabs-section.space.menu-side .tab-panel-copy .body-s li, section.tabs-section.blue.menu-side .tab-panel-copy .body-l p, section.tabs-section.blue.menu-side .tab-panel-copy .body-l li,
section.tabs-section.blue.menu-side .tab-panel-copy .body-s p,
section.tabs-section.blue.menu-side .tab-panel-copy .body-s li {
  color: #434361;
}
section.tabs-section.space.menu-side .tab-panel-copy #text-button, section.tabs-section.blue.menu-side .tab-panel-copy #text-button {
  color: #0002D1;
}
section.tabs-section.space.menu-side .tab-panel-icon,
section.tabs-section.space.menu-side .tab-panel-media, section.tabs-section.blue.menu-side .tab-panel-icon,
section.tabs-section.blue.menu-side .tab-panel-media {
  background: #CFD6EC;
}
section.tabs-section.space.menu-top .tabs-top-card, section.tabs-section.blue.menu-top .tabs-top-card {
  background: #00013F;
  border-color: rgba(255, 255, 255, 0.14);
}
section.tabs-section.space.menu-top .tab-card, section.tabs-section.blue.menu-top .tab-card {
  background: transparent;
  color: #CFD6EC;
  opacity: 0.6;
}
section.tabs-section.space.menu-top .tab-card .h5,
section.tabs-section.space.menu-top .tab-card .text-button, section.tabs-section.blue.menu-top .tab-card .h5,
section.tabs-section.blue.menu-top .tab-card .text-button {
  color: #A6A7FF;
}
section.tabs-section.space.menu-top .tab-card.active, section.tabs-section.space.menu-top .tab-card:hover, section.tabs-section.blue.menu-top .tab-card.active, section.tabs-section.blue.menu-top .tab-card:hover {
  background: transparent;
  color: #FFF;
  opacity: 1;
}
section.tabs-section.space.menu-top .tab-timer, section.tabs-section.blue.menu-top .tab-timer {
  background: rgba(255, 255, 255, 0.18);
}
section.tabs-section.space.menu-top .tab-timer span, section.tabs-section.blue.menu-top .tab-timer span {
  background: #E0FF00;
}
section.tabs-section.space.menu-side .tab-number {
  border-color: #00002E;
}
section.tabs-section.blue.menu-side .tab-number {
  border-color: #00013F;
}
@media screen and (max-width: 1024px) {
  section.tabs-section .tabs-heading-decoration {
    display: none;
  }
  section.tabs-section.menu-side .tabs-controls-side {
    grid-column: auto/span 8;
  }
  section.tabs-section.menu-side .tabs-panels {
    grid-column: auto/span 8;
  }
  section.tabs-section.menu-side .tab-panel {
    gap: 28px;
  }
  section.tabs-section.menu-top .tabs-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  section.tabs-section .tabs-heading-row {
    margin-bottom: 0;
  }
  section.tabs-section.menu-side .tabs-controls-side,
section.tabs-section.menu-side .tabs-panels {
    grid-column: auto/span 4;
  }
  section.tabs-section.menu-side .tabs-controls-side nav {
    gap: 18px;
  }
  section.tabs-section.menu-side .tab-button {
    font-size: 18px;
  }
  section.tabs-section.menu-side .tab-panel-copy {
    display: flex;
    flex-direction: column;
    padding: 28px;
  }
  section.tabs-section.menu-side .tab-panel-copy .eyebrow,
section.tabs-section.menu-side .tab-panel-copy h4,
section.tabs-section.menu-side .tab-panel-copy .body-l,
section.tabs-section.menu-side .tab-panel-copy .body-s,
section.tabs-section.menu-side .tab-panel-copy #button-container {
    grid-column: auto;
  }
  section.tabs-section.menu-side .tab-panel-icon {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 20px;
  }
  section.tabs-section.menu-top .tabs-top-card {
    gap: 30px;
    padding: 24px;
  }
  section.tabs-section.menu-top .tabs-media-stage {
    aspect-ratio: 4/3;
  }
}
@keyframes tabTimerFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
section#pricing {
  background-color: #FFF;
}
section#pricing .pricing-feature-icon {
  width: 14px;
}
section#pricing .pricing-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  max-width: 1280px;
  width: calc(100% - 160px);
}
section#pricing .pricing-selector {
  background: #F6F9FF;
  border-radius: 100px;
  display: flex;
  gap: 10px;
  padding: 10px;
}
section#pricing .pricing-tab {
  align-items: center;
  appearance: none;
  background: #FFF;
  border: 1px solid rgba(185, 195, 216, 0.5);
  border-radius: 100px;
  color: #00002E;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 120%;
  padding: 0 20px;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}
section#pricing .pricing-tab.active, section#pricing .pricing-tab:hover {
  background: #E3EBFD;
  border-color: rgba(185, 195, 216, 0.5);
  box-shadow: 0 0 0 4px rgba(227, 235, 253, 0.6);
}
section#pricing .pricing-tab:focus-visible {
  outline: 2px solid #0002D1 !important;
  outline-offset: 3px !important;
}
section#pricing .pricing-selector-mobile {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M11.2426 5.24191L7 9.48455L2.75736 5.24191' stroke='%230002D1' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  border-radius: 4px;
  border: 1px solid #CFD6EC;
  color: #00002E;
  margin-bottom: 0;
  max-width: 420px;
  width: 100%;
}
section#pricing .pricing-panels {
  position: relative;
  width: 100%;
}
section#pricing .pricing-panel {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear 0.35s;
  transform: translateY(8px);
  visibility: hidden;
  width: 100%;
}
section#pricing .pricing-panel.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear 0s;
  visibility: visible;
}
section#pricing .pricing-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 846px;
  width: 100%;
}
section#pricing .pricing-heading .pricing-heading-copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
section#pricing .pricing-heading .eyebrow,
section#pricing .pricing-heading h1,
section#pricing .pricing-heading h2,
section#pricing .pricing-heading h3,
section#pricing .pricing-heading h4,
section#pricing .pricing-heading h5,
section#pricing .pricing-heading h6,
section#pricing .pricing-heading .lead,
section#pricing .pricing-heading .body-l,
section#pricing .pricing-heading .body-s {
  margin-bottom: 0;
}
section#pricing .pricing-heading h2,
section#pricing .pricing-heading .h2 {
  line-height: 110%;
}
section#pricing .pricing-heading .lead,
section#pricing .pricing-heading .body-l,
section#pricing .pricing-heading .body-s {
  color: #434361;
}
section#pricing .pricing-heading #button-container {
  justify-content: center;
}
section#pricing .pricing-table-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
}
section#pricing .pricing-card {
  background: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 12px;
  grid-column: span 4;
  overflow: hidden;
  padding: 40px;
}
section#pricing .pricing-card h4 {
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 30px;
  text-align: center;
}
section#pricing .pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
section#pricing .pricing-feature {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 0;
}
section#pricing .pricing-feature span:last-child {
  color: #434361;
  font-size: 18px;
  line-height: 140%;
}
section#pricing .pricing-feature::before {
  display: none;
}
section#pricing .pricing-feature.muted .pricing-feature-icon {
  background: #B9BFD8;
}
section#pricing .pricing-feature-icon img {
  display: block;
  height: 14px;
  object-fit: contain;
  width: 14px;
}
section#pricing .pricing-feature-icon:empty::after {
  border-bottom: 1.5px solid #FFF;
  border-right: 1.5px solid #FFF;
  content: "";
  height: 6px;
  margin-top: -2px;
  transform: rotate(45deg);
  width: 3px;
}
section#pricing .pricing-bottom-drawer {
  align-items: center;
  background: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 12px;
  display: flex;
  gap: 30px;
  padding: 30px;
  width: 100%;
}
section#pricing .pricing-bottom-drawer #button-container {
  flex: 0 0 auto;
}
section#pricing .pricing-bottom-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
section#pricing .pricing-bottom-copy h5,
section#pricing .pricing-bottom-copy .body-l,
section#pricing .pricing-bottom-copy p {
  color: #00002E;
  margin-bottom: 0;
}
section#pricing .pricing-bottom-copy .body-l,
section#pricing .pricing-bottom-copy p {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width: 1024px) {
  section#pricing .pricing-inner {
    width: calc(100% - 80px);
  }
  section#pricing .pricing-table-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  section#pricing .pricing-card {
    grid-column: span 4;
  }
  section#pricing .pricing-bottom-drawer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  section#pricing .pricing-inner {
    gap: 40px;
    width: calc(100% - 40px);
  }
  section#pricing .pricing-selector {
    display: none;
  }
  section#pricing .pricing-panel {
    gap: 40px;
  }
  section#pricing .pricing-table-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  section#pricing .pricing-card {
    grid-column: span 4;
    padding: 30px 24px;
  }
  section#pricing .pricing-card h4 {
    font-size: 28px;
  }
  section#pricing .pricing-feature span:last-child {
    font-size: 16px;
  }
  section#pricing .pricing-bottom-drawer {
    padding: 24px;
  }
  section#pricing .pricing-bottom-drawer #button-container,
section#pricing .pricing-bottom-drawer #button {
    justify-content: center;
    width: 100%;
  }
}
section#accordion .title-container {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  section#accordion .title-container {
    margin-bottom: 0;
  }
}
section#accordion .grid.intro-title {
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  section#accordion .grid.intro-title {
    margin-bottom: 0;
  }
}
section#accordion .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#accordion .accordion-list .accordion-row {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #E3EBFD;
  background: #F6F9FF;
  transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#accordion .accordion-list .accordion-question {
  appearance: none;
  background: transparent;
  border: 0;
  color: #00002E;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
  padding: 30px;
  text-align: left;
  width: 100%;
}
section#accordion .accordion-list .accordion-question .h5 {
  color: inherit;
  margin-bottom: 0;
}
section#accordion .accordion-list .accordion-question:focus-visible {
  outline: 2px solid #0002D1 !important;
  outline-offset: -4px !important;
}
section#accordion .accordion-list .accordion-toggle {
  align-items: center;
  background-color: #6264FF;
  border-radius: 100%;
  display: flex;
  flex: 0 0 24px;
  height: 24px;
  justify-content: center;
  position: relative;
  width: 24px;
}
section#accordion .accordion-list .accordion-toggle-line {
  background-color: #FFF;
  border-radius: 2px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  width: 10px;
}
section#accordion .accordion-list .accordion-toggle-line:last-child {
  transform: rotate(90deg);
}
section#accordion .accordion-list .accordion-question.active {
  padding-bottom: 16px;
}
section#accordion .accordion-list .accordion-question.active .accordion-toggle-line:last-child {
  transform: rotate(0deg);
}
section#accordion .accordion-list .accordion-answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s linear 0.5s;
}
section#accordion .accordion-list .accordion-answer.active {
  max-height: 5000px;
  visibility: visible;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s linear 0s;
}
section#accordion .accordion-list .accordion-answer-inner {
  padding: 0 64px 30px 30px;
}
section#accordion .accordion-list .accordion-answer-inner .body-l {
  max-width: 900px;
}
section#accordion .accordion-list .accordion-answer-inner .body-l p, section#accordion .accordion-list .accordion-answer-inner .body-l li {
  color: #14141A;
  font-size: 16px;
  line-height: 150%;
}
section#accordion .accordion-list .accordion-answer-inner ul {
  margin-top: 10px;
  list-style-position: outside;
}
@media screen and (max-width: 768px) {
  section#accordion .accordion-list {
    gap: 16px;
  }
  section#accordion .accordion-list .accordion-question {
    align-items: flex-start;
    gap: 20px;
    min-height: 0;
    padding: 24px 20px;
  }
  section#accordion .accordion-list .accordion-question .h5 {
    font-size: 20px;
  }
  section#accordion .accordion-list .accordion-toggle {
    flex-basis: 24px;
    height: 24px;
    width: 24px;
  }
  section#accordion .accordion-list .accordion-answer-inner {
    padding: 0 20px 24px;
  }
}
section#accordion.space .accordion-list .accordion-row {
  background: #222246;
  border-color: #434361;
}
section#accordion.space .accordion-list .accordion-question {
  color: #FFF;
}
section#accordion.space .accordion-list .accordion-answer-inner .body-l p, section#accordion.space .accordion-list .accordion-answer-inner .body-l li {
  color: #CFD6EC;
}
section#centered-image {
  overflow: hidden;
  isolation: isolate;
}
section#centered-image.light {
  background-color: #FFF;
}
section#centered-image.gray {
  background-color: #FAFAFF;
}
section#centered-image.space {
  background-color: #00002E;
}
section#centered-image.blue {
  background-color: #00013F;
}
section#centered-image .centered-image-background {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
section#centered-image .centered-image-background img,
section#centered-image .centered-image-background .centered-image-background-animation,
section#centered-image .centered-image-background .centered-image-background-default {
  display: block;
  height: 100%;
  left: 50%;
  min-height: 866px;
  min-width: 1774px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
section#centered-image .centered-image-background .centered-image-background-default {
  background-image: url("/wp-content/themes/Starter/assets/images/centered-image-texture-light.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#centered-image.gray .centered-image-background-default {
  background-image: url("/wp-content/themes/Starter/assets/images/centered-image-texture-gray.svg");
}
section#centered-image.space .centered-image-background-default {
  background-image: url("/wp-content/themes/Starter/assets/images/centered-image-texture-space.svg");
}
section#centered-image.blue .centered-image-background-default {
  background-image: url("/wp-content/themes/Starter/assets/images/centered-image-texture-blue.svg");
}
section#centered-image .centered-image-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  width: calc(100% - 160px);
  z-index: 2;
}
section#centered-image .centered-image-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 846px;
  width: 100%;
}
section#centered-image .centered-image-heading .eyebrow,
section#centered-image .centered-image-heading h1,
section#centered-image .centered-image-heading h2,
section#centered-image .centered-image-heading h3,
section#centered-image .centered-image-heading h4,
section#centered-image .centered-image-heading h5,
section#centered-image .centered-image-heading h6,
section#centered-image .centered-image-heading .lead,
section#centered-image .centered-image-heading .body-l,
section#centered-image .centered-image-heading .body-s {
  margin-bottom: 0;
}
section#centered-image .centered-image-heading .lead,
section#centered-image .centered-image-heading .body-l,
section#centered-image .centered-image-heading .body-s {
  max-width: 760px;
}
section#centered-image .centered-image-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 630px) minmax(0, 1fr);
  width: 100%;
}
section#centered-image .centered-image-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  min-width: 0;
}
section#centered-image .centered-image-callout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#centered-image .centered-image-callout h1,
section#centered-image .centered-image-callout h2,
section#centered-image .centered-image-callout h3,
section#centered-image .centered-image-callout h4,
section#centered-image .centered-image-callout h5,
section#centered-image .centered-image-callout h6,
section#centered-image .centered-image-callout p,
section#centered-image .centered-image-callout ul,
section#centered-image .centered-image-callout ol {
  margin-bottom: 0;
}
section#centered-image .centered-image-callout h5,
section#centered-image .centered-image-callout .h5 {
  color: #0002D1;
}
section#centered-image .centered-image-callout p,
section#centered-image .centered-image-callout li {
  color: #00002E;
  font-size: 16px;
  line-height: 140%;
}
section#centered-image .centered-image-callout .text-button {
  color: #0002D1;
  display: inline-flex;
  width: fit-content;
}
section#centered-image .centered-image-media {
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}
section#centered-image .centered-image-media #media-container,
section#centered-image .centered-image-media #image-container,
section#centered-image .centered-image-media #video-container,
section#centered-image .centered-image-media #animation-container,
section#centered-image .centered-image-media .animation,
section#centered-image .centered-image-media img,
section#centered-image .centered-image-media video,
section#centered-image .centered-image-media iframe {
  width: 100%;
}
section#centered-image .centered-image-media img,
section#centered-image .centered-image-media video,
section#centered-image .centered-image-media iframe {
  display: block;
  object-fit: cover;
}
section#centered-image .centered-image-media #form-container {
  background: #FFF;
  height: 100%;
  overflow: auto;
  padding: 40px;
}
section#centered-image .centered-image-button-bar {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
section#centered-image .centered-image-button-bar #button-container {
  justify-content: center;
}
section#centered-image.space .centered-image-callout h5,
section#centered-image.space .centered-image-callout .h5, section#centered-image.blue .centered-image-callout h5,
section#centered-image.blue .centered-image-callout .h5 {
  color: #A6A7FF;
}
section#centered-image.space .centered-image-callout p,
section#centered-image.space .centered-image-callout li, section#centered-image.blue .centered-image-callout p,
section#centered-image.blue .centered-image-callout li {
  color: #CFD6EC;
}
section#centered-image.space .centered-image-callout .text-button, section#centered-image.blue .centered-image-callout .text-button {
  color: #E0FF00;
}
section#centered-image.space .centered-image-heading h1,
section#centered-image.space .centered-image-heading h2,
section#centered-image.space .centered-image-heading h3,
section#centered-image.space .centered-image-heading h4,
section#centered-image.space .centered-image-heading h5,
section#centered-image.space .centered-image-heading h6, section#centered-image.blue .centered-image-heading h1,
section#centered-image.blue .centered-image-heading h2,
section#centered-image.blue .centered-image-heading h3,
section#centered-image.blue .centered-image-heading h4,
section#centered-image.blue .centered-image-heading h5,
section#centered-image.blue .centered-image-heading h6 {
  color: #FFF;
}
section#centered-image.space .centered-image-heading .lead,
section#centered-image.space .centered-image-heading .body-l,
section#centered-image.space .centered-image-heading .body-s, section#centered-image.blue .centered-image-heading .lead,
section#centered-image.blue .centered-image-heading .body-l,
section#centered-image.blue .centered-image-heading .body-s {
  color: #CFD6EC;
}
section#centered-image.space .centered-image-button-bar #button.secondary, section#centered-image.blue .centered-image-button-bar #button.secondary {
  background-color: #222246;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  section#centered-image .centered-image-inner {
    width: calc(100% - 80px);
  }
  section#centered-image .centered-image-grid {
    gap: 40px;
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  section#centered-image .centered-image-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  section#centered-image .centered-image-media {
    height: auto;
    aspect-ratio: 630/600;
  }
}
@media screen and (max-width: 768px) {
  section#centered-image .centered-image-inner {
    gap: 40px;
    width: calc(100% - 40px);
  }
  section#centered-image .centered-image-grid,
section#centered-image .centered-image-column {
    grid-template-columns: 1fr;
  }
  section#centered-image .centered-image-column {
    gap: 30px;
  }
  section#centered-image .centered-image-button-bar #button-container {
    width: 100%;
  }
  section#centered-image .centered-image-button-bar #button-container #button {
    justify-content: center;
    width: 100%;
  }
}
section#quotes {
  position: relative;
  overflow: hidden;
}
section#quotes.light {
  background: #FFF;
}
section#quotes.space {
  background: #00002E;
}
section#quotes .quotes-background-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
section#quotes .quotes-background-elements .module-background-image {
  display: block;
  height: 100%;
  left: 50%;
  min-height: 720px;
  min-width: 1440px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
section#quotes .quotes-background-elements .quotes-bg-dots {
  position: absolute;
  top: 58px;
  right: 0;
  width: 442px;
  height: 300px;
  opacity: 0.65;
  background-image: radial-gradient(circle, rgba(166, 167, 255, 0.55) 1.25px, transparent 1.25px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
}
section#quotes .quotes-background-elements .quotes-bg-blur {
  position: absolute;
  right: -170px;
  top: 120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(98, 100, 255, 0.34);
  filter: blur(72px);
}
section#quotes .grid,
section#quotes .quotes-marquee {
  position: relative;
  z-index: 2;
}
section#quotes .quotes-header #heading-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#quotes .quotes-header #heading-container .content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#quotes.quotes-slider .quotes-header {
  grid-column: 1/span 10;
  max-width: 1064px;
}
section#quotes.quotes-single-quote .quotes-header {
  grid-column: 3/span 8;
  text-align: center;
}
section#quotes.quotes-single-quote .quotes-header #heading-container,
section#quotes.quotes-single-quote .quotes-header #heading-container .content-container {
  align-items: center;
}
section#quotes.space .quotes-header #heading-container h2,
section#quotes.space .quotes-header #heading-container .h2 {
  color: #FFF;
}
section#quotes.space .quotes-header #heading-container .lead,
section#quotes.space .quotes-header #heading-container .lead p,
section#quotes.space .quotes-header #heading-container .body-l,
section#quotes.space .quotes-header #heading-container .body-l p {
  color: #CFD6EC;
}
section#quotes .quotes-marquee {
  width: 100%;
  overflow: visible;
}
section#quotes .quotes-marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: quote-marquee 42s linear infinite;
  will-change: transform;
}
section#quotes .quotes-marquee-track:hover {
  animation-play-state: paused;
}
section#quotes .quote-card {
  position: relative;
  display: flex;
  gap: 30px;
  border-radius: 12px;
  border: 0;
  background: #222246;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(5px);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#quotes .quote-card::after {
  content: none;
  position: absolute;
  right: -292px;
  bottom: -292px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #0002d1 0%, rgba(0, 2, 209, 0.96) 30%, rgba(0, 1, 145, 0.78) 48%, rgba(0, 1, 145, 0) 72%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
section#quotes .quote-card[href]:hover {
  transform: none;
  color: #FFF;
}
section#quotes .quote-card[href]:hover::after {
  opacity: 1;
}
section#quotes .quote-card[href]:hover #text-button {
  background: #000191;
  color: #E0FF00;
  opacity: 1;
  transform: none;
}
section#quotes .quote-card .quote-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  height: 100%;
}
section#quotes .quote-card blockquote {
  border-left: 0;
  margin: 0;
  padding-left: 0;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
section#quotes .quote-card p {
  margin-bottom: 0;
}
section#quotes .quote-card .quote-card-top,
section#quotes .quote-card .quote-card-bottom {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
section#quotes .quote-card .quote-card-top {
  min-height: 57px;
}
section#quotes .quote-card .quote-logo img {
  display: block;
  width: 167px;
  max-width: 167px;
  max-height: 57px;
  object-fit: contain;
}
section#quotes .quote-card .quote-excellence img {
  display: block;
  max-width: 114px;
  max-height: 30px;
  object-fit: contain;
}
section#quotes .quote-card .quote-large-image {
  position: relative;
  z-index: 2;
  flex: 0 0 275px;
  overflow: hidden;
}
section#quotes .quote-card .quote-large-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#quotes .quote-card .quote-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
section#quotes .quote-card .quote-meta .body-s {
  color: #FFF;
  font-weight: 600;
}
section#quotes .quote-card .quote-meta .caption {
  color: #CFD6EC;
}
section#quotes .quote-card .quote-meta-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
section#quotes .quote-card .quote-small-image {
  background: linear-gradient(209deg, #6264FF 32%, #0002D1 96%);
  border-radius: 50%;
  flex: 0 0 50px;
  height: 50px;
  overflow: hidden;
  width: 50px;
}
section#quotes .quote-card .quote-small-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
section#quotes .quote-card #text-button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 3px;
  background: transparent;
  color: #E0FF00;
  font-size: 0;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
section#quotes .quote-card #text-button::after {
  content: "→";
  font-size: 22px;
  line-height: 1;
}
section#quotes .quote-card-slider {
  flex: 0 0 413px;
  width: 413px;
  padding: 30px;
  background: #222246;
  backdrop-filter: blur(5px);
}
section#quotes .quote-card-slider::after {
  content: "";
}
section#quotes .quote-card-slider .quote-card-body {
  gap: 30px;
}
section#quotes .quote-card-slider blockquote {
  margin-top: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
section#quotes .quote-card-slider .quote-card-bottom {
  align-items: flex-end;
}
section#quotes .quote-card-slider .quote-card-bottom .quote-meta {
  position: relative;
  min-height: 50px;
  justify-content: center;
  padding-left: 0;
}
section#quotes .quote-card-slider .quote-card-bottom .quote-meta::before {
  content: none;
}
section#quotes .quote-card-slider.quote-card-style-g2 .quote-card-top.is-logo-only,
section#quotes .quote-card-slider.quote-card-style-g2 .quote-card-top.is-excellence-only {
  justify-content: flex-start;
}
section#quotes .quote-card-slider.quote-card-style-label .quote-card-top {
  justify-content: flex-start;
  min-height: 30px;
}
section#quotes .quote-card-slider.quote-card-style-label .quote-category-pill {
  align-items: center;
  background: #00002E;
  border-radius: 100px;
  color: #A6A7FF;
  display: inline-flex;
  font-size: 14px;
  height: 30px;
  justify-content: center;
  letter-spacing: 1.4px;
  line-height: 1;
  max-width: 100%;
  padding: 8px 15px;
  text-transform: uppercase;
  white-space: nowrap;
}
section#quotes .quote-card-slider.quote-card-style-label .quote-card-bottom .quote-meta {
  justify-content: flex-start;
  min-height: 0;
}
section#quotes .quote-single-wrap {
  grid-column: 2/span 10;
}
section#quotes .quote-card-single {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 30px;
  border: 1px solid #CFD6EC;
  background: #F6F9FF;
  color: #00002E;
  backdrop-filter: blur(5px);
}
section#quotes .quote-card-single blockquote {
  color: #00002E;
  max-width: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
section#quotes .quote-card-single .quote-large-image {
  flex: 0 0 275px;
  height: 336px;
  border-radius: 0;
  background: #CFD6EC;
}
section#quotes .quote-card-single .quote-card-body {
  align-self: stretch;
  gap: 30px;
}
section#quotes .quote-card-single .quote-card-top {
  justify-content: flex-start;
}
section#quotes .quote-card-single .quote-card-bottom {
  align-items: center;
  gap: 14px;
}
section#quotes .quote-card-single .quote-card-bottom .quote-meta {
  flex: 1 1 auto;
  gap: 0;
}
section#quotes .quote-card-single .quote-card-bottom .quote-meta-copy {
  gap: 2px;
}
section#quotes .quote-card-single .quote-card-bottom .quote-meta .body-s {
  color: #434361;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
section#quotes .quote-card-single .quote-card-bottom .quote-meta .caption {
  color: #434361;
  font-size: 14px;
  line-height: 1.4;
}
section#quotes .quote-card-single .quote-card-bottom #text-button {
  align-items: center;
  background: #E0FF00;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: auto;
  min-width: 0;
  height: 40px;
  padding: 0 20px;
  border-radius: 100px;
  color: #00002E;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 1.2;
  opacity: 1;
  text-decoration: none;
  transform: none;
  white-space: nowrap;
}
section#quotes .quote-card-single .quote-card-bottom #text-button:hover {
  color: #FFF;
}
section#quotes .quote-card-single .quote-card-bottom #text-button::after {
  display: none;
}
section#quotes.light .quote-card blockquote,
section#quotes.light .quote-card .quote-meta .body-s {
  color: #00002E;
}
section#quotes.light .quote-card .quote-meta .caption {
  color: #686887;
}
section#quotes.light .quote-card-slider {
  background: #222246;
}
section#quotes.light .quote-card-slider blockquote,
section#quotes.light .quote-card-slider .quote-meta .body-s {
  color: #FFF;
}
section#quotes.light .quote-card-slider .quote-meta .caption {
  color: #CFD6EC;
}
section#quotes.space .quotes-background-elements .quotes-bg-dots {
  opacity: 0.35;
}
section#quotes.space .quotes-background-elements .quotes-bg-blur {
  background: rgba(0, 2, 209, 0.34);
}
@media screen and (max-width: 1024px) {
  section#quotes.quotes-slider .quotes-header, section#quotes.quotes-single-quote .quotes-header {
    grid-column: 1/span 8;
    max-width: none;
  }
  section#quotes .quote-card-slider {
    flex-basis: 360px;
    width: 360px;
  }
  section#quotes .quote-single-wrap {
    grid-column: 1/span 8;
  }
  section#quotes .quote-card-single {
    padding: 30px;
    height: auto;
    flex-direction: column;
  }
  section#quotes .quote-card-single .quote-large-image {
    flex: none;
    width: 100%;
    aspect-ratio: 16/9;
  }
  section#quotes .quote-card-single blockquote {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  section#quotes .quotes-marquee-track {
    animation-duration: 32s;
  }
  section#quotes .quote-card-slider {
    flex-basis: 300px;
    width: 300px;
    min-height: 320px;
    height: auto;
    padding: 24px;
  }
  section#quotes .quote-single-wrap {
    grid-column: auto/span 4;
  }
  section#quotes .quote-card .quote-card-top,
section#quotes .quote-card .quote-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@keyframes quote-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
section#careers .title-container {
  margin-bottom: 60px;
}
section#careers .job-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #00013F;
  background-color: #00002E;
  transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#careers .job-card p.body-l {
  color: #FFF;
}
section#careers .job-card #job-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#careers .job-card #job-detail-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
section#careers .job-card #job-detail-row p.body-xs {
  font-size: 14px;
  color: #FFF;
}
section#careers .job-card:hover {
  background-color: #686887;
}
section#stats {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
section#stats.light {
  background-color: #FFF;
}
section#stats.gray {
  background-color: #FAFAFF;
}
section#stats.space {
  background-color: #00002E;
}
section#stats.blue {
  background-color: #00013F;
}
section#stats .stats-background {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
section#stats .stats-background img,
section#stats .stats-background .stats-background-animation,
section#stats .stats-background .stats-background-default {
  display: block;
  height: 100%;
  left: 50%;
  min-height: 720px;
  min-width: 1440px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
section#stats .stats-background img.module-background-image {
  bottom: 0;
  width: auto;
}
section#stats .stats-background .stats-background-default {
  background-image: url("/wp-content/themes/Starter/assets/images/stats-slider-mesh.svg");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 1123px auto;
}
section#stats .stats-inner {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  width: calc(100% - 160px);
  z-index: 2;
}
section#stats .stats-heading #heading-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#stats .stats-heading #heading-container .content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#stats .stats-heading #heading-container .eyebrow,
section#stats .stats-heading #heading-container h1,
section#stats .stats-heading #heading-container h2,
section#stats .stats-heading #heading-container h3,
section#stats .stats-heading #heading-container h4,
section#stats .stats-heading #heading-container h5,
section#stats .stats-heading #heading-container h6,
section#stats .stats-heading #heading-container .lead,
section#stats .stats-heading #heading-container .body-l,
section#stats .stats-heading #heading-container .body-s {
  margin-bottom: 0;
}
section#stats.stats-slider.space .stats-heading .eyebrow, section#stats.stats-slider.blue .stats-heading .eyebrow {
  color: #A6A7FF;
}
section#stats.stats-slider.space .stats-heading h1,
section#stats.stats-slider.space .stats-heading h2,
section#stats.stats-slider.space .stats-heading h3,
section#stats.stats-slider.space .stats-heading h4,
section#stats.stats-slider.space .stats-heading h5,
section#stats.stats-slider.space .stats-heading h6, section#stats.stats-slider.blue .stats-heading h1,
section#stats.stats-slider.blue .stats-heading h2,
section#stats.stats-slider.blue .stats-heading h3,
section#stats.stats-slider.blue .stats-heading h4,
section#stats.stats-slider.blue .stats-heading h5,
section#stats.stats-slider.blue .stats-heading h6 {
  color: #FFF;
}
section#stats.stats-slider.space .stats-heading .lead,
section#stats.stats-slider.space .stats-heading .body-l,
section#stats.stats-slider.space .stats-heading .body-s,
section#stats.stats-slider.space .stats-heading p,
section#stats.stats-slider.space .stats-heading li, section#stats.stats-slider.blue .stats-heading .lead,
section#stats.stats-slider.blue .stats-heading .body-l,
section#stats.stats-slider.blue .stats-heading .body-s,
section#stats.stats-slider.blue .stats-heading p,
section#stats.stats-slider.blue .stats-heading li {
  color: #CFD6EC;
}
section#stats.stats-slider.space .stats-heading #button.secondary, section#stats.stats-slider.blue .stats-heading #button.secondary {
  background-color: #222246;
  color: #FFF;
}
section#stats.stats-slider .stats-slider-inner {
  align-items: flex-start;
  display: grid;
  gap: clamp(50px, calc(100vw - 1310px), 130px);
  grid-template-columns: minmax(0, 522px) minmax(480px, 630px);
}
section#stats.stats-slider .stats-heading {
  align-self: center;
  max-width: 522px;
}
section#stats.stats-slider .stats-slider-window {
  height: 550px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  width: 630px;
}
section#stats.stats-slider .stats-slider-window::before, section#stats.stats-slider .stats-slider-window::after {
  content: "";
  height: 130px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}
section#stats.stats-slider .stats-slider-window::before {
  background: linear-gradient(to bottom, #00002E 0%, rgba(0, 0, 46, 0) 100%);
  top: 0;
}
section#stats.stats-slider .stats-slider-window::after {
  background: linear-gradient(to top, #00002E 0%, rgba(0, 0, 46, 0) 100%);
  bottom: 0;
}
section#stats.stats-slider .stats-slider-window:hover .stats-slider-track {
  animation-play-state: paused;
}
section#stats.stats-slider.blue .stats-slider-window::before {
  background: linear-gradient(to bottom, #00013F 0%, rgba(0, 1, 63, 0) 100%);
}
section#stats.stats-slider.blue .stats-slider-window::after {
  background: linear-gradient(to top, #00013F 0%, rgba(0, 1, 63, 0) 100%);
}
section#stats.stats-slider .stats-slider-track {
  animation: statsScrollUp 18s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}
section#stats.stats-slider .stats-slider-card {
  align-items: center;
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  gap: 40px;
  min-height: 150px;
  opacity: 0.8;
  padding: 20px 50px 20px 20px;
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  width: 590px;
}
section#stats.stats-slider .stats-slider-card.active {
  box-shadow: 3px -3px 12px rgba(224, 255, 0, 0.06);
  opacity: 1;
}
section#stats.stats-slider .stats-slider-card.active .stats-slider-highlight {
  opacity: 1;
}
section#stats.stats-slider .stats-slider-highlight {
  background-image: url("/wp-content/themes/Starter/assets/images/stats-slider-corner-highlight.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  height: 94px;
  opacity: 0;
  position: absolute;
  right: -7px;
  top: -7px;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  width: 113px;
  filter: drop-shadow(2px -2px 5px rgba(224, 255, 0, 0.12));
}
section#stats.stats-slider .stats-slider-icon {
  align-items: center;
  background: #00002E;
  border-radius: 5px;
  display: flex;
  flex: 0 0 130px;
  height: 130px;
  justify-content: center;
  width: 130px;
}
section#stats.stats-slider .stats-slider-icon img {
  display: block;
  height: 70px;
  object-fit: contain;
  width: 70px;
}
section#stats.stats-slider .stats-slider-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
section#stats.stats-slider .stats-slider-copy .stat {
  color: #A6A7FF;
  margin-bottom: 0;
}
section#stats.stats-slider .stats-slider-copy .body-l {
  color: #CFD6EC;
  margin-bottom: 0;
}
section#stats.stats-columns .stats-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
section#stats.stats-columns .stats-heading {
  max-width: 846px;
  width: 100%;
}
section#stats.stats-columns .stats-heading #heading-container {
  align-items: center;
  text-align: center;
}
section#stats.stats-columns .stats-heading #heading-container .content-container {
  align-items: center;
}
section#stats.stats-columns .stats-heading #heading-container #button-container {
  justify-content: center;
}
section#stats.stats-columns .stats-columns-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
}
section#stats.stats-columns .stats-column-card {
  background: linear-gradient(#F6F9FF, #F6F9FF) padding-box, linear-gradient(135deg, #CFD6EC 0%, rgba(166, 167, 255, 0.55) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 12px;
  min-height: 190px;
  overflow: hidden;
  padding: 50px;
  position: relative;
}
section#stats.stats-columns .stats-column-card .stat {
  color: #0002D1;
  margin-bottom: 12px;
}
section#stats.stats-columns .stats-column-card .body-l {
  color: #434361;
  margin-bottom: 0;
}
section#stats.stats-columns .stats-card-corner {
  background: url("/wp-content/themes/Starter/assets/images/stats-card-dots-light.svg") center/42.2063px 42.2032px no-repeat;
  height: 51px;
  -webkit-mask-image: linear-gradient(to bottom left, #000 0%, transparent 100%);
  mask-image: url("/wp-content/themes/Starter/assets/images/stats-card-dots-mask.svg");
  mask-mode: luminance;
  position: absolute;
  right: 11px;
  top: 11px;
  width: 51px;
}
section#stats.stats-columns.gray .stats-column-card {
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(135deg, #CFD6EC 0%, rgba(166, 167, 255, 0.55) 100%) border-box;
}
section#stats.stats-columns.space .stats-heading .eyebrow, section#stats.stats-columns.blue .stats-heading .eyebrow {
  color: #A6A7FF;
}
section#stats.stats-columns.space .stats-heading h1,
section#stats.stats-columns.space .stats-heading h2,
section#stats.stats-columns.space .stats-heading h3,
section#stats.stats-columns.space .stats-heading h4,
section#stats.stats-columns.space .stats-heading h5,
section#stats.stats-columns.space .stats-heading h6, section#stats.stats-columns.blue .stats-heading h1,
section#stats.stats-columns.blue .stats-heading h2,
section#stats.stats-columns.blue .stats-heading h3,
section#stats.stats-columns.blue .stats-heading h4,
section#stats.stats-columns.blue .stats-heading h5,
section#stats.stats-columns.blue .stats-heading h6 {
  color: #FFF;
}
section#stats.stats-columns.space .stats-heading .lead,
section#stats.stats-columns.space .stats-heading .body-l,
section#stats.stats-columns.space .stats-heading .body-s, section#stats.stats-columns.blue .stats-heading .lead,
section#stats.stats-columns.blue .stats-heading .body-l,
section#stats.stats-columns.blue .stats-heading .body-s {
  color: #CFD6EC;
}
section#stats.stats-columns.space .stats-heading #button.secondary, section#stats.stats-columns.blue .stats-heading #button.secondary {
  background-color: #222246;
  color: #FFF;
}
section#stats.stats-columns.space .stats-column-card, section#stats.stats-columns.blue .stats-column-card {
  background: linear-gradient(#222246, #222246) padding-box, linear-gradient(135deg, rgba(166, 167, 255, 0.55), rgba(67, 67, 97, 0.75) 55%, rgba(224, 255, 0, 0.2)) border-box;
  border-color: transparent;
}
section#stats.stats-columns.space .stats-column-card .stat, section#stats.stats-columns.blue .stats-column-card .stat {
  color: #A6A7FF;
}
section#stats.stats-columns.space .stats-column-card .body-l, section#stats.stats-columns.blue .stats-column-card .body-l {
  color: #CFD6EC;
}
section#stats.stats-columns.space .stats-card-corner, section#stats.stats-columns.blue .stats-card-corner {
  background-image: url("/wp-content/themes/Starter/assets/images/stats-card-dots-dark.svg");
}
@media screen and (max-width: 1365px) {
  section#stats.stats-slider .stats-slider-inner {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  section#stats.stats-slider .stats-heading {
    max-width: 720px;
  }
  section#stats.stats-slider .stats-slider-window {
    justify-self: center;
  }
}
@media screen and (max-width: 1024px) {
  section#stats .stats-inner {
    width: calc(100% - 80px);
  }
  section#stats.stats-slider .stats-slider-inner {
    gap: 60px;
    grid-template-columns: 1fr;
  }
  section#stats.stats-slider .stats-heading {
    max-width: 720px;
  }
  section#stats.stats-slider .stats-slider-window {
    justify-self: center;
  }
  section#stats.stats-columns .stats-columns-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  section#stats.stats-columns .stats-column-card {
    grid-column: span 4;
  }
}
@media screen and (max-width: 768px) {
  section#stats .stats-inner {
    width: calc(100% - 40px);
  }
  section#stats.stats-slider .stats-background img.module-background-image {
    bottom: 0;
    width: min(112vw, 900px);
  }
  section#stats.stats-slider .stats-slider-window {
    height: 480px;
    padding: 0;
    width: 100%;
  }
  section#stats.stats-slider .stats-slider-card {
    gap: 24px;
    padding: 20px;
    width: 100%;
  }
  section#stats.stats-slider .stats-slider-icon {
    flex-basis: 94px;
    height: 94px;
    width: 94px;
  }
  section#stats.stats-slider .stats-slider-icon img {
    height: 58px;
    width: 58px;
  }
  section#stats.stats-columns .stats-inner {
    gap: 40px;
  }
  section#stats.stats-columns .stats-columns-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  section#stats.stats-columns .stats-column-card {
    grid-column: span 4;
    min-height: 0;
    padding: 36px 30px;
  }
}
@keyframes statsScrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 10px));
  }
}
section#headline {
  position: relative;
  overflow: hidden;
}
section#headline.centered #button-container {
  justify-content: center;
}
section#headline .background-img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 341px;
}
section#team .title-container {
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  section#team .title-container {
    margin-bottom: 60px;
  }
}
section#team .column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#team .column .attribution {
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}
section#team .column .attribution .details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section#team .column .attribution .details p.lead {
  color: #FFF;
}
section#cta {
  position: relative;
  overflow: hidden;
}
section#cta.layout-subscribe {
  gap: 0;
}
section#cta.light {
  background-color: #FFF;
}
section#cta.gray {
  background-color: #FAFAFF;
}
section#cta.space {
  background-color: #00002E;
}
section#cta.blue {
  background-color: #00013F;
}
section#cta .grid {
  position: relative;
  z-index: 2;
}
section#cta .cta-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
section#cta .cta-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#cta .cta-copy .eyebrow {
  color: #A6A7FF;
}
section#cta .cta-copy h3,
section#cta .cta-copy h4,
section#cta .cta-copy h5,
section#cta .cta-copy .body-m,
section#cta .cta-copy .body-m p {
  color: #FFF;
}
section#cta .cta-copy h3,
section#cta .cta-copy h4,
section#cta .cta-copy h5,
section#cta .cta-copy p {
  margin-bottom: 0;
}
section#cta .cta-button-row,
section#cta .cta-button-wrap {
  position: relative;
  z-index: 2;
}
section#cta .cta-button {
  color: #00002E;
  background-color: #E0FF00;
  border-color: #E0FF00;
  justify-content: center;
}
section#cta .cta-button:hover {
  background-color: #F1FF8B;
  border-color: #F1FF8B;
}
section#cta.layout-centered .cta-background-media {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
section#cta.layout-centered .cta-background-media img,
section#cta.layout-centered .cta-background-media .animation {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#cta.layout-centered .cta-background-media .module-background-image {
  display: block;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
}
section#cta.layout-centered.light .cta-background-media, section#cta.layout-centered.gray .cta-background-media {
  bottom: 0;
  height: 426px;
}
section#cta.layout-centered.light .cta-background-media img,
section#cta.layout-centered.light .cta-background-media .animation, section#cta.layout-centered.gray .cta-background-media img,
section#cta.layout-centered.gray .cta-background-media .animation {
  height: 572px;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 1672px;
}
section#cta.layout-centered.space .cta-background-media, section#cta.layout-centered.blue .cta-background-media {
  height: 100%;
  bottom: 0;
}
section#cta.layout-centered .cta-centered-card {
  grid-column: 2/span 10;
  max-width: none;
  margin: 0 auto;
  padding: 50px 62px;
  text-align: center;
  background: linear-gradient(180deg, rgba(98, 100, 255, 0.75) 0%, rgba(0, 2, 209, 0.75) 100%), rgba(34, 34, 70, 0.5);
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
section#cta.layout-centered .cta-copy {
  max-width: 846px;
  margin: 0 auto;
  align-items: center;
}
section#cta.layout-centered .cta-copy h3 {
  font-size: 42px;
  line-height: 1.14;
}
section#cta.layout-centered .cta-button-row {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  max-width: 940px;
  width: 100%;
}
section#cta.layout-centered .cta-button-row .cta-button {
  flex: 1 1 0;
  min-width: 0;
  max-width: 300px;
  margin: 0 auto;
}
section#cta.layout-centered .cta-button-row .cta-button svg {
  display: none;
}
section#cta.layout-midpage .grid, section#cta.layout-subscribe .grid {
  max-width: 1440px;
}
section#cta.layout-midpage .cta-card, section#cta.layout-subscribe .cta-card {
  grid-column: auto/span 12;
  background: #222246;
  border: 1px solid #434361;
}
section#cta.layout-midpage .cta-midpage-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 50px 20px 20px;
}
section#cta.layout-midpage .cta-media {
  position: relative;
  z-index: 2;
  flex: 0 0 260px;
  height: 162px;
  background: #00013F;
  border: 1px solid rgba(98, 100, 255, 0.35);
  overflow: hidden;
}
section#cta.layout-midpage .cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#cta.layout-midpage .cta-copy {
  flex: 1 1 auto;
  gap: 12px;
}
section#cta.layout-midpage .cta-copy h5 {
  font-size: 22px;
  line-height: 1.27;
}
section#cta.layout-midpage .cta-copy .body-m,
section#cta.layout-midpage .cta-copy .body-m p {
  color: #CFD6EC;
}
section#cta.layout-midpage .cta-button-wrap {
  flex: 0 0 auto;
}
section#cta.layout-subscribe .cta-subscribe-card {
  background: #222246;
  border: 1px solid #434361;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px;
}
section#cta.layout-subscribe .cta-subscribe-glow {
  bottom: -274px;
  height: 422px;
  pointer-events: none;
  position: absolute;
  right: -105px;
  width: 422px;
  z-index: 0;
}
section#cta.layout-subscribe .cta-subscribe-glow svg {
  height: 622px;
  left: -100px;
  max-width: none;
  position: absolute;
  top: -100px;
  width: 622px;
}
section#cta.layout-subscribe .cta-copy {
  align-items: flex-start;
  flex: 0 1 530px;
  gap: 14px;
  margin: 0;
  max-width: 530px;
}
section#cta.layout-subscribe .cta-copy h4 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 120%;
}
section#cta.layout-subscribe .cta-copy .body-m,
section#cta.layout-subscribe .cta-copy .body-m p {
  color: #CFD6EC;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 140%;
}
section#cta.layout-subscribe .cta-form-embed {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
}
section#cta.layout-subscribe .cta-form-embed .hbspt-form,
section#cta.layout-subscribe .cta-form-embed .hubspot-form,
section#cta.layout-subscribe .cta-form-embed .site-hubspot-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
section#cta.layout-subscribe .cta-form-embed iframe.hs-form-iframe {
  border: 0;
  min-height: 50px !important;
  width: 100% !important;
}
section#cta.layout-subscribe .cta-form-embed form,
section#cta.layout-subscribe .cta-form-embed .hs-form,
section#cta.layout-subscribe .cta-form-embed .cta-mock-hubspot-form {
  align-items: center !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  margin: 0 !important;
  width: 100%;
}
section#cta.layout-subscribe .cta-form-embed .hs_email,
section#cta.layout-subscribe .cta-form-embed .hs-form-field {
  flex: 1 1 auto;
  margin: 0 !important;
}
section#cta.layout-subscribe .cta-form-embed label:not(.show-for-sr),
section#cta.layout-subscribe .cta-form-embed .hs-error-msgs,
section#cta.layout-subscribe .cta-form-embed .hs-form-required,
section#cta.layout-subscribe .cta-form-embed .submitted-message {
  color: #FFF;
}
section#cta.layout-subscribe .cta-form-embed input[type=email],
section#cta.layout-subscribe .cta-form-embed input[type=text],
section#cta.layout-subscribe .cta-form-embed input[type=tel] {
  width: 100%;
  height: 50px;
  margin: 0 !important;
  padding: 12px 20px !important;
  border: 1px solid #CFD6EC !important;
  border-radius: 100px !important;
  background: #FFF !important;
  box-shadow: none !important;
  color: #00002E !important;
  font-size: 18px !important;
  line-height: 140% !important;
}
section#cta.layout-subscribe .cta-form-embed input[type=email]::placeholder,
section#cta.layout-subscribe .cta-form-embed input[type=text]::placeholder,
section#cta.layout-subscribe .cta-form-embed input[type=tel]::placeholder {
  color: #00002E !important;
  opacity: 1;
}
section#cta.layout-subscribe .cta-form-embed input[type=submit],
section#cta.layout-subscribe .cta-form-embed button[type=submit],
section#cta.layout-subscribe .cta-form-embed .cta-button {
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%) !important;
  background-position: 100% 50% !important;
  background-size: 202% 100% !important;
  border: 0 !important;
  border-radius: 100px !important;
  box-sizing: border-box !important;
  color: #00002E !important;
  flex: 0 0 auto;
  font-size: 16px !important;
  height: 50px !important;
  letter-spacing: 0.32px;
  line-height: 120% !important;
  margin: 0 !important;
  padding: 0 20px !important;
  transition: background-position 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  width: 120px !important;
  white-space: nowrap;
}
section#cta.layout-subscribe .cta-form-embed input[type=submit]:hover, section#cta.layout-subscribe .cta-form-embed input[type=submit]:focus-visible,
section#cta.layout-subscribe .cta-form-embed button[type=submit]:hover,
section#cta.layout-subscribe .cta-form-embed button[type=submit]:focus-visible,
section#cta.layout-subscribe .cta-form-embed .cta-button:hover,
section#cta.layout-subscribe .cta-form-embed .cta-button:focus-visible {
  background-position: 0% 50% !important;
  color: #00002E !important;
}
section#cta.layout-subscribe .cta-form-embed .hs_submit {
  margin: 0 !important;
}
@media screen and (max-width: 1024px) {
  section#cta.layout-midpage .cta-card, section#cta.layout-subscribe .cta-card {
    grid-column: auto/span 8;
  }
  section#cta.layout-centered .cta-centered-card {
    grid-column: 1/span 8;
    padding: 40px 30px;
  }
  section#cta.layout-centered .cta-button-row {
    flex-direction: column;
  }
  section#cta.layout-midpage .cta-midpage-card {
    align-items: flex-start;
    padding: 30px;
    flex-direction: column;
  }
  section#cta.layout-midpage .cta-media {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  section#cta.layout-midpage .cta-button-wrap {
    width: 100%;
  }
  section#cta.layout-midpage .cta-button {
    width: 100%;
  }
  section#cta.layout-subscribe .cta-subscribe-card {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  section#cta.layout-subscribe .cta-copy {
    flex: none;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  section#cta.layout-midpage .cta-card, section#cta.layout-subscribe .cta-card {
    grid-column: auto/span 4;
  }
  section#cta.layout-centered .cta-centered-card {
    grid-column: auto/span 4;
    padding: 30px 20px;
  }
  section#cta.layout-centered .cta-copy h3 {
    font-size: 32px;
  }
  section#cta.layout-subscribe .cta-form-embed form,
section#cta.layout-subscribe .cta-form-embed .hs-form,
section#cta.layout-subscribe .cta-form-embed .cta-mock-hubspot-form {
    align-items: stretch;
    flex-direction: column !important;
  }
  section#cta.layout-subscribe .cta-form-embed .cta-button,
section#cta.layout-subscribe .cta-form-embed input[type=submit],
section#cta.layout-subscribe .cta-form-embed button[type=submit] {
    width: 100% !important;
  }
}
section#content-repeater .grid.content-row {
  align-items: center;
  margin-top: 75px;
}
section#content-repeater .grid.content-row .content-container.content-first {
  padding-right: 40px;
}
section#content-repeater .grid.content-row .content-container.media-first {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  section#content-repeater .grid.content-row {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
section#content-repeater .masonry-column {
  padding-top: 14px;
  position: relative;
}
section#content-repeater .masonry-column::before {
  content: "";
  height: 1px;
  width: 40px;
  background: #00002E;
  position: absolute;
  top: 0;
  left: 0;
}
section#content-repeater .masonry-column h5 {
  margin-bottom: 14px;
}
section#content-repeater .masonry-column div.body-s p, section#content-repeater .masonry-column div.body-s li {
  color: #FFF;
}
section#content-repeater .masonry-column #button-container {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  section#content-repeater .content-row .media-container {
    order: 1;
  }
  section#content-repeater .content-row > .content-container {
    order: 2;
    padding-left: 0 !important;
  }
}
section#subscribe .grid {
  position: relative;
}
section.in-scroll-grid#copy-image .content-first #heading-container {
  padding-left: 60px;
}
section#search-results #search-container {
  width: 100%;
  position: relative;
}
section#search-results #search-container::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15.7421 15.7421L20 20M10.8496 17.6991C7.06665 17.6991 4 14.6325 4 10.8496C4 7.06665 7.06665 4 10.8496 4C14.6325 4 17.6991 7.06665 17.6991 10.8496C17.6991 14.6325 14.6325 17.6991 10.8496 17.6991Z' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  top: 12px;
  left: 12px;
}
section#search-results #search-container form {
  width: 100%;
}
section#search-results #search-container form input {
  width: 100%;
  max-width: none;
  height: 46px;
  padding: 12px 12px 12px 46px;
  border-radius: 4px;
  border: 1px solid #00002E;
  background: #FFF;
  font-size: 18px;
  color: #00002E;
}
section#search-results #search-container form input::placeholder {
  font-size: 18px;
  color: #00002E;
}
section#search-results #search-container form input:focus, section#search-results #search-container form input:focus-visible {
  outline: none !important;
  box-shadow: none;
}
section#search-results #search-container form input[type=search]::-webkit-search-decoration,
section#search-results #search-container form input[type=search]::-webkit-search-cancel-button,
section#search-results #search-container form input[type=search]::-webkit-search-results-button,
section#search-results #search-container form input[type=search]::-webkit-search-results-decoration {
  display: none;
}
section#search-results #search-container.search-active {
  opacity: 1;
  visibility: visible;
}
section#search-results #search-card {
  padding-bottom: 50px;
  border-bottom: 1px solid #FFF;
  padding-top: 50px;
}
section#search-results #search-card h6 {
  margin-bottom: 20px;
}
section#search-results #search-card h6 a {
  color: #00002E;
}
section#search-results #search-card h6 a:hover {
  color: #00013F;
}
section#search-results #search-card .permalink {
  color: #00013F;
  margin-bottom: 20px;
  display: block;
  font-weight: 700;
}
section#search-results #pagination .page-numbers.current {
  color: #FFF;
  height: 40px;
  width: 40px;
  border-radius: 4px;
  background: #00013F;
}
section#search-results #pagination .page-numbers:not(.prev, .next) {
  padding: 8px;
}
section#search-results #pagination .page-numbers:not(.prev, .next):hover {
  color: #FFF;
  border-radius: 4px;
  background: #00013F;
}
section#search-results #pagination ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
section#search-results #pagination ul.pagination li {
  list-style-type: none;
  border-radius: 3px;
  overflow: hidden;
}
section#search-results #pagination ul.pagination li::before {
  display: none;
}
section#search-results #pagination ul.pagination li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFF;
  height: 40px;
  width: 40px;
  border-radius: 4px;
  background: #00013F;
}
section#search-results #pagination ul.pagination li span.dots {
  height: 40px;
  width: 40px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
section#search-results #pagination ul.pagination li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFF;
  height: 40px;
  width: 40px;
  border-radius: 3px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00002E;
  text-decoration: none;
  overflow: hidden;
}
section#search-results #pagination ul.pagination li a.next {
  padding: 0;
  border: none;
  height: 17px;
  width: 10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'%3E%3Cpath d='M1.00024 1.49976L8.00046 8.49997L1.00024 15.5002' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}
section#search-results #pagination ul.pagination li a.next:hover {
  background: transparent;
}
section#search-results #pagination ul.pagination li a.prev {
  padding: 0;
  border: none;
  height: 17px;
  width: 10px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'%3E%3Cpath d='M1.00024 1.49976L8.00046 8.49997L1.00024 15.5002' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  transform: rotate(180deg);
  transform-origin: center;
}
section#search-results #pagination ul.pagination li a.prev:hover {
  background: transparent;
}
section#search-results #pagination ul.pagination li a:hover {
  background: #00013F;
  color: #FFF;
}
section#search-results #pagination ul.pagination.next, section#search-results #pagination ul.pagination.prev {
  position: relative;
  top: 2px;
}
section#post.basic aside {
  grid-column-start: 1;
  grid-row-start: 1;
}
section#post.basic #separator {
  grid-column-start: 4;
  grid-row-start: 1;
}
section#post.basic .the-content {
  grid-column-start: 5;
  grid-row-start: 1;
}
section#post.single-blog .blog-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
section#post #separator-line {
  height: 1px;
  width: 100%;
  margin: 50px 0 30px;
  background-color: #00013F;
}
section#customer-stats .stats-container .stats {
  border-radius: 20px;
  padding: 60px 100px;
  display: flex;
  flex-direction: row;
}
section#customer-stats .stats-container .stats .stat-container {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
section#customer-stats .stats-container .stats .stat-container h2, section#customer-stats .stats-container .stats .stat-container p {
  max-width: 220px;
  color: #00002E;
}
@media screen and (max-width: 1024px) {
  section#customer-stats .stats-container .stats {
    flex-direction: column;
  }
  section#customer-stats .stats-container .stats .stat-container {
    width: 100%;
  }
  section#customer-stats .stats-container .stats .stat-container.first {
    padding-bottom: 36px;
    border-right: none;
  }
  section#customer-stats .stats-container .stats .stat-container.second {
    padding-top: 36px;
    padding-bottom: 36px;
    border-right: none;
  }
  section#customer-stats .stats-container .stats .stat-container.third {
    padding-top: 36px;
  }
}
section#intro-copy .body-4 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section#featured {
  position: relative;
}
section#featured .title-container {
  margin-bottom: 75px;
}
section#featured #content-container h3 {
  margin-bottom: 20px;
}
section#featured #content-container .body-l {
  color: #FFF;
}
section#featured .secondary-featured {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#featured .secondary-featured #resource-card {
  display: flex;
  gap: 30px;
}
section#featured .secondary-featured #resource-card h4 {
  margin-bottom: 0;
}
section#featured .secondary-featured #resource-card p.excerpt {
  display: none;
}
section#featured .secondary-featured #resource-card #image-container {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  section#featured .secondary-featured #resource-card {
    flex-direction: column;
  }
}
section#featured .separator-line {
  height: 1px;
  background: #00013F;
  width: 100%;
}
section#body.basic main {
  padding: 0 40px;
}
section#related .title-container {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  section#overview .image-container {
    margin-bottom: 40px;
  }
  section#overview #button-container {
    flex-flow: column;
    align-items: start;
  }
}
section#overview .content-container {
  width: 100%;
}
section#overview .content-container p {
  font-size: 24px !important;
  color: #FFF !important;
}
section#overview .content-container p span {
  font-size: 24px !important;
  color: #FFF !important;
  line-height: 140% !important;
}
section#schedule h3 {
  margin-bottom: 50px;
}
section.no-heading .intro-title {
  display: none;
}
section.no-heading .title-container,
section.no-heading #title-container {
  display: none;
}
section.no-heading .top-content {
  display: none;
}
section#subscribe #subscribe {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  background: #00002E;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  section#subscribe #subscribe {
    flex-direction: column;
  }
  section#subscribe #subscribe form {
    flex-direction: column;
    margin-top: 20px;
  }
}
section#subscribe #subscribe h4 {
  color: #FFF;
}
section#subscribe #subscribe h4 span {
  color: #E0FF00;
}
section#subscribe #subscribe .body-s {
  color: #FFF;
}
section#subscribe #subscribe .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section#subscribe #subscribe form {
  display: flex;
  gap: 20px;
}
section#subscribe #subscribe form .field-row {
  display: flex;
  gap: 24px;
}
section#subscribe #subscribe form input[type=email] {
  padding: 12px;
  border: 1px solid #00013F;
  background-color: #00013F;
  color: #FFF;
  font-size: 16px;
  line-height: 150%;
  height: 50px;
  width: 100%;
  min-width: 320px;
  margin-bottom: 0;
}
section#subscribe #subscribe form input[type=email]::placeholder {
  color: #FFF;
}
section#subscribe #subscribe form ul.no-list {
  position: absolute;
  margin-left: 0 !important;
  list-style-type: none !important;
}
section#subscribe #subscribe form ul.no-list li {
  list-style-type: none !important;
}
section#subscribe #subscribe form ul.no-list li label {
  color: #FF1950;
}
section#subscribe.secondary #subscribe {
  background: #00002E;
}
section#disclaimer #disclaimer {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #00002E;
  padding: 50px;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  section#disclaimer #disclaimer {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  section#customer-stories-archive #image-container {
    margin-bottom: 0 !important;
  }
}
section video {
  max-width: 100%;
}
section .body-cta-container {
  padding: 30px;
  border: 1px solid #00013F;
  background: #00002E;
  margin-top: 50px;
  display: flex;
  position: relative;
  transition: 0.3s all;
  height: 170px;
  justify-content: space-between;
}
section .body-cta-container h2, section .body-cta-container h3, section .body-cta-container h4, section .body-cta-container h5, section .body-cta-container h6 {
  color: #E0FF00;
  margin-bottom: 0 !important;
}
section .body-cta-container .corner-piece {
  position: absolute;
  right: -2px;
  top: -1px;
}
section .body-cta-container .slider-bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  margin-top: auto;
  transition: 0.3s all;
}
section .body-cta-container:hover {
  background: #686887;
  align-items: start;
}
section #title-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section #title-container #header-button-container {
  display: flex;
  justify-content: end;
}
section #title-container.basic-heading {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  section #title-container.basic-heading {
    margin-bottom: 40px;
  }
}
section #title-container.basic-heading p {
  max-width: 762px;
}
section #featured-card {
  display: flex;
  gap: 40px;
  border-radius: 15px;
  background: #FFF;
  padding: 35px;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
section #featured-card > div {
  flex-basis: 100%;
}
section #featured-card #image-container img {
  border-radius: 21px;
  overflow: hidden;
}
section #featured-card #content-container #content-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
section #featured-card:hover {
  box-shadow: 0px 0px 10px 0px rgba(40, 37, 34, 0.2);
  top: -2px;
}
@media screen and (max-width: 1024px) {
  section #featured-card {
    flex-direction: column;
  }
}
section #resource-card {
  position: relative;
}
section #resource-card > div {
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  section #resource-card > div {
    flex-basis: auto;
  }
}
section #resource-card p.category {
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0.36px;
}
section #resource-card span.tag {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 14px;
  color: #E0FF00;
}
section #resource-card h2, section #resource-card h3, section #resource-card h4, section #resource-card h5, section #resource-card h6 {
  margin-bottom: 14px;
  transition: 0.2s all cubic-bezier(0.25, 1, 0.5, 1);
}
section #resource-card p.body-s {
  color: #FFF;
}
section #resource-card #button-container {
  margin-top: 30px;
}
section #resource-card #image-container {
  margin-bottom: 30px;
  overflow: hidden;
}
section #resource-card #image-container img {
  aspect-ratio: 413/210;
  display: block;
  object-fit: cover;
  transform-origin: center center;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1024px) {
  section #resource-card #image-container {
    height: auto;
  }
}
section #resource-card #content-container {
  display: flex;
  flex-direction: column;
}
section #resource-card #content-container #content-block {
  display: flex;
  flex-direction: column;
  align-items: start;
}
section #resource-card #content-container #button-container {
  margin-top: auto;
}
section #resource-card p.date {
  font-size: 12px;
  line-height: 100%;
  /* 14px */
  color: #FFF;
  margin-top: 14px;
}
section #resource-card #text-button,
section #resource-card #button {
  margin-top: 20px;
}
section #resource-card:hover h2, section #resource-card:hover h3, section #resource-card:hover h4, section #resource-card:hover h5, section #resource-card:hover h6 {
  color: #E0FF00;
}
section #resource-card:hover #text-button::before {
  width: 100%;
}
section #resource-card.featured {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  section #resource-card.featured {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  section #resource-card #image-container img {
    max-height: none;
  }
}
section #resource-card-stack {
  position: relative;
  display: flex;
  gap: 20px;
}
section #resource-card-stack > div {
  flex-basis: 100%;
}
section #resource-card-stack p.category {
  font-size: 18px;
  line-height: 148%;
  letter-spacing: 0.36px;
}
section #resource-card-stack span.tag {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 14px;
  color: #00002E;
}
section #resource-card-stack h6 {
  margin-bottom: 14px;
}
section #resource-card-stack p.caption {
  color: #FFF;
}
section #resource-card-stack #image-container {
  border-radius: 4px;
  overflow: hidden;
  max-width: 315px;
}
section #resource-card-stack #image-container img {
  aspect-ratio: 650/380;
  display: block;
  object-fit: cover;
  transform-origin: center center;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1024px) {
  section #resource-card-stack #image-container {
    height: auto;
  }
}
section #resource-card-stack #content-container {
  display: flex;
  flex-direction: column;
}
section #resource-card-stack #content-container #content-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  margin-bottom: 30px;
}
section #resource-card-stack::before {
  content: "";
  transition: all 0.4s ease-in-out;
  background-color: #FFF;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 30px;
}
section #resource-card-stack:hover #image-container img {
  transform: scale(1.1);
}
section #resource-card-stack:hover::before {
  transition: all 0.4s ease-in-out;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
}
@media screen and (max-width: 768px) {
  section #resource-card-stack #image-container img {
    max-height: none;
  }
}
section #resource-card-stack.half #image-container img {
  height: 340px;
}
section #post-details {
  display: flex;
  gap: 16px;
  align-items: center;
}
section #post-details #date, section #post-details #time, section #post-details #location {
  display: flex;
  gap: 8px;
}
section #post-details #author-headshot img {
  height: 48px;
  width: 48px;
  border-radius: 500px;
  margin-bottom: 0;
}
section #post-details #post-info {
  display: flex;
  flex-direction: column;
}
section #post-details #post-info p {
  margin: 0;
  padding: 0;
}
section #pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 35px;
  position: relative;
}
section #pagination .page-numbers {
  font-size: 18px;
  line-height: 150%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  box-sizing: border-box;
  color: #FFF;
  width: 90px;
  position: relative;
  padding-bottom: 16px;
}
section #pagination .page-numbers.current {
  font-weight: 700;
  position: relative;
}
section #pagination .page-numbers.current::after {
  content: "";
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #E0FF00;
  position: absolute;
  z-index: 3;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #pagination .page-numbers:hover {
  opacity: 1;
}
section #pagination .page-numbers.next, section #pagination .page-numbers.prev {
  background-color: transparent !important;
  top: 2px;
  width: 36px;
  padding: 0 0 8px;
  border: none;
}
section #pagination .page-numbers:not(.prev, .next) {
  padding: 8px 8px 16px;
}
section #pagination .page-numbers:not(.prev, .next):hover::after {
  content: "";
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #00013F;
  position: absolute;
  z-index: 3;
}
section #pagination::after {
  content: "";
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #00013F;
  position: absolute;
}
section main.blog {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section main.blog .post-tags {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 6px;
}
section main p a {
  position: relative;
  text-decoration: none;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
  color: #E0FF00;
}
section main p a::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #E0FF00;
}
section main p a:hover {
  color: #FFF;
}
section main p a:hover::before {
  background-color: #FFF;
}
section #title-section {
  padding-bottom: 16px;
  margin-bottom: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
}
section #content-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section #content-bottom hr {
  height: 1px;
  width: 100%;
  padding: 0;
  margin: 0;
}
section #content-bottom p {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1024px) {
  section #content-bottom {
    margin-bottom: 40px;
  }
}
section #heading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
section #heading-container .content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section #heading-container .content-container div.body-l {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
section #heading-container .eyebrow {
  color: #0002D1;
  display: flex;
}
section #heading-container h1:last-child, section #heading-container h2:last-child {
  margin-bottom: 0;
}
section #heading-container h3:last-child, section #heading-container h4:last-child, section #heading-container h5:last-child, section #heading-container h6:last-child {
  margin-bottom: 0;
}
section #heading-container .lead,
section #heading-container .body-s {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section #heading-container .lead:last-child,
section #heading-container .body-s:last-child {
  margin-bottom: 0;
}
section #heading-container .lead p, section #heading-container .lead li,
section #heading-container .body-s p,
section #heading-container .body-s li {
  color: #434361;
}
section #heading-container .lead ul,
section #heading-container .body-s ul {
  margin-bottom: 0;
}
section #heading-container .lead ul:last-child,
section #heading-container .body-s ul:last-child {
  margin-bottom: 0;
}
section #heading-container .lead ul:last-child li:last-child,
section #heading-container .body-s ul:last-child li:last-child {
  margin-bottom: 0;
}
section #heading-container ul {
  margin-left: 0;
}
section #heading-container ul > li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  list-style-type: none;
  text-indent: 0;
}
section #heading-container ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='24' viewBox='0 0 3 24' fill='none'%3E%3Ccircle cx='1.5' cy='12' r='1.5' fill='%236264FF'/%3E%3C/svg%3E");
  left: -1px;
  position: absolute;
  top: -1px;
  display: block;
}
section #heading-container #button-container {
  margin-top: 30px;
}
section #heading-container .copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section .split-heading #heading-container {
  flex-direction: row;
  gap: 8.333%;
  justify-content: space-between;
  align-items: end;
}
section .content-container.text-center #heading-container {
  align-items: center;
}
section .content-container.text-center #heading-container .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
section .title-container.text-center #heading-container {
  align-items: center;
}
section .title-container.text-center #heading-container .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
section .content.text-center #heading-container {
  align-items: center;
}
section .content.text-center #heading-container .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
section .large-center.text-center #heading-container {
  align-items: center;
}
section .large-center.text-center #heading-container .eyebrow {
  margin-left: auto;
  margin-right: auto;
}
section span.tag-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
section .text-center .eyebrow {
  text-align: center;
  justify-content: center;
}
section .text-center #button-container {
  justify-content: center;
}
section .accordion-menu {
  border-radius: 15px;
  overflow: hidden;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
section .accordion-menu .accordion-menu-header {
  padding-bottom: 15px;
}
section .accordion-menu .accordion-menu-header h5 {
  margin: 0;
  padding: 0;
}
section .accordion-menu .accordion-item .accordion-header {
  padding: 15px 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .accordion-menu .accordion-item .accordion-header .toggle-icon {
  height: 20px;
  width: 20px;
  border-radius: 60px;
  position: relative;
  display: flex;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
section .accordion-menu .accordion-item .accordion-header .toggle-icon::after {
  content: "-";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: #FFF;
  position: absolute;
  left: 0;
}
section .accordion-menu .accordion-item .accordion-header.active .toggle-icon::after, section .accordion-menu .accordion-item .accordion-header:hover .toggle-icon::after {
  content: "+";
}
section .accordion-menu .accordion-item .accordion-header p {
  font-weight: 700;
}
section .accordion-menu .accordion-item .accordion-content {
  display: none;
  list-style: none;
  margin: 0;
  margin-left: 0;
  flex-direction: column;
  margin-bottom: 15px;
  padding: 0;
  background-color: transparent;
  border: none;
}
section .accordion-menu .accordion-item .accordion-content li {
  margin-bottom: 5px;
  padding-left: 26px;
  list-style-type: none;
  position: relative;
  margin-bottom: 0;
  margin-top: 8px;
  padding-bottom: 0;
}
section .accordion-menu .accordion-item .accordion-content li:first-child {
  margin-top: 0;
}
section .accordion-menu .accordion-item .accordion-content li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3E%3Cpath d='M2.375 14.5312V2.03125C2.375 1.60156 2.53237 1.23372 2.8471 0.927734C3.16183 0.621745 3.54018 0.46875 3.98214 0.46875H12.0179C12.4598 0.46875 12.8382 0.621745 13.1529 0.927734C13.4676 1.23372 13.625 1.60156 13.625 2.03125V14.5312L8 12.1875L2.375 14.5312ZM3.98214 12.1484L8 10.4688L12.0179 12.1484V2.03125H3.98214V12.1484Z' fill='%23047481'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 2px;
}
section .accordion-menu .accordion-item .accordion-content li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1);
  padding: 0;
}
section .accordion-menu .accordion-item .accordion-content li a.current-link {
  font-weight: 700;
}
section .accordion-menu .accordion-item .accordion-content.active {
  display: flex;
}
section .search-container.five {
  display: flex;
  justify-content: end;
}
section .filter-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 50px;
}
section .filter-box h5 {
  margin-right: 60px;
}
section .filter-box #select-box {
  margin-right: 19px;
}
section .filter-box input[type=search] {
  width: 419px !important;
  margin-right: 0 !important;
}
@media screen and (max-width: 1024px) {
  section .filter-box form {
    display: none !important;
  }
}
section .filter-bar {
  margin-top: 50px;
  margin-bottom: 50px;
}
section .filter-bar .filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
section .filter-title {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}
section .filter-search {
  display: flex;
  gap: 19px;
}
section form.blog-search-form {
  position: relative;
  display: flex;
  gap: 8px;
}
section form.blog-search-form input[type=search] {
  height: 50px;
  box-sizing: border-box;
  display: inline-block;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  padding: 12px 20px 12px 42px;
  margin-bottom: 0;
  border-color: #00013F;
  color: #FFF;
}
section form.blog-search-form input[type=search]::placeholder {
  color: #FFF;
  opacity: 0.5;
  font-style: normal;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
section form.blog-search-form::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='8.80133' cy='8.80137' r='7' transform='rotate(15.0346 8.80133 8.80137)' stroke='%23FEFDFB' stroke-width='2'/%3E%3Cline x1='14.2186' y1='14.4367' x2='18.299' y2='19.3713' stroke='%23FEFDFB' stroke-width='2'/%3E%3C/svg%3E");
  position: absolute;
  top: 15px;
  left: 14px;
}
section form.blog-search-form #button.search-button {
  height: 42px;
}
section form.blog-search-form label {
  display: flex;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section form.blog-search-form label {
    flex-direction: column;
  }
}
section #toc {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  section #toc {
    display: none;
  }
}
section #toc #sticky {
  position: sticky;
  top: 130px;
}
section #toc nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: start;
}
section #toc nav a {
  color: #00002E;
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  padding: 4px 10px;
  border-radius: 1.656px;
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #categories {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
section #categories span.post-category {
  padding: 4px 10px;
  border-radius: 4px;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
section .title-container.padding-40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  section .title-container.padding-40 {
    padding-bottom: 24px;
  }
}
section .title-container.padding-75 {
  padding-bottom: 72px;
}
@media screen and (max-width: 1024px) {
  section .title-container.padding-75 {
    padding-bottom: 40px;
  }
}
section .title-container.padding-60 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  section .title-container.padding-60 {
    padding-bottom: 30px;
  }
}
section .title-container.padding-80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  section .title-container.padding-80 {
    padding-bottom: 40px;
  }
}
section .title-container.padding-100 {
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  section .title-container.padding-100 {
    padding-bottom: 70px;
  }
}
section .title-container h3:last-child {
  margin: 0;
}
section .title-container.with-button {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  section .title-container.with-button {
    flex-flow: column;
  }
  section .title-container.with-button #button {
    width: fit-content;
    margin-top: 40px;
  }
}
section #category-links {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}
section #category-links a span {
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
section #category-links a span:hover, section #category-links a span.active {
  color: #FFF;
}
section #category-links.collapsed {
  display: flex;
}
section ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
section ul.pagination li {
  list-style-type: none;
  border-radius: 3px;
  overflow: hidden;
}
section ul.pagination li::before {
  display: none;
}
section ul.pagination li span.current {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
section ul.pagination li span.dots {
  height: 50px;
  width: 50px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
section ul.pagination li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFF;
  height: 50px;
  width: 50px;
  border-radius: 3px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}
section ul.pagination li a.next {
  padding: 0;
  border: none;
  content: url("data:image/svg+xml,%3Csvg width='50' height='52' viewBox='0 0 50 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='2.25806' width='49' height='49' rx='2.5' stroke='white'/%3E%3Cpath d='M17.9083 36.92L28.4683 26.16V25.84L17.9083 15.12H23.5883L34.2283 25.96L23.5883 36.92H17.9083Z' fill='white'/%3E%3C/svg%3E%0A");
}
section ul.pagination li a.prev {
  padding: 0;
  border: none;
  content: url("data:image/svg+xml,%3Csvg width='50' height='52' viewBox='0 0 50 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='2.25806' width='49' height='49' rx='2.5' stroke='white'/%3E%3Cpath d='M17.9083 36.92L28.4683 26.16V25.84L17.9083 15.12H23.5883L34.2283 25.96L23.5883 36.92H17.9083Z' fill='white'/%3E%3C/svg%3E%0A");
  transform: rotate(180deg);
  transform-origin: center;
}
section ul.pagination li:hover a {
  background-color: transparent;
}
section ul.pagination.next, section ul.pagination.prev {
  position: relative;
  top: 2px;
}
section .flex-columns.quotes {
  flex-wrap: nowrap;
}
section .flex-columns.quotes::before {
  content: "";
  height: 0.5px;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
section .flex-columns.quotes::after {
  content: "";
  height: 0.5px;
  width: 100vw;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  section .flex-columns.quotes {
    flex-direction: column;
  }
  section .flex-columns.quotes::after {
    display: none;
  }
  section .flex-columns.quotes::before {
    display: none;
  }
}
section #body-copy ul {
  margin-left: 0;
  margin-top: 20px;
}
section #body-copy ul > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  list-style-type: none;
  text-indent: 0;
}
section #body-copy ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='15' viewBox='0 0 7 15' fill='none'%3E%3Cpath d='M0.868164 0.496094L4.86816 7.49609L0.868164 14.4961' stroke='%23DDFE55' stroke-width='2'/%3E%3C/svg%3E");
  left: 6px;
  position: absolute;
  top: 1px;
  display: block;
}
section #body-copy p, section #body-copy li {
  color: #FFF;
}
section .byline .body-l {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 0px !important;
}
@media screen and (max-width: 768px) {
  section#archive .search-container, section#blog-archive .search-container {
    margin-top: 20px;
  }
}
section .search-gray {
  padding: 40px 80px 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 8px;
}
section .search-gray input[type=submit] {
  display: none;
}
section .search-gray input[type=search] {
  padding: 0 !important;
  background-color: transparent !important;
  border: none !important;
  font-size: 22px !important;
  margin-bottom: 0 !important;
  height: 33px !important;
  box-shadow: none !important;
  width: 100% !important;
}
section .search-gray input[type=search]::placeholder {
  font-size: 22px !important;
}
section .search-gray .search-form {
  width: 100%;
}
section .content li {
  margin-bottom: 10px;
}
section .content li a {
  color: #00002E !important;
}
section .content ul {
  margin-left: 30px;
  margin-bottom: 0;
}
section .content p.body-2 {
  font-size: 16px !important;
  line-height: 150% !important;
}
section #body-copy #content h1:not(:first-child), section #body-copy #content h2:not(:first-child), section #body-copy #content h3:not(:first-child), section #body-copy #content h4:not(:first-child), section #body-copy #content h5:not(:first-child), section #body-copy #content h6:not(:first-child) {
  margin-top: 50px;
}
section #body-copy h1, section #body-copy h2, section #body-copy h3, section #body-copy h4, section #body-copy h5, section #body-copy h6 {
  margin-bottom: 20px;
}
section #body-copy p {
  margin-bottom: 25px;
}
section #body-copy img {
  margin-bottom: 20px;
}
section #body-copy .hs-embed-wrapper .hs-embed-content-wrapper > div {
  padding-bottom: 20px !important;
}
section #body-copy ol {
  margin-left: 25px;
}
section #body-copy table {
  box-sizing: border-box;
}
section #body-copy #content > ul {
  margin-left: 30px;
  padding-left: 0;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 0;
}
section #body-copy #content > ul ul {
  margin-top: 10px;
}
section #body-copy #content > ul > li {
  position: relative;
  list-style-position: outside;
  padding-left: 0;
  margin-bottom: 20px;
}
section #body-copy #content > ul.full li {
  width: 100%;
}
section #body-copy .wp-block-pullquote {
  margin: 0;
  padding: 0;
  text-align: left;
}
section #body-copy blockquote {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  overflow: hidden;
  border-top: 1px solid #00013F;
  border-bottom: 1px solid #00013F;
  border-left: none;
}
section #body-copy blockquote p {
  position: relative;
  font-size: 18px;
  line-height: 180%;
  color: #FFF;
  margin-bottom: 50px;
}
section #body-copy blockquote cite {
  font-size: 12px;
  font-style: italic;
  line-height: 150%;
  position: relative;
  z-index: 3;
  color: #FFF;
}
section #body-copy blockquote cite::before {
  display: none;
}
section #body-copy blockquote *:last-child {
  margin-bottom: 0 !important;
}
section #body-copy #body-CTA {
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}
section #body-copy #body-CTA h3 {
  margin: 0 0 20px !important;
}
section #body-copy figcaption {
  margin-top: 0;
  margin-bottom: 0;
  color: #FFF;
  font-size: 12px;
}
section #body-copy #author-content {
  padding: 30px 0;
  border-top: 1px solid #00013F;
  border-bottom: 1px solid #00013F;
  margin-bottom: 50px;
  margin-top: 50px;
  display: flex;
  gap: 50px;
}
section #body-copy #author-content #image img {
  width: 90px;
}
section #body-copy .post-tags {
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
}
section #body-copy .post-tags span.tag {
  text-transform: uppercase;
  color: #E0FF00;
  font-size: 14px;
  margin-left: 5px;
}
section #body-copy .social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
section #body-copy .social-icons span {
  margin-bottom: 0;
  margin-right: 12px;
}
section#main-content.text-block-module {
  padding: 100px 0;
  overflow: hidden;
}
section#main-content.text-block-module.light {
  background: #FFF;
}
section#main-content.text-block-module.gray {
  background: #FAFAFF;
}
section#main-content.text-block-module.space {
  background: #00002E;
}
section#main-content.text-block-module.blue {
  background: #00013F;
}
section#main-content.text-block-module .text-block-content {
  position: relative;
  z-index: 2;
}
section#main-content.text-block-module:has(.grant-page-content) {
  padding-bottom: 0;
}
section#main-content.text-block-module #body-copy #content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section#main-content.text-block-module #body-copy #content > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
section#main-content.text-block-module #body-copy #content > h3,
section#main-content.text-block-module #body-copy #content > h4,
section#main-content.text-block-module #body-copy #content > .wp-block-acf-quote-block,
section#main-content.text-block-module #body-copy #content > .quote-block-container,
section#main-content.text-block-module #body-copy #content > figure,
section#main-content.text-block-module #body-copy #content > .wp-block-image,
section#main-content.text-block-module #body-copy #content > .text-block-image-placeholder {
  margin-top: 30px !important;
}
section#main-content.text-block-module #body-copy #content > h3:first-child,
section#main-content.text-block-module #body-copy #content > h4:first-child {
  margin-top: 0 !important;
}
section#main-content.text-block-module #body-copy h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 110%;
  color: #00002E;
}
section#main-content.text-block-module #body-copy h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  color: #00002E;
}
section#main-content.text-block-module #body-copy p,
section#main-content.text-block-module #body-copy li {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #434361;
}
section#main-content.text-block-module #body-copy p.body-s,
section#main-content.text-block-module #body-copy ul.body-s li {
  font-size: 16px;
}
section#main-content.text-block-module #body-copy .grant-page-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
section#main-content.text-block-module #body-copy .grant-page-content .grant-project-entry {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#main-content.text-block-module #body-copy .grant-page-content .grant-logo-group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
}
section#main-content.text-block-module #body-copy .grant-page-content .grant-logo-group img {
  height: 40px;
  max-width: 197px;
  object-fit: contain;
  width: 100%;
}
section#main-content.text-block-module #body-copy .grant-page-content .grant-project-actions {
  display: flex;
  margin-top: 10px;
}
section#main-content.text-block-module #body-copy .grant-page-content h4,
section#main-content.text-block-module #body-copy .grant-page-content h5,
section#main-content.text-block-module #body-copy .grant-page-content p,
section#main-content.text-block-module #body-copy .grant-page-content ol {
  margin: 0 !important;
}
section#main-content.text-block-module #body-copy .grant-page-content ol {
  padding-left: 24px;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container {
  width: 100%;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationType {
  background: #FFF;
  border: 1px solid #333333;
  display: block;
  margin: 0 0 50px !important;
  padding: 8px 8px 0;
  vertical-align: top;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationType:last-child {
  margin-bottom: 0 !important;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTypeHeader,
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTypeDescription {
  color: #000000;
  font-family: pangearegular, sans-serif;
  font-size: 12px;
  line-height: 150%;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTypeHeader {
  font-weight: 700;
  margin: 0 0 2px !important;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTypeDescription {
  font-weight: 400;
  margin: 0 0 16px !important;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTable {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: pangearegular, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 18px;
  padding: 0;
  table-layout: fixed;
  vertical-align: baseline;
  width: 100%;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTable tr,
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTable tbody tr:nth-child(odd),
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTable tbody tr:nth-child(even) {
  background: #FFF !important;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTableHeader,
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTableCell {
  font-family: pangearegular, sans-serif;
  font-size: 12px;
  line-height: 150%;
  padding: 4px !important;
  word-break: break-word;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTableHeader {
  background: #0002D1;
  border-bottom: 1px solid #777777;
  color: #FFF;
  font-weight: 700;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTableCell {
  background: #FFF !important;
  border-bottom: 1px solid #777777;
  border-right: 1px solid #CFD6EC;
  color: #0002D1;
  font-weight: 400;
  text-align: center;
  text-overflow: ellipsis;
  vertical-align: top;
  word-wrap: break-word;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTableCell:first-child {
  border-left: 1px solid #CFD6EC;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTableCell:nth-child(2) {
  color: #000000;
}
section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTable a:not(#button) {
  color: #0002D1;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationType {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  section#main-content.text-block-module #body-copy .cookie-declaration-container .CookieDeclarationTable {
    min-width: 820px;
  }
}
section#main-content.text-block-module #body-copy a:not(#button) {
  color: #0002D1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}
section#main-content.text-block-module #body-copy a:not(#button)::before, section#main-content.text-block-module #body-copy a:not(#button)::after {
  content: none !important;
  display: none !important;
}
section#main-content.text-block-module #body-copy ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 6px;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left;
}
section#main-content.text-block-module #body-copy ul > li {
  list-style: none;
  list-style-type: none !important;
  margin: 0 !important;
  padding-left: 14px !important;
  position: relative;
  text-align: left;
  width: 100%;
}
section#main-content.text-block-module #body-copy ul > li::marker {
  content: "";
}
section#main-content.text-block-module #body-copy ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='3' viewBox='0 0 3 3' fill='none'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%230002D1'/%3E%3C/svg%3E") !important;
  width: 3px;
  height: 3px;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
}
section#main-content.text-block-module #body-copy #content > ul {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-left: 0 !important;
}
section#main-content.text-block-module #body-copy #content > ul > li {
  list-style: none !important;
  list-style-position: outside;
  padding-left: 14px !important;
}
section#main-content.text-block-module #body-copy figure,
section#main-content.text-block-module #body-copy .wp-block-image {
  width: 100%;
}
section#main-content.text-block-module #body-copy figure img,
section#main-content.text-block-module #body-copy .wp-block-image img {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin: 0;
}
section#main-content.text-block-module #body-copy figcaption,
section#main-content.text-block-module #body-copy .wp-element-caption {
  font-size: 12px;
  line-height: 140%;
  color: #434361;
  margin-top: 14px;
}
section#main-content.text-block-module #body-copy .text-block-image-placeholder {
  width: 100%;
  min-height: 500px;
  border-radius: 12px;
  background: #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #686887;
  font-size: 14px;
}
section#main-content.text-block-module #body-copy .buttons-block-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 0 !important;
}
section#main-content.text-block-module #body-copy .quote-block-container {
  background: #F6F9FF;
  border: 1px solid #E3EBFD;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: #00002E;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-text p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-text a {
  color: #0002D1;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-attribution {
  display: flex;
  align-items: center;
  gap: 20px;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-image {
  flex: 0 0 50px;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  color: #00002E;
  margin: 0;
}
section#main-content.text-block-module #body-copy .quote-block-container .quote-block-cite {
  font-size: 16px;
  line-height: 140%;
  color: #434361;
  margin: 0;
}
section#main-content.text-block-module.space #body-copy h3,
section#main-content.text-block-module.space #body-copy h4, section#main-content.text-block-module.blue #body-copy h3,
section#main-content.text-block-module.blue #body-copy h4 {
  color: #FFF;
}
section#main-content.text-block-module.space #body-copy p,
section#main-content.text-block-module.space #body-copy li,
section#main-content.text-block-module.space #body-copy figcaption,
section#main-content.text-block-module.space #body-copy .wp-element-caption, section#main-content.text-block-module.blue #body-copy p,
section#main-content.text-block-module.blue #body-copy li,
section#main-content.text-block-module.blue #body-copy figcaption,
section#main-content.text-block-module.blue #body-copy .wp-element-caption {
  color: #CFD6EC;
}
section#main-content.text-block-module.space #body-copy ul > li::before, section#main-content.text-block-module.blue #body-copy ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='3' viewBox='0 0 3 3' fill='none'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23E0FF00'/%3E%3C/svg%3E") !important;
}
section#main-content.text-block-module.space #body-copy #button.secondary, section#main-content.text-block-module.blue #body-copy #button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #FFF;
}
section#main-content.text-block-module.space #body-copy .quote-block-container, section#main-content.text-block-module.blue #body-copy .quote-block-container {
  background: #222246;
  border-color: #434361;
}
section#main-content.text-block-module.space #body-copy .quote-block-container .quote-block-text,
section#main-content.text-block-module.space #body-copy .quote-block-container .quote-block-text p,
section#main-content.text-block-module.space #body-copy .quote-block-container .quote-block-name, section#main-content.text-block-module.blue #body-copy .quote-block-container .quote-block-text,
section#main-content.text-block-module.blue #body-copy .quote-block-container .quote-block-text p,
section#main-content.text-block-module.blue #body-copy .quote-block-container .quote-block-name {
  color: #FFF;
}
section#main-content.text-block-module.space #body-copy .quote-block-container .quote-block-cite, section#main-content.text-block-module.blue #body-copy .quote-block-container .quote-block-cite {
  color: #CFD6EC;
}
section#main-content.text-block-module.space #body-copy .quote-block-container .quote-block-text a, section#main-content.text-block-module.blue #body-copy .quote-block-container .quote-block-text a {
  color: #E0FF00;
}
@media screen and (max-width: 1024px) {
  section#main-content.text-block-module {
    padding: 80px 0;
  }
  section#main-content.text-block-module .text-block-content {
    grid-column: span 12;
  }
  section#main-content.text-block-module #body-copy h3 {
    font-size: 34px;
  }
  section#main-content.text-block-module #body-copy h4 {
    font-size: 28px;
  }
  section#main-content.text-block-module #body-copy .text-block-image-placeholder {
    min-height: 340px;
  }
}
@media screen and (max-width: 768px) {
  section#main-content.text-block-module {
    padding: 60px 0;
  }
  section#main-content.text-block-module #body-copy .grant-page-content {
    gap: 70px;
  }
  section#main-content.text-block-module #body-copy .grant-page-content .grant-logo-group {
    align-items: flex-start;
    flex-direction: column;
  }
  section#main-content.text-block-module #body-copy h3 {
    font-size: 30px;
  }
  section#main-content.text-block-module #body-copy h4 {
    font-size: 24px;
  }
  section#main-content.text-block-module #body-copy p,
section#main-content.text-block-module #body-copy li {
    font-size: 16px;
  }
  section#main-content.text-block-module #body-copy .buttons-block-container {
    align-items: stretch;
    flex-direction: column;
  }
  section#main-content.text-block-module #body-copy .buttons-block-container #button {
    width: 100%;
  }
  section#main-content.text-block-module #body-copy .quote-block-container {
    padding: 24px;
  }
}
section#text-block {
  padding: 100px 0;
}
section#text-block.light {
  background: #FFF;
}
section#text-block.gray {
  background: #FAFAFF;
}
section#text-block.space {
  background: #00002E;
}
section#text-block.blue {
  background: #00013F;
}
section#text-block .text-block-wysiwyg {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section#text-block .text-block-wysiwyg > * {
  margin: 0 !important;
}
section#text-block .text-block-wysiwyg h3,
section#text-block .text-block-wysiwyg h4,
section#text-block .text-block-wysiwyg h5 {
  color: #00002E;
  font-weight: 500;
}
section#text-block .text-block-wysiwyg h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 110%;
}
section#text-block .text-block-wysiwyg h4 {
  font-size: 32px;
  line-height: 120%;
  margin-top: 40px !important;
}
section#text-block .text-block-wysiwyg h5 {
  font-size: 22px;
  line-height: 120%;
  margin-top: 30px !important;
}
section#text-block .text-block-wysiwyg p,
section#text-block .text-block-wysiwyg li {
  color: #434361;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
section#text-block .text-block-wysiwyg a {
  color: #C8E301;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}
section#text-block .text-block-wysiwyg a::before, section#text-block .text-block-wysiwyg a::after {
  content: none !important;
  display: none !important;
}
section#text-block .text-block-wysiwyg ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 !important;
  padding: 0 !important;
}
section#text-block .text-block-wysiwyg ul > li {
  list-style: none !important;
  margin: 0 !important;
  padding-left: 14px;
  position: relative;
}
section#text-block .text-block-wysiwyg ul > li::marker {
  content: "";
}
section#text-block .text-block-wysiwyg ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='3' viewBox='0 0 3 3' fill='none'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%230002D1'/%3E%3C/svg%3E");
  display: block;
  height: 3px;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 10px;
  width: 3px;
}
section#text-block .text-block-wysiwyg blockquote {
  background: #F6F9FF;
  border: 1px solid #E3EBFD;
  border-radius: 12px;
  margin: 40px 0 !important;
  padding: 30px;
}
section#text-block .text-block-wysiwyg blockquote p {
  color: #00002E;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  margin: 0;
}
section#text-block .text-block-wysiwyg blockquote a {
  color: #0002D1;
}
section#text-block .text-block-wysiwyg img {
  border-radius: 12px;
  display: block;
  height: auto;
  max-width: 100%;
}
section#text-block.space .text-block-wysiwyg h3,
section#text-block.space .text-block-wysiwyg h4,
section#text-block.space .text-block-wysiwyg h5, section#text-block.blue .text-block-wysiwyg h3,
section#text-block.blue .text-block-wysiwyg h4,
section#text-block.blue .text-block-wysiwyg h5 {
  color: #FFF;
}
section#text-block.space .text-block-wysiwyg p,
section#text-block.space .text-block-wysiwyg li, section#text-block.blue .text-block-wysiwyg p,
section#text-block.blue .text-block-wysiwyg li {
  color: #CFD6EC;
}
section#text-block.space .text-block-wysiwyg a, section#text-block.blue .text-block-wysiwyg a {
  color: #E0FF00;
}
section#text-block.space .text-block-wysiwyg ul > li::before, section#text-block.blue .text-block-wysiwyg ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='3' viewBox='0 0 3 3' fill='none'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23E0FF00'/%3E%3C/svg%3E");
}
section#text-block.space .text-block-wysiwyg blockquote, section#text-block.blue .text-block-wysiwyg blockquote {
  background: #222246;
  border-color: #434361;
}
section#text-block.space .text-block-wysiwyg blockquote p, section#text-block.blue .text-block-wysiwyg blockquote p {
  color: #FFF;
}
section#text-block.space .text-block-wysiwyg blockquote a, section#text-block.blue .text-block-wysiwyg blockquote a {
  color: #E0FF00;
}
@media screen and (max-width: 1024px) {
  section#text-block {
    padding: 80px 0;
  }
  section#text-block .text-block-content {
    grid-column: span 12;
  }
  section#text-block .text-block-wysiwyg h3 {
    font-size: 34px;
  }
  section#text-block .text-block-wysiwyg h4 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  section#text-block {
    padding: 60px 0;
  }
  section#text-block .text-block-wysiwyg h3 {
    font-size: 30px;
  }
  section#text-block .text-block-wysiwyg h4 {
    font-size: 24px;
  }
  section#text-block .text-block-wysiwyg p,
section#text-block .text-block-wysiwyg li {
    font-size: 16px;
  }
  section#text-block .text-block-wysiwyg blockquote {
    padding: 24px;
  }
}
section #tags {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}
section #tags a {
  border-radius: 5px;
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
  text-decoration: none;
}
section #tags a:hover {
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
section #social-column {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  section #social-column {
    grid-row: 2;
    margin-bottom: 40px;
  }
}
section #social-column #sticky {
  padding-top: 60px;
  position: sticky;
  top: 130px;
}
@media screen and (max-width: 1024px) {
  section #social-column #sticky {
    padding-top: 30px;
  }
}
section #social-column a svg circle {
  transition: all 0.2s ease-in-out;
}
section #social-column a:hover svg circle {
  fill: #CBFAFA;
}
section #form-container {
  position: relative;
  background: #434361;
  border: 1px solid #686887;
  padding: 30px;
  color: #FFF;
}
section #form-container .form-title {
  color: #FFF;
  margin-bottom: 20px;
}
section #form-container form {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section #form-container form .mktoFormRow {
  width: 100% !important;
}
section #form-container form .mktoFormRow * {
  width: 100% !important;
}
section #form-container form .mktoFieldWrap {
  float: none !important;
  display: flex;
  flex-direction: column;
}
section #form-container form .mktoGutter,
section #form-container form .mktoClear,
section #form-container form .mktoErrorArrowWrap,
section #form-container form .mktoOffset {
  display: none !important;
}
section #form-container form .mktoAsterix {
  font-size: 18px;
  color: #FF1950;
  line-height: 50%;
}
section #form-container form .mktoError {
  left: 0;
}
section #form-container form fieldset {
  max-width: none;
}
section #form-container form label {
  color: #8289A9;
  font-size: 12px;
  line-height: 150%;
  margin-bottom: 6px;
}
section #form-container form input[type=email],
section #form-container form input[type=text],
section #form-container form input[type=tel],
section #form-container form select {
  display: flex;
  height: 42px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border: 1px solid #969CB9;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #00002E;
  box-shadow: none;
  width: 100%;
  margin-bottom: 0;
}
section #form-container form input[type=email]::placeholder,
section #form-container form input[type=text]::placeholder,
section #form-container form input[type=tel]::placeholder,
section #form-container form select::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #00002E;
  opacity: 0.5;
}
section #form-container form .hs-dependent-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section #form-container form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7' fill='none'%3E%3Cpath d='M0.530233 0.530324L5.47998 5.48007L10.4297 0.530325' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  /* move arrow */
  background-size: 11px 7px;
}
section #form-container form input[type=checkbox] {
  width: auto !important;
}
section #form-container form textarea {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border: 1px solid #969CB9;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #00002E;
  width: 100%;
}
section #form-container form textarea::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #00002E;
  opacity: 0.5;
}
section #form-container form label#LblprivacyPolicyAgreement,
section #form-container form label#LblconsenttoProcessing,
section #form-container form .mktoFieldWrap,
section #form-container form .mktoCaptchaDisclaimer {
  font-size: 16px;
  line-height: 150%;
  color: #00002E;
  font-weight: 400 !important;
}
section #form-container form label#LblprivacyPolicyAgreement a,
section #form-container form label#LblconsenttoProcessing a,
section #form-container form .mktoFieldWrap a,
section #form-container form .mktoCaptchaDisclaimer a {
  font-size: 16px;
  line-height: 150%;
  color: #00002E;
  font-weight: 400 !important;
  text-decoration: underline !important;
}
section #form-container form label#LblprivacyPolicyAgreement,
section #form-container form label#LblconsenttoProcessing {
  order: 1;
}
section #form-container form .hs-submit {
  margin-top: 40px;
}
section #separator {
  position: relative;
  height: 100%;
}
section #separator .line {
  width: 1px;
  height: 100%;
  position: relative;
  left: 50%;
}
section aside {
  height: 100%;
}
section aside#form-column {
  border: none;
  padding: 0;
}
section aside #sticky {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section aside .separator {
  height: 1px;
  background: #ABC8C8;
  width: 100%;
  margin: 50px 0;
}
section aside p.eyebrow {
  margin-bottom: 30px;
}
section aside div.social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
section aside div.social-icons span.eyebrow {
  margin-bottom: 0;
  margin-right: 12px;
}
section aside div.social-icons a svg path {
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section aside div.social-icons a:hover svg path {
  fill: #00013F;
}
section aside .team-members {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section aside .team-members .member-row {
  display: flex;
  gap: 20px;
}
section aside .team-members .member-row .member-image {
  height: 90px;
  width: 90px;
  border-radius: 4px;
  overflow: hidden;
}
section aside .team-members .member-row .member-image img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
section aside .team-members .member-row .caption {
  color: #FFF;
}
section aside #resource-card {
  display: block;
  margin-bottom: 30px;
}
section aside #resource-card .excerpt,
section aside #resource-card #text-button {
  display: none;
}
section aside h5 {
  margin-bottom: 25px;
}
section aside #body-copy {
  margin-top: 24px;
}
section aside #body-copy h6 {
  margin-bottom: 12px;
}
section aside #body-copy p {
  margin-bottom: 24px;
}
section aside #sticky {
  position: sticky;
  top: 190px;
}
section aside #sticky #button-container {
  flex-flow: column;
}
section aside h6.title {
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 24px;
  line-height: 130%;
}
section aside #sidebar-card {
  margin-bottom: 24px;
}
section aside #sidebar-card #image-container {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  section aside #sidebar-card #image-container {
    width: 100%;
  }
  section aside #sidebar-card #image-container img {
    width: 100%;
    max-width: none;
  }
}
section aside #sidebar-card #image-container img {
  border-radius: 10px;
}
section aside #sidebar-card #byline-bar {
  margin-bottom: 8px;
}
section aside #newsletter {
  border-radius: 5px;
  position: relative;
  padding: 20px;
  margin-bottom: 40px;
  overflow: hidden;
}
section aside #newsletter::before {
  content: url("data:image/svg+xml,%3Csvg width='268' height='208' viewBox='0 0 268 208' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.2' d='M101.5 0C101.5 91.6793 175.821 166 267.5 166L267.5 7.25609e-06L101.5 0Z' fill='%23D4E3FF'/%3E%3Cpath opacity='0.2' d='M0.5 223L136.781 113.823L267.5 3.58785e-06L267.5 223L0.5 223Z' fill='%23D4E3FF'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
section aside #newsletter h6 {
  margin-bottom: 16px;
  color: #00002E;
}
section aside #newsletter .hubspot-form {
  background-color: transparent !important;
  padding: 0 !important;
}
section aside #newsletter input {
  position: relative;
  z-index: 2;
}
section aside #newsletter input[type=submit] {
  width: 100% !important;
  border: none !important;
  background: #00002E !important;
  color: #FFF !important;
  font-size: 16px !important;
  display: flex;
  justify-content: center;
}
section aside #newsletter input[type=submit]:hover {
  background: #FFF !important;
  color: #00002E !important;
}
section aside #form-container {
  border: 1px solid #00013F;
  background: #00002E;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}
section aside #form-container #button-container #button {
  width: 100%;
  background: #00002E;
  color: #FFF;
  border: 2px solid #00002E;
  transition: all 0.2s ease-in-out;
}
section aside #form-container #button-container #button:hover {
  color: #00002E;
  background: #FFF;
}
section aside #form-container h5 {
  margin-bottom: 24px;
  color: #00002E;
}
section aside #form-container .mktoForm .mktoFormCol {
  margin-bottom: 0 !important;
  width: 100% !important;
}
section aside #form-container .mktoButtonRow {
  width: 100% !important;
}
section aside #form-container .field-row {
  display: flex;
  gap: 24px;
}
section aside #form-container form {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section aside #form-container form .mktoFormRow {
  width: 100% !important;
}
section aside #form-container form .mktoFormRow * {
  width: 100% !important;
}
section aside #form-container form .mktoFieldWrap {
  float: none !important;
  display: flex;
  flex-direction: column;
}
section aside #form-container form .mktoGutter,
section aside #form-container form .mktoClear,
section aside #form-container form .mktoErrorArrowWrap,
section aside #form-container form .mktoOffset {
  display: none !important;
}
section aside #form-container form .mktoAsterix {
  font-size: 18px;
  color: #00013F;
  line-height: 50%;
}
section aside #form-container form .mktoError {
  left: 0;
}
section aside #form-container form fieldset {
  max-width: none;
}
section aside #form-container form label {
  color: #FFF;
  font-size: 12px;
  line-height: 150%;
  margin-bottom: 6px;
}
section aside #form-container form input[type=email],
section aside #form-container form input[type=text],
section aside #form-container form input[type=tel],
section aside #form-container form select {
  display: flex;
  height: 42px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00013F;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  box-shadow: none;
  width: 100%;
  margin-bottom: 0;
}
section aside #form-container form input[type=email]::placeholder,
section aside #form-container form input[type=text]::placeholder,
section aside #form-container form input[type=tel]::placeholder,
section aside #form-container form select::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  opacity: 0.5;
}
section aside #form-container form .hs-dependent-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section aside #form-container form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M13 4.5L7 10.5L1 4.5H13Z' fill='%23FEFDFB'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  /* move arrow */
  background-size: 14px 14px;
}
section aside #form-container form input[type=checkbox] {
  width: auto !important;
}
section aside #form-container form textarea {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00013F;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  width: 100%;
}
section aside #form-container form textarea::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #FFF;
  opacity: 0.5;
}
section aside #form-container form label#LblprivacyPolicyAgreement,
section aside #form-container form label#LblconsenttoProcessing,
section aside #form-container form .mktoFieldWrap,
section aside #form-container form .mktoCaptchaDisclaimer {
  font-size: 16px;
  line-height: 150%;
  color: #00002E;
  font-weight: 400 !important;
}
section aside #form-container form label#LblprivacyPolicyAgreement a,
section aside #form-container form label#LblconsenttoProcessing a,
section aside #form-container form .mktoFieldWrap a,
section aside #form-container form .mktoCaptchaDisclaimer a {
  font-size: 16px;
  line-height: 150%;
  color: #00002E;
  font-weight: 400 !important;
  text-decoration: underline !important;
}
section aside #form-container form label#LblprivacyPolicyAgreement,
section aside #form-container form label#LblconsenttoProcessing {
  order: 1;
}
section aside #form-container ul.hs-error-msgs {
  margin-bottom: 16px !important;
}
section aside #form-container .hubspot-form {
  position: relative;
  z-index: 3;
}
section aside #form-container .hubspot-form h3, section aside #form-container .hubspot-form h5 {
  color: #00002E !important;
  font-size: 24px;
  font-weight: 600 !important;
  line-height: 120%;
}
section aside #form-container .corner-piece {
  right: -2px;
  top: -1px;
}
section aside ol.toc {
  margin-left: 0;
}
section aside ol.toc li {
  list-style-type: none;
  margin-bottom: 10px;
  font-size: 14px;
}
section aside ol.toc li a {
  font-weight: 400;
  text-decoration: none;
  padding-left: 0;
  padding-bottom: 3px;
  display: block;
}
section aside ol.toc li a:hover {
  color: #00002E;
  font-weight: 600;
}
section aside ol.toc li a.active {
  color: #00002E;
  font-weight: 600;
}
section aside #news-links {
  display: flex;
  flex-direction: column;
  gap: 27.5px;
}
section aside #news-links #content-block {
  display: flex;
  gap: 15px;
}
section aside #news-links #content-block img {
  width: 30px;
}
section aside #news-links #content-block h5 {
  padding-top: 0;
  margin-bottom: 7.5px;
}
section aside .filter-bar {
  margin-top: 0;
  margin-bottom: 30px;
}
section aside h4 {
  margin-bottom: 10px;
}
section aside p.body-s {
  margin-bottom: 30px;
}
section aside div.social-icons {
  margin-top: 30px;
  margin-bottom: 30px;
}
section ul {
  list-style-position: inside;
}
section .text-center ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section #tip-block {
  display: flex;
  padding: 25px;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  border-radius: 15px;
  background: linear-gradient(91deg, #ECFAD5 0.33%, #D5F5F6 100%);
  margin-top: 40px;
  margin-bottom: 40px;
}
section #tip-block #tip-text p:last-child {
  margin-bottom: 0 !important;
}
section #cta-block {
  display: flex;
  padding: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-self: stretch;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
section #cta-block h4, section #cta-block p, section #cta-block #button-container {
  position: relative;
  z-index: 2;
}
section #cta-block h4, section #cta-block p {
  color: #FFF;
}
section #cta-block h4 {
  margin-bottom: 14px;
}
section #cta-block p {
  margin-bottom: 0;
}
section #cta-block #button-container {
  margin-top: 25px;
}
section #schedule-container {
  border-radius: 4px;
  border: 1px solid #00002E;
  padding: 20px;
  background: #FFF;
  display: flex;
  flex-direction: column;
}
section#copy-image .content {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#copy-image .image-container {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#copy-image #form-container {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#copy-image #boxed-content {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#copy-image #boxed-image {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
}
section#copy-image.show .content,
section#copy-image.show .image-container,
section#copy-image.show #form-container,
section#copy-image.show #boxed-content,
section#copy-image.show #boxed-image {
  opacity: 1;
  transform: none;
}
section#columns .column-wrapper {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#columns.show .column-wrapper {
  opacity: 1;
  transform: none;
}
section#hero.fade-up .content-container {
  opacity: 0;
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#hero.fade-up #title-container {
  opacity: 0;
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#hero.fade-up .media-container {
  opacity: 0;
  transition: 1s 0.3s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#hero.fade-up.show .content-container {
  opacity: 1;
  transform: none;
}
section#hero.fade-up.show #title-container {
  opacity: 1;
  transform: none;
}
section#hero.fade-up.show .media-container {
  opacity: 1;
  transform: none;
}
section#cta.fade-up #cta-container {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#cta.fade-up.show #cta-container {
  opacity: 1;
  transform: none;
}
section#content-repeater .masonry-row.fade-up {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#content-repeater .masonry-row.fade-up.show {
  opacity: 1;
  transform: none;
}
section .text-center #heading-container #button-container {
  justify-content: center;
}
section.gray {
  background-color: #FAFAFF;
}
section.space {
  background-color: #00002E;
}
section.blue {
  background-color: #00013F;
}
section.space #heading-container .content-container .eyebrow, section.blue #heading-container .content-container .eyebrow {
  color: #A6A7FF;
}
section.space #heading-container .content-container .h1, section.space #heading-container .content-container .h2, section.space #heading-container .content-container .h3, section.space #heading-container .content-container .h4, section.space #heading-container .content-container .h5, section.space #heading-container .content-container .h6, section.blue #heading-container .content-container .h1, section.blue #heading-container .content-container .h2, section.blue #heading-container .content-container .h3, section.blue #heading-container .content-container .h4, section.blue #heading-container .content-container .h5, section.blue #heading-container .content-container .h6 {
  color: #FFF;
}
section.space #heading-container .content-container .lead p, section.space #heading-container .content-container .lead li,
section.space #heading-container .content-container .body-s p,
section.space #heading-container .content-container .body-s li, section.blue #heading-container .content-container .lead p, section.blue #heading-container .content-container .lead li,
section.blue #heading-container .content-container .body-s p,
section.blue #heading-container .content-container .body-s li {
  color: #CFD6EC;
}
section.space #heading-container .content-container .body-l p, section.space #heading-container .content-container .body-l li,
section.space #heading-container .content-container .body-m p,
section.space #heading-container .content-container .body-m li, section.blue #heading-container .content-container .body-l p, section.blue #heading-container .content-container .body-l li,
section.blue #heading-container .content-container .body-m p,
section.blue #heading-container .content-container .body-m li {
  color: #CFD6EC;
}
section.space #heading-container .content-container ul > li::before, section.blue #heading-container .content-container ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='24' viewBox='0 0 3 24' fill='none'%3E%3Ccircle cx='1.5' cy='12' r='1.5' fill='%23E0FF00'/%3E%3C/svg%3E");
}
section.space a#button,
section.space a.button,
section.space button#button,
section.space div#button,
section.space input.button,
section.space input.hs-button, section.blue a#button,
section.blue a.button,
section.blue button#button,
section.blue div#button,
section.blue input.button,
section.blue input.hs-button {
  color: #00002E;
}
section.space a#button:hover,
section.space a.button:hover,
section.space button#button:hover,
section.space div#button:hover,
section.space input.button:hover,
section.space input.hs-button:hover, section.blue a#button:hover,
section.blue a.button:hover,
section.blue button#button:hover,
section.blue div#button:hover,
section.blue input.button:hover,
section.blue input.hs-button:hover {
  background-color: #FF1950;
}
section.space a#button.secondary,
section.space a.button.secondary,
section.space button#button.secondary,
section.space div#button.secondary,
section.space input.button.secondary,
section.space input.hs-button.secondary, section.blue a#button.secondary,
section.blue a.button.secondary,
section.blue button#button.secondary,
section.blue div#button.secondary,
section.blue input.button.secondary,
section.blue input.hs-button.secondary {
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, #30305D 0%, #30305D 49%, #222246 50%, #222246 100%);
  background-size: 202% 100%;
  background-position: 100% 50%;
  border: 1px solid rgba(185, 195, 216, 0.5);
}
section.space a#button.secondary:hover,
section.space a.button.secondary:hover,
section.space button#button.secondary:hover,
section.space div#button.secondary:hover,
section.space input.button.secondary:hover,
section.space input.hs-button.secondary:hover, section.blue a#button.secondary:hover,
section.blue a.button.secondary:hover,
section.blue button#button.secondary:hover,
section.blue div#button.secondary:hover,
section.blue input.button.secondary:hover,
section.blue input.hs-button.secondary:hover {
  background-position: 0% 50%;
}
section.space a#button.filter-button,
section.space a.button.filter-button,
section.space button#button.filter-button,
section.space div#button.filter-button,
section.space input.button.filter-button,
section.space input.hs-button.filter-button, section.blue a#button.filter-button,
section.blue a.button.filter-button,
section.blue button#button.filter-button,
section.blue div#button.filter-button,
section.blue input.button.filter-button,
section.blue input.hs-button.filter-button {
  height: 42px;
}
@media screen and (max-width: 1024px) {
  section.space a#button,
section.space a.button,
section.space button#button,
section.space div#button,
section.space input.button,
section.space input.hs-button, section.blue a#button,
section.blue a.button,
section.blue button#button,
section.blue div#button,
section.blue input.button,
section.blue input.hs-button {
    padding: 0 20px;
    height: 40px;
    font-size: 14px;
  }
}
section.space .h1, section.space .h2, section.space .h3, section.space .h4, section.space .h5, section.space .h6, section.blue .h1, section.blue .h2, section.blue .h3, section.blue .h4, section.blue .h5, section.blue .h6 {
  color: #FFF;
}
section.space h1, section.space h2, section.space h3, section.space h4, section.space h5, section.space h6, section.blue h1, section.blue h2, section.blue h3, section.blue h4, section.blue h5, section.blue h6 {
  color: #FFF;
}
section.space p, section.space li, section.blue p, section.blue li {
  color: #CFD6EC;
}
section.space div#text-button,
section.space a#text-button,
section.space a.text-button, section.blue div#text-button,
section.blue a#text-button,
section.blue a.text-button {
  color: #E0FF00;
}
section.space div#text-button:hover,
section.space a#text-button:hover,
section.space a.text-button:hover, section.blue div#text-button:hover,
section.blue a#text-button:hover,
section.blue a.text-button:hover {
  color: #FFF;
}
section.space#columns .column-wrapper .column.boxed .content-container, section.blue#columns .column-wrapper .column.boxed .content-container {
  border: 1px solid #434361;
  background: #222246;
}
section.space#columns .column-wrapper .column ul > li::before, section.blue#columns .column-wrapper .column ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='24' viewBox='0 0 3 24' fill='none'%3E%3Ccircle cx='1.5' cy='12' r='1.5' fill='%23E0FF00'/%3E%3C/svg%3E");
}

.scroll-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  width: 100%;
}

.scroll-grid__rail {
  position: absolute;
  top: 0;
  height: 100%;
}

.scroll-grid__rail--left {
  left: 80px;
}
@media screen and (max-width: 1024px) {
  .scroll-grid__rail--left {
    left: 10px;
  }
}

.scroll-grid__rail--right {
  right: 80px;
}
@media screen and (max-width: 1024px) {
  .scroll-grid__rail--right {
    right: 10px;
  }
}

.scroll-grid__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: var(--line-top, 0px);
  height: var(--line-height, 0px);
  width: 1px;
  background: #686887;
}

.scroll-grid__icon {
  position: absolute;
  left: 50%;
  top: var(--icon-y, 0px);
  transform: translate(-50%, -50%);
  opacity: var(--icon-opacity, 0);
  transition: opacity 0.2s linear;
  will-change: transform, top, opacity;
}

.scroll-grid__lottie {
  width: 80px;
  height: 400px;
  pointer-events: none;
}

.scroll-grid__lottie svg {
  display: block;
  width: 100%;
  height: 100%;
}

.scroll-grid__icon svg {
  display: block;
  width: 2px;
  height: 400px;
  overflow: visible;
}

/* optional: little glow */
/********************* FOOTER *********************/
.footer {
  background-color: #00002E;
  clear: both;
  position: relative;
  padding: 100px 0 25px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 35px;
  }
}
.footer.simple-nav .grid .column:not(:first-child) {
  display: none !important;
}
.footer .section-footer {
  padding: 0;
}
.footer .section-footer .top-row {
  grid-column-start: 1;
  grid-column-end: span 12;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .column:first-child {
    grid-column: span 4;
  }
  .footer .section-footer .top-row .column:first-child .upper {
    display: flex;
    justify-content: space-between;
  }
  .footer .section-footer .top-row .column:first-child .upper #social-links {
    margin-top: 0;
  }
}
.footer .section-footer .top-row.logo-social {
  margin-bottom: 60px;
}
.footer .section-footer .top-row .left-column {
  grid-column-end: span 2;
  display: flex;
  align-self: center;
}
.footer .section-footer .top-row .left-column a.logo {
  display: inline-block;
  margin-bottom: 0;
}
.footer .section-footer .top-row .left-column .content-group p {
  font-size: 14px;
}
.footer .section-footer .top-row .left-column .content-group p:first-child {
  margin-bottom: 20px;
}
.footer .section-footer .top-row .left-column .content-group a {
  color: #FFF;
}
.footer .section-footer .top-row .left-column .content-group.utility {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.footer .section-footer .top-row .left-column .content-group.utility span {
  display: flex;
}
.footer .section-footer .top-row .left-column .content-group.utility a {
  font-size: 14px;
  font-weight: 600;
}
.footer .section-footer .top-row .left-column .link-group {
  margin: 24px 0;
  display: flex;
  gap: 12px;
}
.footer .section-footer .top-row .left-column .link-group a {
  color: #FFF;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.2s ease;
}
.footer .section-footer .top-row .left-column .link-group a:hover {
  text-shadow: 0 0 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .footer .section-footer .top-row .left-column {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .section-footer .top-row .column {
  display: flex;
  flex-flow: column;
}
.footer .section-footer .top-row .column.social {
  align-items: end;
}
.footer .section-footer .top-row .column #footer-content-group {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
.footer .section-footer .top-row .column #footer-content-group a.logo {
  display: flex;
}
.footer .section-footer .top-row .column #footer-content-group p {
  color: #FFF;
}
.footer .section-footer .top-row .column #footer-content-group.social {
  align-items: end;
}
.footer .section-footer .top-row .column .footer-nav-group {
  display: flex;
  flex-flow: column;
}
.footer .section-footer .top-row .column .footer-nav-group:not(:last-child) {
  margin-bottom: 60px;
}
.footer .section-footer .top-row .column .footer-nav-group p {
  color: #FFF;
}
.footer .section-footer .top-row .column .footer-nav-group > a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  transition: all 0.2s ease;
  color: #FFF;
}
.footer .section-footer .top-row .column .footer-nav-group > a:hover {
  text-decoration: underline;
}
.footer .section-footer .top-row .column .footer-nav-group > a:not(:last-child) {
  margin-bottom: 12px;
}
.footer .section-footer .top-row .column .footer-nav-group > a:last-child {
  margin-bottom: 0;
}
.footer .section-footer .top-row .column.end {
  grid-column: 10/span 3 !important;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .column.end {
    width: 100%;
  }
}
.footer .section-footer .top-row .column .social-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.footer .section-footer .top-row .column .social-links a.phone {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.footer .section-footer .top-row .column .social-links a.phone p {
  margin-left: 6px;
}
.footer .section-footer .top-row .column .awards {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.footer .section-footer .top-row .column .awards img {
  max-height: 62px;
}
@media only screen and (max-width: 1024px) {
  .footer .section-footer .top-row .column.logos {
    grid-column-end: span 4;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group {
    flex-flow: row wrap;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group a.logo, .footer .section-footer .top-row .column.logos .footer-nav-group .social-links {
    width: 50%;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group .social-links {
    margin-top: 0;
    flex-flow: row wrap;
    justify-content: flex-end;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group .awards {
    width: 100%;
  }
  .footer .section-footer .top-row .column.quarter {
    grid-column-end: span 2;
  }
  .footer .section-footer .top-row .column.social {
    grid-column: auto/span 4;
    margin-top: 25px;
  }
  .footer .section-footer .top-row .column.social #footer-content-group.social {
    align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .section-footer .top-row:after {
    content: "";
    display: block;
    height: 1px;
    width: calc(100% - 40px);
    position: absolute;
    bottom: -1px;
    margin: 0 20px;
  }
  .footer .section-footer .top-row .awards.full.show-for-mobile {
    display: flex !important;
    gap: 30px;
    margin-top: 30px;
  }
}
.footer #social-links {
  display: flex;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer #social-links a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 148%;
  letter-spacing: 0.28px;
}
.footer #social-links a circle {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer #social-links a:hover svg circle {
  fill: #E0FF00;
}
.footer #footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .footer-bottom {
  margin-top: 75px;
}
.footer .footer-bottom .bottom-footer-bar {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .bottom-footer-bar {
    flex-flow: column;
  }
}
.footer .footer-bottom .copyright span {
  margin: 0 7px;
}
.footer .footer-bottom .copyright a, .footer .footer-bottom .copyright p, .footer .footer-bottom .copyright span {
  color: #CFD6EC;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.footer .footer-bottom .copyright p {
  align-self: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .copyright p {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .copyright {
    justify-content: center;
    flex-flow: row wrap;
  }
  .footer .footer-bottom .copyright > div {
    text-align: center;
  }
}
.footer .footer-bottom .utility-links {
  display: flex;
  gap: 6px;
  align-items: end;
}
.footer .footer-bottom .utility-links a {
  text-decoration: none;
  font-size: 12px;
  color: #CFD6EC;
}
.footer .footer-bottom .utility-links a:hover {
  text-decoration: underline;
}
.footer .footer-bottom .utility-links span {
  display: flex;
  text-decoration: none;
  font-size: 12px;
  color: #CFD6EC;
}
.footer .footer-bottom .utility-links span:last-child {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .footer .footer-bottom .utility-links {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .utility-links {
    flex-direction: row;
    gap: 16px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom {
    margin-top: 0;
  }
}
.footer span.eyebrow {
  font-size: 16px;
  color: #A6A7FF;
  text-transform: none;
  margin-bottom: 20px;
  line-height: 140%;
  display: flex;
}
.footer .body-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

section #form-container.figma-form-container,
section#copy-image #form-container.figma-form-container,
section#hero #form-container.figma-form-container {
  background: #FFF;
  border: 1px solid #E3EBFD;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 46, 0.08);
  color: #00002E;
  padding: 32px;
}
section #form-container.figma-form-container .form-title,
section#copy-image #form-container.figma-form-container .form-title,
section#hero #form-container.figma-form-container .form-title {
  color: #00002E;
  margin-bottom: 20px;
}
section #form-container.figma-form-container .figma-mock-form,
section#copy-image #form-container.figma-form-container .figma-mock-form,
section#hero #form-container.figma-form-container .figma-mock-form {
  display: block;
  width: 100% !important;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-intro,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-intro,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-intro {
  color: #434361;
  font-size: 14px;
  line-height: 150%;
  margin: 0 0 20px;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-grid,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-grid,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-field,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-field,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  width: 100%;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-field.figma-form-full,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-field.figma-form-full,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-field.figma-form-full {
  grid-column: 1/-1;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-field span,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-field span,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-field span {
  color: #434361;
  font-size: 12px;
  line-height: 150%;
}
section #form-container.figma-form-container .figma-mock-form input[type=email],
section #form-container.figma-form-container .figma-mock-form input[type=file],
section #form-container.figma-form-container .figma-mock-form input[type=text],
section #form-container.figma-form-container .figma-mock-form input[type=tel],
section #form-container.figma-form-container .figma-mock-form select,
section #form-container.figma-form-container .figma-mock-form textarea,
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=email],
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=file],
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=text],
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=tel],
section#copy-image #form-container.figma-form-container .figma-mock-form select,
section#copy-image #form-container.figma-form-container .figma-mock-form textarea,
section#hero #form-container.figma-form-container .figma-mock-form input[type=email],
section#hero #form-container.figma-form-container .figma-mock-form input[type=file],
section#hero #form-container.figma-form-container .figma-mock-form input[type=text],
section#hero #form-container.figma-form-container .figma-mock-form input[type=tel],
section#hero #form-container.figma-form-container .figma-mock-form select,
section#hero #form-container.figma-form-container .figma-mock-form textarea {
  background-color: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 0;
  box-shadow: none;
  color: #00002E;
  font-size: 14px;
  line-height: 150%;
  margin: 0;
  padding: 10px 12px;
  width: 100%;
}
section #form-container.figma-form-container .figma-mock-form input[type=email],
section #form-container.figma-form-container .figma-mock-form input[type=text],
section #form-container.figma-form-container .figma-mock-form input[type=tel],
section #form-container.figma-form-container .figma-mock-form select,
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=email],
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=text],
section#copy-image #form-container.figma-form-container .figma-mock-form input[type=tel],
section#copy-image #form-container.figma-form-container .figma-mock-form select,
section#hero #form-container.figma-form-container .figma-mock-form input[type=email],
section#hero #form-container.figma-form-container .figma-mock-form input[type=text],
section#hero #form-container.figma-form-container .figma-mock-form input[type=tel],
section#hero #form-container.figma-form-container .figma-mock-form select {
  height: 42px;
}
section #form-container.figma-form-container .figma-mock-form textarea,
section#copy-image #form-container.figma-form-container .figma-mock-form textarea,
section#hero #form-container.figma-form-container .figma-mock-form textarea {
  min-height: 106px;
  resize: vertical;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-footer,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-footer,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-footer {
  color: #434361;
  font-size: 12px;
  line-height: 150%;
  margin-top: 20px;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-footer p,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-footer p,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-footer p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 12px;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-footer a,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-footer a,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-footer a {
  color: #0002D1;
}
section #form-container.figma-form-container .figma-mock-form .figma-form-consent,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-consent,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-consent {
  align-items: flex-start;
  color: #434361;
  display: flex;
  flex-direction: row;
  font-size: 12px;
  gap: 8px;
  line-height: 150%;
}
section #form-container.figma-form-container .figma-mock-form button#button,
section#copy-image #form-container.figma-form-container .figma-mock-form button#button,
section#hero #form-container.figma-form-container .figma-mock-form button#button {
  background: #E0FF00;
  border: 1px solid #E0FF00;
  border-radius: 100px;
  color: #00002E;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-top: 24px;
  min-height: 42px;
  padding: 12px 20px;
  width: auto;
}
section #form-container.figma-form-container .figma-mock-form button#button:hover,
section#copy-image #form-container.figma-form-container .figma-mock-form button#button:hover,
section#hero #form-container.figma-form-container .figma-mock-form button#button:hover {
  background: #00002E;
  border-color: #00002E;
  color: #FFF;
}
section #form-container.figma-form-container .codex-hubspot-form-placeholder,
section#copy-image #form-container.figma-form-container .codex-hubspot-form-placeholder,
section#hero #form-container.figma-form-container .codex-hubspot-form-placeholder {
  min-height: 420px;
}
@media screen and (max-width: 768px) {
  section #form-container.figma-form-container,
section#copy-image #form-container.figma-form-container,
section#hero #form-container.figma-form-container {
    padding: 24px;
  }
  section #form-container.figma-form-container .figma-mock-form .figma-form-grid,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-grid,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-grid {
    grid-template-columns: 1fr;
  }
  section #form-container.figma-form-container .figma-mock-form .figma-form-field,
section#copy-image #form-container.figma-form-container .figma-mock-form .figma-form-field,
section#hero #form-container.figma-form-container .figma-mock-form .figma-form-field {
    grid-column: 1;
  }
}

/********************* SINGLE BLOG POST *********************/
.single-blog-header {
  background: #00013F;
  gap: 0;
  justify-content: flex-start;
  min-height: 652px;
  overflow: hidden;
  padding: 178px 0 40px;
}
.single-blog-header .grid {
  z-index: 2;
}
.single-blog-header__content {
  position: relative;
  z-index: 2;
}
.single-blog-header h1 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
  max-width: 790px;
}
.single-blog-header__lead {
  color: #CFD6EC;
  font-size: 20px;
  line-height: 140%;
  margin: 30px 0 0;
  max-width: 838px;
}
.single-blog-header__art {
  height: 590px;
  inset: 0 0 auto auto;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 378px;
  z-index: 1;
}
.single-blog-header__ellipse, .single-blog-header__dots {
  height: 486px;
  inset: 0;
  max-width: none;
  position: absolute;
  width: 378px;
}
.single-blog-header__ellipse {
  z-index: 1;
}
.single-blog-header__dots {
  z-index: 2;
}

.single-blog-breadcrumb {
  margin: 0 0 32px;
}
.single-blog-breadcrumb a {
  align-items: center;
  color: #A6A7FF;
  display: inline-flex;
  font-size: 14px;
  gap: 8px;
  letter-spacing: 1.4px;
  line-height: 100%;
  text-decoration: none;
  text-transform: uppercase;
}
.single-blog-breadcrumb a:hover {
  color: #E0FF00;
}
.single-blog-breadcrumb svg {
  flex: 0 0 12px;
}

.single-blog-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.single-blog-meta__pill {
  align-items: center;
  background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(90deg, rgba(185, 191, 216, 0.5), rgba(185, 191, 216, 0.3), rgba(185, 191, 216, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  height: 34px;
  line-height: 140%;
  padding: 5px 12px;
  white-space: nowrap;
}
.single-blog-meta__pill img {
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}

.single-blog-article {
  background: #FFF;
  gap: 0;
  padding: 100px 0 150px;
}
.single-blog-article .grid {
  align-items: start;
}
.single-blog-article__body,
.single-blog-article .single-blog-toc {
  grid-row: 1;
}

.single-blog-entry {
  color: #434361;
}
.single-blog-entry > *:first-child {
  margin-top: 0 !important;
}
.single-blog-entry h2,
.single-blog-entry h3,
.single-blog-entry h4 {
  color: #00002E;
  scroll-margin-top: 140px;
}
.single-blog-entry h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 64px 0 24px;
}
.single-blog-entry h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 110%;
  margin: 60px 0 24px;
}
.single-blog-entry h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin: 52px 0 22px;
}
.single-blog-entry h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin: 44px 0 20px;
}
.single-blog-entry h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  margin: 40px 0 18px;
}
.single-blog-entry p,
.single-blog-entry li {
  color: #434361;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
.single-blog-entry p {
  margin: 0 0 24px;
}
.single-blog-entry strong {
  color: #00002E;
}
.single-blog-entry a {
  color: #0002D1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.single-blog-entry a::after {
  display: none;
}
.single-blog-entry a:hover {
  color: #00013F;
}
.single-blog-entry ul,
.single-blog-entry ol {
  margin: 0 0 28px;
  padding: 0 0 0 20px;
}
.single-blog-entry ul {
  list-style: none;
  padding-left: 0;
}
.single-blog-entry ul li {
  padding-left: 18px;
  position: relative;
}
.single-blog-entry ul li::before {
  background: #0002D1;
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 1px;
  position: absolute;
  top: 0.72em;
  width: 3px;
}
.single-blog-entry ol li::marker {
  color: #0002D1;
}
.single-blog-entry li {
  margin-bottom: 10px;
}
.single-blog-entry li:last-child {
  margin-bottom: 0;
}
.single-blog-entry li ul,
.single-blog-entry li ol {
  margin-top: 10px;
}
.single-blog-entry figure,
.single-blog-entry .wp-block-image {
  margin: 40px 0;
}
.single-blog-entry img {
  display: block;
  height: auto;
  margin: 32px 0;
  max-width: 100%;
}
.single-blog-entry figure img,
.single-blog-entry .wp-block-image img {
  margin: 0;
  width: 100%;
}
.single-blog-entry figcaption,
.single-blog-entry .wp-element-caption {
  color: #686887;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin: 12px 0 0;
  text-align: left;
}
.single-blog-entry table,
.single-blog-entry .wp-block-table table {
  background: #FFF;
  border: 1px solid #CFD6EC;
  border-collapse: collapse;
  margin: 40px 0;
  table-layout: auto;
  width: 100%;
}
.single-blog-entry table thead,
.single-blog-entry table tbody,
.single-blog-entry table tfoot,
.single-blog-entry table tr,
.single-blog-entry table th,
.single-blog-entry table td,
.single-blog-entry .wp-block-table table thead,
.single-blog-entry .wp-block-table table tbody,
.single-blog-entry .wp-block-table table tfoot,
.single-blog-entry .wp-block-table table tr,
.single-blog-entry .wp-block-table table th,
.single-blog-entry .wp-block-table table td {
  border: 0;
}
.single-blog-entry table tr,
.single-blog-entry table tbody tr:nth-child(odd),
.single-blog-entry table tbody tr:nth-child(even),
.single-blog-entry .wp-block-table table tr,
.single-blog-entry .wp-block-table table tbody tr:nth-child(odd),
.single-blog-entry .wp-block-table table tbody tr:nth-child(even) {
  background: #FFF;
}
.single-blog-entry table th,
.single-blog-entry table td,
.single-blog-entry .wp-block-table table th,
.single-blog-entry .wp-block-table table td {
  border-bottom: 1px solid #CFD6EC;
  border-right: 1px solid #CFD6EC;
  font-size: 16px;
  line-height: 140%;
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
}
.single-blog-entry table th:last-child,
.single-blog-entry table td:last-child,
.single-blog-entry .wp-block-table table th:last-child,
.single-blog-entry .wp-block-table table td:last-child {
  border-right: 0;
}
.single-blog-entry table th,
.single-blog-entry .wp-block-table table th {
  background: #F6F9FF;
  color: #00002E;
}
.single-blog-entry table td,
.single-blog-entry .wp-block-table table td {
  color: #434361;
  font-weight: 400;
}
.single-blog-entry table tr:last-child td,
.single-blog-entry .wp-block-table table tr:last-child td {
  border-bottom: 0;
}
.single-blog-entry .wp-block-table {
  margin: 40px 0;
  overflow-x: auto;
}
.single-blog-entry .wp-block-table table {
  margin: 0;
}
.single-blog-entry .wp-block-table figcaption {
  margin-top: 12px;
}
.single-blog-entry pre,
.single-blog-entry .wp-block-code {
  background: #00013F;
  border: 0;
  border-radius: 8px;
  color: #E3EBFD;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-size: 14px;
  line-height: 160%;
  margin: 40px 0;
  overflow: auto;
  padding: 28px 32px;
  white-space: pre;
}
.single-blog-entry pre code,
.single-blog-entry .wp-block-code code {
  background: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}
.single-blog-entry :not(pre) > code {
  background: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 2px;
  color: #00013F;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-size: 0.9em;
  padding: 2px 5px;
}

.single-blog-toc {
  padding-left: 70px;
}
.single-blog-toc .newsletter-sidebar__inner {
  position: sticky;
  top: 140px;
}
.single-blog-toc h2 {
  color: #00002E;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 28px;
}
.single-blog-toc ol {
  border-left: 1px solid #E3EBFD;
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-blog-toc__item {
  margin: 0;
}
.single-blog-toc__item::before {
  display: none;
}
.single-blog-toc__item a {
  color: #434361;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin: 0 0 20px;
  padding-left: 18px;
  position: relative;
  text-decoration: none;
}
.single-blog-toc__item a::before {
  background: transparent;
  content: "";
  height: 100%;
  left: -1px;
  position: absolute;
  top: 0;
  width: 2px;
}
.single-blog-toc__item a:hover, .single-blog-toc__item a.is-active {
  color: #0002D1;
}
.single-blog-toc__item a.is-active::before {
  background: #0002D1;
}
.single-blog-toc__item:last-child a {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .single-blog-header {
    min-height: 620px;
    padding: 160px 0 80px;
  }
  .single-blog-header h1 {
    font-size: 48px;
    max-width: 760px;
  }
  .single-blog-header__art {
    opacity: 0.75;
    right: -70px;
  }

  .single-blog-article {
    padding: 90px 0 120px;
  }
  .single-blog-article .grid {
    row-gap: 60px;
  }
  .single-blog-article__body,
.single-blog-article .single-blog-toc {
    grid-row: auto;
  }

  .single-blog-toc {
    order: -1;
    padding-left: 0;
  }
  .single-blog-toc__inner {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .single-blog-header {
    min-height: 0;
    padding: 145px 0 70px;
  }
  .single-blog-header h1 {
    font-size: 38px;
  }
  .single-blog-header__lead {
    font-size: 18px;
  }
  .single-blog-header__art {
    opacity: 0.55;
    right: -150px;
    top: -60px;
  }

  .single-blog-breadcrumb {
    margin-bottom: 26px;
  }

  .single-blog-meta {
    margin-top: 26px;
  }
  .single-blog-meta__pill {
    font-size: 14px;
  }

  .single-blog-article {
    padding: 70px 0 90px;
  }

  .single-blog-entry h2 {
    font-size: 38px;
  }
  .single-blog-entry h3 {
    font-size: 32px;
  }
  .single-blog-entry h4 {
    font-size: 26px;
  }
  .single-blog-entry p,
.single-blog-entry li {
    font-size: 16px;
  }
  .single-blog-entry table,
.single-blog-entry .wp-block-table table {
    min-width: 620px;
  }
  .single-blog-entry pre,
.single-blog-entry .wp-block-code {
    padding: 22px 20px;
  }

  .single-blog-toc h2 {
    font-size: 20px;
  }
  .single-blog-toc__item a {
    font-size: 16px;
  }
}
#social-share {
  width: 100%;
}
#social-share .icon-container {
  display: flex;
  gap: 8px;
}

/********************* BLOG HUB *********************/
/********************* SINGLE CUSTOMER STORY *********************/
.single-customer-story-header {
  background: #00002E;
  gap: 0;
  min-height: 650px;
  padding: 168px 0 88px;
}
.single-customer-story-header .grid {
  align-items: center;
}
.single-customer-story-header__content {
  padding-right: 36px;
}
.single-customer-story-header h1 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
  max-width: 720px;
}
.single-customer-story-header__lead {
  color: #CFD6EC;
  font-size: 18px;
  line-height: 140%;
  margin: 28px 0 0;
  max-width: 720px;
}
.single-customer-story-header .customer-story-download {
  margin-top: 30px;
}
.single-customer-story-header__media {
  aspect-ratio: 630/350;
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  width: 100%;
}
.single-customer-story-header__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.single-customer-story-article {
  background: #FFF;
  gap: 0;
  padding: 100px 0 150px;
}
.single-customer-story-article .grid {
  align-items: start;
}
.single-customer-story-article__body,
.single-customer-story-article .single-customer-story-sidebar {
  grid-row: 1;
}

.customer-story-entry .customer-story-pullquote,
.customer-story-entry blockquote {
  background: #FAFAFF;
  border: 1px solid #CFD6EC;
  border-radius: 8px;
  margin: 48px 0;
  padding: 32px;
  position: relative;
}
.customer-story-entry .customer-story-pullquote::before,
.customer-story-entry blockquote::before {
  background: #0002D1;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 34px;
  width: 4px;
}
.customer-story-entry .customer-story-pullquote p,
.customer-story-entry blockquote p {
  color: #00002E;
  font-size: 22px;
  line-height: 140%;
  margin: 0;
}

.single-customer-story-sidebar {
  border-left: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 0;
}
.single-customer-story-sidebar__card {
  background: #F6F9FF;
  border: 2px solid #E3EBFD;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.single-customer-story-sidebar__item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.single-customer-story-sidebar__item img {
  display: block;
  height: 20px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
  width: 20px;
}
.single-customer-story-sidebar__label {
  color: #00002E;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 120%;
  margin: 0 0 6px;
  text-transform: none;
}
.single-customer-story-sidebar__value {
  color: #434361;
  font-size: 16px;
  line-height: 140%;
  margin: 0;
}
.single-customer-story-sidebar .customer-story-download {
  justify-content: center;
  width: 100%;
}
.single-customer-story-sidebar .customer-story-download:hover {
  color: #00002E;
}

.single-customer-story-related {
  background: #00002E;
  gap: 0;
  padding: 140px 0 150px;
}
.single-customer-story-related h2 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
.single-customer-story-related__grid {
  margin-top: 60px;
}
.single-customer-story-related .customer-story-hub-card#resource-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 430px;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.single-customer-story-related .customer-story-hub-card#resource-card > div {
  flex-basis: auto;
}
.single-customer-story-related .customer-story-hub-card#resource-card #image-container {
  background: #FFF;
  border-radius: 4px;
  flex: 0 0 auto;
  height: auto;
  margin: 0;
  overflow: hidden;
}
.single-customer-story-related .customer-story-hub-card#resource-card #image-container img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.single-customer-story-related .customer-story-hub-card#resource-card.has-logo-feature #image-container {
  background: radial-gradient(circle at 80% 10%, rgba(98, 100, 255, 0.8), rgba(0, 2, 209, 0) 42%), linear-gradient(135deg, #6264FF 0%, #0002D1 55%, #000191 100%);
}
.single-customer-story-related .customer-story-hub-card#resource-card.has-logo-feature #image-container img {
  object-fit: contain;
  padding: 54px 70px;
}
.single-customer-story-related .customer-story-hub-card#resource-card #content-container {
  display: flex;
  flex: 1 1 auto;
}
.single-customer-story-related .customer-story-hub-card#resource-card #content-container #content-block {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}
.single-customer-story-related .customer-story-hub-card#resource-card h5 {
  color: #FFF;
  font-size: 22px;
  line-height: 120%;
  margin: 0;
}
.single-customer-story-related .customer-story-hub-card#resource-card #text-button {
  color: #E0FF00;
  letter-spacing: 0.32px;
  margin-top: auto;
  padding-top: 20px;
}
.single-customer-story-related .customer-story-hub-card#resource-card #text-button::before {
  display: none;
}
.single-customer-story-related .customer-story-hub-card#resource-card:hover {
  border-color: rgba(98, 100, 255, 0.85);
  transform: translateY(-2px);
}
.single-customer-story-related .customer-story-hub-card#resource-card:hover h5 {
  color: #FFF;
}
.single-customer-story-related .customer-story-hub-card#resource-card:hover #text-button {
  color: #F1FF8B;
}
.single-customer-story-related .customer-story-hub-card#resource-card:hover #image-container img {
  transform: scale(1.02);
}

/********************* GLOSSARY HUB + SINGLE *********************/
.glossary-hero {
  background: #00013F;
  gap: 0;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
.glossary-hero__background {
  height: 100%;
  inset: 0;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.glossary-hero .grid {
  position: relative;
  z-index: 2;
}
.glossary-hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.glossary-hero .eyebrow {
  color: #A6A7FF;
  margin: 0 0 26px;
}
.glossary-hero__wordmark {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.glossary-hero__wordmark img {
  display: block;
  flex: 0 0 60px;
  height: 76px;
  margin: 0;
  object-fit: contain;
  width: 60px;
}
.glossary-hero h1 {
  color: #FFF;
  font-size: 62px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
.glossary-hero__lead {
  margin-top: 24px;
  max-width: 846px;
  margin-bottom: 30px;
}
.glossary-hero__lead p {
  color: #CFD6EC;
  font-size: 20px;
  line-height: 140%;
  margin: 0;
}
.glossary-hero__button {
  margin-top: 30px;
}

.glossary-alphabet {
  background: #00002E;
  padding: 30px 80px;
  scrollbar-width: none;
}
.glossary-alphabet::-webkit-scrollbar {
  display: none;
}
.glossary-alphabet__list {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 840px;
  width: 100%;
}
.glossary-alphabet__list a,
.glossary-alphabet__list span {
  color: #FFF;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}
.glossary-alphabet__list a {
  color: #E0FF00;
  transition: color 0.2s ease;
}
.glossary-alphabet__list a:hover, .glossary-alphabet__list a:focus-visible {
  color: #F1FF8B;
}

.glossary-letter-group {
  border-top: 1px solid #CFD6EC;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 40px;
  padding: 40px 0 75px;
  scroll-margin-top: 120px;
}
.glossary-letter-group:last-child {
  padding-bottom: 0;
}
.glossary-letter-group__letter {
  color: #0002D1;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

.glossary-term + .glossary-term {
  margin-top: 75px;
}
.glossary-term h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 20px;
}
.glossary-term h3 a {
  color: #00002E;
  text-decoration: none;
}
.glossary-term h3 a:hover {
  color: #0002D1;
}
.glossary-term__lead {
  margin-bottom: 20px;
}
.glossary-term__lead p {
  color: #434361;
  font-size: 18px;
  line-height: 140%;
  margin: 0 0 16px;
}
.glossary-term__lead p:last-child {
  margin-bottom: 0;
}
.glossary-term #text-button {
  color: #0002D1;
  font-size: 16px;
  line-height: 120%;
  text-decoration: none;
}
.glossary-term #text-button::before, .glossary-term #text-button::after {
  display: none;
}
.glossary-term #text-button:hover {
  color: #00013F;
}

.single-glossary-header {
  min-height: 600px;
  padding: 175px 0 100px;
}
.single-glossary-header h1 {
  font-size: 62px;
}
.single-glossary-header .single-blog-breadcrumb img {
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}
.single-glossary-header__lead {
  max-width: 847px;
}
.single-glossary-header__lead p {
  color: inherit;
  font: inherit;
  margin: 0 0 12px;
}
.single-glossary-header__lead p:last-child {
  margin-bottom: 0;
}

.single-glossary-article {
  padding-bottom: 150px;
}

.single-glossary-related {
  background: #00002E;
  gap: 0;
  padding: 100px 0;
}
.single-glossary-related h2 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
.single-glossary-related__grid {
  margin-top: 60px;
}

.single-glossary-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 233px;
  padding: 30px;
  text-decoration: none;
  transition: border-color 0.25s ease;
}
.single-glossary-card__eyebrow {
  color: #A6A7FF;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 100%;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.single-glossary-card h3 {
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 14px;
}
.single-glossary-card p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #CFD6EC;
  display: -webkit-box;
  font-size: 16px;
  line-height: 140%;
  margin: 0 0 18px;
  overflow: hidden;
  white-space: pre-line;
}
.single-glossary-card__link {
  color: #E0FF00;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  margin-top: auto;
}
.single-glossary-card:hover {
  border-color: #6264FF;
}
.single-glossary-card:hover h3 {
  color: #FFF;
}
.single-glossary-card:hover .single-glossary-card__link {
  color: #F1FF8B;
}

@media screen and (max-width: 1024px) {
  .glossary-hero {
    padding: 155px 0 90px;
  }
  .glossary-hero h1 {
    font-size: 52px;
  }

  .glossary-alphabet {
    overflow-x: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  .glossary-alphabet__list {
    justify-content: flex-start;
    min-width: max-content;
  }

  .glossary-directory {
    padding: 90px 0 120px;
  }

  .single-glossary-header {
    min-height: 0;
    padding: 155px 0 90px;
  }
  .single-glossary-header h1 {
    font-size: 48px;
  }

  .single-glossary-related {
    padding: 90px 0 100px;
  }
  .single-glossary-related .single-glossary-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  .glossary-hero {
    padding: 140px 0 70px;
  }
  .glossary-hero__wordmark {
    gap: 12px;
  }
  .glossary-hero__wordmark img {
    flex-basis: 42px;
    height: 53px;
    width: 42px;
  }
  .glossary-hero h1 {
    font-size: 42px;
  }
  .glossary-hero__lead p {
    font-size: 17px;
  }

  .glossary-alphabet {
    padding: 24px 20px;
  }

  .glossary-directory {
    padding: 70px 0 90px;
  }

  .glossary-letter-group {
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 30px 0 60px;
  }

  .glossary-term + .glossary-term {
    margin-top: 50px;
  }
  .glossary-term h3 {
    font-size: 27px;
  }
  .glossary-term__lead p {
    font-size: 16px;
  }

  .single-glossary-header {
    padding: 140px 0 70px;
  }
  .single-glossary-header h1 {
    font-size: 38px;
  }

  .single-glossary-related {
    padding: 75px 0 85px;
  }
  .single-glossary-related h2 {
    font-size: 38px;
  }
  .single-glossary-related__grid {
    margin-top: 40px;
  }
  .single-glossary-related .single-glossary-card {
    grid-column: auto/span 4;
    min-height: 220px;
  }
}
@media screen and (max-width: 1024px) {
  .single-customer-story-header {
    min-height: 0;
    padding: 150px 0 90px;
  }
  .single-customer-story-header .grid {
    row-gap: 50px;
  }
  .single-customer-story-header__content {
    padding-right: 0;
  }
  .single-customer-story-header__media {
    grid-row: 2;
  }

  .single-customer-story-article {
    padding: 90px 0 120px;
  }
  .single-customer-story-article .grid {
    row-gap: 60px;
  }
  .single-customer-story-article__body,
.single-customer-story-article .single-customer-story-sidebar {
    grid-row: auto;
  }

  .single-customer-story-related {
    padding: 110px 0 120px;
  }
  .single-customer-story-related .customer-story-hub-card#resource-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  .single-customer-story-header {
    padding: 135px 0 70px;
  }
  .single-customer-story-header h1 {
    font-size: 38px;
  }
  .single-customer-story-header__lead {
    font-size: 16px;
  }

  .single-customer-story-article {
    padding: 70px 0 90px;
  }

  .customer-story-entry .customer-story-pullquote,
.customer-story-entry blockquote {
    padding: 26px 24px;
  }
  .customer-story-entry .customer-story-pullquote p,
.customer-story-entry blockquote p {
    font-size: 18px;
  }

  .single-customer-story-sidebar__card {
    padding: 24px;
  }

  .single-customer-story-related {
    padding: 80px 0 90px;
  }
  .single-customer-story-related h2 {
    font-size: 38px;
  }
  .single-customer-story-related__grid {
    margin-top: 40px;
  }
  .single-customer-story-related .customer-story-hub-card#resource-card {
    grid-column: auto/span 4;
    min-height: 360px;
  }
}
main.blog-hub {
  background: #FAFAFF;
}
main.blog-hub .blog-hub-header {
  background: #00013F;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
main.blog-hub .blog-hub-header__background {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
main.blog-hub .blog-hub-header .grid {
  row-gap: 60px;
}
main.blog-hub .blog-hub-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
main.blog-hub .blog-hub-heading .eyebrow,
main.blog-hub .blog-hub-heading h1,
main.blog-hub .blog-hub-heading .lead {
  margin: 0;
}
main.blog-hub .blog-hub-heading .eyebrow {
  color: #A6A7FF;
}
main.blog-hub .blog-hub-heading h1 {
  color: #FFF;
}
main.blog-hub .blog-hub-heading .lead {
  color: #CFD6EC;
  max-width: 955px;
}
main.blog-hub .blog-featured-card {
  align-items: center;
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  gap: 30px;
  min-height: 383px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}
main.blog-hub .blog-featured-card__image {
  border-radius: 4px;
  flex: 0 0 550px;
  height: 343px;
  overflow: hidden;
}
main.blog-hub .blog-featured-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
main.blog-hub .blog-featured-card__content {
  align-self: stretch;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 20px 20px 0 0;
}
main.blog-hub .blog-featured-card__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main.blog-hub .blog-featured-card__copy .eyebrow,
main.blog-hub .blog-featured-card__copy h4,
main.blog-hub .blog-featured-card__copy p {
  margin: 0;
}
main.blog-hub .blog-featured-card__copy .eyebrow {
  color: #A6A7FF;
}
main.blog-hub .blog-featured-card__copy h4 {
  color: #FFF;
}
main.blog-hub .blog-featured-card__copy .body-s {
  color: #CFD6EC;
  font-family: "pangearegular", sans-serif;
}
main.blog-hub .blog-featured-card .blog-card-link {
  color: #E0FF00;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.32px;
}
main.blog-hub .blog-featured-card:hover {
  border-color: rgba(98, 100, 255, 0.85);
  color: inherit;
  transform: translateY(-2px);
}
main.blog-hub .blog-featured-card:hover .blog-featured-card__image img {
  transform: scale(1.02);
}
main.blog-hub .blog-featured-card:hover .blog-card-link {
  color: #F1FF8B;
}
main.blog-hub .blog-hub-archive {
  background: #FAFAFF;
  overflow: hidden;
  padding: 100px 0 0;
  position: relative;
}
main.blog-hub .blog-hub-archive__accent {
  height: 788px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 513px;
}
main.blog-hub .blog-hub-archive__controls {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
main.blog-hub .blog-hub-archive__header {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
main.blog-hub .blog-hub-archive__header h4 {
  color: #00002E;
  margin: 0;
  white-space: nowrap;
}
main.blog-hub .blog-hub-search {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  display: flex;
  flex: 0 1 522px;
  gap: 8px;
  height: 50px;
  margin: 0;
  max-width: 522px;
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
}
main.blog-hub .blog-hub-search img {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}
main.blog-hub .blog-hub-search input[type=search] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #434361;
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  height: 48px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
}
main.blog-hub .blog-hub-search input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}
main.blog-hub .blog-hub-search input[type=search]:focus, main.blog-hub .blog-hub-search input[type=search]:focus-visible {
  border: 0;
  box-shadow: none;
  outline: 0 !important;
}
main.blog-hub .blog-hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main.blog-hub .blog-hub-filter {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 1.2;
  padding: 0 20px;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
main.blog-hub .blog-hub-filter:hover, main.blog-hub .blog-hub-filter.active {
  background: #E3EBFD;
  border-color: rgba(185, 191, 216, 0.5);
  color: #00002E;
}
main.blog-hub .blog-hub-card-grid {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
main.blog-hub .blog-hub-card#resource-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 365px;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
main.blog-hub .blog-hub-card#resource-card > div {
  flex-basis: auto;
}
main.blog-hub .blog-hub-card#resource-card #image-container {
  background: #FFF;
  border-radius: 4px;
  flex: 0 0 auto;
  height: auto;
  margin: 0;
  overflow: hidden;
}
main.blog-hub .blog-hub-card#resource-card #image-container img {
  aspect-ratio: 373/233;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}
main.blog-hub .blog-hub-card#resource-card #content-container {
  display: flex;
  flex: 1 1 auto;
}
main.blog-hub .blog-hub-card#resource-card #content-container #content-block {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}
main.blog-hub .blog-hub-card#resource-card h5 {
  color: #FFF;
  margin: 0;
}
main.blog-hub .blog-hub-card#resource-card #text-button {
  color: #E0FF00;
  letter-spacing: 0.32px;
  margin-top: 20px;
}
main.blog-hub .blog-hub-card#resource-card:not(.has-featured-image) {
  min-height: 220px;
}
main.blog-hub .blog-hub-card#resource-card:hover {
  border-color: rgba(98, 100, 255, 0.85);
  transform: translateY(-2px);
}
main.blog-hub .blog-hub-card#resource-card:hover h5 {
  color: #FFF;
}
main.blog-hub .blog-hub-card#resource-card:hover #text-button {
  color: #F1FF8B;
}
main.blog-hub .blog-hub-card#resource-card:hover #text-button::before {
  display: none;
}
main.blog-hub .blog-hub-card#resource-card:hover #image-container img {
  transform: scale(1.02);
}
main.blog-hub .blog-hub-empty {
  padding: 30px 0 100px;
}
main.blog-hub .blog-hub-empty p {
  color: #00002E;
}
main.blog-hub #blog-archive #pagination {
  gap: 0;
  margin: 40px 0 100px;
}
main.blog-hub #blog-archive #pagination .page-numbers {
  color: #00002E;
}
main.blog-hub #blog-archive #pagination .page-numbers.current::after {
  background: #0002D1;
}
main.blog-hub #blog-archive #pagination .page-numbers.prev,
main.blog-hub #blog-archive #pagination .page-numbers.next {
  color: #0002D1;
  font-size: 20px;
}
main.blog-hub #blog-archive #pagination::after {
  background: #B9BFD8;
}
@media screen and (max-width: 1024px) {
  main.blog-hub .blog-hub-header {
    padding: 145px 0 80px;
  }
  main.blog-hub .blog-featured-card {
    align-items: stretch;
    flex-direction: column;
  }
  main.blog-hub .blog-featured-card__image {
    aspect-ratio: 16/9;
    flex: none;
    height: auto;
    width: 100%;
  }
  main.blog-hub .blog-featured-card__content {
    gap: 30px;
    min-height: 245px;
    padding: 10px;
  }
  main.blog-hub .blog-hub-card#resource-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  main.blog-hub .blog-hub-header {
    padding: 130px 0 70px;
  }
  main.blog-hub .blog-hub-header .grid {
    row-gap: 40px;
  }
  main.blog-hub .blog-hub-heading {
    gap: 18px;
  }
  main.blog-hub .blog-featured-card {
    grid-column: auto/span 4;
    gap: 22px;
    min-height: 0;
  }
  main.blog-hub .blog-featured-card__content {
    min-height: 0;
    padding: 0;
  }
  main.blog-hub .blog-featured-card__copy h4 {
    font-size: 24px;
  }
  main.blog-hub .blog-hub-archive {
    padding-top: 70px;
  }
  main.blog-hub .blog-hub-archive__accent {
    opacity: 0.6;
    right: -220px;
  }
  main.blog-hub .blog-hub-archive__header {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }
  main.blog-hub .blog-hub-archive__header h4 {
    white-space: normal;
  }
  main.blog-hub .blog-hub-search {
    flex-basis: auto;
    max-width: none;
  }
  main.blog-hub .blog-hub-filter {
    font-size: 14px;
    height: 44px;
    padding: 0 16px;
  }
  main.blog-hub .blog-hub-card-grid {
    margin-top: 40px;
  }
  main.blog-hub .blog-hub-card#resource-card {
    grid-column: auto/span 4;
  }
  main.blog-hub #blog-archive #pagination {
    margin-bottom: 70px;
  }
  main.blog-hub #blog-archive #pagination .page-numbers {
    width: 52px;
  }
}

/********************* RESOURCES MODULE *********************/
section.resources-module {
  overflow: hidden;
}
section.resources-module.light {
  background: #FFF;
}
section.resources-module.gray {
  background: #FAFAFF;
}
section.resources-module.space {
  background: #00002E;
}
section.resources-module.blue {
  background: #00013F;
}
section.resources-module .resources-module__heading-grid {
  position: relative;
  z-index: 2;
}
section.resources-module .title-container #heading-container {
  gap: 30px;
}
section.resources-module .title-container #heading-container .content-container {
  gap: 20px;
}
section.resources-module .title-container #heading-container h1,
section.resources-module .title-container #heading-container h2,
section.resources-module .title-container #heading-container h3,
section.resources-module .title-container #heading-container h4,
section.resources-module .title-container #heading-container h5,
section.resources-module .title-container #heading-container h6,
section.resources-module .title-container #heading-container .lead,
section.resources-module .title-container #heading-container .lead p,
section.resources-module .title-container #heading-container .body-l,
section.resources-module .title-container #heading-container .body-l p,
section.resources-module .title-container #heading-container .body-s,
section.resources-module .title-container #heading-container .body-s p {
  margin: 0;
}
section.resources-module.light .title-container .eyebrow, section.resources-module.gray .title-container .eyebrow {
  color: #0002D1;
}
section.resources-module.light .title-container h1,
section.resources-module.light .title-container h2,
section.resources-module.light .title-container h3,
section.resources-module.light .title-container h4,
section.resources-module.light .title-container h5,
section.resources-module.light .title-container h6, section.resources-module.gray .title-container h1,
section.resources-module.gray .title-container h2,
section.resources-module.gray .title-container h3,
section.resources-module.gray .title-container h4,
section.resources-module.gray .title-container h5,
section.resources-module.gray .title-container h6 {
  color: #00002E;
}
section.resources-module.light .title-container .lead,
section.resources-module.light .title-container .lead p,
section.resources-module.light .title-container .body-l,
section.resources-module.light .title-container .body-l p,
section.resources-module.light .title-container .body-s,
section.resources-module.light .title-container .body-s p, section.resources-module.gray .title-container .lead,
section.resources-module.gray .title-container .lead p,
section.resources-module.gray .title-container .body-l,
section.resources-module.gray .title-container .body-l p,
section.resources-module.gray .title-container .body-s,
section.resources-module.gray .title-container .body-s p {
  color: #434361;
}
section.resources-module.space .title-container .eyebrow, section.resources-module.blue .title-container .eyebrow {
  color: #A6A7FF;
}
section.resources-module.space .title-container h1,
section.resources-module.space .title-container h2,
section.resources-module.space .title-container h3,
section.resources-module.space .title-container h4,
section.resources-module.space .title-container h5,
section.resources-module.space .title-container h6, section.resources-module.blue .title-container h1,
section.resources-module.blue .title-container h2,
section.resources-module.blue .title-container h3,
section.resources-module.blue .title-container h4,
section.resources-module.blue .title-container h5,
section.resources-module.blue .title-container h6 {
  color: #FFF;
}
section.resources-module.space .title-container .lead,
section.resources-module.space .title-container .lead p,
section.resources-module.space .title-container .body-l,
section.resources-module.space .title-container .body-l p,
section.resources-module.space .title-container .body-s,
section.resources-module.space .title-container .body-s p, section.resources-module.blue .title-container .lead,
section.resources-module.blue .title-container .lead p,
section.resources-module.blue .title-container .body-l,
section.resources-module.blue .title-container .body-l p,
section.resources-module.blue .title-container .body-s,
section.resources-module.blue .title-container .body-s p {
  color: #CFD6EC;
}
section.resources-module.space .title-container a#button.secondary, section.resources-module.blue .title-container a#button.secondary {
  background: #222246;
  color: #FFF;
}
section.resources-module .resources-module__grid {
  row-gap: 20px;
}
section.resources-module .resources-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  grid-column: auto/span 4;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: none;
}
section.resources-module .resources-card::after {
  background: url("../images/blog-card-corner-glow.svg") left bottom/229px 143px no-repeat;
  bottom: -1px;
  content: "";
  height: 143px;
  left: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 229px;
  z-index: 0;
}
section.resources-module .resources-card > * {
  position: relative;
  z-index: 1;
}
section.resources-module .resources-card--resource {
  gap: 30px;
  min-height: 220px;
  padding: 20px;
}
section.resources-module .resources-card--resource.has-featured-image {
  min-height: 397px;
}
section.resources-module .resources-card--news {
  min-height: 222px;
  padding: 30px;
}
section.resources-module .resources-card__image {
  aspect-ratio: 373/233;
  background: #FFF;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}
section.resources-module .resources-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: none;
  width: 100%;
}
section.resources-module .resources-card__content {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  width: 100%;
}
section.resources-module .resources-card__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  width: 100%;
}
section.resources-module .resources-card__copy .eyebrow,
section.resources-module .resources-card__copy h5 {
  margin: 0;
}
section.resources-module .resources-card__copy .eyebrow {
  color: #A6A7FF;
}
section.resources-module .resources-card__copy h5 {
  color: #FFF;
}
section.resources-module .resources-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
section.resources-module .resources-card__meta-row {
  align-items: center;
  color: #CFD6EC;
  display: flex;
  font-family: "pangearegular", sans-serif;
  font-size: 16px;
  gap: 10px;
  line-height: 1.4;
  min-width: 0;
}
section.resources-module .resources-card__meta-row img {
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}
section.resources-module .resources-card__meta-row span {
  min-width: 0;
}
section.resources-module .resources-card__link {
  color: #E0FF00;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 1.2;
  margin-top: auto;
}
section.resources-module .resources-card:hover {
  border-color: #434361;
  color: #FFF;
  transform: none;
}
section.resources-module .resources-card:hover::after {
  opacity: 1;
}
section.resources-module .resources-module__slider-shell {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
section.resources-module .resources-module__slider {
  width: 100%;
}
section.resources-module .resources-module__slider .slick-list {
  overflow: visible;
}
section.resources-module .resources-module__slider .slick-track {
  align-items: stretch;
  display: flex;
}
section.resources-module .resources-module__slider .slick-slide {
  display: flex;
  height: auto;
  margin: 10px 10px 0;
  width: 413px;
}
section.resources-module .resources-module__slider .slick-slide > div {
  display: flex;
  height: 100%;
  width: 100%;
}
section.resources-module .resources-module__slider .resources-card {
  width: 413px;
}
section.resources-module .resources-module__slider .slick-slide.resources-card {
  height: auto;
}
section.resources-module .resources-module__slider .slick-slide > div .resources-card {
  height: 100%;
}
section.resources-module .resources-module__slider-controls {
  align-items: center;
  display: flex;
  height: 10px;
  justify-content: center;
  min-height: 10px;
  position: relative;
  z-index: 3;
}
section.resources-module .resources-module__slider-controls .slick-dots {
  align-items: center;
  display: flex !important;
  gap: 12px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
section.resources-module .resources-module__slider-controls .slick-dots li {
  display: flex;
  height: 8px;
  margin: 0;
  width: 8px;
}
section.resources-module .resources-module__slider-controls .slick-dots li button {
  background: #A6A7FF;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0;
  height: 8px;
  margin: 0;
  padding: 0;
  transition: background-color 0.2s ease, width 0.2s ease;
  width: 8px;
}
section.resources-module .resources-module__slider-controls .slick-dots li.slick-active {
  width: 30px;
}
section.resources-module .resources-module__slider-controls .slick-dots li.slick-active button {
  background: #0002D1;
  width: 30px;
}
section.resources-module.space .resources-module__slider-controls .slick-dots li button, section.resources-module.blue .resources-module__slider-controls .slick-dots li button {
  background: rgba(166, 167, 255, 0.7);
}
section.resources-module.space .resources-module__slider-controls .slick-dots li.slick-active button, section.resources-module.blue .resources-module__slider-controls .slick-dots li.slick-active button {
  background: #E0FF00;
}
@media screen and (max-width: 1024px) {
  section.resources-module .resources-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  section.resources-module .title-container #heading-container {
    gap: 24px;
  }
  section.resources-module .resources-card {
    grid-column: auto/span 4;
  }
  section.resources-module .resources-card--news {
    padding: 24px;
  }
  section.resources-module .resources-module__slider-shell {
    gap: 32px;
  }
  section.resources-module .resources-module__slider .slick-list {
    overflow: hidden;
  }
  section.resources-module .resources-module__slider .slick-slide {
    margin-left: 10px;
    margin-right: 10px;
  }
  section.resources-module .resources-module__slider .resources-card {
    width: 100%;
  }
}

/********************* RESOURCE CENTER HUB *********************/
main.resource-center-hub {
  background: #FAFAFF;
}
main.resource-center-hub .resource-center-header {
  background: #00013F;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
main.resource-center-hub .resource-center-header__background {
  bottom: 0;
  height: auto;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
main.resource-center-hub .resource-center-header .grid {
  row-gap: 60px;
}
main.resource-center-hub .resource-center-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
main.resource-center-hub .resource-center-heading .eyebrow,
main.resource-center-hub .resource-center-heading h1,
main.resource-center-hub .resource-center-heading .lead {
  margin: 0;
}
main.resource-center-hub .resource-center-heading .eyebrow {
  color: #A6A7FF;
}
main.resource-center-hub .resource-center-heading h1 {
  color: #FFF;
}
main.resource-center-hub .resource-center-heading .lead {
  color: #CFD6EC;
  max-width: 955px;
}
main.resource-center-hub .resource-center-featured {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}
main.resource-center-hub .resource-center-featured__side {
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-width: 0;
}
main.resource-center-hub .resource-center-featured__small-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
main.resource-center-hub .resource-featured-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: none;
}
main.resource-center-hub .resource-featured-card::after {
  background: url("../images/blog-card-corner-glow.svg") left bottom/229px 143px no-repeat;
  bottom: -1px;
  content: "";
  height: 143px;
  left: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 229px;
  z-index: 0;
}
main.resource-center-hub .resource-featured-card > * {
  position: relative;
  z-index: 1;
}
main.resource-center-hub .resource-featured-card__image {
  background: #CFD6EC;
  border-radius: 4px;
  flex: 0 0 368px;
  overflow: hidden;
  width: 100%;
}
main.resource-center-hub .resource-featured-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: none;
  width: 100%;
}
main.resource-center-hub .resource-featured-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  min-width: 0;
}
main.resource-center-hub .resource-featured-card__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main.resource-center-hub .resource-featured-card__copy .eyebrow,
main.resource-center-hub .resource-featured-card__copy h4,
main.resource-center-hub .resource-featured-card__copy h5,
main.resource-center-hub .resource-featured-card__copy p {
  margin: 0;
}
main.resource-center-hub .resource-featured-card__copy .eyebrow {
  color: #A6A7FF;
}
main.resource-center-hub .resource-featured-card__copy h4,
main.resource-center-hub .resource-featured-card__copy h5 {
  color: #FFF;
}
main.resource-center-hub .resource-featured-card__copy .body-s {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #CFD6EC;
  display: -webkit-box;
  font-family: "pangearegular", sans-serif;
  overflow: hidden;
}
main.resource-center-hub .resource-featured-card__link {
  color: #E0FF00;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 1.2;
  padding-top: 20px;
}
main.resource-center-hub .resource-featured-card--large {
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}
main.resource-center-hub .resource-featured-card--large .resource-featured-card__content {
  padding: 0 10px 10px;
}
main.resource-center-hub .resource-featured-card--small {
  height: 368px;
  padding: 30px;
}
main.resource-center-hub .resource-featured-card:hover {
  border-color: #434361;
  color: inherit;
  transform: none;
}
main.resource-center-hub .resource-featured-card:hover::after {
  opacity: 1;
}
main.resource-center-hub .resource-center-subscribe {
  background: #0002D1;
  border-radius: 12px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  min-height: 214px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}
main.resource-center-hub .resource-center-subscribe__background {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
main.resource-center-hub .resource-center-subscribe__copy, main.resource-center-hub .resource-center-subscribe__form, main.resource-center-hub .resource-center-subscribe__embed {
  position: relative;
  z-index: 2;
}
main.resource-center-hub .resource-center-subscribe__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main.resource-center-hub .resource-center-subscribe__copy h5,
main.resource-center-hub .resource-center-subscribe__copy p {
  margin: 0;
}
main.resource-center-hub .resource-center-subscribe__copy h5 {
  color: #FFF;
}
main.resource-center-hub .resource-center-subscribe__copy p {
  color: #CFD6EC;
  font-family: "pangearegular", sans-serif;
}
main.resource-center-hub .resource-center-subscribe__form {
  display: flex;
  gap: 10px;
}
main.resource-center-hub .resource-center-subscribe__form input[type=email] {
  background: #FFF;
  border: 1px solid #B9BFD8;
  border-radius: 4px;
  box-shadow: none;
  color: #00002E;
  flex: 1 1 auto;
  font-family: "pangearegular", sans-serif;
  font-size: 16px;
  height: 50px;
  margin: 0;
  min-width: 0;
  padding: 0 16px;
}
main.resource-center-hub .resource-center-subscribe__form .primary-button {
  background: #E0FF00;
  border: 0;
  border-radius: 4px;
  color: #00002E;
  flex: 0 0 auto;
  height: 50px;
  margin: 0;
  min-width: 121px;
  padding: 0 20px;
}
main.resource-center-hub .resource-center-subscribe__form .primary-button::after {
  display: none;
}
main.resource-center-hub .resource-center-subscribe__form .primary-button:hover {
  background: #F1FF8B;
  color: #00002E;
}
main.resource-center-hub .resource-center-subscribe__embed {
  margin: 0;
  padding: 0;
  width: 100%;
}
main.resource-center-hub .resource-center-subscribe__embed .hbspt-form,
main.resource-center-hub .resource-center-subscribe__embed .hubspot-form,
main.resource-center-hub .resource-center-subscribe__embed .site-hubspot-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #FFF;
  margin: 0;
  padding: 0;
  width: 100%;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form {
  align-items: center;
  background: transparent !important;
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form > h1,
main.resource-center-hub .resource-center-subscribe__embed .hs-form > h2,
main.resource-center-hub .resource-center-subscribe__embed .hs-form > h3,
main.resource-center-hub .resource-center-subscribe__embed .hs-form > h4,
main.resource-center-hub .resource-center-subscribe__embed .hs-form > .hs-richtext:first-child,
main.resource-center-hub .resource-center-subscribe__embed .hs-form > fieldset.form-columns-0:first-child,
main.resource-center-hub .resource-center-subscribe__embed .hs-form .legal-consent-container {
  display: none !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email {
  grid-column: 1;
  margin: 0 !important;
  min-width: 0;
  width: 100% !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email > label {
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email .input {
  margin: 0 !important;
  position: relative;
  width: 100%;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email .input::after {
  color: #00002E;
  content: "Email address";
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  left: 20px;
  line-height: 1.4;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email .input:focus-within::after, main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email .input:has(input:not(:placeholder-shown))::after {
  opacity: 0;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email input.hs-input[type=email] {
  background: #FFF !important;
  border: 1px solid #CFD6EC !important;
  border-radius: 100px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: #00002E !important;
  font-family: "pangearegular", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  height: 50px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  padding: 12px 20px !important;
  width: 100% !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_email input.hs-input[type=email]:focus {
  border-color: #CFD6EC !important;
  box-shadow: none !important;
  outline: 0 !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs-error-msgs {
  margin: 6px 0 0 !important;
  padding: 0 20px !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs-error-msgs li {
  margin: 0 !important;
  padding: 0 !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs-error-msgs li::before, main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs-error-msgs li::after {
  content: none !important;
  display: none !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs-error-msgs label {
  color: #FFF !important;
  font-size: 12px !important;
  margin: 0 !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_submit {
  grid-column: 2;
  margin: 0 !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form .hs_submit .actions {
  margin: 0 !important;
  padding: 0 !important;
  width: auto;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form input[type=submit],
main.resource-center-hub .resource-center-subscribe__embed .hs-form button[type=submit] {
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%) !important;
  background-position: 100% 50% !important;
  background-size: 202% 100% !important;
  border: 0 !important;
  border-radius: 100px !important;
  box-sizing: border-box !important;
  color: #00002E !important;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 50px !important;
  letter-spacing: 0.32px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  min-width: 0 !important;
  padding: 0 20px !important;
  transition: background-position 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  white-space: nowrap;
  width: auto !important;
}
main.resource-center-hub .resource-center-subscribe__embed .hs-form input[type=submit]:hover, main.resource-center-hub .resource-center-subscribe__embed .hs-form input[type=submit]:focus-visible,
main.resource-center-hub .resource-center-subscribe__embed .hs-form button[type=submit]:hover,
main.resource-center-hub .resource-center-subscribe__embed .hs-form button[type=submit]:focus-visible {
  background-position: 0% 50% !important;
  color: #00002E !important;
}
main.resource-center-hub .resource-center-archive {
  background: #FAFAFF;
  overflow: hidden;
  padding: 100px 0 100px;
  position: relative;
}
main.resource-center-hub .resource-center-archive__accent {
  height: 788px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 513px;
}
main.resource-center-hub .resource-center-archive__controls {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}
main.resource-center-hub .resource-center-archive__header {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
main.resource-center-hub .resource-center-archive__header h4 {
  color: #00002E;
  margin: 0;
  white-space: nowrap;
}
main.resource-center-hub .resource-center-search {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  display: flex;
  flex: 0 1 522px;
  gap: 8px;
  height: 50px;
  margin: 0;
  max-width: 522px;
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
}
main.resource-center-hub .resource-center-search img {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}
main.resource-center-hub .resource-center-search input[type=search] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #434361;
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  height: 48px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
}
main.resource-center-hub .resource-center-search input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}
main.resource-center-hub .resource-center-search input[type=search]:focus, main.resource-center-hub .resource-center-search input[type=search]:focus-visible {
  border: 0;
  box-shadow: none;
  outline: 0 !important;
}
main.resource-center-hub .resource-center-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main.resource-center-hub .resource-center-filter {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 1.2;
  padding: 0 20px;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
main.resource-center-hub .resource-center-filter:hover, main.resource-center-hub .resource-center-filter.active {
  background: #E3EBFD;
  border-color: rgba(185, 191, 216, 0.5);
  color: #00002E;
}
main.resource-center-hub .resource-center-card-grid {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
main.resource-center-hub .resource-center-card#resource-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 406px;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
main.resource-center-hub .resource-center-card#resource-card > div {
  flex-basis: auto;
}
main.resource-center-hub .resource-center-card#resource-card #image-container {
  background: #FFF;
  border-radius: 4px;
  flex: 0 0 auto;
  height: auto;
  margin: 0;
  overflow: hidden;
}
main.resource-center-hub .resource-center-card#resource-card #image-container img {
  aspect-ratio: 373/233;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
main.resource-center-hub .resource-center-card#resource-card #content-container {
  display: flex;
  flex: 1 1 auto;
}
main.resource-center-hub .resource-center-card#resource-card #content-container #content-block {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}
main.resource-center-hub .resource-center-card#resource-card .tag {
  color: #A6A7FF;
  margin: 0 0 14px;
}
main.resource-center-hub .resource-center-card#resource-card h5 {
  color: #FFF;
  margin: 0;
}
main.resource-center-hub .resource-center-card#resource-card #text-button {
  color: #E0FF00;
  letter-spacing: 0.32px;
  margin-top: auto;
  padding-top: 20px;
}
main.resource-center-hub .resource-center-card#resource-card:not(.has-featured-image) {
  min-height: 220px;
}
main.resource-center-hub .resource-center-card#resource-card:hover {
  border-color: rgba(98, 100, 255, 0.85);
  transform: translateY(-2px);
}
main.resource-center-hub .resource-center-card#resource-card:hover h5 {
  color: #FFF;
}
main.resource-center-hub .resource-center-card#resource-card:hover #text-button {
  color: #F1FF8B;
}
main.resource-center-hub .resource-center-card#resource-card:hover #text-button::before {
  display: none;
}
main.resource-center-hub .resource-center-card#resource-card:hover #image-container img {
  transform: scale(1.02);
}
main.resource-center-hub .resource-center-empty {
  padding: 30px 0 100px;
}
main.resource-center-hub .resource-center-empty p {
  color: #00002E;
}
main.resource-center-hub #resource-archive #pagination {
  gap: 0;
  margin: 40px 0 0;
}
main.resource-center-hub #resource-archive #pagination .page-numbers {
  color: #00002E;
}
main.resource-center-hub #resource-archive #pagination .page-numbers.current::after {
  background: #0002D1;
}
main.resource-center-hub #resource-archive #pagination .page-numbers.prev,
main.resource-center-hub #resource-archive #pagination .page-numbers.next {
  color: #0002D1;
  font-size: 20px;
}
main.resource-center-hub #resource-archive #pagination::after {
  background: #B9BFD8;
}
@media screen and (max-width: 1024px) {
  main.resource-center-hub .resource-center-header {
    padding: 145px 0 80px;
  }
  main.resource-center-hub .resource-center-heading {
    grid-column: auto/span 8;
  }
  main.resource-center-hub .resource-center-featured {
    grid-template-columns: 1fr;
  }
  main.resource-center-hub .resource-center-card#resource-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  main.resource-center-hub .resource-center-header {
    padding: 130px 0 70px;
  }
  main.resource-center-hub .resource-center-header .grid {
    row-gap: 40px;
  }
  main.resource-center-hub .resource-center-heading {
    gap: 18px;
    grid-column: auto/span 4;
  }
  main.resource-center-hub .resource-center-featured {
    grid-column: auto/span 4;
  }
  main.resource-center-hub .resource-center-featured__small-cards {
    grid-template-columns: 1fr;
  }
  main.resource-center-hub .resource-featured-card--small {
    height: auto;
    min-height: 0;
  }
  main.resource-center-hub .resource-featured-card--large {
    gap: 22px;
    min-height: 0;
  }
  main.resource-center-hub .resource-featured-card--small {
    min-height: 285px;
  }
  main.resource-center-hub .resource-featured-card__image {
    aspect-ratio: 16/9;
    flex-basis: auto;
  }
  main.resource-center-hub .resource-featured-card__copy h4 {
    font-size: 24px;
  }
  main.resource-center-hub .resource-center-subscribe {
    padding: 24px;
  }
  main.resource-center-hub .resource-center-subscribe__form {
    flex-direction: column;
  }
  main.resource-center-hub .resource-center-subscribe__form .primary-button {
    width: 100%;
  }
  main.resource-center-hub .resource-center-subscribe__embed .hs-form {
    grid-template-columns: minmax(0, 1fr);
  }
  main.resource-center-hub .resource-center-subscribe__embed .hs_email,
main.resource-center-hub .resource-center-subscribe__embed .hs_submit {
    grid-column: 1;
  }
  main.resource-center-hub .resource-center-subscribe__embed .hs_submit,
main.resource-center-hub .resource-center-subscribe__embed .hs_submit .actions,
main.resource-center-hub .resource-center-subscribe__embed input[type=submit],
main.resource-center-hub .resource-center-subscribe__embed button[type=submit] {
    width: 100% !important;
  }
  main.resource-center-hub .resource-center-archive {
    padding-top: 70px;
  }
  main.resource-center-hub .resource-center-archive__accent {
    opacity: 0.6;
    right: -220px;
  }
  main.resource-center-hub .resource-center-archive__controls {
    gap: 40px;
  }
  main.resource-center-hub .resource-center-archive__header {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }
  main.resource-center-hub .resource-center-archive__header h4 {
    white-space: normal;
  }
  main.resource-center-hub .resource-center-search {
    flex-basis: auto;
    max-width: none;
  }
  main.resource-center-hub .resource-center-filter {
    font-size: 14px;
    height: 44px;
    padding: 0 16px;
  }
  main.resource-center-hub .resource-center-card-grid {
    margin-top: 40px;
  }
  main.resource-center-hub .resource-center-card#resource-card {
    grid-column: auto/span 4;
  }
  main.resource-center-hub #resource-archive #pagination {
    margin-bottom: 70px;
  }
  main.resource-center-hub #resource-archive #pagination .page-numbers {
    width: 52px;
  }
}

/********************* RESOURCE TYPE ARCHIVE PAGES *********************/
main.resource-type-archive {
  background: #FAFAFF;
}
main.resource-type-archive .resource-type-hero {
  background: #00013F;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
main.resource-type-archive .resource-type-hero__background {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
main.resource-type-archive .resource-type-hero__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}
main.resource-type-archive .resource-type-hero__heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 955px;
  text-align: center;
  width: 100%;
}
main.resource-type-archive .resource-type-hero__heading .eyebrow,
main.resource-type-archive .resource-type-hero__heading h1,
main.resource-type-archive .resource-type-hero__heading .lead {
  margin: 0;
}
main.resource-type-archive .resource-type-hero__heading .eyebrow {
  color: #A6A7FF;
}
main.resource-type-archive .resource-type-hero__heading h1 {
  color: #FFF;
}
main.resource-type-archive .resource-type-hero__heading .lead {
  color: #CFD6EC;
  font-weight: 500;
}
main.resource-type-archive .resource-type-featured {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  gap: 30px;
  height: 383px;
  max-width: 1064px;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
main.resource-type-archive .resource-type-featured__image {
  background: #CFD6EC;
  border-radius: 4px;
  flex: 0 0 550px;
  height: 343px;
  overflow: hidden;
}
main.resource-type-archive .resource-type-featured__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
main.resource-type-archive .resource-type-featured__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 20px 20px 0 0;
}
main.resource-type-archive .resource-type-featured__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main.resource-type-archive .resource-type-featured__copy .eyebrow,
main.resource-type-archive .resource-type-featured__copy h4,
main.resource-type-archive .resource-type-featured__copy p {
  margin: 0;
}
main.resource-type-archive .resource-type-featured__copy .eyebrow {
  color: #A6A7FF;
}
main.resource-type-archive .resource-type-featured__copy h4 {
  color: #FFF;
}
main.resource-type-archive .resource-type-featured__copy .body-s {
  color: #CFD6EC;
  font-family: "pangearegular", sans-serif;
}
main.resource-type-archive .resource-type-featured__link {
  color: #E0FF00;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 1.2;
}
main.resource-type-archive .resource-type-featured:hover {
  border-color: rgba(98, 100, 255, 0.85);
  color: inherit;
}
main.resource-type-archive .resource-type-featured:hover .resource-type-featured__image img {
  transform: scale(1.02);
}
main.resource-type-archive .resource-type-featured:hover .resource-type-featured__link {
  color: #F1FF8B;
}
main.resource-type-archive .resource-type-results {
  background: #FAFAFF;
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
main.resource-type-archive .resource-type-results__accent {
  height: 788px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 513px;
}
main.resource-type-archive .resource-type-filters {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
main.resource-type-archive .resource-type-search {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  display: flex;
  gap: 8px;
  height: 50px;
  max-width: 522px;
  padding: 0 20px;
  width: 100%;
}
main.resource-type-archive .resource-type-search img {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}
main.resource-type-archive .resource-type-search input[type=search] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #434361;
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  height: 48px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
}
main.resource-type-archive .resource-type-search input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}
main.resource-type-archive .resource-type-search input[type=search]:focus, main.resource-type-archive .resource-type-search input[type=search]:focus-visible {
  border: 0;
  box-shadow: none;
  outline: 0 !important;
}
main.resource-type-archive .resource-type-product-filter {
  display: block;
  max-width: 304px;
  width: 100%;
}
main.resource-type-archive .resource-type-product-filter select {
  background-color: #FFF;
  border: 1px solid #B9BFD8;
  border-radius: 4px;
  box-shadow: none;
  color: #00002E;
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  height: 50px;
  line-height: 1.4;
  margin: 0;
  padding: 0 12px;
  width: 100%;
}
main.resource-type-archive .resource-type-card-grid {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
main.resource-type-archive .resource-type-card-grid .resource-center-card#resource-card {
  min-height: 378px;
}
main.resource-type-archive .resource-type-card-grid .resource-center-card#resource-card .tag {
  display: none;
}
main.resource-type-archive .resource-type-card-grid .resource-center-card#resource-card h5 {
  font-size: 22px;
  line-height: 1.2;
}
main.resource-type-archive .resource-type-empty {
  padding: 30px 0;
}
main.resource-type-archive .resource-type-empty p {
  color: #00002E;
  margin: 0;
}
main.resource-type-archive #resource-type-results #pagination {
  gap: 0;
  margin: 40px 0 0;
}
main.resource-type-archive #resource-type-results #pagination .page-numbers {
  color: #00002E;
}
main.resource-type-archive #resource-type-results #pagination .page-numbers.current::after {
  background: #0002D1;
}
main.resource-type-archive #resource-type-results #pagination .page-numbers.prev,
main.resource-type-archive #resource-type-results #pagination .page-numbers.next {
  color: #0002D1;
  font-size: 20px;
}
main.resource-type-archive #resource-type-results #pagination::after {
  background: #B9BFD8;
}
@media screen and (max-width: 1024px) {
  main.resource-type-archive .resource-type-hero {
    padding: 145px 0 80px;
  }
  main.resource-type-archive .resource-type-featured {
    height: auto;
  }
  main.resource-type-archive .resource-type-featured__image {
    flex-basis: 48%;
  }
  main.resource-type-archive .resource-type-card-grid .resource-center-card#resource-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  main.resource-type-archive .resource-type-hero {
    padding: 130px 0 70px;
  }
  main.resource-type-archive .resource-type-hero__inner {
    gap: 40px;
  }
  main.resource-type-archive .resource-type-hero__heading {
    gap: 18px;
  }
  main.resource-type-archive .resource-type-featured {
    flex-direction: column;
    gap: 22px;
    padding: 20px;
  }
  main.resource-type-archive .resource-type-featured__image {
    aspect-ratio: 16/9;
    flex-basis: auto;
    height: auto;
    width: 100%;
  }
  main.resource-type-archive .resource-type-featured__content {
    gap: 28px;
    padding: 0 10px 10px;
  }
  main.resource-type-archive .resource-type-featured__copy h4 {
    font-size: 24px;
  }
  main.resource-type-archive .resource-type-results {
    padding: 70px 0;
  }
  main.resource-type-archive .resource-type-results__accent {
    opacity: 0.6;
    right: -220px;
  }
  main.resource-type-archive .resource-type-filters {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }
  main.resource-type-archive .resource-type-search,
main.resource-type-archive .resource-type-product-filter {
    max-width: none;
  }
  main.resource-type-archive .resource-type-card-grid {
    margin-top: 40px;
  }
  main.resource-type-archive .resource-type-card-grid .resource-center-card#resource-card {
    grid-column: auto/span 4;
  }
  main.resource-type-archive #resource-type-results #pagination .page-numbers {
    width: 52px;
  }
}

main.customer-stories-hub {
  background: #FAFAFF;
}
main.customer-stories-hub .customer-stories-hero {
  align-items: center;
  background: #00002E;
  display: flex;
  min-height: 616px;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
main.customer-stories-hub .customer-stories-hero__background {
  height: 100%;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
main.customer-stories-hub .customer-stories-hero__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 846px;
  position: relative;
  z-index: 2;
}
main.customer-stories-hub .customer-stories-hero__content .eyebrow,
main.customer-stories-hub .customer-stories-hero__content h1,
main.customer-stories-hub .customer-stories-hero__content .lead {
  margin: 0;
}
main.customer-stories-hub .customer-stories-hero__content .eyebrow {
  color: #A6A7FF;
}
main.customer-stories-hub .customer-stories-hero__content h1 {
  color: #FFF;
}
main.customer-stories-hub .customer-stories-hero__content .lead {
  color: #CFD6EC;
}
main.customer-stories-hub .customer-stories-logo-slider {
  z-index: 22;
}
main.customer-stories-hub .customer-stories-archive {
  background: #FAFAFF;
  overflow: hidden;
  padding: 100px 0;
  position: relative;
}
main.customer-stories-hub .customer-stories-archive__accent {
  height: 788px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 513px;
}
main.customer-stories-hub .customer-stories-archive__controls {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
main.customer-stories-hub .customer-stories-archive__controls h4 {
  color: #00002E;
  margin: 0;
}
main.customer-stories-hub .customer-stories-toolbar {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0;
  width: 100%;
}
main.customer-stories-hub .customer-stories-search {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  display: flex;
  flex: 0 1 522px;
  gap: 8px;
  height: 50px;
  max-width: 522px;
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
}
main.customer-stories-hub .customer-stories-search img {
  flex: 0 0 20px;
  height: 20px;
  width: 20px;
}
main.customer-stories-hub .customer-stories-search input[type=search] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #434361;
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  height: 48px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  width: 100%;
}
main.customer-stories-hub .customer-stories-search input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}
main.customer-stories-hub .customer-stories-search input[type=search]:focus, main.customer-stories-hub .customer-stories-search input[type=search]:focus-visible {
  border: 0;
  box-shadow: none;
  outline: 0 !important;
}
main.customer-stories-hub .customer-stories-filter-controls {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
main.customer-stories-hub .customer-stories-filter-controls select {
  appearance: auto;
  background-color: #FFF;
  border: 1px solid #CFD6EC;
  border-radius: 4px;
  box-shadow: none;
  color: #00002E;
  font-family: "pangearegular", sans-serif;
  font-size: 18px;
  height: 50px;
  line-height: 1.4;
  margin: 0;
  min-width: 304px;
  padding: 0 12px;
}
main.customer-stories-hub .customer-stories-card-grid {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
main.customer-stories-hub .customer-story-hub-card#resource-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 430px;
  overflow: hidden;
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
main.customer-stories-hub .customer-story-hub-card#resource-card > div {
  flex-basis: auto;
}
main.customer-stories-hub .customer-story-hub-card#resource-card #image-container {
  background: #FFF;
  border-radius: 4px;
  flex: 0 0 auto;
  height: auto;
  margin: 0;
  overflow: hidden;
}
main.customer-stories-hub .customer-story-hub-card#resource-card #image-container img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
main.customer-stories-hub .customer-story-hub-card#resource-card.has-logo-feature #image-container {
  background: radial-gradient(circle at 80% 10%, rgba(98, 100, 255, 0.8), rgba(0, 2, 209, 0) 42%), linear-gradient(135deg, #6264FF 0%, #0002D1 55%, #000191 100%);
}
main.customer-stories-hub .customer-story-hub-card#resource-card.has-logo-feature #image-container img {
  object-fit: contain;
  padding: 54px 70px;
}
main.customer-stories-hub .customer-story-hub-card#resource-card #content-container {
  display: flex;
  flex: 1 1 auto;
}
main.customer-stories-hub .customer-story-hub-card#resource-card #content-container #content-block {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}
main.customer-stories-hub .customer-story-hub-card#resource-card h5 {
  color: #FFF;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}
main.customer-stories-hub .customer-story-hub-card#resource-card #text-button {
  color: #E0FF00;
  letter-spacing: 0.32px;
  margin-top: auto;
  padding-top: 20px;
}
main.customer-stories-hub .customer-story-hub-card#resource-card #text-button::before {
  display: none;
}
main.customer-stories-hub .customer-story-hub-card#resource-card:hover {
  border-color: rgba(98, 100, 255, 0.85);
  transform: translateY(-2px);
}
main.customer-stories-hub .customer-story-hub-card#resource-card:hover h5 {
  color: #FFF;
}
main.customer-stories-hub .customer-story-hub-card#resource-card:hover #text-button {
  color: #F1FF8B;
}
main.customer-stories-hub .customer-story-hub-card#resource-card:hover #image-container img {
  transform: scale(1.02);
}
main.customer-stories-hub .customer-stories-empty {
  padding: 30px 0;
}
main.customer-stories-hub .customer-stories-empty p {
  color: #00002E;
}
main.customer-stories-hub #customer-stories-archive #pagination {
  gap: 0;
  margin: 40px 0 0;
}
main.customer-stories-hub #customer-stories-archive #pagination .page-numbers {
  color: #00002E;
}
main.customer-stories-hub #customer-stories-archive #pagination .page-numbers.current::after {
  background: #0002D1;
}
main.customer-stories-hub #customer-stories-archive #pagination .page-numbers.prev,
main.customer-stories-hub #customer-stories-archive #pagination .page-numbers.next {
  color: #0002D1;
  font-size: 20px;
}
main.customer-stories-hub #customer-stories-archive #pagination::after {
  background: #B9BFD8;
}
@media screen and (max-width: 1024px) {
  main.customer-stories-hub .customer-stories-hero {
    min-height: 560px;
    padding: 145px 0 80px;
  }
  main.customer-stories-hub .customer-stories-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }
  main.customer-stories-hub .customer-stories-filter-controls {
    margin-left: 0;
  }
  main.customer-stories-hub .customer-stories-filter-controls select {
    flex: 1 1 50%;
    min-width: 0;
  }
  main.customer-stories-hub .customer-story-hub-card#resource-card {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  main.customer-stories-hub .customer-stories-hero {
    min-height: 0;
    padding: 130px 0 70px;
  }
  main.customer-stories-hub .customer-stories-hero__content {
    gap: 18px;
  }
  main.customer-stories-hub .customer-stories-hero__content h1 {
    font-size: 42px;
  }
  main.customer-stories-hub .customer-stories-archive {
    padding: 70px 0;
  }
  main.customer-stories-hub .customer-stories-archive__accent {
    opacity: 0.6;
    right: -220px;
  }
  main.customer-stories-hub .customer-stories-search {
    flex-basis: auto;
    max-width: none;
  }
  main.customer-stories-hub .customer-stories-filter-controls {
    flex-direction: column;
  }
  main.customer-stories-hub .customer-stories-card-grid {
    margin-top: 40px;
  }
  main.customer-stories-hub .customer-story-hub-card#resource-card {
    grid-column: auto/span 4;
    min-height: 360px;
  }
  main.customer-stories-hub #customer-stories-archive #pagination .page-numbers {
    width: 52px;
  }
}

/********************* SHARED BLOG CARD HOVER *********************/
a#resource-card.blog {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: none !important;
}
a#resource-card.blog::after {
  background: url("../images/blog-card-corner-glow.svg") left bottom/229px 143px no-repeat;
  bottom: -1px;
  content: "";
  height: 143px;
  left: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 229px;
  z-index: 0;
}
a#resource-card.blog > * {
  position: relative;
  z-index: 1;
}
a#resource-card.blog h2,
a#resource-card.blog h3,
a#resource-card.blog h4,
a#resource-card.blog h5,
a#resource-card.blog h6,
a#resource-card.blog #text-button,
a#resource-card.blog #image-container img {
  transition: none !important;
}
a#resource-card.blog:hover {
  border-color: #434361 !important;
  box-shadow: none !important;
  color: inherit;
  top: auto !important;
  transform: none !important;
}
a#resource-card.blog:hover::after {
  opacity: 1;
}
a#resource-card.blog:hover h2,
a#resource-card.blog:hover h3,
a#resource-card.blog:hover h4,
a#resource-card.blog:hover h5,
a#resource-card.blog:hover h6 {
  color: #FFF !important;
}
a#resource-card.blog:hover #text-button {
  color: #E0FF00 !important;
}
a#resource-card.blog:hover #text-button::before {
  display: none !important;
  width: 0 !important;
}
a#resource-card.blog:hover #image-container img {
  transform: none !important;
}

/********************* LEARNING LIBRARIES *********************/
.learning-hub .learning-header-accent,
.single-learning .learning-header-accent {
  height: 408px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 297px;
  z-index: 0;
}

.learning-hub__intro {
  overflow: hidden;
  padding: 175px 0 100px;
}
.learning-hub__intro .grid {
  z-index: 1;
}

.learning-hub__heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.learning-hub__heading .eyebrow,
.learning-hub__heading h1,
.learning-hub__heading .lead {
  margin: 0;
  width: 100%;
}
.learning-hub__heading .eyebrow {
  color: #0002D1;
  font-family: "pangeamedium", sans-serif;
}
.learning-hub__heading h1 {
  color: #00002E;
  font-size: 62px;
  font-weight: 400;
  line-height: 105%;
}
.learning-hub__heading .lead {
  color: #434361;
  font-size: 20px;
  line-height: 140%;
}

.learning-hub__featured {
  margin-top: 60px;
}

.learning-card {
  background: #FFF;
  border: 1px solid #E3EBFD;
  border-radius: 12px;
  color: #00002E;
  display: flex;
  flex-direction: column;
  gap: 30px;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.learning-card::after {
  display: none;
}
.learning-card:hover {
  border-color: #E3EBFD;
  box-shadow: none;
  color: #00002E;
  transform: none;
}
.learning-card:hover h4,
.learning-card:hover h5 {
  color: #00002E;
}
.learning-card:hover .learning-card__corner-glow {
  opacity: 1;
}
.learning-card__corner-glow {
  bottom: -1px;
  height: 143px;
  left: -1px;
  margin: 0;
  max-width: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 258px;
  z-index: 0;
}
.learning-card__media {
  aspect-ratio: 373/233;
  background: #dfdfdf;
  border-radius: 4px;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.learning-card__media img {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.learning-card__content, .learning-card__copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.learning-card__content {
  flex: 1;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.learning-card__copy {
  gap: 14px;
}
.learning-card .eyebrow,
.learning-card h4,
.learning-card h5,
.learning-card p {
  margin: 0;
}
.learning-card h4 {
  color: #00002E;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
}
.learning-card h5 {
  color: #00002E;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
}
.learning-card p {
  color: #434361;
  font-size: 16px;
  line-height: 140%;
}
.learning-card__link {
  color: #0002D1;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 120%;
}
.learning-card--featured {
  align-items: stretch;
  flex-direction: row;
  gap: 30px;
  min-height: 383px;
  width: 100%;
}
.learning-card--featured .eyebrow {
  color: #0002D1;
  font-family: "pangeamedium", sans-serif;
}
.learning-card--featured .learning-card__corner-glow {
  height: 155px;
  left: auto;
  right: -1px;
  transform: scaleX(-1);
  width: 271px;
}
.learning-card--featured:hover {
  transform: none;
}
.learning-card--featured .learning-card__media {
  aspect-ratio: 550/343;
  width: 550px;
}
.learning-card--featured .learning-card__content {
  padding: 20px 20px 0 0;
}
.learning-card--featured.learning-card--no-media {
  min-height: 220px;
}
.learning-card--featured.learning-card--no-media .learning-card__content {
  padding: 20px;
}
.learning-card--dark {
  background: #222246;
  border-color: #434361;
  color: #FFF;
}
.learning-card--dark h4,
.learning-card--dark h5 {
  color: #FFF;
}
.learning-card--dark p {
  color: #CFD6EC;
}
.learning-card--dark .learning-card__link {
  color: #E0FF00;
}
.learning-card--dark .learning-card__corner-glow {
  width: 247px;
}
.learning-card--dark:hover {
  background: linear-gradient(#222246, #222246) padding-box, linear-gradient(45deg, #434361 30%, #434361 58%, #E0FF00 100%) border-box;
  border-color: transparent;
  box-shadow: none;
  color: #FFF;
  transform: none;
}
.learning-card--dark:hover h4,
.learning-card--dark:hover h5 {
  color: #FFF;
}
.learning-card--dark:hover .learning-card__corner-glow {
  opacity: 1;
}

.learning-hub__archive {
  padding: 0 0 100px;
}

.learning-hub__controls {
  margin-bottom: 60px;
}

.learning-toolbar,
.learning-hub__archive-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.learning-hub__archive-header h4 {
  color: #00002E;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

.learning-search {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  display: flex;
  gap: 8px;
  height: 50px;
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
  width: 522px;
}
.learning-search img {
  flex: 0 0 20px;
  height: 20px;
  margin: 0;
  width: 20px;
}
.learning-search input[type=search] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #434361;
  font-size: 18px;
  height: 48px;
  line-height: 140%;
  margin: 0;
  padding: 0;
  width: 100%;
}
.learning-search input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}

.learning-filter-selects {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 304px);
}
.learning-filter-selects select {
  appearance: none;
  background: #FFF url("../images/learning-select-caret.svg") calc(100% - 13px) center/12px 6px no-repeat;
  border: 1px solid #CFD6EC;
  border-radius: 4px;
  color: #00002E;
  font-size: 18px;
  height: 50px;
  line-height: 140%;
  margin: 0;
  padding: 0 38px 0 12px;
  width: 304px;
}

.learning-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
}

.learning-filter-pill {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 120%;
  padding: 0 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.learning-filter-pill::after {
  display: none;
}
.learning-filter-pill:hover, .learning-filter-pill.active {
  background: #E3EBFD;
  border-color: rgba(185, 191, 216, 0.5);
  color: #00002E;
}

.learning-card-grid .learning-card {
  grid-column: auto/span 4;
}
.learning-card-grid .learning-card:not(.learning-card--dark) {
  transform: translateY(10px);
}
.learning-card-grid .learning-card:not(.learning-card--dark):hover {
  transform: translateY(0);
}

.learning-hub__empty {
  color: #434361;
  text-align: center;
}

.learning-hub #pagination {
  border-top: 0;
  margin-top: 70px;
  padding-top: 30px;
  text-align: center;
}
.learning-hub #pagination::after {
  background: #CFD6EC;
}
.learning-hub #pagination .page-numbers {
  background: transparent;
  color: #00002E;
  display: inline-flex;
  justify-content: center;
  margin: 0 18px;
  min-width: 36px;
  padding: 0 0 12px;
}
.learning-hub #pagination .page-numbers.current {
  border-bottom: 0;
  font-weight: 700;
}
.learning-hub #pagination .page-numbers.current::after {
  background: #0002D1;
}
.learning-hub #pagination .page-numbers:hover {
  background: transparent;
  color: #0002D1;
}
.learning-hub #pagination .page-numbers:not(.prev, .next):hover::after {
  background: #0002D1;
}
.learning-hub #pagination .page-numbers.prev, .learning-hub #pagination .page-numbers.next {
  align-items: center;
  color: #00002E;
  height: 35px;
  top: 0;
}
.learning-hub #pagination .page-numbers.prev:hover, .learning-hub #pagination .page-numbers.next:hover {
  color: #0002D1;
}
.learning-hub #pagination .pagination-arrow {
  background-color: currentColor;
  display: block;
  flex: 0 0 17px;
  height: 23px;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 17px;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.learning-hub #pagination .pagination-arrow--left {
  mask-image: url("../images/pagination-arrow-left.svg");
  -webkit-mask-image: url("../images/pagination-arrow-left.svg");
}
.learning-hub #pagination .pagination-arrow--right {
  mask-image: url("../images/pagination-arrow-right.svg");
  -webkit-mask-image: url("../images/pagination-arrow-right.svg");
}

.single-learning-header {
  overflow: hidden;
  padding: 175px 0 100px;
}
.single-learning-header .grid {
  z-index: 1;
}
.single-learning-header h1 {
  color: #00002E;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
.single-learning-header .single-blog-breadcrumb {
  margin-bottom: 24px;
}
.single-learning-header .single-blog-breadcrumb a {
  color: #0002D1;
  gap: 4px;
}
.single-learning-header .single-blog-breadcrumb img {
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}
.single-learning-header__lead {
  color: #434361;
  font-size: 20px;
  line-height: 140%;
  margin: 30px 0 0;
}

header .top-bar {
  overflow: visible;
  position: relative;
}
header .top-bar .top-bar-left,
header .top-bar .top-bar-right {
  z-index: 2;
}

.site-search-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 20px;
  height: 20px;
  justify-content: center;
  margin: 0 2px 0 0;
  padding: 0;
  width: 20px;
}
.site-search-toggle img {
  display: block;
  height: 18px;
  width: 18px;
}
.site-search-toggle:hover, .site-search-toggle:focus, .site-search-toggle.is-active {
  background: transparent;
}
.site-search-toggle:focus-visible {
  outline: 2px solid #E0FF00;
  outline-offset: 5px;
}

.site-search-panel {
  background: #222246;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 46, 0.18);
  padding: 30px 40px;
  position: absolute;
  top: calc(100% - 1px);
  transform: translateY(-8px);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  visibility: hidden;
  z-index: 1;
  max-width: 1080px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%) !important;
}
.site-search-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .site-search-panel {
    max-width: 600px;
  }
}

.site-search-panel__form {
  align-items: center;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}

.site-search-panel__submit {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 20px;
  height: 20px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 20px;
}
.site-search-panel__submit img {
  display: block;
  height: 18px;
  width: 18px;
}
.site-search-panel__submit:hover, .site-search-panel__submit:focus {
  background: transparent;
}
.site-search-panel__submit:focus-visible {
  outline: 2px solid #E0FF00;
  outline-offset: 4px;
}

.site-search-panel__label {
  flex: 1 1 auto;
  margin: 0;
}

.site-search-panel input[type=search] {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #FFF;
  font-size: 16px;
  height: 22px;
  line-height: 140%;
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}
.site-search-panel input[type=search]::placeholder {
  color: #FFF;
  opacity: 1;
}
.site-search-panel input[type=search]:focus, .site-search-panel input[type=search]:focus-visible {
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}
.site-search-panel input[type=search]::-webkit-search-decoration, .site-search-panel input[type=search]::-webkit-search-cancel-button, .site-search-panel input[type=search]::-webkit-search-results-button, .site-search-panel input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.global-search-header {
  align-items: center;
  background: #00002E;
  display: flex;
  min-height: 488px;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
.global-search-header::before, .global-search-header::after {
  background: url("../images/blog-header-dots.svg") center/contain no-repeat, url("../images/blog-header-ellipse.svg") center/contain no-repeat;
  content: "";
  height: 486px;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 378px;
}
.global-search-header::before {
  left: 0;
  transform: scaleX(-1);
}
.global-search-header::after {
  right: 0;
}
.global-search-header .grid {
  position: relative;
  width: 100%;
  z-index: 1;
}

.global-search-header__content .eyebrow {
  color: #A6A7FF;
  display: block;
  margin-bottom: 24px;
}
.global-search-header__content h1 {
  color: #FFF;
  font-size: 62px;
  font-weight: 400;
  line-height: 105%;
  margin: 0 0 60px;
}

.global-search-form {
  margin: 0 auto;
  max-width: 630px;
  position: relative;
  width: 100%;
}
.global-search-form::before {
  background: url("../images/site-search-dark.svg") center/18px 18px no-repeat;
  content: "";
  height: 20px;
  left: 20px;
  pointer-events: none;
  position: absolute;
  top: 15px;
  width: 20px;
  z-index: 1;
}
.global-search-form form,
.global-search-form label,
.global-search-form #search-button-container {
  display: block;
  margin: 0;
  width: 100%;
}
.global-search-form input[type=search] {
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  box-shadow: none;
  color: #00002E;
  font-size: 18px;
  height: 50px;
  line-height: 140%;
  margin: 0;
  max-width: none;
  padding: 0 20px 0 52px;
  width: 100%;
}
.global-search-form input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}
.global-search-form input[type=search]:focus, .global-search-form input[type=search]:focus-visible {
  border-color: #0002D1;
  box-shadow: 0 0 0 2px rgba(0, 2, 209, 0.16);
  outline: 0;
}
.global-search-form input[type=search]::-webkit-search-decoration, .global-search-form input[type=search]::-webkit-search-cancel-button, .global-search-form input[type=search]::-webkit-search-results-button, .global-search-form input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.global-search-results {
  background: #F6F9FF;
  padding: 100px 0;
}

.global-search-results__grid {
  row-gap: 20px;
}

.global-search-card {
  background: #FFF;
  border: 1px solid #E3EBFD;
  border-radius: 12px;
  min-height: 215px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.global-search-card::after {
  background: url("../images/search-result-card-glow.svg") center/100% 100% no-repeat;
  bottom: -1px;
  content: "";
  height: 155px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -1px;
  transform: scaleX(-1);
  transition: opacity 0.25s ease;
  width: 271px;
}
.global-search-card:hover::after, .global-search-card:focus-within::after {
  opacity: 1;
}
.global-search-card .global-search-card__link {
  color: #00002E;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  min-height: 215px;
  padding: 30px;
  position: relative;
  text-decoration: none;
  width: 100%;
  z-index: 1;
}
.global-search-card .global-search-card__link::after {
  display: none;
}
.global-search-card .global-search-card__link:focus-visible {
  outline: 2px solid #0002D1;
  outline-offset: -3px;
}
.global-search-card .global-search-card__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.global-search-card .eyebrow {
  color: #0002D1;
  margin: 0;
}
.global-search-card h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}
.global-search-card .global-search-card__url {
  color: #434361;
  overflow-wrap: anywhere;
}
.global-search-card .text-button {
  align-self: flex-start;
  color: #0002D1;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 120%;
  margin-top: 20px;
}

.global-search-results__empty {
  color: #434361;
  min-height: 215px;
  padding: 70px 20px;
}

.global-search-pagination {
  margin-top: 60px;
}
.global-search-pagination ul.pagination {
  align-items: flex-start;
  border-bottom: 2px solid #CFD6EC;
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 0;
  position: relative;
  width: 100%;
}
.global-search-pagination ul.pagination::after {
  display: none;
}
.global-search-pagination ul.pagination li {
  border-radius: 0;
  list-style: none;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.global-search-pagination ul.pagination li::before {
  display: none;
}
.global-search-pagination ul.pagination li.pagination-control--previous {
  margin-right: 30px;
}
.global-search-pagination ul.pagination li.pagination-control--next {
  margin-left: 30px;
}
.global-search-pagination ul.pagination .page-numbers {
  align-items: center;
  background: transparent;
  color: #00002E;
  display: flex;
  font-size: 18px;
  height: 35px;
  justify-content: center;
  line-height: 150%;
  margin: 0;
  padding: 0 0 8px;
  position: relative;
  width: 88px;
}
.global-search-pagination ul.pagination .page-numbers::after {
  background: transparent;
  bottom: -2px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}
.global-search-pagination ul.pagination .page-numbers.current {
  font-weight: 700;
}
.global-search-pagination ul.pagination .page-numbers.current::after {
  background: #0002D1;
}
.global-search-pagination ul.pagination .page-numbers:hover {
  background: transparent;
  color: #0002D1;
}
.global-search-pagination ul.pagination .page-numbers:hover::after {
  background: #0002D1;
}
.global-search-pagination ul.pagination .page-numbers.prev, .global-search-pagination ul.pagination .page-numbers.next {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 23px;
  content: none !important;
  overflow: visible;
  padding: 0;
  transform: none !important;
  width: 17px;
}
.global-search-pagination ul.pagination .page-numbers.prev::after, .global-search-pagination ul.pagination .page-numbers.next::after {
  display: none;
}
.global-search-pagination ul.pagination .page-numbers.prev {
  background-image: url("../images/search-pagination-arrow-left.svg");
}
.global-search-pagination ul.pagination .page-numbers.next {
  background-image: url("../images/search-pagination-arrow-right.svg");
}
.global-search-pagination ul.pagination .page-numbers.is-disabled {
  cursor: default;
  opacity: 0.3;
}

@media screen and (max-width: 1024px) {
  .site-search-panel {
    display: none;
  }

  .global-search-header {
    min-height: 430px;
    padding: 145px 0 70px;
  }
  .global-search-header::before, .global-search-header::after {
    height: 360px;
    opacity: 0.65;
    width: 280px;
  }

  .global-search-header__content {
    grid-column: 1/-1;
  }
  .global-search-header__content h1 {
    font-size: 44px;
    margin-bottom: 45px;
  }

  .global-search-results {
    padding: 70px 0;
  }

  .global-search-card.half {
    grid-column: 1/-1;
  }

  .global-search-pagination ul.pagination li.pagination-control--previous {
    margin-right: 10px;
  }
  .global-search-pagination ul.pagination li.pagination-control--next {
    margin-left: 10px;
  }
  .global-search-pagination ul.pagination .page-numbers {
    width: 48px;
  }
  .global-search-pagination ul.pagination .page-numbers.prev,
.global-search-pagination ul.pagination .page-numbers.next {
    width: 16px;
  }
}
@media screen and (max-width: 768px) {
  .global-search-header {
    min-height: 390px;
  }
  .global-search-header::before, .global-search-header::after {
    height: 300px;
    width: 230px;
  }

  .global-search-header__content h1 {
    font-size: 36px;
  }

  .global-search-card {
    padding: 24px;
  }

  .global-search-pagination ul.pagination .page-numbers {
    font-size: 16px;
    width: 36px;
  }
  .global-search-pagination ul.pagination li.pagination-control--previous {
    margin-right: 4px;
  }
  .global-search-pagination ul.pagination li.pagination-control--next {
    margin-left: 4px;
  }
}
.single-learning-article {
  padding-bottom: 100px;
  padding-top: 100px;
}

.single-learning-related {
  padding: 100px 0;
}
.single-learning-related h2 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0 0 60px;
}

.getting-started-global-cta {
  padding: 100px 0;
}
.getting-started-global-cta .newsletter-sidebar__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.getting-started-global-cta h2,
.getting-started-global-cta p {
  margin: 0;
}
.getting-started-global-cta h2 {
  color: #00002E;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
}
.getting-started-global-cta p {
  color: #434361;
  font-size: 18px;
  line-height: 140%;
  max-width: 846px;
}
.getting-started-global-cta__form {
  margin-top: 36px;
  text-align: left;
  width: 100%;
}

.single-demo-video-header {
  padding-bottom: 100px;
}
.single-demo-video-header .single-blog-breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.single-demo-video-header .single-learning-header__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 842px;
}

.single-demo-video__video {
  aspect-ratio: 1062/597;
  background: #CFD6EC;
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}
.single-demo-video__video iframe,
.single-demo-video__video video,
.single-demo-video__video embed,
.single-demo-video__video object {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.single-demo-video-related h2 {
  margin-bottom: 60px;
}

.demo-video-global-cta,
.getting-started-global-cta {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .learning-hub__intro {
    padding-top: 160px;
  }

  .learning-hub__heading h1 {
    font-size: 52px;
  }

  .learning-card--featured .learning-card__media {
    width: 48%;
  }

  .learning-toolbar,
.learning-hub__archive-header {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .learning-search {
    width: 100%;
  }

  .learning-filter-selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .learning-filter-selects select {
    width: 100%;
  }

  .learning-card-grid .learning-card {
    grid-column: auto/span 4;
  }

  .single-learning-header {
    padding-top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .learning-hub .learning-header-accent,
.single-learning .learning-header-accent {
    opacity: 0.65;
    right: -120px;
  }

  .learning-hub__intro,
.single-learning-header {
    padding-top: 140px;
  }

  .learning-hub__heading {
    gap: 20px;
  }
  .learning-hub__heading h1 {
    font-size: 42px;
  }
  .learning-hub__heading .lead {
    font-size: 18px;
  }

  .learning-hub__featured {
    margin-top: 50px;
  }

  .learning-card--featured {
    flex-direction: column;
    min-height: 0;
  }
  .learning-card--featured .learning-card__media {
    aspect-ratio: 373/233;
    width: 100%;
  }
  .learning-card--featured .learning-card__content {
    min-height: 210px;
    padding: 0;
  }

  .learning-filter-selects {
    grid-template-columns: 1fr;
  }

  .learning-filter-pills {
    margin-top: 40px;
  }

  .learning-card-grid .learning-card {
    grid-column: auto/span 4;
  }

  .learning-hub__archive {
    padding-bottom: 80px;
  }

  .learning-hub #pagination .page-numbers {
    margin: 0 6px;
  }

  .single-learning-header h1 {
    font-size: 40px;
  }
  .single-learning-header__lead {
    font-size: 18px;
  }

  .single-learning-related {
    padding: 80px 0;
  }
  .single-learning-related h2 {
    font-size: 40px;
    margin-bottom: 45px;
  }

  .getting-started-global-cta {
    padding: 80px 0;
  }
  .getting-started-global-cta h2 {
    font-size: 40px;
  }
}
/********************* EVENTS AND WEBINARS *********************/
.events-library .event-card,
.single-event .event-card {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 30px;
  isolation: isolate;
  min-height: 432px;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.events-library .event-card::after,
.single-event .event-card::after {
  display: none;
}
.events-library .event-card__media,
.single-event .event-card__media {
  align-items: center;
  aspect-ratio: 373/233;
  border-radius: 4px;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.events-library .event-card__media img,
.single-event .event-card__media img {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.events-library .event-card__content, .events-library .event-card__copy,
.single-event .event-card__content,
.single-event .event-card__copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.events-library .event-card__content,
.single-event .event-card__content {
  flex: 1;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.events-library .event-card__copy,
.single-event .event-card__copy {
  gap: 14px;
}
.events-library .event-card .eyebrow,
.events-library .event-card h4,
.events-library .event-card h5,
.events-library .event-card p,
.single-event .event-card .eyebrow,
.single-event .event-card h4,
.single-event .event-card h5,
.single-event .event-card p {
  margin: 0;
}
.events-library .event-card .eyebrow,
.single-event .event-card .eyebrow {
  color: #A6A7FF;
  font-size: 14px;
  line-height: 1;
}
.events-library .event-card h4,
.events-library .event-card h5,
.single-event .event-card h4,
.single-event .event-card h5 {
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0;
}
.events-library .event-card h4,
.single-event .event-card h4 {
  font-size: 32px;
  line-height: 120%;
}
.events-library .event-card h5,
.single-event .event-card h5 {
  font-size: 22px;
  line-height: 127%;
}
.events-library .event-card p,
.single-event .event-card p {
  color: #CFD6EC;
  font-size: 16px;
  line-height: 140%;
}
.events-library .event-card__meta,
.single-event .event-card__meta {
  align-items: flex-start;
  color: #CFD6EC;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 7px;
  line-height: 140%;
}
.events-library .event-card__meta > span,
.single-event .event-card__meta > span {
  align-items: center;
  display: flex;
  gap: 6px;
}
.events-library .event-card__meta img,
.single-event .event-card__meta img {
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}
.events-library .event-card__link,
.single-event .event-card__link {
  color: #E0FF00;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  line-height: 120%;
}
.events-library .event-card__glow,
.single-event .event-card__glow {
  bottom: -1px;
  height: 143px;
  left: -1px;
  margin: 0;
  max-width: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  width: 229px;
  z-index: 1;
}
.events-library .event-card:hover .event-card__glow, .events-library .event-card:focus-visible .event-card__glow,
.single-event .event-card:hover .event-card__glow,
.single-event .event-card:focus-visible .event-card__glow {
  opacity: 1;
}
.events-library .event-card--featured,
.single-event .event-card--featured {
  align-items: stretch;
  flex-direction: row;
  min-height: 383px;
}
.events-library .event-card--featured .event-card__media,
.single-event .event-card--featured .event-card__media {
  aspect-ratio: 550/343;
  width: 550px;
}
.events-library .event-card--featured .event-card__content,
.single-event .event-card--featured .event-card__content {
  padding: 20px 20px 0 0;
}
.events-library .event-card--featured .event-card__glow,
.single-event .event-card--featured .event-card__glow {
  left: auto;
  right: -1px;
  transform: scaleX(-1);
}

.events-hub__intro {
  overflow: hidden;
  padding: 175px 0 100px;
}
.events-hub__intro .grid {
  z-index: 2;
}

.events-hub__accent {
  height: 388px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 352px;
  z-index: 1;
}
.events-hub__accent--left {
  left: 0;
  transform: scaleX(-1);
}
.events-hub__accent--right {
  right: 0;
}

.events-hub__heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.events-hub__heading .eyebrow,
.events-hub__heading h1 {
  margin: 0;
}
.events-hub__heading .eyebrow {
  color: #A6A7FF;
  font-size: 14px;
  line-height: 1;
}
.events-hub__heading h1 {
  color: #FFF;
  font-size: 62px;
  font-weight: 400;
  line-height: 105%;
  max-width: 900px;
}

.events-hub__featured {
  margin-top: 90px;
  position: relative;
  z-index: 2;
}

.events-archive,
.events-index__archive {
  overflow: hidden;
  position: relative;
}
.events-archive > .grid,
.events-index__archive > .grid {
  position: relative;
  z-index: 2;
}

.events-archive {
  padding: 100px 0;
}

.events-archive__accent {
  height: 788px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 513px;
  z-index: 0;
}

.events-archive__controls {
  margin-bottom: 10px;
}

.events-archive__toolbar,
.events-index__toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.events-archive__toolbar h4 {
  color: #00002E;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
}

.event-card-grid {
  position: relative;
  z-index: 2;
}
.event-card-grid .event-card {
  grid-column: auto/span 4;
}

.events-archive__empty {
  color: #434361;
  text-align: center;
}

.events-index__archive {
  padding: 175px 0 100px;
}

.events-index__header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.events-index__header .single-blog-breadcrumb {
  margin-bottom: 24px;
}
.events-index__header .single-blog-breadcrumb a {
  color: #0002D1;
  gap: 4px;
}
.events-index__header .single-blog-breadcrumb img {
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}
.events-index__header h1 {
  color: #00002E;
  font-size: 62px;
  font-weight: 400;
  line-height: 105%;
  margin: 0;
}

.events-index__toolbar {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.events-index__toolbar--search-only {
  justify-content: flex-start;
}

.single-event-header {
  overflow: hidden;
  padding: 175px 0 100px;
}
.single-event-header .grid {
  align-items: center;
  position: relative;
  z-index: 2;
}
.single-event-header__accent {
  height: 458px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 725px;
  z-index: 0;
}
.single-event-header__copy {
  padding-right: 24px;
  position: relative;
  z-index: 2;
}
.single-event-header .single-blog-breadcrumb {
  margin-bottom: 32px;
}
.single-event-header .single-blog-breadcrumb a {
  color: #A6A7FF;
  gap: 4px;
}
.single-event-header .single-blog-breadcrumb img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(28%) saturate(1868%) hue-rotate(198deg) brightness(103%) contrast(103%);
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}
.single-event-header h1 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0;
}
.single-event-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.single-event-header__meta > span {
  align-items: center;
  background: #FFF;
  border: 1px solid #CFD6EC;
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 14px;
  gap: 6px;
  line-height: 140%;
  min-height: 30px;
  padding: 4px 10px;
}
.single-event-header__meta img {
  flex: 0 0 16px;
  height: 16px;
  margin: 0;
  width: 16px;
}
.single-event-header__lead {
  color: #CFD6EC;
  font-size: 20px;
  line-height: 140%;
  margin: 30px 0 0;
  max-width: 720px;
}
.single-event-header__media {
  align-items: center;
  aspect-ratio: 521/325;
  background: #cfd6ec;
  border-radius: 16px;
  color: #00002E;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.single-event-header__media img {
  display: block;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.single-event-header__media span {
  font-size: 20px;
}

.single-event-content {
  padding: 100px 0;
}
.single-event-content .grid {
  align-items: start;
}
.single-event-content__body {
  padding-right: 40px;
}
.single-event-content .single-blog-entry > :first-child {
  margin-top: 0;
}
.single-event-content__video {
  aspect-ratio: 16/9;
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}
.single-event-content__video iframe,
.single-event-content__video video,
.single-event-content__video embed,
.single-event-content__video object {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.event-single-form {
  background: #f6f9ff;
  border: 1px solid #CFD6EC;
  border-radius: 12px;
  padding: 30px;
  position: sticky;
  top: 160px;
}
.event-single-form h4 {
  color: #00002E;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 40px;
}
.event-single-form .hbspt-form,
.event-single-form .hubspot-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.single-event-related {
  padding: 100px 0;
}
.single-event-related h2 {
  color: #FFF;
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  margin: 0 0 60px;
}

.events-global-cta {
  position: relative;
}

section #form-container.hubspot-form-container,
section #media-container #form-container.hubspot-form-container {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #00002E;
  padding: 0;
}
section #form-container.hubspot-form-container .form-title,
section #media-container #form-container.hubspot-form-container .form-title {
  color: #00002E;
  margin: 0 0 30px;
}

.hbspt-form,
.hubspot-form,
.site-hubspot-form {
  background: #F6F9FF;
  border: 1px solid #CFD6EC;
  border-radius: 12px;
  box-sizing: border-box;
  color: #00002E;
  padding: 30px;
  width: 100%;
}

.hbspt-form iframe.hs-form-iframe,
.hubspot-form iframe.hs-form-iframe,
.site-hubspot-form iframe.hs-form-iframe,
.event-single-form iframe.hs-form-iframe {
  border: 0;
  min-height: 620px;
  width: 100% !important;
}
.hbspt-form .hs-form,
.hubspot-form .hs-form,
.site-hubspot-form .hs-form,
.event-single-form .hs-form {
  color: #00002E !important;
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
  margin: 0;
  width: 100% !important;
}
.hbspt-form .hs-form h1,
.hubspot-form .hs-form h1,
.site-hubspot-form .hs-form h1,
.event-single-form .hs-form h1 {
  color: #00002E !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 120% !important;
  margin: 0 0 30px !important;
}
.hbspt-form .hs-form h1 > strong,
.hbspt-form .hs-form h1 > span,
.hbspt-form .hs-form h1 > strong > span,
.hbspt-form .hs-form h1 > span > strong,
.hubspot-form .hs-form h1 > strong,
.hubspot-form .hs-form h1 > span,
.hubspot-form .hs-form h1 > strong > span,
.hubspot-form .hs-form h1 > span > strong,
.site-hubspot-form .hs-form h1 > strong,
.site-hubspot-form .hs-form h1 > span,
.site-hubspot-form .hs-form h1 > strong > span,
.site-hubspot-form .hs-form h1 > span > strong,
.event-single-form .hs-form h1 > strong,
.event-single-form .hs-form h1 > span,
.event-single-form .hs-form h1 > strong > span,
.event-single-form .hs-form h1 > span > strong {
  color: #00002E !important;
  font: inherit !important;
}
.hbspt-form .hs-form h2,
.hbspt-form .hs-form h3,
.hbspt-form .hs-form h4,
.hubspot-form .hs-form h2,
.hubspot-form .hs-form h3,
.hubspot-form .hs-form h4,
.site-hubspot-form .hs-form h2,
.site-hubspot-form .hs-form h3,
.site-hubspot-form .hs-form h4,
.event-single-form .hs-form h2,
.event-single-form .hs-form h3,
.event-single-form .hs-form h4 {
  color: #00002E !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 120% !important;
  margin: 0 0 20px !important;
}
.hbspt-form .hs-form h2,
.hubspot-form .hs-form h2,
.site-hubspot-form .hs-form h2,
.event-single-form .hs-form h2 {
  font-size: 28px !important;
}
.hbspt-form .hs-form h3,
.hubspot-form .hs-form h3,
.site-hubspot-form .hs-form h3,
.event-single-form .hs-form h3 {
  font-size: 24px !important;
}
.hbspt-form .hs-form h4,
.hubspot-form .hs-form h4,
.site-hubspot-form .hs-form h4,
.event-single-form .hs-form h4 {
  font-size: 20px !important;
}
.hbspt-form .hs-form p,
.hbspt-form .hs-form li,
.hubspot-form .hs-form p,
.hubspot-form .hs-form li,
.site-hubspot-form .hs-form p,
.site-hubspot-form .hs-form li,
.event-single-form .hs-form p,
.event-single-form .hs-form li {
  color: #434361 !important;
  font-family: pangearegular, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
}
.hbspt-form .hs-form fieldset,
.hubspot-form .hs-form fieldset,
.site-hubspot-form .hs-form fieldset,
.event-single-form .hs-form fieldset {
  border: 0;
  display: flex;
  gap: 20px;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100%;
}
.hbspt-form .hs-form .form-columns-1 .hs-form-field,
.hubspot-form .hs-form .form-columns-1 .hs-form-field,
.site-hubspot-form .hs-form .form-columns-1 .hs-form-field,
.event-single-form .hs-form .form-columns-1 .hs-form-field {
  width: 100% !important;
}
.hbspt-form .hs-form .form-columns-2 .hs-form-field,
.hubspot-form .hs-form .form-columns-2 .hs-form-field,
.site-hubspot-form .hs-form .form-columns-2 .hs-form-field,
.event-single-form .hs-form .form-columns-2 .hs-form-field {
  width: calc(50% - 10px) !important;
}
.hbspt-form .hs-form .hs-form-field,
.hubspot-form .hs-form .hs-form-field,
.site-hubspot-form .hs-form .hs-form-field,
.event-single-form .hs-form .hs-form-field {
  margin: 0 0 10px;
}
.hbspt-form .hs-form label,
.hubspot-form .hs-form label,
.site-hubspot-form .hs-form label,
.event-single-form .hs-form label {
  color: #434361 !important;
  display: block;
  font-family: pangearegular, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 140% !important;
  margin: 0 0 6px !important;
}
.hbspt-form .hs-form .hs-form-required,
.hubspot-form .hs-form .hs-form-required,
.site-hubspot-form .hs-form .hs-form-required,
.event-single-form .hs-form .hs-form-required {
  color: #0002D1 !important;
  margin-left: 2px;
}
.hbspt-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hbspt-form .hs-form select,
.hbspt-form .hs-form textarea,
.hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hubspot-form .hs-form select,
.hubspot-form .hs-form textarea,
.site-hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.site-hubspot-form .hs-form select,
.site-hubspot-form .hs-form textarea,
.event-single-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.event-single-form .hs-form select,
.event-single-form .hs-form textarea {
  background: #FFF !important;
  border: 1px solid #CFD6EC !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #00002E !important;
  font-family: pangearegular, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 140% !important;
  margin: 0 !important;
  padding: 9px 12px !important;
  width: 100% !important;
}
.hbspt-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit])::placeholder,
.hbspt-form .hs-form select::placeholder,
.hbspt-form .hs-form textarea::placeholder,
.hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit])::placeholder,
.hubspot-form .hs-form select::placeholder,
.hubspot-form .hs-form textarea::placeholder,
.site-hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit])::placeholder,
.site-hubspot-form .hs-form select::placeholder,
.site-hubspot-form .hs-form textarea::placeholder,
.event-single-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit])::placeholder,
.event-single-form .hs-form select::placeholder,
.event-single-form .hs-form textarea::placeholder {
  color: #969CB9 !important;
  opacity: 1 !important;
}
.hbspt-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.hbspt-form .hs-form select:focus,
.hbspt-form .hs-form textarea:focus,
.hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.hubspot-form .hs-form select:focus,
.hubspot-form .hs-form textarea:focus,
.site-hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.site-hubspot-form .hs-form select:focus,
.site-hubspot-form .hs-form textarea:focus,
.event-single-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.event-single-form .hs-form select:focus,
.event-single-form .hs-form textarea:focus {
  border-color: #0002D1 !important;
  box-shadow: 0 0 0 1px #0002D1 !important;
  outline: 0 !important;
}
.hbspt-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hbspt-form .hs-form select,
.hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hubspot-form .hs-form select,
.site-hubspot-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.site-hubspot-form .hs-form select,
.event-single-form .hs-form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.event-single-form .hs-form select {
  height: 42px;
}
.hbspt-form .hs-form select,
.hubspot-form .hs-form select,
.site-hubspot-form .hs-form select,
.event-single-form .hs-form select {
  appearance: none;
  background: #FFF url("../images/learning-select-caret.svg") calc(100% - 13px) center/12px 6px no-repeat !important;
  padding-right: 38px !important;
}
.hbspt-form .hs-form textarea,
.hubspot-form .hs-form textarea,
.site-hubspot-form .hs-form textarea,
.event-single-form .hs-form textarea {
  min-height: 106px;
  resize: vertical;
}
.hbspt-form .hs-form .hs-fieldtype-intl-phone,
.hubspot-form .hs-form .hs-fieldtype-intl-phone,
.site-hubspot-form .hs-form .hs-fieldtype-intl-phone,
.event-single-form .hs-form .hs-fieldtype-intl-phone {
  display: flex !important;
  gap: 10px;
  width: 100% !important;
}
.hbspt-form .hs-form .hs-fieldtype-intl-phone > select,
.hubspot-form .hs-form .hs-fieldtype-intl-phone > select,
.site-hubspot-form .hs-form .hs-fieldtype-intl-phone > select,
.event-single-form .hs-form .hs-fieldtype-intl-phone > select {
  flex: 0 0 42%;
  width: 42% !important;
}
.hbspt-form .hs-form .hs-fieldtype-intl-phone > input[type=tel],
.hubspot-form .hs-form .hs-fieldtype-intl-phone > input[type=tel],
.site-hubspot-form .hs-form .hs-fieldtype-intl-phone > input[type=tel],
.event-single-form .hs-form .hs-fieldtype-intl-phone > input[type=tel] {
  flex: 1 1 auto;
  min-width: 0;
}
.hbspt-form .hs-form .inputs-list,
.hubspot-form .hs-form .inputs-list,
.site-hubspot-form .hs-form .inputs-list,
.event-single-form .hs-form .inputs-list {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.hbspt-form .hs-form .inputs-list li,
.hubspot-form .hs-form .inputs-list li,
.site-hubspot-form .hs-form .inputs-list li,
.event-single-form .hs-form .inputs-list li {
  list-style: none !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
}
.hbspt-form .hs-form .inputs-list li::before, .hbspt-form .hs-form .inputs-list li::after,
.hubspot-form .hs-form .inputs-list li::before,
.hubspot-form .hs-form .inputs-list li::after,
.site-hubspot-form .hs-form .inputs-list li::before,
.site-hubspot-form .hs-form .inputs-list li::after,
.event-single-form .hs-form .inputs-list li::before,
.event-single-form .hs-form .inputs-list li::after {
  content: none !important;
  display: none !important;
}
.hbspt-form .hs-form .inputs-list label,
.hubspot-form .hs-form .inputs-list label,
.site-hubspot-form .hs-form .inputs-list label,
.event-single-form .hs-form .inputs-list label {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: 8px;
  margin: 0 !important;
}
.hbspt-form .hs-form input[type=checkbox],
.hbspt-form .hs-form input[type=radio],
.hubspot-form .hs-form input[type=checkbox],
.hubspot-form .hs-form input[type=radio],
.site-hubspot-form .hs-form input[type=checkbox],
.site-hubspot-form .hs-form input[type=radio],
.event-single-form .hs-form input[type=checkbox],
.event-single-form .hs-form input[type=radio] {
  accent-color: #0002D1;
  flex: 0 0 auto;
  margin: 2px 0 0;
}
.hbspt-form .hs-form .hs-error-msgs,
.hubspot-form .hs-form .hs-error-msgs,
.site-hubspot-form .hs-form .hs-error-msgs,
.event-single-form .hs-form .hs-error-msgs {
  list-style: none;
  margin: 6px 0 0;
}
.hbspt-form .hs-form .hs-error-msgs label,
.hubspot-form .hs-form .hs-error-msgs label,
.site-hubspot-form .hs-form .hs-error-msgs label,
.event-single-form .hs-form .hs-error-msgs label {
  color: #b42318;
}
.hbspt-form .hs-form .hs-richtext,
.hbspt-form .hs-form .legal-consent-container,
.hubspot-form .hs-form .hs-richtext,
.hubspot-form .hs-form .legal-consent-container,
.site-hubspot-form .hs-form .hs-richtext,
.site-hubspot-form .hs-form .legal-consent-container,
.event-single-form .hs-form .hs-richtext,
.event-single-form .hs-form .legal-consent-container {
  color: #434361 !important;
  font-family: pangearegular, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 150% !important;
}
.hbspt-form .hs-form .hs-richtext p,
.hbspt-form .hs-form .legal-consent-container p,
.hubspot-form .hs-form .hs-richtext p,
.hubspot-form .hs-form .legal-consent-container p,
.site-hubspot-form .hs-form .hs-richtext p,
.site-hubspot-form .hs-form .legal-consent-container p,
.event-single-form .hs-form .hs-richtext p,
.event-single-form .hs-form .legal-consent-container p {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  margin: 0 0 15px !important;
}
.hbspt-form .hs-form .hs-richtext p:last-child,
.hbspt-form .hs-form .legal-consent-container p:last-child,
.hubspot-form .hs-form .hs-richtext p:last-child,
.hubspot-form .hs-form .legal-consent-container p:last-child,
.site-hubspot-form .hs-form .hs-richtext p:last-child,
.site-hubspot-form .hs-form .legal-consent-container p:last-child,
.event-single-form .hs-form .hs-richtext p:last-child,
.event-single-form .hs-form .legal-consent-container p:last-child {
  margin-bottom: 0 !important;
}
.hbspt-form .hs-form .hs-richtext a,
.hbspt-form .hs-form .legal-consent-container a,
.hubspot-form .hs-form .hs-richtext a,
.hubspot-form .hs-form .legal-consent-container a,
.site-hubspot-form .hs-form .hs-richtext a,
.site-hubspot-form .hs-form .legal-consent-container a,
.event-single-form .hs-form .hs-richtext a,
.event-single-form .hs-form .legal-consent-container a {
  color: #0002D1 !important;
}
.hbspt-form .hs-form .hs_submit,
.hubspot-form .hs-form .hs_submit,
.site-hubspot-form .hs-form .hs_submit,
.event-single-form .hs-form .hs_submit {
  margin-top: 40px;
}
.hbspt-form .hs-form .hs_submit .actions,
.hubspot-form .hs-form .hs_submit .actions,
.site-hubspot-form .hs-form .hs_submit .actions,
.event-single-form .hs-form .hs_submit .actions {
  width: 100%;
}
.hbspt-form .hs-form input[type=submit],
.hbspt-form .hs-form button[type=submit],
.hubspot-form .hs-form input[type=submit],
.hubspot-form .hs-form button[type=submit],
.site-hubspot-form .hs-form input[type=submit],
.site-hubspot-form .hs-form button[type=submit],
.event-single-form .hs-form input[type=submit],
.event-single-form .hs-form button[type=submit] {
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%) !important;
  background-position: 100% 50% !important;
  background-size: 202% 100% !important;
  border: 0 !important;
  border-radius: 100px !important;
  box-sizing: border-box !important;
  color: #00002E !important;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 50px !important;
  letter-spacing: 0.32px !important;
  line-height: 120% !important;
  margin: 0 !important;
  padding: 0 20px !important;
  text-align: center;
  transition: background-position 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  width: 100% !important;
}
.hbspt-form .hs-form input[type=submit]:hover, .hbspt-form .hs-form input[type=submit]:focus-visible,
.hbspt-form .hs-form button[type=submit]:hover,
.hbspt-form .hs-form button[type=submit]:focus-visible,
.hubspot-form .hs-form input[type=submit]:hover,
.hubspot-form .hs-form input[type=submit]:focus-visible,
.hubspot-form .hs-form button[type=submit]:hover,
.hubspot-form .hs-form button[type=submit]:focus-visible,
.site-hubspot-form .hs-form input[type=submit]:hover,
.site-hubspot-form .hs-form input[type=submit]:focus-visible,
.site-hubspot-form .hs-form button[type=submit]:hover,
.site-hubspot-form .hs-form button[type=submit]:focus-visible,
.event-single-form .hs-form input[type=submit]:hover,
.event-single-form .hs-form input[type=submit]:focus-visible,
.event-single-form .hs-form button[type=submit]:hover,
.event-single-form .hs-form button[type=submit]:focus-visible {
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%) !important;
  background-position: 0% 50% !important;
  background-size: 202% 100% !important;
  color: #00002E !important;
}

.cta-form-embed > .hbspt-form,
.cta-form-embed > .hubspot-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.sidebar-parts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sidebar-parts.second {
  margin-top: 40px;
}
.sidebar-parts.sticky {
  position: sticky;
  top: 140px;
}

#subscribe-card.newsletter-sidebar {
  background: #0002D1 url("../images/newsletter-sidebar-background.png") center/cover no-repeat;
  border-radius: 12px;
  box-sizing: border-box;
  color: #FFF;
  min-height: 352px;
  overflow: hidden;
  padding: 30px;
  width: 100%;
}
#subscribe-card.newsletter-sidebar__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 292px;
  width: 100%;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__heading h5 {
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 120%;
  margin: 0;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__heading p {
  color: #CFD6EC;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 140%;
  margin: 0;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form {
  margin-top: 26px;
  width: 100%;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hbspt-form,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hubspot-form,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .site-hubspot-form {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #FFF;
  padding: 0;
  width: 100%;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form {
  background: transparent !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px !important;
  margin: 0 !important;
  width: 100% !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form > h1,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form > h2,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form > h3,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form > h4,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form > .hs-richtext:first-child,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form > fieldset.form-columns-0:first-child {
  display: none !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form fieldset {
  border: 0 !important;
  display: block !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-form-field,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs_email {
  margin: 0 !important;
  width: 100% !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-form-field > label {
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=email],
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=text] {
  background: #FFF !important;
  border: 1px solid #CFD6EC !important;
  border-radius: 100px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: #00002E !important;
  font-family: pangearegular, Arial, sans-serif !important;
  font-size: 16px !important;
  height: 50px !important;
  line-height: 140% !important;
  margin: 0 !important;
  padding: 12px 20px !important;
  width: 100% !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=email]::placeholder,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=text]::placeholder {
  color: #00002E !important;
  opacity: 1 !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-error-msgs {
  margin: 6px 0 0 !important;
  padding: 0 20px !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-error-msgs li {
  margin: 0 !important;
  padding: 0 !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-error-msgs li::before, #subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-error-msgs li::after {
  content: none !important;
  display: none !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs-error-msgs label {
  color: #FFF !important;
  font-size: 12px !important;
  margin: 0 !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs_submit {
  margin: 0 !important;
  width: 100%;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .hs_submit .actions {
  width: 100%;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=submit],
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form button[type=submit] {
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%) !important;
  background-position: 100% 50% !important;
  background-size: 202% 100% !important;
  border: 0 !important;
  border-radius: 100px !important;
  box-sizing: border-box !important;
  color: #00002E !important;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  height: 50px !important;
  letter-spacing: 0.32px !important;
  line-height: 120% !important;
  margin: 0 !important;
  padding: 0 20px !important;
  text-align: center;
  transition: background-position 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  width: 100% !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=submit]:hover, #subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form input[type=submit]:focus-visible,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form button[type=submit]:hover,
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form button[type=submit]:focus-visible {
  background: linear-gradient(90deg, #B7CF00 0%, #B7CF00 49%, #E0FF00 50%, #E0FF00 100%) !important;
  background-position: 0% 50% !important;
  background-size: 202% 100% !important;
  color: #00002E !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .hs-form .legal-consent-container {
  display: none !important;
}
#subscribe-card.newsletter-sidebar .newsletter-sidebar__form .submitted-message {
  color: #FFF;
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  #subscribe-card.newsletter-sidebar {
    min-height: 0;
    padding: 24px;
  }
  #subscribe-card.newsletter-sidebar .newsletter-sidebar__inner {
    min-height: 0;
  }
}

@media screen and (max-width: 1024px) {
  .events-hub__heading h1,
.events-index__header h1 {
    font-size: 52px;
  }

  .events-library .event-card--featured .event-card__media,
.single-event .event-card--featured .event-card__media {
    width: 48%;
  }

  .events-archive__toolbar,
.events-index__toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .event-card-grid .event-card {
    grid-column: auto/span 4;
  }

  .single-event-header__copy, .single-event-header__media {
    grid-column: auto/span 8;
  }
  .single-event-header__copy {
    padding-right: 0;
  }
  .single-event-header__media {
    margin-top: 50px;
  }

  .single-event-content__body,
.single-event-content .event-single-form {
    grid-column: auto/span 8;
  }
  .single-event-content__body {
    padding-right: 0;
  }
  .single-event-content .event-single-form {
    margin-top: 60px;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .events-hub__intro,
.events-index__archive,
.single-event-header {
    padding-top: 140px;
  }

  .events-hub__accent {
    opacity: 0.6;
  }
  .events-hub__accent--left {
    left: -180px;
  }
  .events-hub__accent--right {
    right: -180px;
  }

  .events-hub__heading h1,
.events-index__header h1 {
    font-size: 42px;
  }

  .events-hub__featured {
    margin-top: 60px;
  }

  .events-library .event-card--featured,
.single-event .event-card--featured {
    flex-direction: column;
    min-height: 0;
  }
  .events-library .event-card--featured .event-card__media,
.single-event .event-card--featured .event-card__media {
    aspect-ratio: 373/233;
    width: 100%;
  }
  .events-library .event-card--featured .event-card__content,
.single-event .event-card--featured .event-card__content {
    min-height: 230px;
    padding: 0;
  }

  .event-card-grid .event-card {
    grid-column: auto/span 4;
  }

  .events-archive,
.events-index__archive,
.single-event-content,
.single-event-related {
    padding-bottom: 80px;
  }

  .events-archive {
    padding-top: 80px;
  }

  .events-index__header {
    margin-bottom: 60px;
  }

  .single-event-header h1 {
    font-size: 40px;
  }
  .single-event-header__lead {
    font-size: 18px;
  }
  .single-event-header__accent {
    opacity: 0.7;
    right: -300px;
  }

  .single-event-content {
    padding-top: 80px;
  }

  .event-single-form {
    padding: 24px;
  }
  .event-single-form h4 {
    font-size: 28px;
  }

  .single-event-related {
    padding-top: 80px;
  }
  .single-event-related h2 {
    font-size: 40px;
    margin-bottom: 45px;
  }

  .hbspt-form,
.hubspot-form,
.site-hubspot-form {
    padding: 24px;
  }

  .hbspt-form .hs-form fieldset,
.hubspot-form .hs-form fieldset,
.site-hubspot-form .hs-form fieldset,
.event-single-form .hs-form fieldset {
    display: block;
  }
  .hbspt-form .hs-form .form-columns-2 .hs-form-field,
.hubspot-form .hs-form .form-columns-2 .hs-form-field,
.site-hubspot-form .hs-form .form-columns-2 .hs-form-field,
.event-single-form .hs-form .form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}
/********************* NEWSROOM *********************/
.newsroom-hero {
  overflow: hidden;
  padding: 185px 0 100px;
  position: relative;
}
.newsroom-hero__accent {
  height: 388px;
  max-width: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 352px;
  z-index: 0;
}
.newsroom-hero__accent--left {
  left: 0;
  transform: scaleX(-1);
}
.newsroom-hero__accent--right {
  right: 0;
}
.newsroom-hero__heading {
  position: relative;
  z-index: 1;
}
.newsroom-hero__heading .eyebrow {
  color: #A6A7FF;
  margin: 0 0 20px;
}
.newsroom-hero__heading h1 {
  color: #FFF;
  font-size: 64px;
  line-height: 110%;
  margin: 0 auto;
  max-width: 850px;
}
.newsroom-hero__heading .lead {
  color: #CFD6EC;
  font-size: 18px;
  line-height: 150%;
  margin: 30px auto 0;
  max-width: 735px;
}

.newsroom-search,
.directory-module__search {
  align-items: center;
  background: #FFF;
  border: 1px solid #e3ebfd;
  border-radius: 30px;
  display: flex;
  height: 50px;
  max-width: 630px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
.newsroom-search > img,
.directory-module__search > img {
  flex: 0 0 16px;
  height: 16px;
  margin-right: 12px;
  width: 16px;
}
.newsroom-search input,
.directory-module__search input {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #222246;
  font-size: 16px;
  height: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  width: 100%;
}
.newsroom-search input::placeholder,
.directory-module__search input::placeholder {
  color: #434361;
  opacity: 1;
}

.newsroom-search--hero {
  margin: 50px auto 0;
}

.newsroom-featured-in {
  margin: 40px auto 0;
  position: relative;
  width: 100%;
  z-index: 1;
}
.newsroom-featured-in h5 {
  color: #FFF;
  font-size: 18px;
  line-height: 130%;
  margin: 0 0 40px;
  text-align: center;
}
.newsroom-featured-in__grid {
  align-items: center;
}
.newsroom-featured-in__logo {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px;
}
.newsroom-featured-in__logo img {
  height: auto;
  object-fit: contain;
  width: auto;
}

.newsroom-featured {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.newsroom-featured__slider {
  margin: 0 -10px;
  overflow: hidden;
}
.newsroom-featured__slider .slick-list {
  overflow: visible;
}
.newsroom-featured__slider .slick-track {
  align-items: stretch;
  display: flex;
}
.newsroom-featured__slider .slick-slide {
  float: none;
  height: 267px;
}
.newsroom-featured__slider .slick-slide > div {
  height: 100%;
}
.newsroom-featured__controls {
  margin-top: 30px;
  min-height: 10px;
}

.newsroom-card {
  grid-column: auto/span 4;
  min-width: 0;
  position: relative;
}
.newsroom-card > a {
  background: #222246;
  border: 1px solid #434361;
  border-radius: 12px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transform: none !important;
  transition: border-color 0.25s ease;
}
.newsroom-card > a:hover, .newsroom-card > a:focus-visible {
  background: #222246;
  border-color: #434361;
  color: #FFF;
  transform: none !important;
}
.newsroom-card > a:hover .newsroom-card__glow, .newsroom-card > a:focus-visible .newsroom-card__glow {
  opacity: 1;
}
.newsroom-card__media {
  aspect-ratio: 373/233;
  border-radius: 4px;
  flex: 0 0 auto;
  overflow: hidden;
}
.newsroom-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.newsroom-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.newsroom-card__content .eyebrow {
  color: #A6A7FF;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 14px;
}
.newsroom-card__content h3 {
  color: #FFF;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
}
.newsroom-card__meta {
  color: #CFD6EC;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 10px;
  line-height: 1.4;
  margin-top: 14px;
}
.newsroom-card__meta-row {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}
.newsroom-card__meta-row img {
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}
.newsroom-card__meta-row span,
.newsroom-card__meta-row time {
  min-width: 0;
}
.newsroom-card__link {
  color: #E0FF00;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 1.2;
  margin-top: auto;
  padding-top: 20px;
}
.newsroom-card__glow {
  bottom: -1px;
  height: 145px;
  left: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.25s ease;
  width: 190px;
  z-index: 1;
}
.newsroom-card__glow img {
  height: 100%;
  width: 100%;
}
.newsroom-card--slider {
  height: 267px;
  margin: 0 10px;
  padding-top: 10px;
  width: 413px;
}
.newsroom-card--slider > a {
  padding: 30px;
}
.newsroom-card--slider .newsroom-card__content {
  padding: 0;
}
.newsroom-card--slider .newsroom-card__content h3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 22px;
  overflow: hidden;
}
.newsroom-card--archive, .newsroom-card--related {
  padding-top: 10px;
}
.newsroom-card--archive > a, .newsroom-card--related > a {
  padding: 20px;
}
.newsroom-card--archive .newsroom-card__content, .newsroom-card--related .newsroom-card__content {
  padding: 20px 0 0;
}
.newsroom-card--archive.has-media, .newsroom-card--related.has-media {
  min-height: 442px;
}
.newsroom-card:not(.has-media):not(.newsroom-card--slider) .newsroom-card__content {
  min-height: 250px;
}

.newsroom-featured__controls,
.newsroom-featured__controls .slick-dots {
  align-items: center;
  display: flex;
  justify-content: center;
}

.newsroom-featured__controls .slick-dots {
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.newsroom-featured__controls .slick-dots li {
  height: 10px;
  margin: 0;
  width: 10px;
}
.newsroom-featured__controls .slick-dots li::before {
  display: none;
}
.newsroom-featured__controls .slick-dots li button {
  background: #434361;
  border: 0;
  border-radius: 5px;
  font-size: 0;
  height: 10px;
  padding: 0;
  transition: background-color 0.2s ease, width 0.2s ease;
  width: 10px;
}
.newsroom-featured__controls .slick-dots li.slick-active {
  width: 42px;
}
.newsroom-featured__controls .slick-dots li.slick-active button {
  background: #E0FF00;
  width: 42px;
}

.newsroom-archive {
  overflow: hidden;
  padding: 120px 0;
  position: relative;
}
.newsroom-archive__accent {
  height: auto;
  pointer-events: none;
  position: absolute;
  right: -20px;
  top: -10px;
  width: 445px;
}
.newsroom-archive__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.newsroom-archive__header h2 {
  color: #00002E;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.newsroom-archive__header .newsroom-search {
  max-width: 522px;
}
.newsroom-archive__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.newsroom-archive__filters a {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 16px;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 1.2;
  padding: 0 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.newsroom-archive__filters a:hover, .newsroom-archive__filters a:focus-visible, .newsroom-archive__filters a.is-active {
  background: #E3EBFD;
  color: #00002E;
}
.newsroom-archive__empty {
  color: #434361;
  margin: 0;
}

.newsroom-card-grid {
  margin-top: 50px;
  row-gap: 20px;
}

.newsroom-pagination {
  align-items: center;
  border-bottom: 2px solid #CFD6EC;
  display: flex;
  height: 35px;
  justify-content: center;
  margin: 70px auto 0;
  max-width: 1280px;
  width: calc(100% - 160px);
}
.newsroom-pagination .page-numbers {
  align-items: center;
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  color: #434361;
  display: inline-flex;
  font-size: 18px;
  height: 37px;
  justify-content: center;
  line-height: 1.5;
  margin-bottom: -2px;
  width: 88px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.newsroom-pagination .page-numbers.current, .newsroom-pagination .page-numbers:hover, .newsroom-pagination .page-numbers:focus-visible {
  border-color: #0002D1;
  color: #00002E;
}
.newsroom-pagination .page-numbers.prev, .newsroom-pagination .page-numbers.next {
  align-items: flex-start;
  border: 0;
  flex: 0 0 16px;
  height: 23px;
  margin-bottom: 0;
  width: 16px;
}
.newsroom-pagination .page-numbers.prev img, .newsroom-pagination .page-numbers.next img {
  height: 23px;
  max-width: none;
  width: 16px;
}
.newsroom-pagination .page-numbers.prev {
  margin-right: 30px;
}
.newsroom-pagination .page-numbers.next {
  margin-left: 30px;
}
.newsroom-pagination .page-numbers.is-disabled {
  opacity: 1;
  pointer-events: none;
}

.newsroom-stats {
  padding: 100px 0;
}
.newsroom-stats h2 {
  color: #FFF;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.newsroom-stats__grid {
  margin-top: 60px;
}

.newsroom-logo-slider {
  padding-top: 50px;
}

.newsroom-media-assets {
  padding: 100px 0;
}
.newsroom-media-assets__aside h3 {
  color: #FFF;
  font-size: 32px;
  line-height: 120%;
  margin: 0;
}
.newsroom-media-assets__aside > p {
  color: #CFD6EC;
  font-size: 16px;
  line-height: 150%;
  margin: 24px 0 0;
}
.newsroom-media-assets__aside > .button {
  margin-top: 30px;
}
.newsroom-media-assets__links {
  border-top: 1px solid #434361;
  margin-top: 50px;
}
.newsroom-media-assets__links > div {
  border-bottom: 1px solid #434361;
  padding: 28px 0;
}
.newsroom-media-assets__links h5 {
  color: #FFF;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
}
.newsroom-media-assets__links p {
  color: #CFD6EC;
  font-size: 14px;
  line-height: 145%;
  margin: 8px 0 15px;
}
.newsroom-media-assets__social {
  margin-top: 40px;
}
.newsroom-media-assets__social h5 {
  color: #FFF;
  font-size: 18px;
  line-height: 130%;
  margin: 0 0 20px;
}
.newsroom-media-assets__social > div {
  display: flex;
  gap: 14px;
}
.newsroom-media-assets__social a {
  align-items: center;
  color: #A6A7FF;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.newsroom-media-assets__social a svg {
  height: 100%;
  width: 100%;
}
.newsroom-media-assets__content h2,
.newsroom-media-assets__content h3,
.newsroom-media-assets__content h4,
.newsroom-media-assets__content h5,
.newsroom-media-assets__content h6 {
  color: #FFF;
}
.newsroom-media-assets__content h3 {
  font-size: 42px;
  line-height: 115%;
  margin: 0 0 40px;
}
.newsroom-media-assets__content h5 {
  font-size: 18px;
  line-height: 130%;
  margin: 38px 0 16px;
}
.newsroom-media-assets__content p {
  color: #CFD6EC;
  font-size: 16px;
  line-height: 165%;
}

/********************* SINGLE NEWS *********************/
.single-news-header {
  min-height: 658px;
  overflow: hidden;
  padding: 185px 0 110px;
  position: relative;
}
.single-news-header__art {
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 610px;
}
.single-news-header__ellipse, .single-news-header__dots {
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.single-news-header__ellipse {
  width: 610px;
}
.single-news-header__dots {
  width: 390px;
}
.single-news-header__content {
  position: relative;
  z-index: 1;
}
.single-news-header__content h1 {
  color: #FFF;
  font-size: 56px;
  line-height: 112%;
  margin: 35px 0 40px;
}

.single-news-content {
  padding: 120px 0;
}
.single-news-content__body {
  min-width: 0;
}

.single-news-related {
  padding: 120px 0;
}
.single-news-related h2 {
  color: #FFF;
  font-size: 42px;
  line-height: 115%;
  margin: 0;
}

.news-global-cta {
  position: relative;
}

/********************* DIRECTORY MODULES *********************/
.directory-module {
  overflow: hidden;
}
.directory-module__title, .directory-module__heading h2 {
  font-size: 52px;
  line-height: 112%;
  margin: 0;
}
.directory-module__heading {
  margin: 0 auto;
  max-width: 846px;
}
.directory-module__heading p {
  font-size: 18px;
  line-height: 140%;
  margin: 30px auto 0;
}
.directory-module__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 80px;
}
.directory-module__filters a {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 195, 216, 0.5);
  border-radius: 100px;
  color: #00002E;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.32px;
  line-height: 120%;
  padding: 0 20px;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.directory-module__filters a:hover, .directory-module__filters a:focus-visible, .directory-module__filters a.is-active {
  background: #E3EBFD;
  border-color: rgba(185, 195, 216, 0.5);
  color: #00002E;
}
.directory-module__archive-heading {
  align-items: flex-end;
  display: flex;
  gap: 128px;
  justify-content: space-between;
  margin-top: 60px;
}
.directory-module__archive-heading > div {
  flex: 0 1 631px;
  max-width: 631px;
}
.directory-module__archive-heading h3 {
  font-size: 32px;
  line-height: 120%;
  margin: 0;
}
.directory-module__archive-heading p {
  color: #434361;
  font-size: 18px;
  line-height: 140%;
  margin: 12px 0 0;
}
.directory-module__search {
  border-color: rgba(185, 195, 216, 0.5);
  flex: 0 0 522px;
  gap: 8px;
  max-width: 522px;
}
.directory-module__search > img {
  flex-basis: 20px;
  height: 20px;
  margin-right: 0;
  width: 20px;
}
.directory-module__search input {
  font-size: 18px;
  line-height: 140%;
}
.directory-module__grid {
  margin-top: 60px;
  row-gap: 20px;
  transition: opacity 0.2s ease;
}
.directory-module__more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.directory-module.is-loading .directory-module__grid {
  opacity: 0.45;
  pointer-events: none;
}

.directory-card {
  align-items: flex-start;
  background: #FFF;
  border: 1px solid #e3ebfd;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  grid-column: auto/span 4;
  min-height: 292px;
  padding: 30px;
}
.directory-card__logo {
  align-items: center;
  background: #E3EBFD;
  border-radius: 10px;
  display: flex;
  height: 70px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 10px;
  width: 70px;
}
.directory-card__logo img {
  height: auto;
  max-height: 50px;
  max-width: 50px;
  object-fit: contain;
  width: auto;
}
.directory-card .eyebrow {
  color: #0002D1;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 100%;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.directory-card h3 {
  color: #00002E;
  font-size: 32px;
  line-height: 120%;
  margin: 0;
}
.directory-card > p:not(.eyebrow) {
  color: #434361;
  font-size: 16px;
  line-height: 140%;
  margin: 10px 0 0;
}
.directory-card--partner {
  min-height: 357px;
}

.space .directory-module__title,
.space .directory-module__heading h2,
.space .directory-module__archive-heading h3,
.blue .directory-module__title,
.blue .directory-module__heading h2,
.blue .directory-module__archive-heading h3 {
  color: #FFF;
}
.space .directory-module__heading p,
.space .directory-module__archive-heading p,
.blue .directory-module__heading p,
.blue .directory-module__archive-heading p {
  color: #CFD6EC;
}
.space .directory-module__filters a,
.blue .directory-module__filters a {
  background: transparent;
  border-color: rgba(166, 167, 255, 0.55);
  color: #FFF;
}
.space .directory-module__filters a:hover, .space .directory-module__filters a:focus-visible, .space .directory-module__filters a.is-active,
.blue .directory-module__filters a:hover,
.blue .directory-module__filters a:focus-visible,
.blue .directory-module__filters a.is-active {
  background: #E3EBFD;
  border-color: rgba(185, 195, 216, 0.5);
  color: #00002E;
}

@media screen and (max-width: 1024px) {
  .newsroom-card,
.newsroom-stat-card,
.directory-card {
    grid-column: auto/span 4;
  }

  .newsroom-featured-in__logo {
    grid-column: auto/span 4;
  }

  .newsroom-media-assets__aside, .newsroom-media-assets__content {
    grid-column: auto/span 8;
  }
  .newsroom-media-assets__content {
    margin-top: 70px;
  }

  .directory-module__archive-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }
  .directory-module__archive-heading > div {
    flex-basis: auto;
  }

  .directory-module__search {
    flex-basis: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .newsroom-hero {
    padding: 145px 0 80px;
  }
  .newsroom-hero__accent {
    opacity: 0.65;
    width: 250px;
  }
  .newsroom-hero__accent--left {
    left: -130px;
  }
  .newsroom-hero__accent--right {
    right: -130px;
  }
  .newsroom-hero__heading h1 {
    font-size: 42px;
  }
  .newsroom-hero__heading .lead {
    font-size: 17px;
  }

  .newsroom-featured-in,
.newsroom-featured {
    margin-top: 70px;
  }

  .newsroom-featured-in__logo {
    grid-column: auto/span 2;
    padding: 8px;
  }

  .newsroom-featured__slider {
    margin: 0;
  }

  .newsroom-card--slider {
    margin: 0 8px;
    width: auto;
  }

  .newsroom-archive,
.newsroom-stats,
.newsroom-media-assets,
.single-news-content,
.single-news-related {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .newsroom-archive__header {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }
  .newsroom-archive__header h2 {
    font-size: 36px;
  }

  .newsroom-archive__accent {
    right: -210px;
    width: 400px;
  }

  .newsroom-pagination {
    margin-top: 50px;
    width: calc(100% - 40px);
  }
  .newsroom-pagination .page-numbers:not(.prev, .next) {
    flex: 1 1 0;
    max-width: 70px;
    min-width: 0;
    width: auto;
  }
  .newsroom-pagination .page-numbers.prev {
    margin-right: 15px;
  }
  .newsroom-pagination .page-numbers.next {
    margin-left: 15px;
  }

  .newsroom-card,
.newsroom-stat-card,
.directory-card {
    grid-column: auto/span 4;
  }

  .newsroom-stats h2,
.newsroom-media-assets__content h3,
.single-news-related h2 {
    font-size: 36px;
  }

  .newsroom-stat-card {
    min-height: 220px;
    padding: 30px;
  }

  .newsroom-media-assets__content {
    margin-top: 60px;
  }

  .single-news-header {
    min-height: 0;
    padding: 145px 0 90px;
  }
  .single-news-header__art {
    opacity: 0.65;
    right: -250px;
  }
  .single-news-header__content h1 {
    font-size: 40px;
  }

  .directory-module__title, .directory-module__heading h2 {
    font-size: 40px;
  }
  .directory-module__archive-heading {
    margin-top: 50px;
  }
  .directory-module__archive-heading h3 {
    font-size: 30px;
  }
  .directory-module__filters {
    justify-content: flex-start;
    margin-top: 40px;
  }
  .directory-module__filters a {
    font-size: 14px;
    height: 40px;
    padding: 0 16px;
  }
  .directory-module__grid {
    margin-top: 40px;
  }
}
/********************* SAFARI STYLE OVERRIDES *********************/
html.safari-browser section#masonry .tile-wrapper {
  row-gap: 100px;
}
html.safari-browser section#masonry .tile-wrapper .tile {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  html.safari-browser section#masonry .tile-wrapper {
    row-gap: 64px;
  }
}
html.safari-browser section#cta.banner .title-container #button-container:before, html.safari-browser section#cta.banner .title-container #button-container:after {
  height: 100%;
}
html.safari-browser .page-template-page-pricing .pricing-column {
  height: 100%;
}

/********************* PRODUCT RELEASE HUB *********************/
.product-release-hub {
  background: #FAFAFF;
}

.product-release-hub__intro {
  background: #FAFAFF;
  overflow: hidden;
  padding: 175px 0 60px;
  position: relative;
}
.product-release-hub__intro .grid {
  z-index: 1;
}

.product-release-hub__accent {
  height: 408px;
  margin: 0;
  max-width: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 297px;
  z-index: 0;
}

.product-release-hub__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.product-release-hub__heading .eyebrow,
.product-release-hub__heading h1,
.product-release-hub__heading .lead {
  margin: 0;
}
.product-release-hub__heading .eyebrow {
  color: #0002D1;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 100%;
  text-transform: uppercase;
}
.product-release-hub__heading h1 {
  color: #00002E;
  font-size: 62px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 105%;
}
.product-release-hub__heading .lead {
  color: #434361;
  font-size: 20px;
  line-height: 140%;
  max-width: 955px;
}

.product-release-hub__search {
  align-items: center;
  background: #FFF;
  border: 1px solid rgba(185, 191, 216, 0.5);
  border-radius: 100px;
  display: flex;
  gap: 8px;
  height: 50px;
  margin: 60px 0 0;
  overflow: hidden;
  padding: 0 20px;
}
.product-release-hub__search img {
  flex: 0 0 20px;
  height: 20px;
  margin: 0;
  width: 20px;
}
.product-release-hub__search input[type=search] {
  appearance: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #434361;
  font-size: 18px;
  height: 48px;
  line-height: 140%;
  margin: 0;
  padding: 0;
  width: 100%;
}
.product-release-hub__search input[type=search]::placeholder {
  color: #434361;
  opacity: 1;
}
.product-release-hub__search input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
}

.product-release-hub__archive {
  background: #FAFAFF;
  padding: 0 0 100px;
}

.product-release-hub__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-release-card {
  align-items: flex-start;
  background: #FFF;
  border: 1px solid #E3EBFD;
  border-radius: 12px;
  display: grid;
  gap: 30px;
  grid-template-columns: 160px minmax(0, 1fr);
  padding: 30px;
  width: 100%;
}
.product-release-card__date {
  color: #0002D1;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 100%;
  margin: 6px 0 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-release-card__body {
  min-width: 0;
  padding-right: 20px;
}
.product-release-card h2 {
  color: #00002E;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 120%;
  margin: 0;
}
.product-release-card__product {
  align-items: center;
  color: #434361;
  display: flex;
  font-size: 16px;
  gap: 8px;
  line-height: 140%;
  margin: 14px 0 0;
}
.product-release-card__product > span {
  background: transparent url("../images/customer-story-client.svg") center/11px 14px no-repeat;
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}
.product-release-card__excerpt, .product-release-card__content {
  color: #434361;
  font-size: 16px;
  line-height: 140%;
}
.product-release-card__excerpt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin: 18px 0 0;
  overflow: hidden;
}
.product-release-card__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
}
.product-release-card__panel-inner {
  overflow: hidden;
}
.product-release-card__content {
  padding-top: 18px;
}
.product-release-card__content > :first-child {
  margin-top: 0;
}
.product-release-card__content > :last-child {
  margin-bottom: 0;
}
.product-release-card__content p,
.product-release-card__content ul,
.product-release-card__content ol {
  color: #434361;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 15px;
}
.product-release-card__content ul,
.product-release-card__content ol {
  list-style-position: outside;
  margin: 0 0 15px;
  padding-left: 24px;
}
.product-release-card__content ul {
  list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3' height='3' viewBox='0 0 3 3' fill='none'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%23434361'/%3E%3C/svg%3E");
  list-style-type: disc;
}
.product-release-card__content ol {
  list-style-image: none;
  list-style-type: decimal;
}
.product-release-card__content li {
  margin: 0 0 10px;
  padding-left: 0;
}
.product-release-card__content li::before {
  content: none;
  display: none;
}
.product-release-card__content li:last-child {
  margin-bottom: 0;
}
.product-release-card__content a {
  color: #0002D1;
}
.product-release-card__toggle {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #434361;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
  letter-spacing: 0.32px;
  line-height: 120%;
  margin: 18px 0 0;
  padding: 0;
  text-align: left;
}
.product-release-card__toggle:hover {
  background: transparent;
  color: #0002D1;
}
.product-release-card__toggle-icon {
  background: #6264FF;
  border-radius: 50%;
  display: block;
  flex: 0 0 18px;
  height: 18px;
  position: relative;
  width: 18px;
}
.product-release-card__toggle-icon::before, .product-release-card__toggle-icon::after {
  background: #FFF;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}
.product-release-card__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.product-release-card.is-expanded .product-release-card__excerpt {
  display: none;
}
.product-release-card.is-expanded .product-release-card__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.product-release-card.is-expanded .product-release-card__toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.product-release-hub__empty {
  color: #434361;
  font-size: 18px;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .product-release-hub__intro {
    padding-top: 160px;
  }

  .product-release-hub__heading h1 {
    font-size: 52px;
  }

  .product-release-card {
    gap: 24px;
    grid-template-columns: 145px minmax(0, 1fr);
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .product-release-hub__intro {
    padding: 140px 0 50px;
  }

  .product-release-hub__accent {
    opacity: 0.65;
    right: -120px;
  }

  .product-release-hub__heading {
    gap: 20px;
  }
  .product-release-hub__heading h1 {
    font-size: 42px;
  }
  .product-release-hub__heading .lead {
    font-size: 18px;
  }

  .product-release-hub__search {
    margin-top: 50px;
  }

  .product-release-hub__archive {
    padding-bottom: 80px;
  }

  .product-release-card {
    display: block;
    padding: 24px 20px;
  }
  .product-release-card__body {
    padding-right: 0;
  }
  .product-release-card__date {
    margin: 0 0 18px;
  }
  .product-release-card h2 {
    font-size: 26px;
  }
}
.single-leadership-header {
  background: #FAFAFF;
  overflow: hidden;
  padding: 175px 0 100px;
  position: relative;
}
.single-leadership-header__accent {
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 326px;
  z-index: 0;
}
.single-leadership-header__grid {
  align-items: center;
  position: relative;
  z-index: 1;
}
.single-leadership-header__media {
  aspect-ratio: 305/340;
  border-radius: 12px;
  margin: 0;
  overflow: hidden;
}
.single-leadership-header__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.single-leadership-header__content {
  display: flex;
  flex-direction: column;
}
.single-leadership-header .single-blog-breadcrumb {
  margin: 0 0 30px;
}
.single-leadership-header .single-blog-breadcrumb a {
  color: #0002D1;
}
.single-leadership-header h1 {
  color: #00002E;
  font-size: 52px;
  letter-spacing: 0;
  line-height: 110%;
  margin: 0 0 30px;
}
.single-leadership-header__job-title {
  color: #434361;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 140%;
  margin: 0;
}
.single-leadership-header__social {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.single-leadership-header__social > span {
  color: #434361;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 120%;
  text-transform: uppercase;
}
.single-leadership-header__social a {
  border-radius: 50%;
  display: block;
  height: 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 30px;
}
.single-leadership-header__social a:hover, .single-leadership-header__social a:focus-visible {
  box-shadow: 0 0 18px rgba(224, 255, 0, 0.65);
  transform: scale(1.05);
}
.single-leadership-header__social svg {
  display: block;
  height: 30px;
  width: 30px;
}

.single-leadership-about {
  background: #FFF;
  padding: 100px 0;
}
.single-leadership-about__content h3 {
  color: #00002E;
  font-size: 42px;
  letter-spacing: 0;
  line-height: 114%;
  margin: 0 0 30px;
}
.single-leadership-about__copy {
  color: #434361;
}
.single-leadership-about__copy p {
  color: inherit;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 140%;
  margin: 0 0 20px;
}
.single-leadership-about__copy p:last-child {
  margin-bottom: 0;
}
.single-leadership-about__back {
  margin-top: 50px;
}

.single-leadership-about a#button {
  margin-top: 50px;
}

.leadership-global-cta {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .single-leadership-header {
    padding-top: 160px;
  }
  .single-leadership-header__media {
    grid-column: 1/span 3;
  }
  .single-leadership-header__content {
    grid-column: 4/span 5;
  }

  .single-leadership-about__content {
    grid-column: 2/span 6;
  }
}
@media screen and (max-width: 768px) {
  .single-leadership-header {
    padding: 140px 0 60px;
  }
  .single-leadership-header__accent {
    opacity: 0.65;
    right: -90px;
    width: 260px;
  }
  .single-leadership-header__grid {
    gap: 40px;
  }
  .single-leadership-header__media, .single-leadership-header__content {
    grid-column: 1/span 4;
  }
  .single-leadership-header__media {
    aspect-ratio: 1/1;
  }
  .single-leadership-header h1 {
    font-size: 42px;
  }

  .single-leadership-about {
    padding: 70px 0;
  }
  .single-leadership-about__content {
    grid-column: 1/span 4;
  }
  .single-leadership-about__content h3 {
    font-size: 34px;
  }
  .single-leadership-about__back {
    margin-top: 40px;
    width: 100%;
  }

  .single-leadership-about a#button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  section#text-block .text-block-content {
    grid-column: span 8;
  }
}
@media screen and (max-width: 768px) {
  section#columns .column-wrapper {
    row-gap: 40px;
  }

  section#text-block .text-block-content {
    grid-column: span 4;
  }

  main.resource-center-hub .resource-center-archive {
    gap: 10px;
  }

  main.resource-center-hub .resource-featured-card--small {
    min-height: 0;
  }

  section#quotes .quote-card-single blockquote {
    font-size: 16px;
  }

  section#hero {
    padding-top: 100px;
  }

  section#quotes.quotes-slider .quotes-header, section#quotes.quotes-single-quote .quotes-header {
    grid-column: 1/span 4;
  }

  .footer .section-footer .top-row {
    row-gap: 30px;
  }

  section#cta.layout-centered .cta-button-row .cta-button {
    flex: auto;
  }

  section#centered-image .centered-image-button-bar #button-container {
    align-items: center;
  }

  section#centered-image .centered-image-button-bar #button-container #button {
    width: auto;
  }

  section#text-block .text-block-content {
    grid-column: span 4;
  }

  section .text-center #heading-container #button-container {
    justify-content: center;
    align-items: center;
  }
}

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