@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=Inter:opsz,wght@14..32,100..900&display=swap");
.white-gradient {
  border-radius: 10px;
  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);
}

.silver-gradient {
  border-radius: 10px;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 75%), rgba(202, 195, 195, 0.2);
}

.gold-gradient {
  border-radius: 10px;
  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);
}

.blue-gradient {
  border-radius: 10px;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(126, 196, 255, 0.25) 0%, rgba(126, 196, 255, 0) 75%), rgba(126, 196, 255, 0.2);
}

.green-gradient {
  border-radius: 10px;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(178, 255, 136, 0.25) 0%, rgba(178, 255, 136, 0) 75%), rgba(178, 255, 136, 0.2);
}

.red-gradient {
  border-radius: 10px;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 170, 170, 0.25) 0%, rgba(255, 170, 170, 0) 75%), rgba(255, 170, 170, 0.2);
}

/**
 * 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: #000;
  -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: rgb(19.78, 104.06, 159.96);
}
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 #000;
  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: #000;
}

.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: #000;
  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: #000;
  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, 0, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
  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: #000;
}
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: #000;
}

.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: #000;
  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: #000;
  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: rgb(249.9, 237, 235);
}
.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: rgb(19.55, 102.85, 158.1);
  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: rgb(18.4, 96.8, 148.8);
  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: #000;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #000;
}
.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: #000;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #000;
}
.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: #000;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: #000;
}
.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: #000;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #000;
}
.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: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.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: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.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: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.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: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.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: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.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: rgb(11.5, 60.5, 93);
}
.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: rgb(11.5, 60.5, 93);
}
.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: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.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: rgb(127.5, 87, 0);
}
.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: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.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: #000;
}
: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: #000;
}
.badge.success {
  background: #3adb76;
  color: #000;
}
.badge.warning {
  background: #ffae00;
  color: #000;
}
.badge.alert {
  background: #cc4b37;
  color: #000;
}

.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: #000;
  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: rgb(18.4, 96.8, 148.8);
  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: #000;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #000;
}
.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: #000;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #000;
}
.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: #000;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(204, 139.2, 0);
  color: #000;
}
.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: #000;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #000;
}
.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: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.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: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.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: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.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: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.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: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.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: rgb(11.5, 60.5, 93);
}
.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: rgb(11.5, 60.5, 93);
}
.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: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.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: rgb(127.5, 87, 0);
}
.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: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.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, 0, 0.25);
  border-radius: 0;
  background-color: white;
  color: #000;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: rgb(214.8186602871, 235.9894736842, 250.0313397129);
  color: #000;
}
.callout.secondary {
  background-color: rgb(234.45, 234.45, 234.45);
  color: #000;
}
.callout.success {
  background-color: rgb(225.45, 249.6, 234.45);
  color: #000;
}
.callout.warning {
  background-color: rgb(255, 242.85, 216.75);
  color: #000;
}
.callout.alert {
  background-color: rgb(247.35, 228, 225);
  color: #000;
}
.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: #000;
}
.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: #000;
}
.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: #000;
  box-shadow: 0 7px 0 #000, 0 14px 0 #000;
  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: #000;
}
.label.success {
  background: #3adb76;
  color: #000;
}
.label.warning {
  background: #ffae00;
  color: #000;
}
.label.alert {
  background: #cc4b37;
  color: #000;
}

.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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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, 0, 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: #000;
}
.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: #000;
}

.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: rgb(19.55, 102.85, 158.1);
}
.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, 0, 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 rgb(242.25, 242.25, 242.25);
  background-color: #FFF;
}

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

thead {
  background: rgb(248.625, 248.625, 248.625);
  color: #000;
}

tfoot {
  background: rgb(242.25, 242.25, 242.25);
  color: #000;
}

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: rgb(242.25, 242.25, 242.25);
}

table.unstriped tbody {
  background-color: #FFF;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid rgb(242.25, 242.25, 242.25);
  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: rgb(243.525, 243.525, 243.525);
}
table.hover tfoot tr:hover {
  background-color: rgb(237.15, 237.15, 237.15);
}
table.hover tbody tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: rgb(237.15, 237.15, 237.15);
}

.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: rgb(21.85, 114.95, 176.7);
}

.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: rgb(19.78, 104.06, 159.96);
}
.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: #000;
  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, 0, 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: #000;
  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: #000;
  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 #000;
  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: #000 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 #000;
  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 #000 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 - Binalyze *************************************************/
html {
  scroll-behavior: smooth;
  background-color: #000;
}

*::selection {
  background: #000;
  color: #FFF;
}

/********************* TYPOGRAPHY *********************/
body {
  font-family: "shnebuch";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFF;
}

.transducer, section#resources #simple-resource-card #image-container .type-tag, header .top-bar .top-bar-right .submenu #main-container .menu-title,
header .top-bar .top-bar-left .submenu #main-container .menu-title, .tag, .eyebrow, .heading, .xl, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: "transducer-condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.comic, .heading.comic, .comic.xl, h6.comic, .comic.h6, h5.comic, .comic.h5, h4.comic, .comic.h4, h3.comic, .comic.h3, h2.comic, .comic.h2, h1.comic, .comic.h1 {
  font-family: "classic-comic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.comic-italic {
  font-family: "classic-comic", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.inter-400, .footer .section-footer .top-row .column .footer-nav-group > a, section form.blog-search-form input[type=search], section #pagination .page-numbers, section#featured .secondary-featured #resource-card h4, section#hero .post-categories .category, a.filter-button, .paragraph, span.caption, p, li,
.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-500, .footer .footer-bottom .utility-links a, .footer .section-footer .top-row .column .footer-nav-group > a.subtitle, .footer .section-footer .top-row .column .footer-nav-group > a.title, .footer .section-footer .top-row .column .footer-nav-group .header, 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 #body-copy figcaption, section #body-copy blockquote p, section #body-copy h6, section #body-copy .h6, section #body-copy h5, section #body-copy .h5, section #body-copy h4, section #body-copy .h4, section #body-copy h3, section #body-copy .h3, section #body-copy h2, section #body-copy .h2, section form.blog-search-form input[type=search]::placeholder, 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#careers .job-card p.body-l, section.tabs-section.vertical nav a, 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 .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 .menu-item:not(.button) a,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a, 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, .heading.resource, .resource.xl, h6.resource, .resource.h6, h5.resource, .resource.h5, h4.resource, .resource.h4, h3.resource, .resource.h3, h2.resource, .resource.h2, h1.resource, .resource.h1,
.inter-medium,
blockquote,
a.button-link,
.stat,
p.button-link,
li.button-link,
p.quote-1,
li.quote-1,
p.quote,
li.quote,
p.stat-l,
li.stat-l {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-600, section.tabs-section.horizontal nav a, 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,
.inter-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.inter-800,
.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.heading, .xl, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  color: #FFF;
  margin-bottom: 0;
  letter-spacing: 0.8px;
}
.heading a, .xl 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: #FFF;
}
.heading span, .xl span, h6 span, .h6 span, h5 span, .h5 span, h4 span, .h4 span, h3 span, .h3 span, h2 span, .h2 span, h1 span, .h1 span {
  color: #F8ED3F;
}
.heading.resource, .resource.xl, h6.resource, .resource.h6, h5.resource, .resource.h5, h4.resource, .resource.h4, h3.resource, .resource.h3, h2.resource, .resource.h2, h1.resource, .resource.h1 {
  text-transform: none;
}

.paragraph, span.caption, p, li {
  margin-bottom: 0;
  color: #FFF;
}
.paragraph strong, span.caption strong, p strong, li strong {
  font-weight: 700;
}

h1, .h1 {
  font-size: 80px;
  line-height: 95%;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 66px;
  }
}
@media (max-width: 440px) {
  h1, .h1 {
    font-size: 50px;
  }
}
h1.resource, .h1.resource {
  font-size: 42px;
  line-height: 125%;
}
h1.comic, h1.heading.comic, h1.comic.xl, h1.comic.h6, h1.comic.h5, h1.comic.h4, h1.comic.h3, h1.comic.h2, h1.comic, .h1.comic {
  font-size: 24px !important;
  line-height: 130%;
}
@media (max-width: 768px) {
  h1.comic, h1.heading.comic, h1.comic.xl, h1.comic.h6, h1.comic.h5, h1.comic.h4, h1.comic.h3, h1.comic.h2, h1.comic, .h1.comic {
    font-size: 22px !important;
  }
}

h2, .h2 {
  font-size: 70px;
  line-height: 95%;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 60px;
  }
}
@media (max-width: 440px) {
  h2, .h2 {
    font-size: 40px;
  }
}
h2.comic, h2.heading.comic, h2.comic.xl, h2.comic.h6, h2.comic.h5, h2.comic.h4, h2.comic.h3, h2.comic.h1, h2.comic, .h2.comic {
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 768px) {
  h2.comic, h2.heading.comic, h2.comic.xl, h2.comic.h6, h2.comic.h5, h2.comic.h4, h2.comic.h3, h2.comic.h1, h2.comic, .h2.comic {
    font-size: 18px;
  }
}

h3, .h3 {
  font-size: 50px;
  line-height: 110%;
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  h3, .h3 {
    font-size: 34px;
  }
}
h3.comic, h3.heading.comic, h3.comic.xl, h3.comic.h6, h3.comic.h5, h3.comic.h4, h3.comic.h1, h3.comic.h2, h3.comic, .h3.comic {
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 768px) {
  h3.comic, h3.heading.comic, h3.comic.xl, h3.comic.h6, h3.comic.h5, h3.comic.h4, h3.comic.h1, h3.comic.h2, h3.comic, .h3.comic {
    font-size: 16px;
  }
}

h4, .h4 {
  font-size: 40px;
  line-height: 110%;
}
@media (max-width: 768px) {
  h4, .h4 {
    font-size: 30px;
  }
}
h4.resource, .h4.resource {
  font-size: 24px;
  line-height: 140%;
}
h4.comic, h4.heading.comic, h4.comic.xl, h4.comic.h6, h4.comic.h5, h4.comic.h1, h4.comic.h2, h4.comic.h3, h4.comic, .h4.comic {
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 768px) {
  h4.comic, h4.heading.comic, h4.comic.xl, h4.comic.h6, h4.comic.h5, h4.comic.h1, h4.comic.h2, h4.comic.h3, h4.comic, .h4.comic {
    font-size: 16px;
  }
}

h5, .h5 {
  font-size: 30px;
  line-height: 110%;
}
@media (max-width: 768px) {
  h5, .h5 {
    font-size: 28px;
  }
}
h5.comic, h5.heading.comic, h5.comic.xl, h5.comic.h6, h5.comic.h1, h5.comic.h2, h5.comic.h3, h5.comic.h4, h5.comic, .h5.comic {
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 768px) {
  h5.comic, h5.heading.comic, h5.comic.xl, h5.comic.h6, h5.comic.h1, h5.comic.h2, h5.comic.h3, h5.comic.h4, h5.comic, .h5.comic {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 24px;
  line-height: 140%;
}
@media (max-width: 768px) {
  h6, .h6 {
    font-size: 20px;
  }
}
h6.comic, h6.heading.comic, h6.comic.xl, h6.comic.h1, h6.comic.h2, h6.comic.h3, h6.comic.h4, h6.comic.h5, h6.comic, .h6.comic {
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 768px) {
  h6.comic, h6.heading.comic, h6.comic.xl, h6.comic.h1, h6.comic.h2, h6.comic.h3, h6.comic.h4, h6.comic.h5, h6.comic, .h6.comic {
    font-size: 16px;
  }
}

.xl {
  font-size: 90px;
  line-height: 110%;
}
@media (max-width: 768px) {
  .xl {
    font-size: 74px;
  }
}
@media (max-width: 440px) {
  .xl {
    font-size: 60px;
  }
}

.eyebrow {
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.54px;
  text-transform: uppercase;
  padding: 3px 12px 3px 5px;
  border-radius: 100px;
  border: 1px solid #43433E;
  display: inline-flex;
}
@media (max-width: 1024px) {
  .eyebrow {
    font-size: 16px;
  }
}

.tag {
  font-size: 16px;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .tag {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .tag {
    font-size: 13px;
  }
}

a {
  color: #F8ED3F;
}
a:hover {
  color: #FFF;
}

p, li {
  font-size: 16px;
  line-height: 150%;
  color: #FFF;
}
@media (max-width: 1960px) {
  p, li {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  p, li {
    font-size: 16px;
  }
}
p.lead, li.lead {
  font-size: 22px;
  line-height: 150%;
  color: #FFF;
}
@media (max-width: 1960px) {
  p.lead, li.lead {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  p.lead, li.lead {
    font-size: 18px;
  }
}
p.body-l, li.body-l {
  font-size: 18px;
  line-height: 150%;
  color: #9D9797;
}
@media (max-width: 1960px) {
  p.body-l, li.body-l {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  p.body-l, li.body-l {
    font-size: 16px;
  }
}
p.body-m, li.body-m {
  font-size: 16px;
  line-height: 150%;
  color: #9D9797;
}
@media (max-width: 1960px) {
  p.body-m, li.body-m {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  p.body-m, li.body-m {
    font-size: 16px;
  }
}
p.body-s, li.body-s {
  font-size: 16px;
  line-height: 150%;
  color: #FFF;
  font-weight: 400 !important;
}
@media (max-width: 1960px) {
  p.body-s, li.body-s {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  p.body-s, li.body-s {
    font-size: 14px;
  }
}
p.caption, li.caption {
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 1960px) {
  p.caption, li.caption {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  p.caption, li.caption {
    font-size: 12px;
  }
}
p.stat-l, li.stat-l {
  font-size: 90px;
  line-height: 110%;
}
@media (max-width: 1960px) {
  p.stat-l, li.stat-l {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  p.stat-l, li.stat-l {
    font-size: 60px;
  }
}
p.quote, li.quote {
  font-size: 20px;
  line-height: 180%;
}
@media (max-width: 1960px) {
  p.quote, li.quote {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  p.quote, li.quote {
    font-size: 16px;
  }
}
p.quote-1, li.quote-1 {
  font-size: 22px;
  line-height: 140%;
}
@media (max-width: 1960px) {
  p.quote-1, li.quote-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  p.quote-1, li.quote-1 {
    font-size: 18px;
  }
}
p.button-link, li.button-link {
  font-size: 17px;
  line-height: 110%;
}
@media (max-width: 1960px) {
  p.button-link, li.button-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  p.button-link, li.button-link {
    font-size: 14px;
  }
}
p.nav-link, li.nav-link {
  font-size: 15px;
  font-style: normal;
  line-height: 120%;
  color: #9D9797;
}
@media (max-width: 1960px) {
  p.nav-link, li.nav-link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  p.nav-link, li.nav-link {
    font-size: 13px;
  }
}
p.white, li.white {
  color: #FFF !important;
}
p.yellow, li.yellow {
  color: #F8ED3F !important;
}
p span, li span {
  color: #F8ED3F;
}

span.caption {
  font-size: 12px;
  line-height: 150%;
  color: #F8ED3F;
}
@media (max-width: 1960px) {
  span.caption {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  span.caption {
    font-size: 12px;
  }
}

.stat {
  font-size: 80px;
  line-height: 950%;
}
@media (max-width: 1960px) {
  .stat {
    font-size: 80px;
  }
}
@media (max-width: 1024px) {
  .stat {
    font-size: 60px;
  }
}

.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: #F8ED3F;
  text-decoration: none;
}

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

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

div.lead p, div.lead li {
  font-size: 22px;
  line-height: 150%;
  color: #FFF;
}
@media (max-width: 1960px) {
  div.lead p, div.lead li {
    font-size: 20px;
  }
}
@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: 150%;
  color: #9D9797;
}
@media (max-width: 1960px) {
  div.body-l p, div.body-l li {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  div.body-l p, div.body-l li {
    font-size: 16px;
  }
}

div.body-m p, div.body-m li {
  font-size: 16px;
  line-height: 150%;
  color: #9D9797;
}
@media (max-width: 1960px) {
  div.body-m p, div.body-m li {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  div.body-m p, div.body-m li {
    font-size: 16px;
  }
}

div.body-s p, div.body-s li {
  font-size: 14px;
  line-height: 150%;
  color: #9D9797;
  font-weight: 400 !important;
}
@media (max-width: 1960px) {
  div.body-s p, div.body-s li {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  div.body-s p, div.body-s li {
    font-size: 14px;
  }
}

div.body-nav-link p, div.body-nav-link li {
  font-size: 14px;
  line-height: 150%;
  color: #37F;
}
div.body-nav-link p a, div.body-nav-link li a {
  color: #37F;
}
@media (max-width: 1960px) {
  div.body-nav-link p, div.body-nav-link li {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  div.body-nav-link p, div.body-nav-link li {
    font-size: 14px;
  }
}

div.caption p, div.caption li {
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 1960px) {
  div.caption p, div.caption li {
    font-size: 12px;
  }
}
@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;
  align-items: center;
  width: max-content;
  padding: 0 28px 0 18px;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  color: #000;
  text-align: center;
  background-color: #FFF;
  box-sizing: content-box;
  height: 44px;
  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::before,
a.button::before,
button#button::before,
div#button::before,
input.button::before,
input.hs-button::before {
  content: "";
  height: 10px;
  width: 10px;
  right: 0;
  bottom: 0;
  background-color: #FC0;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
a#button:hover,
a.button:hover,
button#button:hover,
div#button:hover,
input.button:hover,
input.hs-button:hover {
  background-color: #FC0;
}
a#button:hover::before,
a.button:hover::before,
button#button:hover::before,
div#button:hover::before,
input.button:hover::before,
input.hs-button:hover::before {
  height: 100%;
}
a#button.secondary,
a.button.secondary,
button#button.secondary,
div#button.secondary,
input.button.secondary,
input.hs-button.secondary {
  color: #FFF;
  background-color: #000;
  border: 1px solid #FFF;
}
a#button.secondary::before,
a.button.secondary::before,
button#button.secondary::before,
div#button.secondary::before,
input.button.secondary::before,
input.hs-button.secondary::before {
  background-color: #FFF;
}
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: #22221F;
}
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 20px;
    height: 40px;
    font-size: 14px;
  }
}

li.button {
  display: flex !important;
  align-items: center !important;
  width: max-content !important;
  padding: 0 38px 0 20px !important;
  font-style: normal !important;
  font-size: 16px !important;
  line-height: 100% !important;
  text-decoration: none !important;
  color: #000 !important;
  text-align: center !important;
  background-color: #F8ED3F !important;
  box-sizing: content-box !important;
  letter-spacing: 0.32px !important;
  height: 40px !important;
  margin: 0 !important;
  cursor: pointer !important;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1) !important;
  position: relative !important;
}
li.button a {
  color: #000 !important;
  padding: 0 !important;
}
li.button::before {
  content: "";
  width: 9px;
  height: 1.5px;
  background-color: #000;
  position: absolute;
  right: 21px;
  top: 19.5px;
  transform-origin: 50%;
  transform-style: preserve-3d;
  transition: transform 0.2s;
  transform: scaleX(0);
}
li.button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='50' viewBox='0 0 10 50' fill='none'%3E%3Cpath d='M2.60156 20L7.57847 24.9769L2.60156 29.9538' stroke='%23000A0F' stroke-width='1.5' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  width: 10px;
  height: 50px;
  position: absolute;
  top: -4.47px;
  right: 22px;
  transition: transform 0.2s;
}
li.button:hover {
  color: #000;
  background-color: #F8ED3F;
}
li.button:hover::after {
  transform: translateX(4px);
}
li.button:hover::before {
  transform: scaleX(1);
  background-color: #000;
}
@media screen and (max-width: 1024px) {
  li.button {
    padding: 0 20px;
    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: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00045 2.7576L11.2431 7.00024L7.00045 11.2429' stroke='%233661FF' stroke-width='2'/%3E%3Cpath d='M2 7.00024L11 7.00024' stroke='%233661FF' stroke-width='2'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: -2px;
  top: 10px;
}
li.text-button:hover {
  background: none;
}
li.text-button:hover a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14' fill='none'%3E%3Cpath d='M9.00045 2.75785L13.2431 7.00049L9.00045 11.2431' stroke='%233661FF' stroke-width='2'/%3E%3Cpath d='M1 7L13 7' stroke='%233661FF' stroke-width='2'/%3E%3C/svg%3E");
  right: -4px;
}

div#text-button,
a#text-button,
a.text-button {
  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: #FFF;
}
div#text-button svg,
a#text-button svg,
a.text-button svg {
  position: relative;
  top: -1px;
  left: 6px;
}
div#text-button svg path:first-child,
a#text-button svg path:first-child,
a.text-button svg path:first-child {
  transform: translateX(-5px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
div#text-button svg path:last-child,
a#text-button svg path:last-child,
a.text-button svg path:last-child {
  opacity: 0;
  transition: all 0.3s 0s cubic-bezier(0.25, 1, 0.5, 1);
}
div#text-button:hover,
a#text-button:hover,
a.text-button:hover {
  color: #F8ED3F;
}
div#text-button:hover svg path:first-child,
a#text-button:hover svg path:first-child,
a.text-button:hover svg path:first-child {
  transform: translateX(0);
  stroke: #F8ED3F;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
div#text-button:hover svg path:last-child,
a#text-button:hover svg path:last-child,
a.text-button:hover svg path:last-child {
  opacity: 1;
  stroke: #F8ED3F;
  transition: all 0.3s 0.05s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1024px) {
  div#text-button,
  a#text-button,
  a.text-button {
    font-size: 14px;
  }
  div#text-button::before,
  a#text-button::before,
  a.text-button::before {
    bottom: 1px;
  }
}

#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: relative;
  top: -120px;
  visibility: hidden;
}

a.filter-button {
  padding: 10px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #43433E;
  background: transparent;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  line-height: 140%; /* 14px */
  transition: 0.2s all cubic-bezier(0.25, 1, 0.5, 1);
}
a.filter-button:hover, a.filter-button.active {
  background: #F8ED3F;
  color: #000;
  border-color: #F8ED3F;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #37F !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: 40px;
}
.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 {
  max-width: 1680px;
  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 {
  margin-top: 81px;
}
.off-canvas-content.promo-active {
  margin-top: 120px;
}
@media screen and (max-width: 1208px) {
  .off-canvas-content.promo-active {
    margin-top: 148px;
  }
}
@media screen and (max-width: 1210px) {
  .off-canvas-content {
    margin-top: 69px;
  }
}

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;
  background: rgb(0, 0, 0);
  border-bottom: 1px solid #43433E;
  transition: 1s all cubic-bezier(0.25, 1, 0.5, 1);
}
header.nav-up {
  top: -140px !important;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
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: 1720px;
  margin: 0 auto;
  background: transparent;
  -webkit-transition: border 0.2s linear, background 0.2s linear, margin-top 0.2s linear;
  transition: border 0.2s linear, background 0.2s linear, margin-top 0.2s linear;
  padding: 18px 80px 18px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  header .top-bar {
    padding: 15px 40px 19px;
  }
}
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: 20px;
}
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: #F8ED3F;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a[data-mega-toggle]::after,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a[data-mega-toggle]::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M0.353137 0.353559L4.12207 4.12249L7.891 0.353559' stroke='white'/%3E%3C/svg%3E");
  margin-left: 8px;
  position: relative;
  top: -2px;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a[data-mega-toggle].active::after, header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a[data-mega-toggle]:hover::after,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a[data-mega-toggle].active::after,
header .top-bar .top-bar-left #main-nav .menu-item:not(.button) a[data-mega-toggle]:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' viewBox='0 0 9 5' fill='none'%3E%3Cpath d='M0.353137 0.353528L4.12207 4.12246L7.891 0.353528' stroke='%23F8ED3F'/%3E%3C/svg%3E");
}
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;
  border: 1px solid #43433E;
  background: #111;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1800px;
  padding: 20px;
  grid-column-start: 2;
  grid-column-end: span 10;
  margin: 0 auto;
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
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;
  top: 81px;
}
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 #main-container,
header .top-bar .top-bar-left .submenu #main-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  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: 16.6666666667%;
}
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: #F8ED3F;
}
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 #43433E;
  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;
}
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;
}
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-flow: column nowrap;
  column-gap: 6px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .mega_menu_links.col-width-1,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .mega_menu_links.col-width-1 {
  width: 33.33%;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .mega_menu_links.col-width-2,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .mega_menu_links.col-width-2 {
  width: 66.66%;
}
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-flow: column nowrap;
  column-gap: 6px;
  padding-right: 20px;
}
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 {
  padding: 20px;
  border: 1px solid #43433E;
  background: #000;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link a:hover .svg-container svg,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link a:hover .svg-container svg {
  transform: rotate(90deg);
}
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: column;
  gap: 20px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content h4,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .content h4 {
  color: #F8ED3F;
}
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 {
  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 .mega_menu_page_section.links-desc .resource-link .resource-content .svg-container svg,
header .top-bar .top-bar-left .submenu #main-container .mega_menu_page_section.links-desc .resource-link .resource-content .svg-container svg {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar .top-bar-right .submenu #main-container .menu-title,
header .top-bar .top-bar-left .submenu #main-container .menu-title {
  display: block;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.54px;
  text-transform: uppercase;
  color: #F8ED3F;
  margin-bottom: 18px;
  min-height: 1.1em;
}
header .top-bar .top-bar-right .submenu #main-container .menu-title.is-placeholder,
header .top-bar .top-bar-left .submenu #main-container .menu-title.is-placeholder {
  visibility: hidden;
  pointer-events: none;
}
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;
}
header .top-bar #utility-nav a {
  padding: 6px 6px 6px 0;
  color: #FFF;
  font-weight: 600;
}
header .top-bar #utility-nav a svg {
  position: relative;
  top: 1px;
  left: 8px;
}
header .top-bar #utility-nav a svg path:first-child {
  transform: translateX(-5px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar #utility-nav a svg path:last-child {
  opacity: 0;
  transition: all 0.3s 0s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar #utility-nav a:hover {
  color: #F8ED3F;
  transition: all 0.3s 0.05s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar #utility-nav a:hover svg path:first-child {
  transform: translateX(0);
  stroke: #F8ED3F;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
header .top-bar #utility-nav a:hover svg path:last-child {
  opacity: 1;
  stroke: #F8ED3F;
  transition: all 0.3s 0.05s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1960px) {
  header .top-bar {
    max-width: 1440px;
  }
}
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.header.topHeader.menu-active {
    background: #000;
  }
  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 #073A9E;
  }
  #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: #37F;
    font-size: 14px;
    display: inline;
  }
  #mobile-menu #offcanvas-nav > li > ul > li.title a:hover {
    color: #F8ED3F;
  }
  #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: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }
  #mobile-menu #offcanvas-nav > li > ul > li:not(.title, .menu-header) a:hover {
    color: #073A9E;
  }
  #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: #000;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item a .caption {
    color: #000;
    margin-top: 6px;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item.title a {
    color: #37F !important;
  }
  #mobile-menu #offcanvas-nav li.is-submenu-item.title a:hover {
    color: #F8ED3F !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: #000;
    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: #F8ED3F;
  }
  #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='%23FEFDFB'/%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;
  }
  #mobile-menu #offcanvas-nav .lower-menu .button:not(.secondary) a {
    color: #fff;
  }
  #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;
  }
  #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;
  }
  #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: #000;
    font-size: 16px;
    font-weight: 500;
  }
  header.header .menu svg {
    max-width: 170px;
  }
  header.header .top-bar .top-bar-left .menu li a {
    padding: 14px 0;
  }
  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: 40px;
    width: 40px;
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 20px;
    cursor: pointer;
    display: block;
    background: #FC0;
    border-radius: 200px;
  }
  #hamburger span {
    background-color: #000;
    height: 2px;
    width: 15px;
    display: block;
    position: absolute;
    left: 12px;
  }
  #hamburger span:first-child {
    top: 13px;
  }
  #hamburger span:nth-child(2) {
    top: 19px;
  }
  #hamburger span:nth-child(3) {
    top: 25px;
  }
  #mobile-menu.menu-active {
    display: flex !important;
    height: calc(100dvh - 76px);
    flex-flow: column;
    gap: 32px;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 5;
    padding: 22px 20px 0;
    overflow-y: scroll;
    box-sizing: border-box;
  }
  #mobile-menu.menu-active #offcanvas-nav {
    width: 100%;
    gap: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li {
    border-bottom: 1px solid #333;
  }
  #mobile-menu.menu-active #offcanvas-nav li.is-accordion-submenu-parent > a::after {
    border: 0 !important;
    content: none !important;
    display: none !important;
  }
  #mobile-menu.menu-active #offcanvas-nav li a {
    font-family: "Inter", sans-serif;
    color: #FFF;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    padding: 20px 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li a:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  #mobile-menu.menu-active #offcanvas-nav li a:focus-visible {
    box-shadow: none !important;
    outline: none !important;
  }
  #mobile-menu.menu-active #offcanvas-nav li.active > a, #mobile-menu.menu-active #offcanvas-nav li.is-active > a, #mobile-menu.menu-active #offcanvas-nav li[aria-expanded=true] > a {
    background: transparent;
    color: #F8ED3F;
  }
  #mobile-menu.menu-active #offcanvas-nav li.active > a > .mobile-menu-arrow, #mobile-menu.menu-active #offcanvas-nav li.is-active > a > .mobile-menu-arrow, #mobile-menu.menu-active #offcanvas-nav li[aria-expanded=true] > a > .mobile-menu-arrow {
    color: #F8ED3F;
    transform: rotate(-45deg);
  }
  #mobile-menu.menu-active #offcanvas-nav li ul {
    background: transparent;
    gap: 12px;
  }
  #mobile-menu.menu-active #offcanvas-nav li li {
    border-bottom: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li li a {
    font-family: "Inter", sans-serif;
    color: #FFF;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    padding: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li li.section-title, #mobile-menu.menu-active #offcanvas-nav li li.title, #mobile-menu.menu-active #offcanvas-nav li li.menu-header {
    margin-top: 22px;
  }
  #mobile-menu.menu-active #offcanvas-nav li li.section-title:first-child, #mobile-menu.menu-active #offcanvas-nav li li.title:first-child, #mobile-menu.menu-active #offcanvas-nav li li.menu-header:first-child {
    margin-top: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li li.section-title a, #mobile-menu.menu-active #offcanvas-nav li li.title a, #mobile-menu.menu-active #offcanvas-nav li li.menu-header a {
    font-family: "shnebuch", sans-serif;
    color: #F8ED3F !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu[aria-hidden=false] {
    border: 1px solid #3f3f3f;
    background: #101010;
    margin: 0 0 -1px;
    padding: 24px 20px;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li:first-child {
    margin-top: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > a {
    color: #F8ED3F !important;
    font-family: "transducer-condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.54px;
    line-height: 110%;
    padding: 0;
    pointer-events: none;
    text-transform: uppercase;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > a .mobile-menu-label {
    flex: 0 0 auto;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > a .mobile-menu-arrow {
    display: none;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu {
    background: transparent;
    border: 0;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a {
    color: #FFF !important;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 140%;
    pointer-events: auto;
    text-transform: none;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a:hover, #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a:active, #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a:focus {
    color: #F8ED3F !important;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a:hover .mobile-menu-icon, #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a:active .mobile-menu-icon, #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li > a:focus .mobile-menu-icon {
    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);
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li.highlighted > a {
    padding: 20px;
  }
  #mobile-menu.menu-active #offcanvas-nav li > .is-accordion-submenu > li > .is-accordion-submenu > li.highlighted > a .mobile-menu-arrow {
    display: inline-block;
  }
  #mobile-menu.menu-active #offcanvas-nav .mobile-menu-label {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
  }
  #mobile-menu.menu-active #offcanvas-nav .mobile-menu-label .caption {
    color: #9b9b9b;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    margin: 4px 0 0;
    text-transform: none;
  }
  #mobile-menu.menu-active #offcanvas-nav .mobile-menu-icon {
    align-items: center;
    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);
    border-radius: 2px;
    display: inline-flex;
    flex: 0 0 30px;
    height: 30px;
    justify-content: center;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    width: 30px;
  }
  #mobile-menu.menu-active #offcanvas-nav .mobile-menu-icon-image {
    display: block;
    height: 16px;
    object-fit: contain;
    width: 16px;
  }
  #mobile-menu.menu-active #offcanvas-nav .mobile-menu-icon svg {
    display: block;
    height: 16px;
    width: 16px;
  }
  #mobile-menu.menu-active #offcanvas-nav .mobile-menu-arrow {
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    color: #FFF;
    display: inline-block;
    flex: 0 0 6px;
    height: 6px;
    margin-left: auto;
    transform: rotate(135deg);
    width: 6px;
  }
  #mobile-menu.menu-active #offcanvas-nav .is-active > a > .mobile-menu-arrow {
    transform: rotate(-45deg);
  }
  #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon:not(.highlighted) > a {
    font-size: 13px;
    line-height: 140%;
  }
  #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon > a:hover, #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon > a:active, #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon > a:focus {
    color: #F8ED3F !important;
  }
  #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon > a:hover .mobile-menu-icon, #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon > a:active .mobile-menu-icon, #mobile-menu.menu-active #offcanvas-nav .has-mobile-menu-icon > a:focus .mobile-menu-icon {
    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);
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted {
    margin-bottom: 20px;
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted > a {
    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);
    border: 1px solid #43433E;
    border-radius: 8px;
    color: #FFF !important;
    font-weight: 500;
    min-height: 70px;
    padding: 20px;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted > a:hover {
    color: #F8ED3F !important;
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted > a:hover .mobile-menu-icon {
    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);
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted .mobile-menu-icon {
    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);
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted .mobile-menu-arrow {
    border: 0;
    color: #FFF;
    display: inline-block;
    flex: 0 0 10px;
    height: 8px;
    transform: rotate(0);
    width: 10px;
  }
  #mobile-menu.menu-active #offcanvas-nav .highlighted .mobile-menu-arrow svg {
    display: block;
    height: 10px;
    width: 10px;
  }
  #mobile-menu.menu-active #mobile-utility {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 42%, #000 100%);
    display: flex;
    justify-content: center;
    margin: auto -20px 0;
    padding: 86px 20px 24px;
    pointer-events: none;
    position: sticky;
    bottom: 0;
    width: calc(100% + 40px);
    z-index: 2;
  }
  #mobile-menu.menu-active #mobile-utility #utility-nav {
    align-items: center;
    background: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    pointer-events: auto;
    width: 100%;
  }
  #mobile-menu.menu-active #mobile-utility #utility-nav li {
    border-bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #mobile-menu.menu-active #mobile-utility #utility-nav a {
    align-items: center;
    background: #FFF;
    color: #000 !important;
    display: inline-flex;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    justify-content: center;
    line-height: 100%;
    margin: 0 auto;
    min-height: 44px;
    padding: 14px 24px;
    position: relative;
    text-align: center;
  }
  #mobile-menu.menu-active #mobile-utility #utility-nav a:focus, #mobile-menu.menu-active #mobile-utility #utility-nav a:focus-visible {
    box-shadow: none !important;
    outline: none !important;
  }
  #mobile-menu.menu-active #mobile-utility #utility-nav a::after {
    background: #FC0;
    bottom: 0;
    content: "";
    height: 10px;
    position: absolute;
    right: 0;
    width: 10px;
  }
  #mobile-menu.menu-active #mobile-utility #utility-nav a svg {
    display: none;
  }
  #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 #485252;
    background: #1A2323;
  }
  #mobile-menu.menu-active .utility-nav .links span {
    color: #000;
    padding: 0 15px;
  }
}
#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: #000;
  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;
}
section.gradient-top {
  background: linear-gradient(0deg, #000 50%, #111 100%);
}
section.gradient-bottom {
  background: linear-gradient(180deg, #000 50%, #111 100%);
}
section.gradient-top-bottom {
  background: linear-gradient(180deg, #111 0%, #000 20%, #000 80%, #111 100%);
}
@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-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;
}
section#hero.layout-fifty-fifty .form-active {
  align-items: start;
}
section#hero.single #heading-container {
  padding-right: 40px;
}
section#hero.single .grid {
  align-items: start;
}
section#hero.single-case-study {
  background: linear-gradient(180deg, #000 50%, #111 100%);
}
section#hero.layout-full-screen {
  display: flex;
}
@media screen and (max-width: 768px) {
  section#hero.layout-full-screen {
    padding-top: 200px;
  }
}
section#hero.layout-full-screen > .grid {
  position: unset;
}
section#hero.layout-full-screen > .grid .media-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
section#hero.layout-full-screen > .grid .media-container img,
section#hero.layout-full-screen > .grid .media-container video {
  object-fit: cover;
  width: 100%;
}
section#hero.layout-full-screen.original .media-container {
  width: auto;
}
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 .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 .full-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
section#hero .byline {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
}
section#hero .byline #image {
  height: 40px;
  width: 40px;
  border-radius: 100px;
  background-color: #FFF;
  overflow: hidden;
}
section#hero .byline #image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
section#hero .byline p.caption {
  color: #9D9797;
}
section#hero .post-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
section#hero .post-categories .category {
  font-size: 14px;
  line-height: 140%;
  color: #000;
  padding: 4px 10px 3px;
  background-color: #FC0;
  border-radius: 100px;
  display: flex;
}
section#hero.layout-top-flush {
  padding-top: 0;
}
section#hero.layout-top-flush .grid {
  margin-top: -220px;
}
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 .resource-container {
  align-self: end;
}
section#hero #hero-resource {
  border-radius: 14px;
  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;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  background-repeat: no-repeat;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#hero #hero-resource .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#hero #hero-resource img {
  width: 180px;
}
section#hero #hero-resource p {
  color: #9D9797;
}
section#hero #hero-resource:hover {
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 170, 170, 0.25) 0%, rgba(255, 170, 170, 0) 75%), rgba(255, 170, 170, 0.2);
  border: 1px solid #FFAAAA;
}
section#hero #hero-resource:hover .arrow {
  transform: rotate(90deg);
}
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;
}
section#hero .featured-event {
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 20px;
  border: 1px solid #43433E;
  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);
}
section#hero .featured-event .image-container {
  flex-basis: 100%;
}
section#hero .featured-event .content-container {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
section#hero .featured-event .content-container p.caption {
  margin-bottom: 10px;
}
section#hero .featured-event .content-container h4 {
  margin-bottom: 10px;
}
section#hero .featured-event .content-container #button-container {
  margin-top: 20px;
}
section#hero.news {
  background: linear-gradient(180deg, #000 50%, #111 100%);
}
@media screen and (max-width: 1024px) {
  section#hero .background-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  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#in-brief {
  background: linear-gradient(180deg, #000 50%, #111 100%);
}
section#in-brief .brief-columns {
  display: flex;
  gap: 20px;
}
section#in-brief .brief-columns .b-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-basis: 100%;
  padding: 30px;
  border-left: 1px solid #43433E;
}
section#in-brief .brief-columns .b-column h5 {
  margin-bottom: 10px;
}
section#in-brief .brief-columns .b-column .body-1 p, section#in-brief .brief-columns .b-column .body-1 li {
  color: #9D9797;
}
section#in-brief .brief-columns .b-column .body-1 li {
  list-style-position: outside;
  margin-bottom: 10px;
}
section#copy-image.stacked .content.side-by-side #heading-container, section#copy-image.stacked .content.split-header #heading-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  section#copy-image.stacked .content.side-by-side #heading-container, section#copy-image.stacked .content.split-header #heading-container {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}
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 .content-container li a {
  color: #FC0 !important;
}
section#copy-image.fifty-fifty > .grid.image-first .five.content {
  grid-column-start: 8;
}
@media screen and (max-width: 1024px) {
  section#copy-image.fifty-fifty > .grid.image-first .five.content {
    grid-column: auto/span 8;
    grid-row-start: auto;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.fifty-fifty > .grid.image-first .five.content {
    grid-column: auto/span 4;
  }
}
section#copy-image.fifty-fifty > .grid.image-first > .half.media-container {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media screen and (max-width: 1024px) {
  section#copy-image.fifty-fifty > .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.fifty-fifty > .grid.image-first > .half.media-container {
    grid-column: auto/span 4;
  }
}
section#copy-image.fifty-fifty > .grid.content-first > .half.media-container {
  grid-column-start: 7;
  grid-row-start: 1;
}
@media screen and (max-width: 1024px) {
  section#copy-image.fifty-fifty > .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.fifty-fifty > .grid.content-first > .half.media-container {
    grid-column: auto/span 4;
  }
}
section#copy-image.thirds > .grid.image-first .third.content {
  grid-column-start: 9;
  grid-row-start: 1;
}
@media screen and (max-width: 1024px) {
  section#copy-image.thirds > .grid.image-first .third.content {
    grid-column: auto/span 8;
    grid-row-start: auto;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.thirds > .grid.image-first .third.content {
    grid-column: auto/span 4;
  }
}
section#copy-image.thirds > .grid.image-first > .two-thirds.media-container {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media screen and (max-width: 1024px) {
  section#copy-image.thirds > .grid.image-first > .two-thirds.media-container {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.thirds > .grid.image-first > .two-thirds.media-container {
    grid-column: auto/span 4;
  }
}
section#copy-image #form-container {
  position: relative;
  background: #000;
  border: 1px solid #073A9E;
  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: #073A9E;
  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 #073A9E;
  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 #073A9E;
  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: #000;
  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: #000;
  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: #000;
  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#logos {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section#logos .logo-slider--static-desktop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  section#logos .logo-slider--static-desktop .logo-container {
    flex: 0 1 calc((100% - 100px) / 6);
    min-width: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#logos .logo-slider--static-desktop .logo-container {
    flex-basis: calc((100% - 40px) / 3);
  }
}
section#resources #simple-resource-card #image-container {
  text-align: right;
  margin-bottom: 30px;
}
section#resources #simple-resource-card #image-container .type-tag {
  background-color: #FC0;
  color: #000;
  font-size: 18px;
  line-height: 110%;
  font-weight: 700;
  letter-spacing: 0.54px;
  text-transform: uppercase;
  padding: 2px 10px;
}
section#resources #simple-resource-card p.caption {
  margin-bottom: 10px;
}
section#resources #simple-resource-card:hover h6 {
  color: #37F;
}
section#columns .column {
  display: flex;
  flex-direction: column;
}
section#columns .column .content-container {
  height: 100%;
}
section#columns .column .icon-container {
  margin-bottom: 20px;
}
section#columns .column .icon-container img.icon {
  width: 50px;
}
section#columns .column ul {
  margin-left: 0;
}
section#columns .column ul > li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  list-style-type: none;
  text-indent: 0;
}
section#columns .column ul > li a {
  color: #FC0 !important;
}
section#columns .column ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Crect width='16' height='16' rx='8' fill='%23FFCC00'/%3E%3Cpath d='M4.44434 7.64743L7.06503 10.2681L11.9999 5.33325' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
  left: -1px;
  position: absolute;
  top: 2px;
  display: block;
}
section#columns .column .image-container.icon {
  margin-bottom: 24px;
  max-width: 70px;
}
section#columns .column.boxed .content-container {
  border-radius: 8px;
  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;
}
section#columns .column.outlined .image-container.full {
  border: 1px solid #43433E;
  border-bottom: none;
}
section#columns .column.outlined .content-container {
  padding: 20px;
  border: 1px solid #43433E;
}
section#columns .column.outlined .content-container .icon {
  max-width: 34px;
  max-height: 34px;
}
section#columns .column.stat {
  padding-left: 40px;
}
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: 14px;
}
section#columns .column .content-container #button-container {
  margin-top: auto;
  padding-top: 20px;
}
section#columns.explore #heading-container {
  margin-bottom: 75px;
}
section#columns .boxed-column-container {
  border: 1px solid #073A9E;
  background: #000;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
}
section#columns .boxed-column-container .column {
  padding: 30px;
  flex-basis: 100%;
  border-left: 1px solid #073A9E;
}
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%;
}
@media screen and (max-width: 768px) {
  section#columns .flex-column-container {
    flex-wrap: wrap;
  }
}
@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 #073A9E;
  }
  section#columns .boxed-column-container .column:last-child {
    border-bottom: none;
  }
}
section#columns.light .column ul {
  margin-left: 0;
}
section#columns.light .column ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Crect width='16' height='16' rx='8' fill='%233377FF'/%3E%3Cpath d='M4.44434 7.64755L7.06503 10.2682L11.9999 5.33337' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
}
section#columns.light .column.outlined .content-container {
  border: 1px solid #CAC3C3;
}
section#columns.light .column.boxed .content-container {
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 75%), rgba(202, 195, 195, 0.2);
}
section.tabs-section.horizontal .top-tabs-container {
  position: relative;
}
section.tabs-section.horizontal .tabs-container {
  border-radius: 14px;
  border: 1px solid #43433E;
  padding: 10px;
}
section.tabs-section.horizontal .title-container {
  margin-bottom: 100px;
}
section.tabs-section.horizontal .title-container.text-center .eyebrow {
  margin: 0 auto 30px;
}
section.tabs-section.horizontal .title-container.text-center .button-container {
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  section.tabs-section.horizontal .title-container {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  section.tabs-section.horizontal .title-container {
    margin-bottom: 40px;
  }
}
section.tabs-section.horizontal .tab-image {
  overflow: hidden;
}
section.tabs-section.horizontal nav {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  section.tabs-section.horizontal nav {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
  }
  section.tabs-section.horizontal nav::-webkit-scrollbar {
    display: none;
  }
}
section.tabs-section.horizontal nav a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px;
  line-height: 120%;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
  color: #9D9797;
  position: relative;
  padding: 10px 20px;
  border-radius: 4px;
  background: #22221F;
  box-shadow: 0 0 0 0 rgba(248, 237, 63, 0.5);
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  section.tabs-section.horizontal nav a {
    flex: 0 0 auto;
    min-width: max-content;
    white-space: nowrap;
  }
}
section.tabs-section.horizontal nav a:hover, section.tabs-section.horizontal nav a.active {
  color: #000;
  background: #F8ED3F;
  box-shadow: 0 10px 20px 0 rgba(248, 237, 63, 0.5);
}
section.tabs-section.horizontal .tab-details .tag {
  margin-bottom: 24px;
}
section.tabs-section.horizontal .tab-details h4 {
  margin-bottom: 14px;
}
section.tabs-section.horizontal .tab-details #resource-card {
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  section.tabs-section.horizontal .faq-tabs {
    margin-bottom: 40px;
  }
}
section.tabs-section.horizontal .faq-tabs 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='M11.2426 5.24191L7 9.48455L2.75736 5.24191' stroke='%233661FF' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 14px 14px;
}
@media screen and (max-width: 1024px) {
  section.tabs-section.horizontal .tab-details {
    padding: 0;
  }
}
section.tabs-section.horizontal .tab-details {
  display: none;
  align-self: center;
  position: relative;
}
section.tabs-section.horizontal .tab-details.active {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section.tabs-section.horizontal .tab-details.active {
    flex-flow: column;
    margin-top: 40px;
  }
  section.tabs-section.horizontal .tab-details.active #resource-card #text-button {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
section.tabs-section.horizontal .tab-details #content-card {
  flex-basis: 100%;
}
section.tabs-section.horizontal .tab-details #content-card .image-container {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
section.tabs-section.horizontal .tab-details #content-card .image-container img {
  aspect-ratio: 650/380;
  display: block;
  object-fit: cover;
  transform-origin: center center;
  width: 100%;
}
section.tabs-section.horizontal .tab-details #content-card h5 {
  margin-bottom: 14px;
}
section.tabs-section.horizontal .tab-details #content-card p, section.tabs-section.horizontal .tab-details #content-card li {
  margin-bottom: 14px;
  color: #FFF;
}
section.tabs-section.horizontal .tab-details #content-card #button-container {
  margin-top: 30px;
}
section.tabs-section.horizontal .tab-details .icon {
  max-width: 40px;
  margin-bottom: 35px;
}
section.tabs-section.horizontal .tab-details ul {
  margin-left: 0;
  margin-top: 14px;
}
section.tabs-section.horizontal .tab-details ul > li {
  position: relative;
  padding-left: 19px;
  margin-bottom: 2px;
  list-style-type: none;
  text-indent: -6px;
}
section.tabs-section.horizontal .tab-details ul > li::before {
  content: "";
  height: 16px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 5px;
  display: block;
}
section.tabs-section.horizontal .tab-content {
  display: none;
}
section.tabs-section.horizontal .tab-content > * {
  flex-basis: 50%;
}
section.tabs-section.horizontal .tab-content #heading-container {
  border-radius: 8px;
  padding: 60px;
  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);
  justify-content: start;
}
section.tabs-section.horizontal .tab-content #heading-container .icon {
  max-width: 50px;
}
section.tabs-section.horizontal .tab-content.active {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  section.tabs-section.horizontal .tab-content {
    flex-flow: column;
  }
  section.tabs-section.horizontal .tab-content #heading-container {
    padding: 20px;
  }
}
section.tabs-section.horizontal .tab-image {
  position: relative;
  z-index: -1;
}
section.tabs-section.vertical nav {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section.tabs-section.vertical nav {
    align-items: center;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  section.tabs-section.vertical nav::-webkit-scrollbar {
    display: none;
  }
}
section.tabs-section.vertical nav a {
  font-size: 16px;
  display: flex;
  align-items: center;
  height: 80px;
  line-height: 120%;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
  color: #9D9797;
  position: relative;
  padding: 10px 20px;
  border-radius: 4px;
  background: #22221F;
  box-shadow: 0 0 0 0 rgba(248, 237, 63, 0.5);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  section.tabs-section.vertical nav a {
    flex: 0 0 auto;
    height: 50px;
    min-width: max-content;
    white-space: nowrap;
  }
}
section.tabs-section.vertical nav a:hover, section.tabs-section.vertical nav a.active {
  color: #000;
  background: #F8ED3F;
  box-shadow: 0 10px 20px 0 rgba(248, 237, 63, 0.5);
}
@media screen and (max-width: 768px) {
  section.tabs-section.vertical .three-quarters {
    margin-top: 30px;
  }
}
section.tabs-section.vertical .tab-content {
  display: none;
}
section.tabs-section.vertical .tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.tabs-section.vertical .tab-content #heading-container {
  flex-direction: row;
  align-items: end;
  gap: 12%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section.tabs-section.vertical .tab-content #heading-container {
    flex-wrap: wrap;
  }
}
section.tabs-section.vertical .tab-content .tab-image img {
  border-radius: 8px;
}
section.tabs-section 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='M11.2426 5.24191L7 9.48455L2.75736 5.24191' stroke='%233661FF' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  border-radius: 2px;
  border: 1px solid #000;
}
section.tabs-section .tab-image {
  display: none;
}
section.tabs-section .tab-image.active {
  display: block;
}
section#accordion #accordion-info .accordion-row {
  position: relative;
  z-index: 1;
}
section#accordion #accordion-info .accordion-row::before, section#accordion #accordion-info .accordion-row::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #43433E;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#accordion #accordion-info .accordion-row::after {
  bottom: 0;
}
section#accordion #accordion-info .accordion-row.active::before, section#accordion #accordion-info .accordion-row.active::after, section#accordion #accordion-info .accordion-row:hover::before, section#accordion #accordion-info .accordion-row:hover::after {
  z-index: 2;
  background: #F8ED3F;
}
section#accordion #accordion-info #question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 20px 0;
  transition: border 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#accordion #accordion-info #question .body-l {
  color: #FFF;
  margin-top: 20px;
}
section#accordion #accordion-info #question svg {
  height: 30px;
  width: 30px;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
section#accordion #accordion-info #question .accordion-toggle {
  height: 30px;
  width: 30px;
  position: relative;
  display: flex;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
section#accordion #accordion-info #question .accordion-toggle svg {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
section#accordion #accordion-info #question .accordion-toggle svg g path {
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center;
}
section#accordion #accordion-info #question.active .body-l, section#accordion #accordion-info #question:hover .body-l {
  color: #000;
}
section#accordion #accordion-info #question.active .accordion-toggle svg g path:last-child, section#accordion #accordion-info #question:hover .accordion-toggle svg g path:last-child {
  transform: rotate(180deg);
  transform-origin: center;
}
section#accordion #accordion-info #question.active + #answer {
  visibility: visible;
  max-height: 650px;
  padding-bottom: 20px;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.3s, margin 0.2s cubic-bezier(0.65, 0, 0.35, 1);
}
section#accordion #accordion-info #answer {
  visibility: hidden;
  max-height: 0;
  overflow: clip;
  margin-bottom: 0;
  transition: none;
}
section#accordion #accordion-info #answer .body-2 {
  padding-right: 40px;
}
section#accordion #accordion-info #answer .body-2 p, section#accordion #accordion-info #answer .body-2 ul {
  color: #9D9797;
}
section#accordion #accordion-info #answer ul {
  margin-top: 10px;
  list-style-position: outside;
}
section#quotes {
  position: relative;
}
section#quotes.single-quote .quote-container {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  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);
  gap: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
  background-repeat: no-repeat;
}
section#quotes.single-quote .quote-container:hover {
  border: 1px solid #7EC4FF;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(126, 196, 255, 0.25) 0%, rgba(126, 196, 255, 0) 75%), rgba(126, 196, 255, 0.2);
}
section#quotes.single-quote .quote-container .quote {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 50%;
  gap: 20px;
  padding: 60px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
section#quotes.single-quote .quote-container .quote #button-container {
  margin-top: 30px;
}
section#quotes.single-quote .quote-container .large-image-container {
  width: 50%;
  flex-shrink: 0;
}
section#quotes.single-quote .quote-container .large-image-container img {
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 768px) {
  section#quotes.single-quote .quote-container {
    flex-wrap: wrap;
  }
  section#quotes.single-quote .quote-container .quote, section#quotes.single-quote .quote-container .large-image-container {
    width: 100%;
    max-width: 100%;
  }
  section#quotes.single-quote .quote-container .quote {
    padding: 30px;
  }
}
section#quotes.horizontal .grid {
  align-items: center;
}
section#quotes.horizontal .quote-columns-container {
  display: flex;
}
section#quotes.horizontal .quote-columns-container .quote-column {
  flex-basis: 100%;
  padding: 30px;
  border-left: 1px solid #43433E;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
section#quotes.horizontal .quote-columns-container .quote-column:last-child {
  border-right: 1px solid #43433E;
}
@media screen and (max-width: 768px) {
  section#quotes.horizontal .quote-columns-container {
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }
  section#quotes.horizontal .quote-columns-container .quote-column {
    border-right: 1px solid #43433E;
  }
}
section#quotes.stacked .quote-column {
  flex-basis: 100%;
  padding: 30px;
  border-left: 1px solid #43433E;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
section#quotes.stacked .quote-column:last-child {
  border-right: 1px solid #43433E;
}
@media screen and (max-width: 768px) {
  section#quotes.g2 > .grid {
    row-gap: 20px;
  }
}
section#quotes.g2 .quote-card {
  border-radius: 8px;
  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: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
  background-repeat: no-repeat;
}
section#quotes.g2 .quote-card .quote-image {
  margin-bottom: 10px;
}
section#quotes.g2 .quote-card:hover {
  border: 1px solid #FC0;
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 204, 0, 0.25) 0%, rgba(255, 204, 0, 0) 75%), rgba(255, 204, 0, 0.2);
}
section#careers .title-container {
  margin-bottom: 60px;
}
section#careers .job-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #073A9E;
  background-color: #000;
  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: #43433E;
}
section#stats {
  position: relative;
  overflow: hidden;
}
section#stats .intro-title {
  position: relative;
  padding: 60px;
}
section#stats .intro-title::after {
  content: "";
  height: 100%;
  width: calc(100% - 160px);
  left: 80px;
  border: 1px solid #43433E;
  border-bottom: none;
  position: absolute;
}
@media screen and (max-width: 768px) {
  section#stats .intro-title::after {
    display: none;
  }
}
section#stats .intro-title .title-container {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
section#stats .intro-title .title-container #subheading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  section#stats .intro-title {
    padding: 30px 20px;
    border: 1px solid #43433E;
    margin: 0 40px;
    width: calc(100% - 81px);
  }
}
section#stats .stat-flex-container {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
section#stats .stat-flex-container::after {
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #43433E;
  position: absolute;
}
@media screen and (max-width: 768px) {
  section#stats .stat-flex-container::after {
    display: none;
  }
}
section#stats .stat-flex-container > * {
  flex-basis: 100%;
}
section#stats .stat-flex-container .stat-block {
  padding: 60px 30px;
  text-align: center;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
section#stats .stat-flex-container .stat-block:not(:first-child) {
  border-left: 1px solid #43433E;
}
@media screen and (max-width: 768px) {
  section#stats .stat-flex-container .stat-block {
    padding: 30px 20px;
    border: 1px solid #43433E;
    border-top: none;
  }
  section#stats .stat-flex-container .stat-block .body-l {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  section#stats .stat-flex-container {
    flex-wrap: wrap;
  }
}
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 {
  grid-column: 1/span 3;
  grid-row: 1/-1;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  section#team .title-container {
    grid-column: 1/span 8;
  }
}
@media screen and (max-width: 768px) {
  section#team .title-container {
    grid-column: 1/span 4;
  }
}
@media screen and (min-width: 1024px) {
  section#team .column:nth-of-type(3n + 2) {
    grid-column-start: 4;
  }
}
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.background-cta {
  padding-top: 0;
  aspect-ratio: 1400/900;
}
@media screen and (max-width: 768px) {
  section#cta.background-cta {
    aspect-ratio: 7/20;
  }
}
section#cta.background-cta .grid {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
section#cta.background-cta #background-container {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  margin: 20px;
  border: 1px solid #43433E;
}
section#cta.background-cta #background-container img {
  width: 100%;
  margin: 0 auto;
}
section#cta.midpage {
  padding-top: 20px;
  padding-bottom: 20px;
}
section#cta.midpage .midpage-container {
  display: flex;
  gap: 30px;
  border: 1px solid #43433E;
  background: #22221F;
  padding: 20px 40px 20px 20px;
}
section#cta.midpage .midpage-container .image-container {
  width: 100%;
  max-width: 50%;
}
section#cta.midpage .midpage-container > .content-container {
  width: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section#cta.midpage .midpage-container {
    flex-flow: column;
  }
  section#cta.midpage .midpage-container .image-container, section#cta.midpage .midpage-container .content-container {
    max-width: 100%;
  }
}
section#cta.simple .simple-container {
  padding: 100px 60px;
  border-radius: 14px;
  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);
  position: relative;
}
section#cta.simple .simple-container #heading-container .content-container {
  align-items: center;
  width: 100%;
}
section#cta.simple .simple-container #heading-container #button-container {
  margin: 50px auto 0;
}
section#cta.simple .simple-container .simple-cta-icon {
  position: absolute;
  left: 60px;
  top: -70px;
}
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;
}
@media screen and (max-width: 768px) {
  section#content-repeater .grid.content-row .content-container.content-first {
    padding-right: 0;
  }
}
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 .content-container.media-first {
    padding-left: 0;
  }
}
@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: #000;
  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;
}
@media screen and (max-width: 768px) {
  section.in-scroll-grid#copy-image .content-first #heading-container {
    padding-left: 0;
  }
}
section#main-content #body-copy p a {
  color: #37F;
}
section#main-content #body-copy p a::before {
  background-color: #37F;
}
section#steps .side-steps-container .step-content {
  padding: 20px 0;
  border-top: 1px solid #43433E;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#steps .side-steps-container .step-content span.eyebrow {
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
section#steps .side-steps-container .step-content h4 {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
section#steps .side-steps-container .step-content .step-extra-content {
  display: none;
  margin-top: 10px;
}
section#steps .side-steps-container .step-content.active {
  border-color: #FC0;
}
section#steps .side-steps-container .step-content.active h4 {
  color: #FC0;
}
section#steps .side-steps-container .step-content.active .step-extra-content {
  display: block;
}
section#steps .side-steps-container .step-content:hover {
  border-color: #FC0;
}
section#steps .side-steps-container .step-content:hover h4 {
  color: #FC0;
}
section#steps .side-steps-container .step-image {
  display: none;
}
section#steps .side-steps-container .step-image.active {
  display: block;
}
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 #000;
  background: #FFF;
  font-size: 18px;
  color: #000;
}
section#search-results #search-container form input::placeholder {
  font-size: 18px;
  color: #000;
}
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: #000;
}
section#search-results #search-card h6 a:hover {
  color: #073A9E;
}
section#search-results #search-card .permalink {
  color: #073A9E;
  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: #073A9E;
}
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: #073A9E;
}
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: #073A9E;
}
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: #000;
  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: #073A9E;
  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: #073A9E;
}
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: #000;
}
@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;
  background: var(--Gray-BG-Gradient-Bottom, linear-gradient(180deg, #000 50%, #111 100%));
}
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: 40px;
}
section#featured .secondary-featured #resource-card {
  display: flex;
  gap: 20px;
}
section#featured .secondary-featured #resource-card h4 {
  text-transform: none;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 140%;
}
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: #43433E;
  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#accordion #answer .body-l p, section#accordion #answer .body-l li {
  font-size: 20px !important;
  color: #FFF !important;
  line-height: 140% !important;
}
section#accordion #answer .body-l p span, section#accordion #answer .body-l li span {
  font-size: 20px !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: #000;
  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: #F8ED3F;
}
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 #073A9E;
  background-color: #073A9E;
  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: #F00;
}
section#subscribe.secondary #subscribe {
  background: #000;
}
section#disclaimer #disclaimer {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
  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: 60px;
  background: #000;
  border-radius: 14px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s all;
  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: #F8ED3F !important;
  margin-bottom: 20px !important;
  font-family: "transducer-condensed", sans-serif;
  text-transform: uppercase !important;
}
section #body-cta-container h3 {
  font-size: 50px !important;
  line-height: 110% !important;
}
@media screen and (max-width: 768px) {
  section #body-cta-container h3 {
    font-size: 40px !important;
  }
}
section #body-cta-container p.lead {
  color: #FFF !important;
}
section #body-cta-container a#button {
  color: #000 !important;
  background-color: #FFF !important;
}
section #body-cta-container a#button::before {
  background-color: #FC0 !important;
}
section #body-cta-container a#button:hover {
  background-color: #FC0 !important;
}
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: #F8ED3F;
}
section #resource-card h2, section #resource-card h3, section #resource-card h4, section #resource-card h5, section #resource-card h6 {
  margin-bottom: 10px;
  transition: 0.2s all cubic-bezier(0.25, 1, 0.5, 1);
}
section #resource-card p.body-2 {
  color: #9D9797;
}
section #resource-card #image-container {
  margin-bottom: 20px;
  overflow: hidden;
}
section #resource-card #image-container img {
  aspect-ratio: 413/256;
  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 span.caption {
  margin-bottom: 10px;
}
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: #F8ED3F;
}
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: #000;
}
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;
  gap: 20px;
}
section #pagination .page-numbers {
  font-size: 14px;
  line-height: 140%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 50px;
  border-radius: 4px;
  box-sizing: border-box;
  color: #FFF;
  position: relative;
  padding-bottom: 16px;
}
section #pagination .page-numbers.current {
  color: #F8ED3F;
}
section #pagination .page-numbers:hover {
  opacity: 1;
}
section #pagination .page-numbers.next, section #pagination .page-numbers.prev {
  margin: 0 20px;
}
section #pagination .page-numbers.next svg.prev-button, section #pagination .page-numbers.prev svg.prev-button {
  transform: rotate(180deg);
}
section #pagination .page-numbers.next svg rect, section #pagination .page-numbers.prev svg rect {
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
  fill: #43433E;
}
section #pagination .page-numbers.next:hover svg rect, section #pagination .page-numbers.prev:hover svg rect {
  fill: #FC0;
}
section #pagination .page-numbers:not(.prev, .next):hover {
  color: #F8ED3F;
}
section main.blog {
  display: flex;
  flex-direction: column;
}
section main.blog .post-tags {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 6px;
}
section main br {
  display: none;
}
section main:not(#body-copy) p a {
  position: relative;
  text-decoration: none;
  transition: 0.3s all cubic-bezier(0.25, 1, 0.5, 1);
  color: #37F;
}
section main:not(#body-copy) 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: #37F;
}
section main:not(#body-copy) p a:hover {
  color: #F8ED3F;
}
section main:not(#body-copy) p a:hover::before {
  background-color: #F8ED3F;
}
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 .icon {
  margin-bottom: 20px;
}
section #heading-container .eyebrow {
  margin-bottom: 30px;
}
section #heading-container .eyebrow.primary {
  color: #FC0;
}
section #heading-container .eyebrow.secondary {
  color: #FFAAAA;
}
section #heading-container .eyebrow p {
  font-weight: 500;
  font-size: 18px;
}
section #heading-container h1, section #heading-container h2 {
  margin-bottom: 30px;
}
section #heading-container h1:last-child, section #heading-container h2:last-child {
  margin-bottom: 0;
}
section #heading-container h3, section #heading-container h4, section #heading-container h5, section #heading-container h6 {
  margin-bottom: 20px;
}
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-m,
section #heading-container .body-l {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section #heading-container .lead:last-child,
section #heading-container .body-m:last-child,
section #heading-container .body-l:last-child {
  margin-bottom: 0;
}
section #heading-container .lead ul,
section #heading-container .body-m ul,
section #heading-container .body-l ul {
  margin-bottom: 0;
}
section #heading-container .lead ul:last-child,
section #heading-container .body-m ul:last-child,
section #heading-container .body-l ul:last-child {
  margin-bottom: 0;
}
section #heading-container .lead ul:last-child li:last-child,
section #heading-container .body-m ul:last-child li:last-child,
section #heading-container .body-l ul:last-child li:last-child {
  margin-bottom: 0;
}
section #heading-container .body-s {
  margin-top: 20px;
  margin-bottom: 0;
}
section #heading-container .body-s ul {
  margin-bottom: 0;
}
section #heading-container .body-s ul:last-child {
  margin-bottom: 0;
}
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: 23px;
  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='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Crect width='16' height='16' rx='8' fill='%23FFCC00'/%3E%3Cpath d='M4.44434 7.64743L7.06503 10.2681L11.9999 5.33325' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
  left: -1px;
  position: absolute;
  top: 2px;
  display: block;
}
section #heading-container #button-container {
  margin-top: 40px;
}
section #heading-container .copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
section #heading-container #excellence-images {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
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 .content-container.split-header #heading-container {
  flex-direction: row;
  gap: 60px;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  section .content-container.split-header #heading-container {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}
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.eyebrow {
  gap: 5px;
  margin-bottom: 20px;
  align-items: center;
  color: #FC0;
}
section span.eyebrow img {
  height: 18px;
}
section span.eyebrow p {
  font-weight: 600;
  font-size: 14px;
}
section span.tag-container {
  display: flex;
  gap: 10px;
  align-items: center;
}
section .text-center .eyebrow {
  text-align: center;
  margin: 0 auto 15px;
  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: 60px;
}
section .filter-bar .filter-buttons {
  display: flex;
  gap: 9px;
  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: 46px;
  box-sizing: border-box;
  display: inline-block;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  padding: 10px 12px 10px 40px;
  margin-bottom: 0;
  border: 1.5px solid #43433E;
  color: #FFF;
  font-size: 14px;
}
section form.blog-search-form input[type=search]::placeholder {
  color: #FFF;
  opacity: 1;
  font-style: normal;
  font-size: 14px;
  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%3Cmask id='mask0_314_24296' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_314_24296)'%3E%3Cpath d='M16.3333 17.5L11.0833 12.25C10.6667 12.5833 10.1875 12.8472 9.64583 13.0417C9.10417 13.2361 8.52778 13.3333 7.91667 13.3333C6.40278 13.3333 5.12153 12.809 4.07292 11.7604C3.02431 10.7118 2.5 9.43056 2.5 7.91667C2.5 6.40278 3.02431 5.12153 4.07292 4.07292C5.12153 3.02431 6.40278 2.5 7.91667 2.5C9.43056 2.5 10.7118 3.02431 11.7604 4.07292C12.809 5.12153 13.3333 6.40278 13.3333 7.91667C13.3333 8.52778 13.2361 9.10417 13.0417 9.64583C12.8472 10.1875 12.5833 10.6667 12.25 11.0833L17.5 16.3333L16.3333 17.5ZM7.91667 11.6667C8.95833 11.6667 9.84375 11.3021 10.5729 10.5729C11.3021 9.84375 11.6667 8.95833 11.6667 7.91667C11.6667 6.875 11.3021 5.98958 10.5729 5.26042C9.84375 4.53125 8.95833 4.16667 7.91667 4.16667C6.875 4.16667 5.98958 4.53125 5.26042 5.26042C4.53125 5.98958 4.16667 6.875 4.16667 7.91667C4.16667 8.95833 4.53125 9.84375 5.26042 10.5729C5.98958 11.3021 6.875 11.6667 7.91667 11.6667Z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 14px;
  left: 12px;
}
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: #000;
  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 h2, section #body-copy .h2 {
  font-size: 34px;
  line-height: 120%;
  margin-bottom: 30px;
  text-transform: none;
}
section #body-copy h3, section #body-copy .h3 {
  font-size: 28px;
  line-height: 130%;
  margin-bottom: 30px;
  text-transform: none;
}
section #body-copy h4, section #body-copy .h4 {
  font-size: 26px;
  line-height: 140%;
  margin-bottom: 30px;
  text-transform: none;
}
section #body-copy h5, section #body-copy .h5 {
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 30px;
  text-transform: none;
}
section #body-copy h6, section #body-copy .h6 {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 30px;
  text-transform: none;
}
section #body-copy h2:not(:first-child), section #body-copy h3:not(:first-child), section #body-copy h4:not(:first-child), section #body-copy h5:not(:first-child), section #body-copy h6:not(:first-child) {
  margin-top: 30px;
}
section #body-copy ul {
  margin-top: 20px;
}
section #body-copy ul > li {
  position: relative;
  margin-bottom: 6px;
  list-style-position: outside;
  text-indent: 0;
}
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;
}
section#archive .search-container, section#blog-archive .search-container {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
}
section#archive .search-container form, section#blog-archive .search-container form {
  width: 100%;
}
@media screen and (max-width: 768px) {
  section#archive .search-container, section#blog-archive .search-container {
    margin-top: 20px;
  }
}
section #comic-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid #43433E;
  background: #111;
}
section #comic-card .icon {
  width: 50px;
}
section #comic-card #comic-card-content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
section #comic-card #comic-card-content-block #heading-container .content-container {
  display: flex;
  flex-flow: column;
  gap: 30px;
}
section #comic-card #comic-card-content-block #heading-container .content-container h1, section #comic-card #comic-card-content-block #heading-container .content-container h2, section #comic-card #comic-card-content-block #heading-container .content-container h3, section #comic-card #comic-card-content-block #heading-container .content-container h4, section #comic-card #comic-card-content-block #heading-container .content-container h5, section #comic-card #comic-card-content-block #heading-container .content-container h6 {
  margin-bottom: 0;
}
section #comic-card #comic-card-content-block #heading-container .content-container .eyebrow {
  margin-bottom: 0;
  width: max-content;
}
section #comic-card #comic-card-content-block #media-container {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  section #comic-card {
    padding: 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: #000 !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;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
section #body-copy p:last-child {
  margin-bottom: 0;
}
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: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  overflow: hidden;
  border-left: 1px solid #CAC3C3;
}
section #body-copy blockquote p {
  position: relative;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
section #body-copy blockquote cite {
  font-size: 14px;
  line-height: 160%;
  position: relative;
  z-index: 3;
  color: #000 !important;
  text-decoration: none !important;
  font-style: normal !important;
}
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 #073A9E;
  border-bottom: 1px solid #073A9E;
  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: #F8ED3F;
  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 #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: #22221F;
  border: 1px solid #43433E;
  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: #F00;
  line-height: 50%;
}
section #form-container form .mktoError {
  left: 0;
}
section #form-container form fieldset {
  max-width: none;
}
section #form-container form label {
  color: #9D9797;
  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 #CAC3C3;
  background-color: #FFF;
  font-size: 14px;
  line-height: 150%;
  color: #000;
  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: #000;
  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 #CAC3C3;
  background-color: transparent;
  font-size: 14px;
  line-height: 150%;
  color: #000;
  width: 100%;
}
section #form-container form textarea::placeholder {
  font-size: 14px;
  line-height: 150%;
  color: #000;
  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: #000;
  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: #000;
  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%;
  border-left: 1px solid #073A9E;
  padding-left: 20px;
}
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: #073A9E;
}
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: #000;
}
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: #000 !important;
  color: #FFF !important;
  font-size: 16px !important;
  display: flex;
  justify-content: center;
}
section aside #newsletter input[type=submit]:hover {
  background: #FFF !important;
  color: #000 !important;
}
section aside #form-container {
  border: 1px solid #073A9E;
  background: #000;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}
section aside #form-container #button-container #button {
  width: 100%;
  background: #000;
  color: #FFF;
  border: 2px solid #000;
  transition: all 0.2s ease-in-out;
}
section aside #form-container #button-container #button:hover {
  color: #000;
  background: #FFF;
}
section aside #form-container h5 {
  margin-bottom: 24px;
  color: #000;
}
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: #073A9E;
  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 #073A9E;
  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 #073A9E;
  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: #000;
  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: #000;
  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: #000 !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: #000;
  font-weight: 600;
}
section aside ol.toc li a.active {
  color: #000;
  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 #000;
  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.text-center {
  align-items: center;
}
section .text-center #heading-container #button-container {
  justify-content: center;
}
section.light {
  background-color: #FFF;
}
section.gray {
  background-color: #F5F5F5;
}
section.light #heading-container .content-container span.eyebrow, section.gray #heading-container .content-container span.eyebrow {
  color: #37F;
  border-color: #E8E5E5;
}
section.light #heading-container .content-container .h1, section.light #heading-container .content-container .h2, section.light #heading-container .content-container .h3, section.light #heading-container .content-container .h4, section.light #heading-container .content-container .h5, section.light #heading-container .content-container .h6, section.gray #heading-container .content-container .h1, section.gray #heading-container .content-container .h2, section.gray #heading-container .content-container .h3, section.gray #heading-container .content-container .h4, section.gray #heading-container .content-container .h5, section.gray #heading-container .content-container .h6 {
  color: #000;
}
section.light #heading-container .content-container .h1 span, section.light #heading-container .content-container .h2 span, section.light #heading-container .content-container .h3 span, section.light #heading-container .content-container .h4 span, section.light #heading-container .content-container .h5 span, section.light #heading-container .content-container .h6 span, section.gray #heading-container .content-container .h1 span, section.gray #heading-container .content-container .h2 span, section.gray #heading-container .content-container .h3 span, section.gray #heading-container .content-container .h4 span, section.gray #heading-container .content-container .h5 span, section.gray #heading-container .content-container .h6 span {
  color: #37F;
}
section.light #heading-container .content-container .lead p, section.light #heading-container .content-container .lead li,
section.light #heading-container .content-container .body-s p,
section.light #heading-container .content-container .body-s li, section.gray #heading-container .content-container .lead p, section.gray #heading-container .content-container .lead li,
section.gray #heading-container .content-container .body-s p,
section.gray #heading-container .content-container .body-s li {
  color: #000;
}
section.light #heading-container .content-container .body-l p, section.light #heading-container .content-container .body-l li,
section.light #heading-container .content-container .body-m p,
section.light #heading-container .content-container .body-m li, section.gray #heading-container .content-container .body-l p, section.gray #heading-container .content-container .body-l li,
section.gray #heading-container .content-container .body-m p,
section.gray #heading-container .content-container .body-m li {
  color: #43433E;
}
section.light #heading-container .content-container ul > li::before, section.gray #heading-container .content-container ul > li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Crect width='16' height='16' rx='8' fill='%233377FF'/%3E%3Cpath d='M4.44434 7.64755L7.06503 10.2682L11.9999 5.33337' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E");
}
section.light a#button,
section.light a.button,
section.light button#button,
section.light div#button,
section.light input.button,
section.light input.hs-button, section.gray a#button,
section.gray a.button,
section.gray button#button,
section.gray div#button,
section.gray input.button,
section.gray input.hs-button {
  color: #FFF;
  background-color: #000;
}
section.light a#button::before,
section.light a.button::before,
section.light button#button::before,
section.light div#button::before,
section.light input.button::before,
section.light input.hs-button::before, section.gray a#button::before,
section.gray a.button::before,
section.gray button#button::before,
section.gray div#button::before,
section.gray input.button::before,
section.gray input.hs-button::before {
  background-color: #F00;
}
section.light a#button:hover,
section.light a.button:hover,
section.light button#button:hover,
section.light div#button:hover,
section.light input.button:hover,
section.light input.hs-button:hover, section.gray a#button:hover,
section.gray a.button:hover,
section.gray button#button:hover,
section.gray div#button:hover,
section.gray input.button:hover,
section.gray input.hs-button:hover {
  background-color: #F00;
}
section.light a#button.secondary,
section.light a.button.secondary,
section.light button#button.secondary,
section.light div#button.secondary,
section.light input.button.secondary,
section.light input.hs-button.secondary, section.gray a#button.secondary,
section.gray a.button.secondary,
section.gray button#button.secondary,
section.gray div#button.secondary,
section.gray input.button.secondary,
section.gray input.hs-button.secondary {
  color: #000;
  background-color: #FFF;
  border: 1px solid #000;
}
section.light a#button.secondary::before,
section.light a.button.secondary::before,
section.light button#button.secondary::before,
section.light div#button.secondary::before,
section.light input.button.secondary::before,
section.light input.hs-button.secondary::before, section.gray a#button.secondary::before,
section.gray a.button.secondary::before,
section.gray button#button.secondary::before,
section.gray div#button.secondary::before,
section.gray input.button.secondary::before,
section.gray input.hs-button.secondary::before {
  background-color: #22221F;
}
section.light a#button.secondary:hover,
section.light a.button.secondary:hover,
section.light button#button.secondary:hover,
section.light div#button.secondary:hover,
section.light input.button.secondary:hover,
section.light input.hs-button.secondary:hover, section.gray a#button.secondary:hover,
section.gray a.button.secondary:hover,
section.gray button#button.secondary:hover,
section.gray div#button.secondary:hover,
section.gray input.button.secondary:hover,
section.gray input.hs-button.secondary:hover {
  background: #F2F2F2;
}
section.light a#button.filter-button,
section.light a.button.filter-button,
section.light button#button.filter-button,
section.light div#button.filter-button,
section.light input.button.filter-button,
section.light input.hs-button.filter-button, section.gray a#button.filter-button,
section.gray a.button.filter-button,
section.gray button#button.filter-button,
section.gray div#button.filter-button,
section.gray input.button.filter-button,
section.gray input.hs-button.filter-button {
  height: 42px;
}
@media screen and (max-width: 1024px) {
  section.light a#button,
  section.light a.button,
  section.light button#button,
  section.light div#button,
  section.light input.button,
  section.light input.hs-button, section.gray a#button,
  section.gray a.button,
  section.gray button#button,
  section.gray div#button,
  section.gray input.button,
  section.gray input.hs-button {
    padding: 0 20px;
    height: 40px;
    font-size: 14px;
  }
}
section.light .h1, section.light .h2, section.light .h3, section.light .h4, section.light .h5, section.light .h6, section.gray .h1, section.gray .h2, section.gray .h3, section.gray .h4, section.gray .h5, section.gray .h6 {
  color: #000;
}
section.light .h1 span, section.light .h2 span, section.light .h3 span, section.light .h4 span, section.light .h5 span, section.light .h6 span, section.gray .h1 span, section.gray .h2 span, section.gray .h3 span, section.gray .h4 span, section.gray .h5 span, section.gray .h6 span {
  color: #37F;
}
section.light h1, section.light h2, section.light h3, section.light h4, section.light h5, section.light h6, section.gray h1, section.gray h2, section.gray h3, section.gray h4, section.gray h5, section.gray h6 {
  color: #000;
}
section.light h1 span, section.light h2 span, section.light h3 span, section.light h4 span, section.light h5 span, section.light h6 span, section.gray h1 span, section.gray h2 span, section.gray h3 span, section.gray h4 span, section.gray h5 span, section.gray h6 span {
  color: #37F;
}
section.light p, section.light li, section.gray p, section.gray li {
  color: #000;
}
section.light p a, section.light li a, section.gray p a, section.gray li a {
  color: #37F;
}
section.light div#text-button,
section.light a#text-button,
section.light a.text-button, section.gray div#text-button,
section.gray a#text-button,
section.gray a.text-button {
  color: #000;
}
section.light div#text-button svg path:first-child,
section.light a#text-button svg path:first-child,
section.light a.text-button svg path:first-child, section.gray div#text-button svg path:first-child,
section.gray a#text-button svg path:first-child,
section.gray a.text-button svg path:first-child {
  stroke: #000;
}
section.light div#text-button svg path:last-child,
section.light a#text-button svg path:last-child,
section.light a.text-button svg path:last-child, section.gray div#text-button svg path:last-child,
section.gray a#text-button svg path:last-child,
section.gray a.text-button svg path:last-child {
  stroke: #000;
}
section.light div#text-button:hover,
section.light a#text-button:hover,
section.light a.text-button:hover, section.gray div#text-button:hover,
section.gray a#text-button:hover,
section.gray a.text-button:hover {
  color: #940000;
}
section.light div#text-button:hover svg path:first-child,
section.light a#text-button:hover svg path:first-child,
section.light a.text-button:hover svg path:first-child, section.gray div#text-button:hover svg path:first-child,
section.gray a#text-button:hover svg path:first-child,
section.gray a.text-button:hover svg path:first-child {
  stroke: #940000;
}
section.light div#text-button:hover svg path:last-child,
section.light a#text-button:hover svg path:last-child,
section.light a.text-button:hover svg path:last-child, section.gray div#text-button:hover svg path:last-child,
section.gray a#text-button:hover svg path:last-child,
section.gray a.text-button:hover svg path:last-child {
  stroke: #940000;
}
section.light #body-copy .h1, section.light #body-copy .h2, section.light #body-copy .h3, section.light #body-copy .h4, section.light #body-copy .h5, section.light #body-copy .h6, section.gray #body-copy .h1, section.gray #body-copy .h2, section.gray #body-copy .h3, section.gray #body-copy .h4, section.gray #body-copy .h5, section.gray #body-copy .h6 {
  color: #000;
}
section.light #body-copy .h1 a, section.light #body-copy .h2 a, section.light #body-copy .h3 a, section.light #body-copy .h4 a, section.light #body-copy .h5 a, section.light #body-copy .h6 a, section.gray #body-copy .h1 a, section.gray #body-copy .h2 a, section.gray #body-copy .h3 a, section.gray #body-copy .h4 a, section.gray #body-copy .h5 a, section.gray #body-copy .h6 a {
  color: #37F;
}
section.light #body-copy .h1 span, section.light #body-copy .h2 span, section.light #body-copy .h3 span, section.light #body-copy .h4 span, section.light #body-copy .h5 span, section.light #body-copy .h6 span, section.gray #body-copy .h1 span, section.gray #body-copy .h2 span, section.gray #body-copy .h3 span, section.gray #body-copy .h4 span, section.gray #body-copy .h5 span, section.gray #body-copy .h6 span {
  color: #37F;
}
section.light #body-copy h1, section.light #body-copy h2, section.light #body-copy h3, section.light #body-copy h4, section.light #body-copy h5, section.light #body-copy h6, section.gray #body-copy h1, section.gray #body-copy h2, section.gray #body-copy h3, section.gray #body-copy h4, section.gray #body-copy h5, section.gray #body-copy h6 {
  color: #000;
}
section.light #body-copy h1 a, section.light #body-copy h2 a, section.light #body-copy h3 a, section.light #body-copy h4 a, section.light #body-copy h5 a, section.light #body-copy h6 a, section.gray #body-copy h1 a, section.gray #body-copy h2 a, section.gray #body-copy h3 a, section.gray #body-copy h4 a, section.gray #body-copy h5 a, section.gray #body-copy h6 a {
  color: #37F;
}
section.light #body-copy h1 span, section.light #body-copy h2 span, section.light #body-copy h3 span, section.light #body-copy h4 span, section.light #body-copy h5 span, section.light #body-copy h6 span, section.gray #body-copy h1 span, section.gray #body-copy h2 span, section.gray #body-copy h3 span, section.gray #body-copy h4 span, section.gray #body-copy h5 span, section.gray #body-copy h6 span {
  color: #37F;
}
section.light #body-copy p, section.light #body-copy li, section.gray #body-copy p, section.gray #body-copy li {
  color: #000;
}
section.light#stats .intro-title::after, section.gray#stats .intro-title::after {
  border: 1px solid #CAC3C3;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  section.light#stats .intro-title, section.gray#stats .intro-title {
    border-color: #CAC3C3;
  }
}
section.light#stats .stat-flex-container::after, section.gray#stats .stat-flex-container::after {
  border: 1px solid #CAC3C3;
}
section.light#stats .stat-flex-container .stat-block:not(:first-child), section.gray#stats .stat-flex-container .stat-block:not(:first-child) {
  border-left: 1px solid #CAC3C3;
}
@media screen and (max-width: 768px) {
  section.light#stats .stat-flex-container .stat-block, section.gray#stats .stat-flex-container .stat-block {
    border-color: #CAC3C3;
  }
}
section.light.tabs-section.horizontal nav a, section.gray.tabs-section.horizontal nav a {
  color: #43433E;
  background: #F2F2F2;
  box-shadow: 0 0 0 0 rgba(51, 119, 255, 0.5);
}
section.light.tabs-section.horizontal nav a:hover, section.light.tabs-section.horizontal nav a.active, section.gray.tabs-section.horizontal nav a:hover, section.gray.tabs-section.horizontal nav a.active {
  color: #FFF;
  background: #37F;
  box-shadow: 0 10px 20px 0 rgba(51, 119, 255, 0.5);
}
section.light.tabs-section.horizontal .faq-tabs select, section.gray.tabs-section.horizontal .faq-tabs 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='M11.2426 5.24191L7 9.48455L2.75736 5.24191' stroke='%233661FF' stroke-width='2'/%3E%3C/svg%3E");
}
section.light.tabs-section.horizontal .tab-details, section.gray.tabs-section.horizontal .tab-details {
  display: none;
  align-self: center;
  position: relative;
}
section.light.tabs-section.horizontal .tab-details.active, section.gray.tabs-section.horizontal .tab-details.active {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section.light.tabs-section.horizontal .tab-details.active, section.gray.tabs-section.horizontal .tab-details.active {
    flex-flow: column;
    margin-top: 40px;
  }
  section.light.tabs-section.horizontal .tab-details.active #resource-card #text-button, section.gray.tabs-section.horizontal .tab-details.active #resource-card #text-button {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
section.light.tabs-section.horizontal .tab-details #content-card, section.gray.tabs-section.horizontal .tab-details #content-card {
  flex-basis: 100%;
}
section.light.tabs-section.horizontal .tab-details #content-card .image-container, section.gray.tabs-section.horizontal .tab-details #content-card .image-container {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
section.light.tabs-section.horizontal .tab-details #content-card .image-container img, section.gray.tabs-section.horizontal .tab-details #content-card .image-container img {
  aspect-ratio: 650/380;
  display: block;
  object-fit: cover;
  transform-origin: center center;
  width: 100%;
}
section.light.tabs-section.horizontal .tab-details #content-card h5, section.gray.tabs-section.horizontal .tab-details #content-card h5 {
  margin-bottom: 14px;
}
section.light.tabs-section.horizontal .tab-details #content-card p, section.light.tabs-section.horizontal .tab-details #content-card li, section.gray.tabs-section.horizontal .tab-details #content-card p, section.gray.tabs-section.horizontal .tab-details #content-card li {
  margin-bottom: 14px;
  color: #FFF;
}
section.light.tabs-section.horizontal .tab-details #content-card #button-container, section.gray.tabs-section.horizontal .tab-details #content-card #button-container {
  margin-top: 30px;
}
section.light.tabs-section.horizontal .tab-details .icon, section.gray.tabs-section.horizontal .tab-details .icon {
  max-width: 40px;
  margin-bottom: 35px;
}
section.light.tabs-section.horizontal .tab-details ul, section.gray.tabs-section.horizontal .tab-details ul {
  margin-left: 0;
  margin-top: 14px;
}
section.light.tabs-section.horizontal .tab-details ul > li, section.gray.tabs-section.horizontal .tab-details ul > li {
  position: relative;
  padding-left: 19px;
  margin-bottom: 2px;
  list-style-type: none;
  text-indent: -6px;
}
section.light.tabs-section.horizontal .tab-details ul > li::before, section.gray.tabs-section.horizontal .tab-details ul > li::before {
  content: "";
  height: 16px;
  width: 2px;
  left: 0;
  position: absolute;
  top: 5px;
  display: block;
}
section.light.tabs-section.horizontal .tab-content #heading-container, section.gray.tabs-section.horizontal .tab-content #heading-container {
  background: radial-gradient(100.1% 100.1% at 0% 0%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 75%), rgba(202, 195, 195, 0.25);
}
section.light.tabs-section.vertical nav a, section.gray.tabs-section.vertical nav a {
  color: #43433E;
  background: #F2F2F2;
  box-shadow: 0 0 0 0 rgba(51, 119, 255, 0.5);
}
section.light.tabs-section.vertical nav a:hover, section.light.tabs-section.vertical nav a.active, section.gray.tabs-section.vertical nav a:hover, section.gray.tabs-section.vertical nav a.active {
  color: #FFF;
  background: #37F;
  box-shadow: 0 10px 20px 0 rgba(51, 119, 255, 0.5);
}
section.light.tabs-section select, section.gray.tabs-section 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='M11.2426 5.24191L7 9.48455L2.75736 5.24191' stroke='%233661FF' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  border-radius: 2px;
  border: 1px solid #000;
}
section.light.midpage .midpage-container, section.gray.midpage .midpage-container {
  border: 1px solid #CAC3C3 !important;
  background: #F2F2F2 !important;
}
section.light#accordion #accordion-info .accordion-row::before, section.light#accordion #accordion-info .accordion-row::after, section.gray#accordion #accordion-info .accordion-row::before, section.gray#accordion #accordion-info .accordion-row::after {
  background: #CAC3C3;
}
section.light#accordion #accordion-info .accordion-row.active::before, section.light#accordion #accordion-info .accordion-row.active::after, section.light#accordion #accordion-info .accordion-row:hover::before, section.light#accordion #accordion-info .accordion-row:hover::after, section.gray#accordion #accordion-info .accordion-row.active::before, section.gray#accordion #accordion-info .accordion-row.active::after, section.gray#accordion #accordion-info .accordion-row:hover::before, section.gray#accordion #accordion-info .accordion-row:hover::after {
  background: #37F;
}
section.light#accordion #accordion-info #answer .body-2 p, section.gray#accordion #accordion-info #answer .body-2 p {
  color: #43433E;
}
section.light span.eyebrow, section.gray span.eyebrow {
  color: #37F;
}

#banners {
  width: 100%;
  overflow: hidden;
}
#banners .marquee {
  width: 100%;
  overflow: hidden;
}
#banners .marquee p {
  color: #000;
}
#banners .marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
#banners .marquee__group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  flex-shrink: 0;
}
#banners .marquee p {
  margin: 0;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#banners.skinny {
  padding: 20px 0;
  text-align: center;
}
#banners.skinny p {
  margin: 0;
  white-space: nowrap;
}
#banners.skinny.red {
  background-color: #F00;
}
#banners.skinny.blue {
  background-color: #37F;
}
#banners.warped {
  display: flex;
  padding: 20px 0;
  background: #000;
}
#banners.warped video {
  max-width: 100%;
}

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

.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: #43433E;
}

.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;
}

html.is-safari header.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
html.is-safari .scroll-grid {
  display: none;
}

/* optional: little glow */
.page-template-case-studies #blog-archive .grid {
  column-gap: 40px;
}

.page-template-basic #body .content h1, .page-template-basic #body .content h2, .page-template-basic #body .content h3, .page-template-basic #body .content h4, .page-template-basic #body .content h5, .page-template-basic #body .content h6, .page-template-basic #body .content ol, .page-template-basic #body .content ul, .page-template-basic #body .content p {
  margin-bottom: 20px;
}
.page-template-basic #body .content a {
  color: #37F !important;
}

.single-post #body-copy p span, .single-post #body-copy li span {
  color: unset;
}
.single-post #body-copy a {
  color: #37F;
}
.single-post #body-copy section {
  background: #FFF;
}

/********************* FOOTER *********************/
.footer {
  background-color: #000;
  clear: both;
  position: relative;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 35px;
  }
}
.footer.simple-nav .grid .column:not(:first-child) {
  display: none !important;
}
.footer .footer-wrapper {
  border: 1px solid #43433E;
  background: #111;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer-wrapper {
    padding: 20px;
  }
}
.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 {
    padding: 0;
  }
  .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 .footer-nav-columns {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-nav-columns {
    flex-wrap: wrap;
    order: 2;
  }
  .footer .section-footer .top-row .footer-nav-columns .column {
    flex-basis: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .quarter {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-bottom {
    order: 3;
  }
}
.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 #footer-content-group {
  display: flex;
  justify-content: end;
  width: 100%;
}
.footer .section-footer .top-row .footer-banner {
  position: relative;
  border: 1px solid #43433E;
  background: #000;
  max-width: 300px;
  width: 100%;
  height: 840px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-banner {
    max-width: none;
    height: auto;
  }
}
.footer .section-footer .top-row .footer-banner #banner-logo {
  display: flex;
  justify-content: end;
  margin-top: 30px;
  margin-right: 30px;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-banner #banner-logo {
    justify-content: start;
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
  }
}
.footer .section-footer .top-row .footer-banner #social-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  margin-top: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-banner #social-links {
    justify-content: start;
    margin: 20px;
  }
}
.footer .section-footer .top-row .footer-banner #social-links a:hover svg circle {
  fill: #F8ED3F;
}
.footer .section-footer .top-row .footer-banner .banner-callout {
  position: absolute;
  top: 160px;
  left: -50px;
  opacity: 0;
  transition: 0.3s 0.8s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-banner .banner-callout {
    display: none;
  }
}
.footer .section-footer .top-row .footer-banner .banner-air {
  position: absolute;
  bottom: -10px;
  right: -50px;
  opacity: 0;
  z-index: 0;
  transition: 0.3s 0.5s all cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .footer-banner .banner-air {
    top: -10px;
  }
}
.footer .section-footer .top-row .column {
  display: flex;
  flex-flow: column;
  flex-basis: 100%;
}
.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 .header {
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 0.28px;
  margin-bottom: 30px;
  color: #000;
}
.footer .section-footer .top-row .column .footer-nav-group .header a {
  color: #000;
  text-decoration: none;
}
.footer .section-footer .top-row .column .footer-nav-group .header a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .footer .section-footer .top-row .column .footer-nav-group .header {
    margin-top: 25px;
  }
}
.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 .footer-nav-group > a.title {
  font-weight: 700;
  color: #F8ED3F;
  text-decoration: none;
  line-height: 140%;
  font-size: 14px;
  margin-bottom: 16px;
  cursor: default !important;
}
.footer .section-footer .top-row .column .footer-nav-group > a.title:not(:nth-child(2)) {
  margin-top: 30px;
}
.footer .section-footer .top-row .column .footer-nav-group > a.subtitle {
  color: #9D9797;
  text-decoration: none;
  line-height: 150%;
  font-size: 12px;
  margin-bottom: 12px;
  cursor: default !important;
}
.footer .section-footer .top-row .column .footer-nav-group > a.subtitle:not(:nth-child(2)) {
  margin-top: 4px;
}
.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%;
  }
}
@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;
  }
}
@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 .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: #FFF;
  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: 16px;
  align-items: end;
}
.footer .footer-bottom .utility-links a {
  text-decoration: none;
  font-size: 14px;
  color: #9D9797;
}
.footer .footer-bottom .utility-links a:hover {
  text-decoration: underline;
}
@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;
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom {
    margin-top: 0;
  }
}
.footer .half.languages {
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
  /* Container */
}
.footer .half.languages .footer-lang.custom-lang {
  position: relative;
  display: inline-block;
  /* Trigger button */
  /* Menu */
  /* Options */
  /* Optional: focus ring for keyboard nav */
  /* No-JS fallback list (hidden in normal use) */
}
.footer .half.languages .footer-lang.custom-lang .lang-trigger {
  display: inline-flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  gap: 8px;
  margin-left: 8px;
  font-size: 14px;
}
.footer .half.languages .footer-lang.custom-lang .lang-trigger .chev {
  transition: transform 0.2s ease;
}
.footer .half.languages .footer-lang.custom-lang .lang-trigger[aria-expanded=true] .chev {
  transform: rotate(180deg);
}
.footer .half.languages .footer-lang.custom-lang .lang-menu {
  position: absolute;
  right: 23px;
  color: #fff;
  max-height: 280px;
  overflow: auto;
  list-style: none;
  display: none;
  z-index: 50;
  width: 100%;
  box-sizing: content-box;
  bottom: 27px;
  font-size: 14px;
  margin: 0;
  text-align: right;
}
.footer .half.languages .footer-lang.custom-lang .lang-menu li {
  color: #FFF;
  font-size: 14px;
  transition: color 0.3s ease;
  padding: 3px 0;
}
.footer .half.languages .footer-lang.custom-lang .lang-menu.is-open {
  display: block;
}
.footer .half.languages .footer-lang.custom-lang .lang-option {
  cursor: pointer;
}
.footer .half.languages .footer-lang.custom-lang .lang-option:focus {
  outline: none;
}
.footer .half.languages .footer-lang.custom-lang .footer-lang-noscript {
  margin-top: 8px;
}
.footer .body-nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
.footer.show .section-footer .footer-banner .banner-callout {
  opacity: 1;
  left: 0;
}
.footer.show .section-footer .footer-banner .banner-air {
  right: 0;
  opacity: 1;
}

/********************* 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%;
}
