@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. 

******************************************************************/
/**
 * Foundation for Sites
 * Version 6.7.3
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .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=40em&large=64em&xlarge=75em&xxlarge=90em";
}

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

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  -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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: 40em) {
  .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: "DM Sans", 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: #576180;
}

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: 40em) {
  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: #000000;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: black;
}
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 #576180;
  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 #576180;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #202E56;
}

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

figure {
  margin: 0;
}

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

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

.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: #202E56;
  font-size: 0.8125rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

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

.code-block {
  border: 1px solid #576180;
  background-color: #EFF0F7;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
  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: 40em) {
  .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 #202E56;
    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 #576180;
  border-radius: 0;
  background-color: #ffffff;
  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: #000000;
  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 #202E56;
  background-color: #ffffff;
  box-shadow: 0 0 5px #576180;
  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: #EFF0F7;
  cursor: not-allowed;
}

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

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

::placeholder {
  color: #576180;
}

[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: #000000;
}
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: #000000;
}

.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 #576180;
  background: #EFF0F7;
  color: #000000;
  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 #576180;
}
.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 #576180;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  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%2832, 46, 86%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/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #202E56;
  background-color: #ffffff;
  box-shadow: 0 0 5px #576180;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #EFF0F7;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

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

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

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

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #000000;
  color: #ffffff;
}
.button:hover, .button:focus {
  background-color: black;
  color: #ffffff;
}
.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: #ffffff;
}
.button.primary:hover, .button.primary:focus {
  background-color: #126195;
  color: #ffffff;
}
.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: #000000;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #5e5e5e;
  color: #000000;
}
.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: #000000;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #000000;
}
.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: #000000;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #000000;
}
.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: #000000;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #000000;
}
.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 #000000;
  color: #000000;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: black;
  color: black;
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #000000;
}
.button.clear:hover, .button.clear:focus {
  color: black;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: #0c3d5d;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: #157539;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: #805700;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: #67251a;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #ffffff 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: #000000;
}
.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: #ffffff;
  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 #EFF0F7;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #000000;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #EFF0F7;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #EFF0F7;
}
.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 #EFF0F7;
  border-bottom: 0;
  background-color: #ffffff;
  color: #000000;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #EFF0F7;
}

.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: #000000 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: #000000 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: #000000;
  color: #ffffff;
}
.badge.primary {
  background: #1779ba;
  color: #ffffff;
}
.badge.secondary {
  background: #767676;
  color: #000000;
}
.badge.success {
  background: #3adb76;
  color: #000000;
}
.badge.warning {
  background: #ffae00;
  color: #000000;
}
.badge.alert {
  background: #cc4b37;
  color: #000000;
}

.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: #000000;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #576180;
}
.breadcrumbs a {
  color: #000000;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #576180;
  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: #ffffff;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #126195;
  color: #ffffff;
}
.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: #000000;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #5e5e5e;
  color: #000000;
}
.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: #000000;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #000000;
}
.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: #000000;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #000000;
}
.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: #000000;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #000000;
}
.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 #000000;
  color: #000000;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: black;
  color: black;
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: #157539;
  color: #157539;
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #000000;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: black;
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: #0c3d5d;
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: #157539;
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: #805700;
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: #67251a;
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
  .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: 39.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: #000000;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d7ecfa;
  color: #000000;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #000000;
}
.callout.success {
  background-color: #e1faea;
  color: #000000;
}
.callout.warning {
  background-color: #fff3d9;
  color: #000000;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #000000;
}
.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 #EFF0F7;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #000000;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #EFF0F7;
}
.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: #202E56;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #000000;
}
.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: 40em) {
  .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: #ffffff;
}
.menu .active > a {
  background: #1779ba;
  color: #ffffff;
}
.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: #ffffff;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  content: "";
}
.menu-icon:hover::after {
  background: #576180;
  box-shadow: 0 7px 0 #576180, 0 14px 0 #576180;
}

.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: #000000;
  box-shadow: 0 7px 0 #000000, 0 14px 0 #000000;
  content: "";
}
.menu-icon.dark:hover::after {
  background: #202E56;
  box-shadow: 0 7px 0 #202E56, 0 14px 0 #202E56;
}

.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: #ffffff;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  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 #000000;
  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 #000000;
  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 #000000 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 #000000 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 #576180;
  border-radius: 0;
  background-color: #ffffff;
  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: #000000 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 #000000 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 #000000;
}
@media print, screen and (min-width: 40em) {
  .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: #000000 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 #000000 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 #000000;
  }
}
@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: #000000 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 #000000 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 #000000;
  }
}
.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 #576180;
  background: #ffffff;
}
.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 #000000 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 #000000;
}
.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: #000000;
  color: #ffffff;
}
.label.primary {
  background: #1779ba;
  color: #ffffff;
}
.label.secondary {
  background: #767676;
  color: #000000;
}
.label.success {
  background: #3adb76;
  color: #000000;
}
.label.warning {
  background: #ffae00;
  color: #000000;
}
.label.alert {
  background: #cc4b37;
  color: #000000;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 39.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: 39.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: #EFF0F7;
}
[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: #EFF0F7;
}
[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: 40em) {
  .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: 40em) {
  .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: #ffffff;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #ffffff;
}
[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: #576180;
}
.orbit-bullets button:hover {
  background-color: #202E56;
}
.orbit-bullets button.is-active {
  background-color: #202E56;
}

.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: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #000000;
}
.pagination a:hover,
.pagination button:hover {
  background: #EFF0F7;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #000000;
  color: #ffffff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #576180;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "…";
  color: #000000;
}

.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: #576180;
}
.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: #000000;
}

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

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #EFF0F7;
  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: #576180;
  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: #000000;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput=mouse] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: black;
}
.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 #576180;
  border-radius: 0;
  background-color: #ffffff;
  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: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 75rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .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: 39.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: #ffffff;
  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: #576180;
  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: #ffffff;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #000000;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

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

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

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

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

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

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

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

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

thead {
  background: #f9f9f9;
  color: #000000;
}

tfoot {
  background: #f2f2f2;
  color: #000000;
}

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

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

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

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

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

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

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

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

.tabs {
  margin: 0;
  border: 1px solid #EFF0F7;
  background: #ffffff;
  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: #ffffff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1673b1;
}

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

.tabs-content {
  border: 1px solid #EFF0F7;
  border-top: 0;
  background: #ffffff;
  color: #000000;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #EFF0F7;
  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 #ffffff;
  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(0, 0, 0, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #000000;
  color: #ffffff;
  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 #202E56;
  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: #000000;
  font-size: 80%;
  color: #ffffff;
}
.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 #000000;
  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: #000000 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 #000000;
  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 #000000 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: #EFF0F7;
}
.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: 40em) {
  .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: 74.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: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

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

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

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

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

@media screen and (max-width: 39.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: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .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

*************************************************/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

p::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
li::selection {
  color: #000000;
  background-color: #FFC85C;
}

.home .layout-center-media .image-container.large-center .hero-animation {
  position: relative;
  width: 100%;
  /* Takes full width */
  padding-top: 51.85%;
  /* Adjust this value for your animation's aspect ratio, e.g., 30% for 16:9. Current aspect ratio is 16:8.3 */
  overflow: hidden;
  /* Ensures the content stays within bounds */
}
.home .layout-center-media .image-container.large-center .hero-animation > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*********************
TYPOGRAPHY
*********************/
.poppins, .paragraph, p, li, .heading, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.heading, h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  color: #000000;
}
.heading strong, h6 strong, .h6 strong, h5 strong, .h5 strong, h4 strong, .h4 strong, h3 strong, .h3 strong, h2 strong, .h2 strong, h1 strong, .h1 strong {
  font-weight: 800 !important;
}
.heading.eyebrow, h6.eyebrow, .eyebrow.h6, h5.eyebrow, .eyebrow.h5, h4.eyebrow, .eyebrow.h4, h3.eyebrow, .eyebrow.h3, h2.eyebrow, .eyebrow.h2, h1.eyebrow, .eyebrow.h1,
.heading span.eyebrow,
h6 span.eyebrow,
.h6 span.eyebrow,
h5 span.eyebrow,
.h5 span.eyebrow,
h4 span.eyebrow,
.h4 span.eyebrow,
h3 span.eyebrow,
.h3 span.eyebrow,
h2 span.eyebrow,
.h2 span.eyebrow,
h1 span.eyebrow,
.h1 span.eyebrow, .heading.tag, h6.tag, .tag.h6, h5.tag, .tag.h5, h4.tag, .tag.h4, h3.tag, .tag.h3, h2.tag, .tag.h2, h1.tag, .tag.h1,
.heading span.tag,
h6 span.tag,
.h6 span.tag,
h5 span.tag,
.h5 span.tag,
h4 span.tag,
.h4 span.tag,
h3 span.tag,
.h3 span.tag,
h2 span.tag,
.h2 span.tag,
h1 span.tag,
.h1 span.tag {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 20px;
}
.heading.eyebrow.small, h6.eyebrow.small, .eyebrow.small.h6, h5.eyebrow.small, .eyebrow.small.h5, h4.eyebrow.small, .eyebrow.small.h4, h3.eyebrow.small, .eyebrow.small.h3, h2.eyebrow.small, .eyebrow.small.h2, h1.eyebrow.small, .eyebrow.small.h1,
.heading span.eyebrow.small,
h6 span.eyebrow.small,
.h6 span.eyebrow.small,
h5 span.eyebrow.small,
.h5 span.eyebrow.small,
h4 span.eyebrow.small,
.h4 span.eyebrow.small,
h3 span.eyebrow.small,
.h3 span.eyebrow.small,
h2 span.eyebrow.small,
.h2 span.eyebrow.small,
h1 span.eyebrow.small,
.h1 span.eyebrow.small, .heading.tag.small, h6.tag.small, .tag.small.h6, h5.tag.small, .tag.small.h5, h4.tag.small, .tag.small.h4, h3.tag.small, .tag.small.h3, h2.tag.small, .tag.small.h2, h1.tag.small, .tag.small.h1,
.heading span.tag.small,
h6 span.tag.small,
.h6 span.tag.small,
h5 span.tag.small,
.h5 span.tag.small,
h4 span.tag.small,
.h4 span.tag.small,
h3 span.tag.small,
.h3 span.tag.small,
h2 span.tag.small,
.h2 span.tag.small,
h1 span.tag.small,
.h1 span.tag.small {
  font-size: 12px;
}
.heading a, h6 a, .h6 a, h5 a, .h5 a, h4 a, .h4 a, h3 a, .h3 a, h2 a, .h2 a, h1 a, .h1 a {
  color: #000000;
}
.heading a:hover, h6 a:hover, .h6 a:hover, h5 a:hover, .h5 a:hover, h4 a:hover, .h4 a:hover, h3 a:hover, .h3 a:hover, h2 a:hover, .h2 a:hover, h1 a:hover, .h1 a:hover {
  color: #00F1F9;
}

h1, .h1 {
  font-size: 56px;
  line-height: 115%;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 42px !important;
  }
}

h2, .h2 {
  font-size: 42px;
  line-height: 120%;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 32px;
  }
}

h3, .h3 {
  font-size: 32px;
  line-height: 115%;
  font-weight: 700;
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 26px;
  }
}

h4, .h4 {
  font-size: 26px;
  line-height: 125%;
  font-weight: 700;
}
@media (max-width: 768px) {
  h4, .h4 {
    font-size: 22px;
  }
}

h5, .h5 {
  font-size: 20px;
  line-height: 125%;
  font-weight: 700;
}
@media (max-width: 768px) {
  h5, .h5 {
    font-size: 18px;
  }
}

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

.paragraph, p, li {
  margin-bottom: 0;
  font-weight: 400;
}
.paragraph strong, p strong, li strong {
  font-weight: 600 !important;
}

p, li {
  font-size: 16px;
  line-height: 160%;
  color: #000000;
}
p.lead, li.lead {
  font-size: 18px;
  line-height: 155%;
}
p.body-list, li.body-list {
  font-size: 14px;
  line-height: 150%;
}
p.caption, li.caption {
  font-size: 12px;
  line-height: 150%;
}
p.button-link, li.button-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
p.quote-l, li.quote-l {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
p.quote-s, li.quote-s {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-indent: -10px;
}
p.caption-s, p.small, li.caption-s, li.small {
  font-size: 10px;
  line-height: 150%;
}
p.stat, li.stat {
  font-size: 60px;
  line-height: 110%;
  font-weight: 500;
}
p.black, li.black {
  color: #000000;
}
@media (max-width: 768px) {
  p.lead, li.lead {
    font-size: 16px !important;
    line-height: 155%;
  }
}
p a, li a {
  color: #04C3FF;
  font-weight: 700;
  text-decoration: none;
}
p a:hover, li a:hover {
  color: #000000;
}

.lead p, .lead li {
  font-size: 18px;
  line-height: 155%;
}
@media (max-width: 768px) {
  .lead p, .lead li {
    font-size: 16px !important;
    line-height: 150%;
  }
}

.body-list p, .body-list li {
  font-size: 20px;
  line-height: 150%;
}

.body-s p, .body-s li {
  font-size: 14px;
  line-height: 150%;
}

.caption p, .caption li {
  font-size: 12px;
  line-height: 150%;
}

.caption-s p, .caption-s li {
  font-size: 10px;
  line-height: 150%;
}

.excerpt-read-more {
  color: #ffffff;
  text-decoration: none;
}
.excerpt-read-more:hover {
  color: #00F1F9;
}

/*********************
BUTTONS & LINKS
*********************/
a#button,
a.button,
input.button,
input#button,
.wp-element-button,
span#button,
button[type=submit],
input[type=submit] {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  padding: 14px 8px 14px 20px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  background-color: #020B27;
  color: #ffffff;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  white-space: nowrap;
  gap: 10px;
  height: 50px;
  position: relative;
  overflow: visible;
}
a#button::after,
a.button::after,
input.button::after,
input#button::after,
.wp-element-button::after,
span#button::after,
button[type=submit]::after,
input[type=submit]::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23020B27'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -10px;
  overflow: hidden;
  transition: 0.2s all;
}
a#button:hover::after,
a.button:hover::after,
input.button:hover::after,
input#button:hover::after,
.wp-element-button:hover::after,
span#button:hover::after,
button[type=submit]:hover::after,
input[type=submit]:hover::after {
  background-color: #020B27;
}
a#button.tertiary,
a.button.tertiary,
input.button.tertiary,
input#button.tertiary,
.wp-element-button.tertiary,
span#button.tertiary,
button[type=submit].tertiary,
input[type=submit].tertiary {
  color: #ffffff;
  background: #000000;
}
a#button.tertiary::after,
a.button.tertiary::after,
input.button.tertiary::after,
input#button.tertiary::after,
.wp-element-button.tertiary::after,
span#button.tertiary::after,
button[type=submit].tertiary::after,
input[type=submit].tertiary::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36' fill='none'%3E%3Crect width='36' height='36' rx='18' fill='%235C91F6'/%3E%3Cpath d='M10 17C9.44772 17 9 17.4477 9 18C9 18.5523 9.44772 19 10 19L10 17ZM25.7071 18.7071C26.0976 18.3166 26.0976 17.6834 25.7071 17.2929L19.3431 10.9289C18.9526 10.5384 18.3195 10.5384 17.9289 10.9289C17.5384 11.3195 17.5384 11.9526 17.9289 12.3431L23.5858 18L17.9289 23.6569C17.5384 24.0474 17.5384 24.6805 17.9289 25.0711C18.3195 25.4616 18.9526 25.4616 19.3431 25.0711L25.7071 18.7071ZM10 19L25 19L25 17L10 17L10 19Z' fill='white'/%3E%3C/svg%3E");
}
a#button.tertiary:hover,
a.button.tertiary:hover,
input.button.tertiary:hover,
input#button.tertiary:hover,
.wp-element-button.tertiary:hover,
span#button.tertiary:hover,
button[type=submit].tertiary:hover,
input[type=submit].tertiary:hover {
  color: #000000;
  background: #ffffff;
}

input[type=submit] {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  padding: 14px 8px 14px 20px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  justify-content: center;
  box-sizing: border-box;
  background-color: #020B27;
  height: 50px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  white-space: nowrap;
  gap: 10px;
}
input[type=submit]:hover {
  background-color: #020B27;
}

#text-button,
.text-button {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  overflow: visible;
  gap: 10px;
  justify-content: start;
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
}
#text-button::after,
.text-button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%23020B27' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%23020B27' stroke-width='2'/%3E%3C/svg%3E");
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
}
#text-button:hover::after,
.text-button:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%2304C3FF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%2304C3FF' stroke-width='2'/%3E%3C/svg%3E");
}

#button-container {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
#button-container.center {
  justify-content: center;
}
#button-container.vertical-center {
  align-items: 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-16 {
  margin-top: 16px;
}
#button-container.padding-50 {
  margin-top: 50px;
}
#button-container.padding-30 {
  margin-top: 30px;
}
#button-container.padding-0 {
  margin-top: 0;
}
@media screen and (max-width: 1155px) {
  #button-container {
    margin-top: 30px;
    flex-direction: column;
    align-items: start;
  }
  #button-container.padding-medium {
    margin-top: 20px;
  }
  #button-container.padding-small {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  #button-container {
    flex-direction: column;
    align-items: baseline;
  }
}

@media screen and (max-width: 480px) {
  div.text-center #button-container {
    align-items: center;
  }
}

div.text-center #button-container {
  align-items: center;
  justify-content: center;
}

/*********************
GRID
*********************/
.grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(12, 5.46875%);
  gap: 0 3.125%;
  margin: auto;
  box-sizing: content-box;
  align-items: flex-start;
  position: relative;
  padding: 0 22px;
}
.grid.align-center {
  align-items: center;
}
.grid.flex-end {
  align-items: flex-end;
}
.grid.stretch {
  align-items: stretch;
}
.grid.start {
  align-items: start !important;
}
.grid.gap-40 {
  row-gap: 40px;
}
.grid.gap-50 {
  row-gap: 50px;
}
.grid.gap-60 {
  row-gap: 60px;
}
.grid.margin-top-80 {
  margin-top: 80px;
}
.grid.margin-bottom-80 {
  margin-bottom: 80px;
}
.grid .full {
  grid-column: auto/span 12;
}
.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;
}
@media screen and (max-width: 1155px) {
  .grid {
    max-width: 960px;
    grid-template-columns: repeat(8, 9.01857%);
    gap: 0 3.97878%;
  }
  .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 8;
  }
  .grid .six {
    grid-column: auto/span 8;
  }
  .grid .five {
    grid-column: auto/span 8;
  }
  .grid .third {
    grid-column: auto/span 8;
  }
  .grid .quarter {
    grid-column: auto/span 8;
  }
  .grid .fourth {
    grid-column: auto/span 8;
  }
  .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-4 {
    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 .margin-top-80 {
    margin-top: 40px;
  }
  .grid .margin-bottom-80 {
    margin-bottom: 40px;
  }
}
@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;
  }
}

.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: 1155px) {
  .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 > div {
    width: 45%;
  }
}

/*********************
Header Nav
*********************/
.off-canvas-content.promo-active {
  margin-top: 40px;
}
.off-canvas-content.promo-active header .top-bar .top-bar-right .is-dropdown-submenu {
  top: 70px;
}
.off-canvas-content.promo-active header .top-bar.scrolled .top-bar-right .is-dropdown-submenu {
  top: 30px;
}
@media screen and (max-width: 1155px) {
  .off-canvas-content {
    margin-top: 50px;
  }
  .off-canvas-content.promo-active {
    margin-top: 67px;
  }
}
body.menu-active {
  overflow: hidden;
}

header {
  transition: top 0.2s ease-in-out;
  top: 0;
  position: relative;
  z-index: 10;
}
header.nav-up {
  top: -140px !important;
}
header .nav-container {
  justify-content: end;
}
header ul.menu {
  background-color: transparent !important;
}
header ul#main-nav {
  background-color: transparent !important;
  gap: 8px;
}
header ul#main-nav > li {
  padding: 0;
  margin: 0;
}
header ul#main-nav > li > a {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
header ul#main-nav > li.nav-button {
  margin-left: 20px;
}
header ul#main-nav > li.nav-button a {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  padding: 14px 8px 14px 20px !important;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 137% !important;
  background-color: #020B27;
  color: #ffffff !important;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  white-space: nowrap;
  gap: 10px;
  height: 50px;
  position: relative;
  overflow: visible;
}
header ul#main-nav > li.nav-button a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23020B27'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  overflow: hidden;
  transition: 0.2s all;
}
header ul#main-nav > li.nav-button a:hover::after {
  background-color: #020B27;
}
header ul#main-nav > li:not(.nav-button) {
  margin-top: 3px;
}
header ul#main-nav > li.text-button {
  margin-left: 20px;
  margin-right: -8px;
}
header ul#main-nav > li.text-button a {
  padding-right: 0 !important;
}
header ul#main-nav > li.is-dropdown-submenu-parent > a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='20' viewBox='0 0 13 20' fill='none'%3E%3Cpath d='M8.83569 9.44971L5.14258 13.1428L1.44946 9.44971' stroke='%235C91F6' stroke-width='1.5'/%3E%3C/svg%3E");
  border: none !important;
  height: 20px;
  width: 13px;
  margin-top: -10px;
  transition: 0.1s 0.25s;
}
header ul#main-nav > li.is-dropdown-submenu-parent:hover > a::after {
  transform: rotate(180deg);
  margin-top: -6px;
  right: 7px;
  transition: 0.1s 0s;
}
header ul#main-nav ul.menu {
  background-color: #ffffff;
  align-items: center;
  border: none;
  min-width: 287px;
  padding: 20px;
  top: calc(100% + 10px);
  left: -41px;
  gap: 12px;
}
header ul#main-nav ul.menu::before {
  content: "";
  width: 74px;
  height: 3px;
  position: absolute;
  top: -3px;
  left: 0;
  background-color: #00F1F9;
}
header ul#main-nav ul.menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  transition: none !important;
}
header ul#main-nav ul.menu li a:hover {
  color: #00F1F9;
}
header ul#main-nav ul.menu li.title {
  cursor: default;
}
header ul#main-nav ul.menu li.title a {
  color: #95938F;
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  cursor: default !important;
}
header ul#main-nav ul.menu li.divider {
  margin-top: 5px;
}
header ul#main-nav ul.menu li.divider a {
  padding-top: 17px;
  position: relative;
}
header ul#main-nav ul.menu li.divider a::before {
  content: "";
  height: 1px;
  width: calc(100% - 1.4rem);
  background-color: #3C476B;
  position: absolute;
  top: 0px;
}
header.topHeader, header.fixedHeader {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  background: transparent;
}
header.topHeader.dark-nav a.logo svg path:not(.design), header.fixedHeader.dark-nav a.logo svg path:not(.design) {
  fill: #ffffff;
}
header.topHeader.dark-nav #main-nav li a, header.fixedHeader.dark-nav #main-nav li a {
  color: #ffffff !important;
}
header.topHeader.dark-nav #main-nav li.nav-button a, header.fixedHeader.dark-nav #main-nav li.nav-button a {
  color: #020B27 !important;
  background-color: #ffffff !important;
}
header.topHeader.dark-nav #main-nav li.nav-button a::after, header.fixedHeader.dark-nav #main-nav li.nav-button a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  overflow: hidden;
  transition: 0.2s all;
}
header.topHeader.dark-nav #main-nav li.nav-button a:hover::after, header.fixedHeader.dark-nav #main-nav li.nav-button a:hover::after {
  background-color: #ffffff;
}
header.topHeader.dark-nav #main-nav li.text-button::after, header.fixedHeader.dark-nav #main-nav li.text-button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%23FFFFFF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E");
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1);
}
header.topHeader.dark-nav #main-nav li.text-button:hover::after, header.fixedHeader.dark-nav #main-nav li.text-button:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%2304C3FF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%2304C3FF' stroke-width='2'/%3E%3C/svg%3E");
}
header.fixedHeader .top-bar {
  background: #fff;
  border-bottom: 0.5px solid #AFABB3;
}
header .top-bar {
  max-width: 1360px;
  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: 10px 40px;
  border-radius: 0 0 3px 3px;
}
header .top-bar .top-bar-left {
  display: flex;
  grid-column-start: 1;
  grid-column-end: span 2;
  height: 100%;
}
header .top-bar .top-bar-left .logo {
  padding: 0;
}
header .top-bar .top-bar-right {
  margin-left: 0;
  grid-column-start: 3;
  grid-column-end: span 10;
}
header .top-bar .top-bar-right #main-nav {
  position: relative;
  z-index: 99999999;
}
header .top-bar .top-bar-right #main-nav li {
  height: 45px;
  display: flex;
  align-items: center;
}
header .top-bar .top-bar-right #main-nav li a {
  color: #020B27;
  font-size: 16px;
  line-height: 160%;
}
header .top-bar .top-bar-right #main-nav li a:hover::before {
  opacity: 1;
}
header .top-bar .top-bar-right #main-nav li.is-dropdown-submenu-parent {
  position: inherit;
}
header .top-bar .top-bar-right #main-nav .button {
  border-radius: 53px;
  color: #ffffff;
  text-align: center;
  background: #020B27;
  box-sizing: border-box;
  height: 44px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0 0 0 25px;
}
header .top-bar .top-bar-right #main-nav .button a {
  color: #ffffff;
  font-family: "Poppins";
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
header .top-bar .top-bar-right #main-nav .button a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='14' viewBox='0 0 17 14' fill='none'%3E%3Cpath d='M1 7H15' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.42432 1L15.4243 7L9.42432 13' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  height: 14px;
  width: 17px;
  position: relative;
  top: 1px;
  padding-left: 15px;
}
header .top-bar .top-bar-right #main-nav .button:hover {
  background: #020B27;
}
header .top-bar .top-bar-right #main-nav li.Right {
  margin-left: auto;
  margin-right: 16px;
}
header .top-bar .top-bar-right #main-nav .active > a {
  background: transparent;
}
header .top-bar .top-bar-right #main-nav .active > a:after {
  display: none;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a {
  position: relative;
  padding-bottom: 47px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  padding: 20px 11px 20px;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a[data-mega-toggle]::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.50014 1.54108C7.20606 0.691515 8.35058 0.691514 9.05649 1.54108L15.5565 9.36375L8.25576 9.36375L0.000145487 9.36375L6.50014 1.54108Z' fill='white'/%3E%3C/svg%3E%0A");
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  top: 45px;
  z-index: 2;
  opacity: 0;
  transition: none;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a[data-mega-toggle].active::before {
  opacity: 1;
  transition: all 0.3s ease;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a.active:before {
  opacity: 1;
}
header .top-bar .top-bar-right #main-nav .menu-item:not(.button) a.current-link {
  font-weight: 700;
}
header .top-bar .top-bar-right #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 {
  padding: 0.9rem 1rem;
}
header .top-bar .top-bar-right #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 ease-out;
  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 {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .top-bar .top-bar-right .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 {
  display: none;
}
header .top-bar .top-bar-right .is-dropdown-submenu {
  z-index: 9999;
  background: #ffffff;
  border-radius: 3px;
  border: none;
  top: 37px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 920px;
  grid-column-start: 2;
  grid-column-end: span 10;
  padding: 40px;
  margin: 30px auto;
  overflow: hidden;
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.15));
  display: flex !important;
  flex-flow: row wrap;
  opacity: 0;
  visibility: hidden;
}
header .top-bar .top-bar-right .is-dropdown-submenu #link-container li {
  width: calc(33.33% - 10px);
}
header .top-bar .top-bar-right .is-dropdown-submenu #link-container li:nth-child(-n+3) {
  padding-bottom: 6px;
}
header .top-bar .top-bar-right .is-dropdown-submenu.js-dropdown-active, header .top-bar .top-bar-right .is-dropdown-submenu.active {
  opacity: 1;
  visibility: visible;
}
header .top-bar .top-bar-right .is-dropdown-submenu.js-dropdown-active #link-container, header .top-bar .top-bar-right .is-dropdown-submenu.active #link-container {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
header .top-bar .top-bar-right .is-dropdown-submenu.js-dropdown-active #label-container, header .top-bar .top-bar-right .is-dropdown-submenu.active #label-container {
  opacity: 1;
  visibility: visible;
}
header .top-bar .top-bar-right .submenu #label-container {
  width: 100%;
  margin-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0.1s ease, visibility 0.3s 0.1s ease;
}
header .top-bar .top-bar-right .submenu #label-container p#menu-label {
  display: inline-flex;
  padding: 2px 5px;
  align-items: center;
  gap: 6.625px;
  border-radius: 1.656px;
  background: #EFF0F7;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000000;
}
header .top-bar .top-bar-right .submenu #main-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  column-gap: 40px;
}
header .top-bar .top-bar-right .submenu #main-container > div:last-child::after {
  display: none !important;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links #svg-container svg {
  transition: 0.2s;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links #svg-container svg path {
  transition: 0.2s;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links #animation-container svg {
  width: 27px !important;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a#link-container {
  width: calc(50% - 20px);
  display: flex;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: -5px;
  transition: opacity 0.3s 0.1s ease, visibility 0.3s 0.1s ease, top 0.3s 0.1s ease;
  padding: 0;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a#link-container p.title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #000000;
  margin-bottom: 2px;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a#link-container p.description {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #8992AC;
  transition: color 0.2s ease;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a#link-container:hover #svg-container svg path {
  fill: #000000;
}
header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a#link-container:hover p.description {
  color: #000000;
}
header .top-bar .top-bar-right .submenu #main-container a.section_title {
  color: #ffffff;
  transition: all 0.2s ease;
  padding: 0;
}
header .top-bar .top-bar-right .submenu #main-container a.section_title:hover {
  text-decoration: underline;
  text-shadow: 0px 0px 1px #000;
}
header .top-bar .top-bar-right .submenu #main-container .section_title {
  color: var(--Neutrals-neutral-5, #A7A7B4);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
header .top-bar.scrolled {
  background-color: #ffffff;
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.15));
}
header .top-bar.scrolled a.logo svg path:not(.design), header .top-bar.scrolled header.fixedHeader.dark-nav a.logo svg path:not(.design) {
  fill: #000000 !important;
}
header .top-bar.scrolled #main-nav li a, header .top-bar.scrolled header.fixedHeader.dark-nav #main-nav li a {
  color: #000000 !important;
}
header .top-bar.scrolled #main-nav li.nav-button a {
  color: #ffffff !important;
  background-color: #020B27 !important;
}
header .top-bar.scrolled #main-nav li.nav-button a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23020B27'/%3E%3C/svg%3E") !important;
  position: absolute;
  height: 50px;
  width: 12px;
  right: -10px;
  overflow: hidden;
  transition: 0.2s all;
}
header .top-bar.scrolled #main-nav li.nav-button a:hover::after {
  background-color: #020B27 !important;
}
header .top-bar.scrolled #main-nav li.text-button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%23020B27' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%23020B27' stroke-width='2'/%3E%3C/svg%3E");
  transition: 0.2s all cubic-bezier(0.4, 0, 0.2, 1) !important;
}
header .top-bar.scrolled #main-nav li.text-button:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%2304C3FF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%2304C3FF' stroke-width='2'/%3E%3C/svg%3E") !important;
}
header #search-container {
  background: #202E56;
  padding: 30px 80px;
  position: absolute;
  box-sizing: border-box;
  top: 163px;
  display: none;
  z-index: 10000;
  width: 100%;
  max-width: 1280px;
  border-radius: 0px 0px 5px 5px;
}
header #search-container.search-active {
  display: block;
}
header #search-container input[type=submit] {
  display: none;
}
header #search-container::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='34' viewBox='0 0 33 34' fill='none'%3E%3Ccircle cx='13.2553' cy='14.0341' r='11.7553' stroke='%2303B2DC' stroke-width='3'/%3E%3Cline x1='22.0304' y1='23.1298' x2='31.061' y2='32.1604' stroke='%2303B2DC' stroke-width='3'/%3E%3C/svg%3E");
  position: absolute;
  top: 30px;
  left: 80px;
}
header #search-container input[type=search] {
  padding: 0;
  margin: 0;
  border: none;
  width: 100%;
  max-width: none;
  box-shadow: none;
  padding-left: 63px;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
  background-color: #202E56;
}
header #search-container input[type=search]::placeholder {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #ffffff;
}
@media screen and (max-width: 1155px) {
  header #search-container {
    right: 0;
    top: 67px;
    padding: 20px;
    padding-left: 56px;
  }
  header #search-container input[type=search] {
    font-size: 20px;
    padding-left: 0;
  }
  header #search-container::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Ccircle cx='7.5' cy='7.8219' r='6.40508' stroke='%2303B2DC' stroke-width='2.18984'/%3E%3Cline x1='12.639' y1='12.7943' x2='17.7486' y2='17.9039' stroke='%2303B2DC' stroke-width='2.18984'/%3E%3C/svg%3E");
    top: 28px;
    left: 20px;
  }
}
header #search-icon {
  cursor: pointer;
  position: relative;
  top: 1px;
}
header.simple-nav .top-bar-right {
  display: none;
}

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

@media only screen and (max-width: 1208px) {
  header.header.menu-active {
    height: 95%;
    max-height: 100vh;
  }

  header.header .top-bar {
    justify-content: space-between;
    margin: 0 auto;
    padding: 5px 20px;
    background-color: #ffffff;
  }
  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;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.15));
    background-color: #ffffff;
  }

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

  #utility-nav {
    position: absolute;
    right: 30px;
    top: 5px;
  }
  #utility-nav a {
    display: none !important;
  }
  #utility-nav > svg {
    display: none !important;
  }

  #mobile-menu {
    top: 60px;
    position: absolute;
    left: 0;
    width: 100%;
    background: #ffffff;
    height: 100vh;
    display: none;
  }
  #mobile-menu #main-nav > li {
    padding: 20px 0;
  }
  #mobile-menu #main-nav > li:not(.nav-button) {
    border-bottom: 1px solid #576180;
  }
  #mobile-menu #main-nav > li:not(.nav-button) a {
    padding: 0 !important;
  }
  #mobile-menu #main-nav > li a {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #000000;
  }
  #mobile-menu #main-nav > li.menu-item-has-children > a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M1 0.75L6.5 6.25L12 0.75' stroke='%235C91F6' stroke-width='2'/%3E%3C/svg%3E");
    height: 8px;
    width: 13px;
    border: none;
    top: 0;
    transform-origin: 0 0;
    right: 0;
  }
  #mobile-menu #main-nav > li.menu-item-has-children:hover > a::after {
    right: 0px;
  }
  #mobile-menu #main-nav .nav-button {
    margin-top: 24px !important;
    margin-left: 0 !important;
    padding-top: 0;
  }
  #mobile-menu #main-nav .nav-button a {
    font-family: "Rig-Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
  }
  #mobile-menu #main-nav li ul {
    gap: 20px;
    margin-top: 8px;
  }
  #mobile-menu #main-nav li ul li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
  }
  #mobile-menu #main-nav .submenu > li.has-icon {
    display: flex;
    align-items: center;
  }
  #mobile-menu #main-nav .submenu > li.has-icon a {
    padding-left: 10px;
  }
  #mobile-menu #main-nav .submenu > li.has-icon a:hover {
    color: #00F1F9 !important;
  }
  #mobile-menu #main-nav .submenu > li.has-icon a:hover::after {
    content: "";
    display: inline-block;
    cursor: pointer;
    width: calc(100% - 10px);
  }
  #mobile-menu #main-nav .submenu > li.has-icon:before {
    max-width: 24px;
    max-height: 24px;
    display: inline-block;
  }
  #mobile-menu #utility-nav {
    display: grid;
    grid-template-columns: repeat(4, 18.51743%);
    gap: 20px 8.57143%;
    margin: auto;
    box-sizing: content-box;
    align-items: flex-start;
    position: relative;
    padding: 0 22px;
    margin-top: 40px;
  }
  #mobile-menu #utility-nav > li:first-child {
    grid-column: auto/span 4;
  }
  #mobile-menu #utility-nav > li:first-child a {
    font-family: "Simula";
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: #DDF7FF;
    padding: 0;
  }
  #mobile-menu #utility-nav > li:first-child.menu-item-has-children > a::after {
    content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='11' viewBox='0 0 22 11' fill='none'%3E%3Cpath d='M1 0.45459L11 9.5455L21 0.45459' stroke='%230E4632'/%3E%3C/svg%3E");
    height: 11px;
    width: 22px;
    border: none;
    top: 0;
  }
  #mobile-menu #utility-nav li:nth-child(2) {
    grid-column: auto/span 2;
    margin-top: 20px;
  }
  #mobile-menu #utility-nav li:nth-child(2) a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 30px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    border-radius: 5px;
    color: #DDF7FF;
    text-align: center;
    background: #00F1F9;
    box-sizing: border-box;
    height: 50px;
    transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  #mobile-menu #utility-nav li:nth-child(3) {
    grid-column: auto/span 2;
    margin-top: 20px;
  }
  #mobile-menu #utility-nav li:nth-child(3) a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 30px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    border-radius: 5px;
    color: #DDF7FF;
    text-align: center;
    box-sizing: border-box;
    border: 2px solid #DDF7FF;
    height: 50px;
    transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  #mobile-menu ul {
    background-color: #ffffff !important;
    flex-direction: column;
    padding: 0 20px !important;
    gap: 0 !important;
    width: 100%;
    position: relative;
    top: 0 !important;
    left: 0 !important;
  }
  #mobile-menu ul ul {
    padding: 0 !important;
  }
  #mobile-menu ul::before {
    display: none !important;
  }
  #mobile-menu ul li.title a {
    font-weight: 700 !important;
    text-transform: capitalize !important;
  }
  #mobile-menu .accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
    transform: rotate(180deg);
  }

  #hamburger {
    height: 30px;
    width: 40px;
    position: absolute;
    cursor: pointer;
    top: 43px;
    right: 22px;
    cursor: pointer;
  }
  #hamburger span {
    background-color: #000000;
    height: 2px;
    width: 21px;
    display: block;
    position: absolute;
    right: 0;
  }
  #hamburger span:first-child {
    top: 7px;
  }
  #hamburger span:nth-child(2) {
    top: 14px;
    width: 21px;
  }
  #hamburger span:nth-child(3) {
    top: 14px;
    width: 21px;
  }
  #hamburger span:last-child {
    top: 21px;
  }
  #hamburger.menu-active span:first-child {
    display: none;
  }
  #hamburger.menu-active span:nth-child(2) {
    width: 15px;
    transform: rotate(45deg);
    right: 10px;
  }
  #hamburger.menu-active span:nth-child(3) {
    width: 15px;
    transform: rotate(-45deg);
    right: 10px;
  }
  #hamburger.menu-active span:last-child {
    display: none;
  }

  header.header #hamburger {
    top: 15px;
  }
  header.header .menu svg {
    max-width: 100px;
  }
  header.header .menu svg path:not(.design) {
    fill: #000000 !important;
  }
  header.header .top-bar .top-bar-left .menu li a {
    padding: 0;
  }
  header.header.fixedHeader #hamburger {
    top: 16px;
  }
}
@media (max-width: 1208px) {
  .top-bar-right {
    display: none !important;
  }

  #hamburger {
    display: block !important;
    border-radius: 35px;
    height: 35px;
    width: 35px;
    background-color: #020B27;
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 20px;
    cursor: pointer;
  }
  #hamburger span {
    background-color: #ffffff;
    height: 2px;
    width: 11px;
    display: block;
    position: absolute;
    right: 12px;
  }
  #hamburger span:first-child {
    top: 11px;
  }
  #hamburger span:nth-child(2) {
    top: 16.5px;
    width: 11px;
  }
  #hamburger span:nth-child(3) {
    top: 16.5px;
    width: 11px;
  }
  #hamburger span:last-child {
    top: 22.5px;
  }

  #mobile-menu.menu-active {
    display: flex !important;
    flex-flow: row wrap;
    border: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 5;
    padding-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #EFF0F7;
  }
  #mobile-menu.menu-active ul li a {
    color: #000000 !important;
    padding: 20px 0;
    font-weight: 600;
  }
  #mobile-menu.menu-active ul li ul li a {
    font-size: 14px !important;
    padding: 0 0 15px 15px;
    color: #576180 !important;
    font-weight: 500 !important;
  }
  #mobile-menu.menu-active ul li ul li a:hover {
    color: #000000 !important;
  }
  #mobile-menu.menu-active ul li.nav-button {
    margin-top: 10px;
  }
  #mobile-menu.menu-active ul li.nav-button a {
    color: #ffffff !important;
    padding: 20px !important;
    background-color: #020B27;
  }
}
#promotion-bar {
  background-color: #020B27;
  background-image: url("/wp-content/themes/Payabli/assets/images/butterbar_gradient.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left;
  height: 40px;
  width: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#promotion-bar p {
  color: #ffffff;
}
#promotion-bar a#text-button {
  display: inline-block;
  margin-left: 24px;
  color: #ffffff;
  position: relative;
}
#promotion-bar a#text-button::after {
  position: absolute;
  height: 50px;
  width: 12px;
  right: -20px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='white' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}
#promotion-bar a#text-button:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%2304C3FF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%2304C3FF' stroke-width='2'/%3E%3C/svg%3E");
}
@media (max-width: 1155px) {
  #promotion-bar {
    display: none;
  }
}

#utility-nav {
  display: flex;
  justify-content: end;
  padding: 10px 40px 0;
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 1155px) {
  #utility-nav {
    padding: 20px 40px 0;
  }
}
#utility-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-underline-offset: 2px;
}
#utility-nav a:hover {
  text-decoration: underline;
}
#utility-nav .right {
  display: flex;
}
#utility-nav .right a {
  margin-left: 16px;
}
#utility-nav .right a:not(:last-child) {
  margin-right: 16px;
}
#utility-nav .separator {
  display: inline-block;
  height: 19px;
  width: 1px;
  background-color: white;
}
@media screen and (max-width: 1155px) {
  #utility-nav .separator {
    display: none;
  }
}

/*********************
SECTIONS
*********************/
.off-canvas-wrapper {
  overflow: visible;
}

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

section {
  padding: 150px 0;
}
@media screen and (max-width: 1155px) {
  section {
    padding: 70px 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}
section.neutral {
  background-color: #F9F9FF;
}
section.neutral #toc nav a {
  color: #000000;
  background-color: #EFF0F7;
}
section.neutral #toc nav a:hover, section.neutral #toc nav a.active {
  background: #04C3FF;
  color: #000000;
}
section.neutral#scrollable-content .content-group {
  border: 1px solid #C5CBDB;
  background: #EFF0F7;
}
section.neutral .hubspot-form {
  border: 1px solid #C5CBDB;
  background: #EFF0F7;
}
section.neutral .hubspot-form input[type=text],
section.neutral .hubspot-form input[type=tel],
section.neutral .hubspot-form input[type=email],
section.neutral .hubspot-form textarea,
section.neutral .hubspot-form select {
  border: 1px solid #C5CBDB;
  background: #ffffff;
  color: #000000;
}
section.neutral .hubspot-form input[type=text]::placeholder,
section.neutral .hubspot-form input[type=tel]::placeholder,
section.neutral .hubspot-form input[type=email]::placeholder,
section.neutral .hubspot-form textarea::placeholder,
section.neutral .hubspot-form select::placeholder {
  color: #ffffff;
}
section.neutral .hubspot-form input[type=text] option,
section.neutral .hubspot-form input[type=tel] option,
section.neutral .hubspot-form input[type=email] option,
section.neutral .hubspot-form textarea option,
section.neutral .hubspot-form select option {
  color: #ffffff;
}
section.neutral .hubspot-form textarea {
  height: 115px;
}
section.neutral .hubspot-form label {
  color: #576180;
}
section.neutral .hubspot-form input[type=submit] {
  color: #ffffff;
  background-color: #000000;
  cursor: pointer;
}
section.neutral .hubspot-form input[type=submit]:hover {
  color: #ffffff;
  background-color: #000000;
}
section.black {
  background-color: #000000;
}
section.dark {
  background-color: #020B27;
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4, section.dark h5, section.dark h6 {
  color: #ffffff;
}
section.dark p, section.dark p a:hover, section.dark li {
  color: #ffffff;
}
section.dark .hubspot-form {
  border: 1px solid #202E56;
  background: #131D3A;
}
section.dark .hubspot-form input[type=text],
section.dark .hubspot-form input[type=tel],
section.dark .hubspot-form input[type=email],
section.dark .hubspot-form textarea,
section.dark .hubspot-form select {
  border: 1px solid #576180;
  background: #3C476B;
  color: #EFF0F7;
}
section.dark .hubspot-form input[type=text]::placeholder,
section.dark .hubspot-form input[type=tel]::placeholder,
section.dark .hubspot-form input[type=email]::placeholder,
section.dark .hubspot-form textarea::placeholder,
section.dark .hubspot-form select::placeholder {
  color: #EFF0F7;
}
section.dark .hubspot-form input[type=text] option,
section.dark .hubspot-form input[type=tel] option,
section.dark .hubspot-form input[type=email] option,
section.dark .hubspot-form textarea option,
section.dark .hubspot-form select option {
  color: #EFF0F7;
}
section.dark .hubspot-form textarea {
  height: 115px;
}
section.dark .hubspot-form label {
  color: #EFF0F7;
}
section.dark .hubspot-form .hs-richtext {
  color: #EFF0F7;
}
section.dark .hubspot-form input[type=submit] {
  border: none;
  margin-top: 30px;
  cursor: pointer;
  color: #020B27;
  background-color: #ffffff;
}
section.dark .hubspot-form .hs-submit .actions::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  overflow: hidden;
}
section.dark .hubspot-form .hs-submit .actions:hover::after {
  background-color: #ffffff;
}
section.dark #tab-buttons-top #tab-buttons {
  border-color: #202E56;
}
section.dark #tab-buttons-top #tab-buttons #tab-button {
  color: #576180;
  background-color: #202E56;
}
section.dark #tab-buttons-top #tab-buttons #tab-button.active, section.dark #tab-buttons-top #tab-buttons #tab-button:hover {
  color: #9532FF;
  background: rgba(255, 163, 227, 0.2);
}
section.dark #tab-buttons-side #tab-buttons #tab-button {
  background-color: #202E56;
  color: #576180;
}
section.dark #tab-buttons-side #tab-buttons #tab-button.active, section.dark #tab-buttons-side #tab-buttons #tab-button:hover {
  background: rgba(255, 163, 227, 0.2);
  color: #9532FF;
}
section.dark a#button,
section.dark a.button,
section.dark input.button,
section.dark input#button,
section.dark .wp-element-button,
section.dark span#button,
section.dark button[type=submit] {
  background: #ffffff;
  color: #000000;
}
section.dark a#button::after,
section.dark a.button::after,
section.dark input.button::after,
section.dark input#button::after,
section.dark .wp-element-button::after,
section.dark span#button::after,
section.dark button[type=submit]::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  overflow: hidden;
}
section.dark a#button:hover::after,
section.dark a.button:hover::after,
section.dark input.button:hover::after,
section.dark input#button:hover::after,
section.dark .wp-element-button:hover::after,
section.dark span#button:hover::after,
section.dark button[type=submit]:hover::after {
  background-color: #ffffff;
}
section.dark #text-button,
section.dark .text-button {
  color: #ffffff;
}
section.dark #text-button::after,
section.dark .text-button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='white' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}
section.dark #text-button:hover::after,
section.dark .text-button:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%2304C3FF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%2304C3FF' stroke-width='2'/%3E%3C/svg%3E");
}
section.dark #toc nav a {
  color: #ffffff;
  background-color: #3C476B;
}
section.dark #toc nav a:hover, section.dark #toc nav a.active {
  background: #04C3FF;
  color: #000000;
}
section.dark#scrollable-content .content-group {
  border: 1px solid #202E56;
  background: #131D3A;
}
section.dark#cta.simple #cta-container {
  display: flex;
}
section.dark#cta.simple #cta-container #content-container {
  flex-basis: 50%;
  padding: 40px 65px 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.dark#cta.simple #cta-container #content-container h2 {
  margin-bottom: 20px;
}
section.dark#cta.simple #cta-container #image-container {
  flex-basis: 50%;
  flex-shrink: 0;
}
section.dark #resource-card {
  border: 1px solid #202E56;
  background: #131D3A;
}
section.dark #news-card {
  border-top: 1px solid #3C476B;
}
section img.bg,
section .animation.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  z-index: -1;
}
section.padding-none {
  padding: 0 !important;
}
section.small-padding {
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  section.small-padding {
    padding: 50px 0;
  }
}
section.medium-padding, section.padding-medium {
  padding: 50px 0;
}
section.padding-60 {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  section.padding-60 {
    padding: 30px;
  }
}
section.padding-75 {
  padding: 75px 0;
}
section.large-padding {
  padding: 150px 0;
}
@media screen and (max-width: 1155px) {
  section.large-padding {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  section.large-padding {
    padding: 45px 0;
  }
}
section.padding-top-0 {
  padding-top: 0;
}
section.padding-top-small {
  padding-top: 25px;
}
section.padding-top-50 {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  section.padding-top-50 {
    padding-top: 30px;
  }
}
section.padding-top-75 {
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  section.padding-top-75 {
    padding-top: 40px;
  }
}
section.padding-top-100 {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  section.padding-top-100 {
    padding-top: 60px;
  }
}
section.padding-top-175 {
  padding-top: 175px;
}
@media screen and (max-width: 768px) {
  section.padding-top-175 {
    padding-top: 80px;
  }
}
section.padding-bottom-0 {
  padding-bottom: 0;
}
section.padding-bottom-50 {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section.padding-bottom-50 {
    padding-bottom: 30px;
  }
}
section.padding-bottom-75 {
  padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
  section.padding-bottom-75 {
    padding-bottom: 40px;
  }
}
section.padding-bottom-100 {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  section.padding-bottom-100 {
    padding-bottom: 60px;
  }
}
section.padding-bottom-175 {
  padding-bottom: 175px;
}
@media screen and (max-width: 768px) {
  section.padding-bottom-175 {
    padding-bottom: 80px;
  }
}
section .gap-75 {
  row-gap: 75px;
}
@media screen and (max-width: 1155px) {
  section .gap-75 {
    row-gap: 40px;
  }
}
section#hero {
  position: relative;
  overflow: hidden;
}
section#hero.layout-center-media .grid {
  position: initial !important;
}
section#hero.layout-center-media .background-container {
  z-index: 1;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  position: absolute;
  width: 100vw;
  height: 100%;
  max-width: 1576px;
  background-repeat: no-repeat;
  background-size: 100%;
}
section#hero.layout-center-media .background-container video {
  width: 100%;
}
section#hero.layout-center {
  padding-bottom: 175px !important;
}
@media screen and (max-width: 1155px) {
  section#hero.layout-center {
    padding-bottom: 75px !important;
  }
  section#hero.layout-center .design-container {
    height: 35px !important;
  }
  section#hero.layout-center .design-container svg {
    height: 35px !important;
    width: 140px;
  }
  section#hero.layout-center .background-container {
    background-size: 100% 100% !important;
  }
}
section#hero.layout-center .grid {
  position: initial !important;
}
section#hero.layout-center .design-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  height: 75px;
  z-index: 2;
}
section#hero.layout-center .design-container .center-design {
  width: 100%;
}
section#hero.layout-center .background-container {
  z-index: 1;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
section#hero.layout-center.neutral .design-container .left-design path {
  fill: #F9F9FF;
}
section#hero.layout-center.neutral .design-container .center-design {
  background-color: #F9F9FF;
}
section#hero.layout-center.neutral .design-container .right-design path {
  fill: #F9F9FF;
}
section#hero.layout-center.neutral .background-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_center_light_gradient.webp);
}
section#hero.layout-center.white .design-container .left-design path {
  fill: #ffffff;
}
section#hero.layout-center.white .design-container .center-design {
  background-color: #ffffff;
}
section#hero.layout-center.white .design-container .right-design path {
  fill: #ffffff;
}
section#hero.layout-center.white .background-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_center_light_gradient.webp);
}
section#hero.layout-center.dark .design-container .left-design path {
  fill: #020B27;
}
section#hero.layout-center.dark .design-container .center-design {
  background-color: #020B27;
}
section#hero.layout-center.dark .design-container .right-design path {
  fill: #020B27;
}
section#hero.layout-center.dark .background-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_center_dark_gradient.webp);
}
section#hero.layout-form .form-container {
  position: relative;
}
section#hero.layout-form .form-container #form-container {
  position: relative;
  z-index: 2;
}
section#hero.layout-form .form-container ul.hs-error-msgs {
  margin-left: 0;
}
section#hero.layout-form .form-container ul.hs-error-msgs li {
  display: flex;
}
section#hero.layout-form .form-container .hs-recaptcha {
  margin-top: 15px;
}
section#hero.layout-form .form-container .design-container {
  position: absolute;
  bottom: -231px;
  left: -200px;
  z-index: 1;
}
section#hero.layout-form .form-container .design-container::after {
  content: url("data:image/svg+xml,%3Csvg width='689' height='562' viewBox='0 0 689 562' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_f_1126_19354)'%3E%3Cellipse cx='448.938' cy='261.5' rx='120.5' ry='120.5' transform='rotate(90 448.938 261.5)' fill='url(%23paint0_linear_1126_19354)'/%3E%3C/g%3E%3Cg filter='url(%23filter1_f_1126_19354)'%3E%3Ccircle cx='280.618' cy='281.339' r='130.616' transform='rotate(90 280.618 281.339)' fill='url(%23paint1_linear_1126_19354)'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_1126_19354' x='253.438' y='66' width='391' height='391' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='37.5' result='effect1_foregroundBlur_1126_19354'/%3E%3C/filter%3E%3Cfilter id='filter1_f_1126_19354' x='0.00195312' y='0.723145' width='561.232' height='561.232' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='75' result='effect1_foregroundBlur_1126_19354'/%3E%3C/filter%3E%3ClinearGradient id='paint0_linear_1126_19354' x1='541.269' y1='325.662' x2='569.438' y2='141' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%239532FF'/%3E%3Cstop offset='1' stop-color='%23FF67D5'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_1126_19354' x1='308.88' y1='150.723' x2='280.618' y2='411.956' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2304C3FF'/%3E%3Cstop offset='1' stop-color='%2300F1F9'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}
section#hero.layout-left-media .grid {
  position: initial !important;
}
section#hero.layout-left-media .design-container {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-size: auto 835px;
  background-repeat: no-repeat;
  background-position: top right;
}
@media screen and (max-width: 1155px) {
  section#hero.layout-left-media .design-container {
    background-size: 100%;
  }
}
section#hero.layout-left-media.bg-teal .design-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_left_image_right_teal_gradient.webp);
}
section#hero.layout-left-media.bg-pink .design-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_left_image_right_pink_gradient.webp);
}
section#hero.layout-left-media.bg-purple .design-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_left_image_right_purple_gradient.webp);
}
section#hero.layout-left-media.bg-cinnamon .design-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_left_image_right_cinnamon_gradient.webp);
}
section#hero.layout-left-media.bg-purple-blue .design-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_left_image_right_mixed_gradient.webp);
}
section#hero .content-container {
  z-index: 2;
  margin-top: 0;
}
section#hero .content-container.text-center.large-center #button-container {
  justify-content: center;
}
section#hero .content-container p {
  margin-bottom: 16px;
}
section#hero .image-container {
  z-index: 2;
}
section#hero #form-container {
  height: 100%;
}
section#hero #form-container #form {
  padding: 40px;
  border-radius: 7px;
  position: relative;
  position: sticky;
  top: 170px;
}
section#hero #form-container #form h5 {
  color: #000000;
  margin-bottom: 24px;
}
section#hero #form-container #form form {
  position: relative;
  z-index: 3;
}
section#hero #form-container #form form .input {
  margin-right: 0;
}
section#hero #form-container #form form input[type=text],
section#hero #form-container #form form input[type=email],
section#hero #form-container #form form input[type=tel] {
  border-radius: 5px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 16px;
  height: 52px;
  padding: 0 16px;
}
section#hero #form-container #form input {
  width: 100% !important;
}
section#hero #blog-info {
  display: flex;
  gap: 20px;
  align-items: center;
}
section#hero #blog-info .author-photo img {
  width: 40px;
  height: 40px;
  border-radius: 135.61px;
  border: 1px solid #00F1F9;
}
section#hero #blog-info .separator {
  height: 35px;
  width: 1px;
  display: inline-block;
  background-color: #000000;
}
section#hero #social-share {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  align-items: center;
}
section#hero .byline {
  margin-top: 20px;
}
section#hero .none {
  display: none;
}
section#hero #image-container img {
  border-radius: 20px;
}
section#hero #form-container #partner {
  padding: 40px;
  border-radius: 7px;
  background: var(--Gradients-steel-Gradient, linear-gradient(180deg, #FFC492 0%, #FF8516 100%));
  position: sticky;
  top: 180px;
}
section#hero #form-container #partner h5 {
  color: #000000;
  margin-bottom: 24px;
}
section#hero #form-container #partner form {
  position: relative;
  z-index: 3;
}
section#hero #form-container #partner form .input {
  margin-right: 0;
}
section#hero #form-container #partner form input[type=text],
section#hero #form-container #partner form input[type=email],
section#hero #form-container #partner form input[type=tel] {
  border-radius: 5px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 16px;
  height: 52px;
  padding: 0 16px;
}
section#hero #form-container #partner input {
  width: 100% !important;
}
section#hero #form-container #partner::before {
  content: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1476_34575)'%3E%3Cellipse cx='78.9977' cy='9' rx='69.5139' ry='69.5139' transform='rotate(87.211 78.9977 9)' stroke='black' stroke-width='2' stroke-linecap='round' stroke-dasharray='0.25 10'/%3E%3Cpath d='M79.3877 23.6332C70.8904 23.6332 64.002 16.7448 64.002 8.24753C64.002 -0.249771 70.8904 -7.13819 79.3877 -7.13819C87.885 -7.13819 94.7734 -0.249765 94.7734 8.24753C94.7734 16.7448 87.885 23.6332 79.3877 23.6332Z' stroke='black'/%3E%3Cpath d='M41.9882 45.7436C39.0031 45.1812 37.0392 42.3054 37.6016 39.3204C38.164 36.3353 41.0398 34.3714 44.0248 34.9338C47.0099 35.4962 48.9738 38.372 48.4114 41.357C47.849 44.3421 44.9732 46.306 41.9882 45.7436Z' stroke='black'/%3E%3Cpath d='M49.8006 33.9869L67.5676 18' stroke='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1476_34575'%3E%3Crect width='80' height='80' fill='white' transform='translate(0 80) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
}
section#hero #tag-container {
  display: flex;
  gap: 15px;
  align-items: stretch;
  margin-bottom: 25px;
}
section#hero #tag-container .tag-image img {
  width: 50px;
}
section#hero #tag-container .tag {
  display: flex;
  align-items: center;
}
section#hero #tag-container .tag h6 {
  margin-bottom: 0 !important;
}
section#hero h6 {
  margin-bottom: 20px;
}
section#hero #inner-block-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 22px;
  margin-top: 40px;
}
section#hero #inner-block-container #inner-block {
  width: calc(50% - 20px);
  display: flex;
  gap: 15px;
}
section#hero #inner-block-container #inner-block .icon {
  max-width: 30px;
}
section#hero #inner-block-container #inner-block h5 {
  margin-bottom: 8px;
}
section#content {
  position: relative;
  overflow: hidden;
}
section#content.half h2, section#content.half h3 {
  padding-bottom: 16px;
  position: relative;
}
section#content.half h2::before, section#content.half h3::before {
  content: "";
  width: 32px;
  height: 5px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background-color: #131D3A;
}
section#content.top-right::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 370px;
  height: 223px;
}
@media screen and (max-width: 1300px) {
  section#content.top-right::before {
    width: 185px !important;
    height: auto !important;
  }
}
section#content::before {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1155px) {
  section#content::before {
    display: none;
  }
}
section#content ul {
  margin-left: 0;
  padding-left: 0;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 20px;
}
section#content ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 8px;
}
section#content ul.full li {
  width: 100%;
}
section#content .large-center.text-center.content p:last-child {
  margin-bottom: 0 !important;
}
section#content .large-center.text-center.content #button-container {
  justify-content: center;
}
section#content #boxed-content {
  padding: 40px;
  border-radius: 3px;
  border: 1px solid #EFF0F7;
  background: #F9F9FF;
}
section#content #boxed-content img {
  height: 30px;
  margin-bottom: 35px;
}
section#content #boxed-content.image-first {
  grid-column-start: 8;
}
section#content #boxed-image.image-first {
  grid-column-start: 1;
  grid-row-start: 2;
}
section#content .image-container img {
  border-radius: 7px;
  width: 100%;
}
section#content .image-container img.hide-for-desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  section#content .image-container img.hide-for-desktop {
    display: block;
  }
  section#content .image-container img.hide-for-mobile {
    display: none;
  }
}
section#content #block-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 16px;
  margin-top: 25px;
}
section#content #block-container #inner-block {
  width: calc(50% - 31px);
  display: flex;
  border-left: 1px solid #C5CBDB;
  padding-left: 15px;
}
section#content #block-container #inner-block p {
  margin-bottom: 0;
}
section#content > .grid h2, section#content > .grid h3 {
  margin-bottom: 30px;
}
section#content > .grid ul {
  margin-top: 0;
}
section#content > .grid .half {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
}
section#content > .grid .half.content {
  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#content > .grid .half.content {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#content > .grid .half.content {
    grid-column: auto/span 4;
  }
}
section#content > .grid .half.image-container {
  grid-column-start: 7;
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#content > .grid .half.image-container {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  section#content > .grid .half.image-container {
    grid-column: auto/span 4;
    margin-top: 0;
  }
}
section#content > .grid.image-first .half.content {
  grid-column-start: 8;
  grid-column-end: 13;
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#content > .grid.image-first .half.content {
    grid-column: auto/span 8;
    grid-row-start: auto;
  }
}
@media screen and (max-width: 768px) {
  section#content > .grid.image-first .half.content {
    grid-column: auto/span 4;
  }
}
section#content > .grid.image-first > .half.image-container {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#content > .grid.image-first > .half.image-container {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#content > .grid.image-first > .half.image-container {
    grid-column: auto/span 4;
    margin-top: 0;
  }
}
section#content > .grid .form-container {
  background: #EFF0F7;
  border-radius: 20px;
  padding: 40px 18px;
  text-align: left;
}
section#content > .grid .form-container lsnrl {
  max-width: none;
}
section#content > .grid .form-container lsnrl input {
  margin-bottom: 10px;
}
section#content > .grid .form-container .hs-input {
  width: 100% !important;
  background-color: #EFF0F7;
  color: black;
  height: 45px;
  border: 1px solid #000000;
  margin-bottom: 30px;
}
section#content > .grid .form-container .hs-input::placeholder {
  color: #000000;
}
section#content > .grid .form-container select {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 13 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.75L6.5 6.25L12 0.75' stroke='%236B10EB'/%3E%3C/svg%3E%0A");
  background-size: auto;
}
section#content > .grid .form-container .form-columns-2 {
  display: flex;
  flex-flow: row;
  column-gap: 20px;
}
section#content.full #button-container {
  justify-content: center;
}
section#content.full .image-container {
  margin-top: 80px;
  grid-column: 2/span 10;
}
@media screen and (max-width: 1155px) {
  section#content.full .image-container {
    margin-top: 40px;
    grid-column: 1/span 8;
  }
}
@media screen and (max-width: 768px) {
  section#content.full .image-container {
    grid-column: 1/span 4;
  }
}
section#content.full .image-container .media-animation {
  margin-top: 0;
}
section#content.full .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
section#content.full .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  section#content.full .video-container iframe {
    border-radius: 10px;
  }
}
section#content .left-align * {
  text-align: left !important;
}
section#content .content.align-start {
  justify-content: start !important;
}
section#content .content p a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
section#content .content p a.text-button {
  text-decoration: none;
  width: max-content;
  margin-top: 20px;
}
section#content.light .boxed-container .boxed-content {
  background-color: #C5CBDB;
}
section#content.light .boxed-container .boxed-content h3, section#content.light .boxed-container .boxed-content h4, section#content.light .boxed-container .boxed-content h5, section#content.light .boxed-container .boxed-content p {
  color: initial !important;
}
section#content.light .boxed-container .boxed-content a {
  color: #020B27;
}
section#content.light .boxed-container .boxed-content a::before {
  background-color: #020B27;
}
section#content.light .boxed-container .boxed-content a:hover {
  color: #000000;
}
section#content.light .boxed-container .boxed-content a:hover::before {
  background-color: #000000;
}
section#content.dark #boxed-content {
  border: 1px solid #202E56;
  background: #131D3A;
}
section#content.dark #block-container #inner-block {
  border-left: 1px solid #3C476B;
}
section#content .content ul li {
  font-size: 16px;
  line-height: 150%;
}
section#content.fifty-fifty .grid .image-container,
section#content.fifty-fifty .grid .content {
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#content.fifty-fifty .grid .image-container,
section#content.fifty-fifty .grid .content {
    grid-row-start: auto;
  }
  section#content.fifty-fifty .grid .image-container {
    margin-top: 40px;
  }
  section#content.fifty-fifty .grid #quote-container {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1155px) {
  section#content #button-container {
    align-items: start;
  }
}
section#line-tracker-content #line-container {
  padding-top: 75px;
  border-left: 1px solid #C5CBDB;
}
section#line-tracker-content .line-tracker-block {
  display: flex;
}
section#line-tracker-content .line-tracker-block.teal {
  padding-top: 75px;
  padding-bottom: 150px;
}
section#line-tracker-content .line-tracker-block.pink {
  padding-bottom: 150px;
}
section#line-tracker-content .line-tracker-block.purple {
  padding-bottom: 75px;
}
section#line-tracker-content .line-tracker-block .content {
  width: 50%;
  flex-grow: 0;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: border-box;
}
section#line-tracker-content .line-tracker-block .content h3, section#line-tracker-content .line-tracker-block .content .lead, section#line-tracker-content .line-tracker-block .content #block-container {
  max-width: 470px;
}
section#line-tracker-content .line-tracker-block .media {
  width: 50%;
  flex-grow: 0;
}
@media screen and (max-width: 1155px) {
  section#line-tracker-content .line-tracker-block {
    flex-direction: column;
  }
  section#line-tracker-content .line-tracker-block.teal {
    padding-top: 40px;
    padding-bottom: 75px;
  }
  section#line-tracker-content .line-tracker-block.pink {
    padding-bottom: 75px;
  }
  section#line-tracker-content .line-tracker-block.purple {
    padding-bottom: 40px;
  }
  section#line-tracker-content .line-tracker-block .content {
    width: 100%;
  }
  section#line-tracker-content .line-tracker-block .media {
    width: auto;
    margin-top: 20px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
section#line-tracker-content h3 {
  margin-bottom: 25px;
}
section#line-tracker-content #tag-container {
  display: flex;
  gap: 15px;
  align-items: stretch;
  margin-bottom: 25px;
}
section#line-tracker-content #tag-container .tag-image img {
  width: 50px;
  margin-bottom: 0;
}
@media screen and (max-width: 1155px) {
  section#line-tracker-content #tag-container .tag-image img {
    width: 40px;
  }
}
section#line-tracker-content #tag-container .tag {
  display: flex;
  align-items: center;
}
section#line-tracker-content #tag-container .tag h6 {
  margin-bottom: 0 !important;
}
section#line-tracker-content #block-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 16px;
  margin-top: 25px;
}
section#line-tracker-content #block-container #inner-block {
  width: calc(50% - 31px);
  display: flex;
  border-left: 1px solid #C5CBDB;
  padding-left: 15px;
}
section#line-tracker-content #block-container #inner-block p {
  margin-bottom: 0;
}
section#columns {
  position: relative;
  overflow: hidden;
}
section#columns h3 {
  margin-bottom: 16px;
}
section#columns h4 {
  margin-bottom: 15px;
}
section#columns h5 {
  margin-bottom: 20px;
}
section#columns.padding-top-0 {
  padding-top: 0;
  width: 100%;
}
section#columns.has-title .column-wrapper {
  margin-top: 80px;
}
section#columns .stat-title {
  display: flex;
  align-items: end;
  gap: 125px;
}
@media screen and (max-width: 1155px) {
  section#columns .stat-title {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
section#columns .stat-title #button-container {
  margin-top: 0;
}
section#columns .intro-content {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  section#columns .intro-content {
    padding-bottom: 40px;
  }
}
section#columns .intro-content h2 {
  margin-bottom: 0;
}
section#columns .intro-content p {
  margin-top: 20px;
}
section#columns .text-center #button-container {
  justify-content: center !important;
}
section#columns .title-container p {
  margin-bottom: 0;
}
section#columns .column-wrapper {
  align-items: stretch;
}
section#columns .column-wrapper.condensed {
  max-width: 1060px !important;
}
section#columns .column-wrapper #text-button {
  margin-top: auto;
}
section#columns .column-wrapper .content-container {
  display: flex;
  flex-direction: column;
  height: -webkit-fill-available;
  align-items: start;
}
@media screen and (max-width: 1155px) {
  section#columns .column-wrapper .content-container {
    height: auto;
  }
}
section#columns .column-wrapper .content-container #button-container {
  margin-top: auto !important;
}
section#columns .column-wrapper .content-container .image-container {
  margin-bottom: 30px;
}
section#columns .column-wrapper .content-container .image-container.full img {
  border-radius: 7px;
  margin-bottom: 0;
}
section#columns .column-wrapper .content-container .image-container.icon img {
  max-height: 70px;
}
@media screen and (max-width: 1155px) {
  section#columns .column-wrapper .content-container .image-container {
    margin-bottom: 22px;
  }
}
section#columns .column-wrapper .column {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1155px) {
  section#columns .column-wrapper .column {
    margin-bottom: 0 !important;
  }
}
section#columns .column-wrapper .column.quarter h4, section#columns .column-wrapper .column.fifth h4, section#columns .column-wrapper .column.sixth h4 {
  line-height: 120%;
}
@media (max-width: 768px) {
  section#columns .column-wrapper .column.quarter h4, section#columns .column-wrapper .column.fifth h4, section#columns .column-wrapper .column.sixth h4 {
    font-size: 22px;
  }
}
section#columns .column-wrapper .column .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
section#columns .column-wrapper .column .content #button-container {
  margin-top: auto;
}
section#columns .column-wrapper .column.centered-simple {
  text-align: center;
}
section#columns .column-wrapper .column.centered-simple #button-container {
  align-items: center;
}
section#columns .column-wrapper .column.centered-simple .image-container img {
  margin: 0 auto;
}
section#columns .column-wrapper .column .stat {
  color: #00F1F9;
  margin-bottom: 10px !important;
}
section#columns .column-wrapper .column .stat #body-copy p {
  margin-bottom: 0;
}
section#columns .column-wrapper .column #body-copy p {
  margin-bottom: 20px;
}
section#columns .column-wrapper .column #button-container {
  margin-top: 20px;
}
section#columns .column-wrapper .column .lower-image {
  border-radius: 0 0 20px 20px;
  margin-top: auto;
}
section#columns .column-wrapper .column .lower-image img {
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 1155px) {
  section#columns .column-wrapper .column {
    margin-bottom: 40px;
    grid-column: auto/span 8;
  }
}
@media screen and (max-width: 768px) {
  section#columns .column-wrapper .column {
    grid-column: auto/span 4;
  }
}
section#columns.boxed .column {
  padding: 30px;
  border-radius: 3px;
  background-color: #F9F9FF;
  border: 1px solid #EFF0F7;
}
section#columns.boxed .column h5, section#columns.boxed .column h4 {
  margin-bottom: 15px !important;
}
section#columns.dark.boxed .column {
  border: 1px solid #202E56;
  background: #131D3A;
}
section#columns.dark .stat {
  color: #9532FF !important;
}
section#columns.neutral.boxed .column {
  border: 1px solid #C5CBDB;
  background: #EFF0F7;
}
section#columns:not(.boxed) .column-wrapper {
  padding-top: 40px;
  position: relative;
}
section#columns:not(.boxed) .intro-content {
  position: relative;
}
section#logos .title-container h3 {
  margin-bottom: 20px;
}
section#logos #logo-container {
  display: flex;
  flex-direction: column;
  background-color: #020B27;
  border-radius: 20px;
  padding: 60px 40px;
}
section#logos #logo-container h4 {
  color: #ffffff;
}
section#logos h2 {
  margin-bottom: 20px;
}
section#logos .flex-columns {
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 1155px) {
  section#logos .flex-columns {
    row-gap: 40px;
  }
}
section#logos .flex-columns > div {
  display: flex;
}
@media screen and (max-width: 1155px) {
  section#logos .flex-columns > div {
    width: 30%;
    padding: 0;
  }
  section#logos .flex-columns > div img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  section#logos .flex-columns > div {
    width: 25%;
  }
}
section#logos .flex-columns.four-column {
  max-width: 1060px;
}
section#logos .flex-columns.four-column .logo-container {
  width: calc(25% - 30px);
}
@media screen and (max-width: 1155px) {
  section#logos .flex-columns.four-column .logo-container {
    width: 40%;
  }
}
section#logos .flex-columns.six-column {
  max-width: 1280px;
}
section#logos .logos-wrapper.has-title {
  margin-top: 50px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1155px) {
  section#logos .logos-wrapper.has-title {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
section#logos .logos-wrapper {
  align-items: center;
}
section#logos .logos-wrapper.four-column .logo-container:nth-child(4n+1) {
  grid-column-start: 3;
}
@media screen and (max-width: 1155px) {
  section#logos .logos-wrapper.four-column .logo-container:nth-child(4n+1) {
    grid-column-start: auto;
  }
}
section#logos .logos-wrapper.has-slider {
  max-width: 1320px !important;
}
section#logos .logos-wrapper .logo-container.stat-active img {
  margin: 0 auto 20px;
}
section#logos .logos-wrapper .logo-container.stat-active .stat {
  opacity: 0;
  max-height: 0;
  transition: all 0.6s ease-in-out;
}
section#logos .logos-wrapper .logo-container.stat-active .stat h2 {
  margin-top: 20px;
  margin-bottom: 0;
  color: #020B27;
}
section#logos .logos-wrapper .logo-container.stat-active .stat p {
  margin-top: 20px;
}
section#logos .logos-wrapper .logo-container.stat-active:hover .stat {
  display: block;
  opacity: 1;
  max-height: 400px;
}
section#logos .slick-track {
  display: flex;
}
section#logos.slider-padding .logos-wrapper {
  padding: 0;
}
section#logos.slider-padding .logos-wrapper .logo-container {
  height: auto !important;
  display: flex;
  padding: 0 20px;
}
section#logos:not(.slider-padding) {
  overflow: hidden;
}
section#logos:not(.slider-padding) .logos-wrapper {
  padding-top: 40px;
  position: relative;
}
section#accordion .grid.intro-title {
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  section#accordion .grid.intro-title {
    margin-bottom: 60px;
  }
}
section#accordion .accordions-title {
  margin-bottom: 25px;
}
@media screen and (max-width: 1155px) {
  section#accordion #accordion-images {
    display: none !important;
  }
}
section#accordion #accordion-images .slick-dots {
  display: flex !important;
  flex-flow: row;
  margin: 50px auto 0;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 44px;
  right: 44px;
}
section#accordion #accordion-images .slick-dots li {
  position: relative;
  width: 12px;
  height: 12px;
  line-height: 100%;
  text-align: center;
  list-style-type: none;
  cursor: pointer;
}
section#accordion #accordion-images .slick-dots li button, section#accordion #accordion-images .slick-dots li::marker {
  display: none !important;
  color: transparent;
}
section#accordion #accordion-images .slick-dots li:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #00F1F9;
  border-radius: 50px;
  transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section#accordion #accordion-images .slick-dots li.slick-active:before {
  background-color: #00F1F9;
}
section#accordion #accordion-images .slick-dots li:hover:before {
  background-color: #00F1F9;
}
section#accordion #accordion-images #accordion-image {
  display: none;
}
section#accordion #accordion-images #accordion-image.active {
  display: block;
}
section#accordion #accordion-images .accordion-slider {
  background: #EFF0F7;
  border-radius: 20px;
}
section#accordion #accordion-images .accordion-slider::after {
  content: url("data:image/svg+xml,%3Csvg width='113' height='114' viewBox='0 0 113 114' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M112.47 113.124L112.47 0H-6.80947e-06C11.0319 0.0162073 19.97 8.96429 19.97 20V73.124C19.97 84.1697 28.9243 93.124 39.97 93.124H92.47C103.516 93.124 112.47 102.078 112.47 113.124Z' fill='white'/%3E%3C/svg%3E%0A");
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1px;
}
section#accordion #accordion-info #image-container {
  margin-top: 40px;
  display: none;
}
@media screen and (max-width: 1155px) {
  section#accordion #accordion-info #image-container {
    display: block;
  }
}
section#accordion #accordion-info #question {
  cursor: pointer;
  display: flex;
  padding-top: 21px;
  padding-bottom: 21px;
  border-top: 1px solid #C5CBDB;
  justify-content: space-between;
  align-items: start;
}
section#accordion #accordion-info #question h5 {
  margin-right: 20px;
}
section#accordion #accordion-info #question svg {
  height: 25px;
  width: 25px;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
section#accordion #accordion-info #question .accordion-toggle {
  position: relative;
  display: flex;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
section#accordion #accordion-info #question.active .accordion-toggle, section#accordion #accordion-info #question:hover .accordion-toggle {
  transform: rotate(90deg);
}
section#accordion #accordion-info #question.active + #answer {
  display: block !important;
}
section#accordion #accordion-info #answer {
  display: none;
  padding-bottom: 42px;
}
section#accordion.dark #accordion-info {
  border-top: 1px solid #3C476B;
}
section#accordion.dark .accordion-toggle::after {
  color: #000000 !important;
}
section#quotes .title-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 72px;
}
@media screen and (max-width: 1155px) {
  section#quotes .title-section {
    margin-bottom: 0;
  }
}
section#quotes .title-container h3 {
  margin-bottom: 20px;
}
section#quotes .title-container p.lead {
  margin-bottom: 0;
}
@media screen and (max-width: 1155px) {
  section#quotes .grid.quote {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#quotes .grid.quote {
    margin-top: 20px;
  }
}
section#quotes .single-quote #quote-image {
  grid-row-start: 1;
  position: relative;
  z-index: 2;
}
section#quotes .single-quote #quote-card {
  grid-row-start: 1;
  position: absolute;
  width: 52%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 30px;
  border-radius: 3px;
  border: 1px solid #EFF0F7;
  background: #F9F9FF;
  z-index: 2;
}
section#quotes .single-quote #quote-card #quote-info {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}
section#quotes .single-quote #quote-card #quote-info #quote-logo img {
  max-height: 52px;
}
section#quotes .single-quote #quote-card #quote-info #separator-line {
  width: 1px;
  background-color: #C5CBDB;
}
section#quotes .single-quote #quote-card #quote-info #quote-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#quotes .single-quote #quote-card #text-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media screen and (max-width: 1155px) {
  section#quotes .single-quote #quote-card {
    grid-row-start: 2;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }
  section#quotes .single-quote #quote-card #text-button {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }
}
section#quotes .single-quote #background-gradient {
  position: absolute;
  top: calc(100% - 347px);
  left: 40px;
  z-index: 1;
}
section#quotes .single-quote #background-gradient svg {
  width: 100%;
}
@media screen and (max-width: 1155px) {
  section#quotes .single-quote #background-gradient {
    display: none;
  }
}
section#quotes .flex-container {
  display: block;
}
section#quotes #slider-buttons {
  display: flex;
  gap: 15px;
  top: 21px;
  right: 73px;
  margin-top: 30px;
  justify-content: end;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
section#quotes #slider-buttons a {
  height: 36px;
  width: 36px;
  display: inline-block;
  position: relative;
  opacity: 1;
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section#quotes #slider-buttons a::after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23F9F9FF'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23EFF0F7'/%3E%3Cpath d='M15 20L20 15L15 10' stroke='%23020B27' stroke-width='2'/%3E%3Cpath d='M20 15H9' stroke='%23020B27' stroke-width='2'/%3E%3C/svg%3E%0A");
  height: 36px;
  position: absolute;
}
section#quotes #slider-buttons a.slick-disabled {
  opacity: 0.2;
  cursor: default;
}
section#quotes #slider-buttons a.slick-disabled:hover {
  opacity: 0.2;
}
section#quotes #slider-buttons a#prev-button::after {
  transform: rotate(180deg);
  top: -6px;
  left: 11px;
}
section#quotes #slider-buttons a:hover {
  opacity: 0.7;
}
section#quotes.dark .single-quote #quote-card {
  border: 1px solid #202E56;
  background: #131D3A;
}
section#quotes.dark .single-quote #quote-card #quote-info #separator-line {
  background-color: #3C476B;
}
section#quotes .flex-container {
  max-width: 1600px;
  padding: 0;
  margin: 0 auto;
}
section#quotes .flex-container .quote-slider-images {
  max-width: 1600px;
  left: 160px;
}
section#quotes .flex-container .quote-slider-images .quote-slide {
  position: relative;
  margin-right: 40px;
}
section#quotes .flex-container .quote-slider-images .quote-info {
  position: absolute;
  bottom: 55px;
  width: 100%;
  display: flex;
  padding: 0 35px 0 25px;
  justify-content: space-between;
}
section#quotes .flex-container .quote-slider-images .quote-info .info-box {
  display: flex;
  gap: 60px;
}
section#quotes .flex-container .quote-slider-images .quote-info p {
  color: #ffffff !important;
}
section#quotes .flex-container .quote-slider-images .quote-info p.caption {
  font-weight: 700;
}
section#quotes .flex-container .quote-slider-images #quote-card {
  padding: 30px;
  border-radius: 3px;
  border: 1px solid #EFF0F7;
  background: #F9F9FF;
  position: absolute;
  top: 60px;
  width: 500px;
  right: -220px;
  opacity: 0;
  transition: none;
}
section#quotes .flex-container .quote-slider-images #quote-info {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}
section#quotes .flex-container .quote-slider-images #quote-info #quote-logo img {
  max-height: 52px;
}
section#quotes .flex-container .quote-slider-images #quote-info #separator-line {
  width: 1px;
  background-color: #C5CBDB;
}
section#quotes .flex-container .quote-slider-images #quote-info #quote-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#quotes .flex-container .quote-slider-images .quote-info {
  opacity: 0;
  transition: none;
}
section#quotes .flex-container .quote-slider-images .quote-image {
  overflow: hidden;
}
section#quotes .flex-container .quote-slider-images .slick-current {
  z-index: 2;
}
section#quotes .flex-container .quote-slider-images .slick-current .quote-slide-container {
  position: relative;
}
section#quotes .flex-container .quote-slider-images .slick-current .quote-image {
  position: relative;
}
section#quotes .flex-container .quote-slider-images .slick-current .quote-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 256px;
  width: 100%;
  background: linear-gradient(180deg, rgba(2, 11, 39, 0) 0%, rgba(2, 11, 39, 0.8) 89.04%);
}
section#quotes .flex-container .quote-slider-images .slick-current #quote-card {
  opacity: 1;
  transition: 1s 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section#quotes .flex-container .quote-slider-images .slick-current .quote-info {
  opacity: 1;
  transition: 1s 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 3;
}
section#quotes .flex-container .quote-slider-images .slick-current .timer-bar {
  opacity: 1;
}
section#quotes .flex-container .quote-slider-images .quote-slide:not(.slick-current) {
  z-index: 1;
}
section#quotes .flex-container .quote-slider-images .quote-slide:not(.slick-current) .quote-image {
  position: relative;
}
section#quotes .flex-container .quote-slider-images .quote-slide:not(.slick-current) .quote-image::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='755' height='495' viewBox='0 0 755 495' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1_6' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='755' height='495'%3E%3Crect width='755' height='495' fill='%23020B27'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_6)'%3E%3Cg opacity='0.9' filter='url(%23filter0_f_1_6)'%3E%3Cellipse cx='726.576' cy='637.582' rx='380.446' ry='434.583' transform='rotate(41.2515 726.576 637.582)' fill='%23F75146'/%3E%3C/g%3E%3Cg style='mix-blend-mode:overlay' filter='url(%23filter1_f_1_6)'%3E%3Ccircle cx='569.701' cy='622.701' r='313.701' fill='%23FF67D5'/%3E%3C/g%3E%3Cg filter='url(%23filter2_f_1_6)'%3E%3Cellipse cx='273.594' cy='935.317' rx='584.759' ry='510.598' transform='rotate(-10.5839 273.594 935.317)' fill='%239532FF'/%3E%3C/g%3E%3Cg style='mix-blend-mode:multiply' filter='url(%23filter3_f_1_6)'%3E%3Cellipse cx='470.668' cy='592.316' rx='351.978' ry='307.339' transform='rotate(-30 470.668 592.316)' fill='%23FF67D5'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_1_6' x='136.301' y='40.2376' width='1180.55' height='1194.69' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='92.7011' result='effect1_foregroundBlur_1_6'/%3E%3C/filter%3E%3Cfilter id='filter1_f_1_6' x='70.5977' y='123.598' width='998.206' height='998.206' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='92.7011' result='effect1_foregroundBlur_1_6'/%3E%3C/filter%3E%3Cfilter id='filter2_f_1_6' x='-531.388' y='199.453' width='1609.96' height='1471.73' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='111.241' result='effect1_foregroundBlur_1_6'/%3E%3C/filter%3E%3Cfilter id='filter3_f_1_6' x='17.9868' y='161.955' width='905.362' height='860.722' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='55.6207' result='effect1_foregroundBlur_1_6'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}
section#quotes .flex-container .quote-slider-images .quote-slide:not(.slick-current) .timer-bar {
  opacity: 0;
}
section#quotes .flex-container .quote-slider-images a#button {
  background: #ffffff;
  color: #000000;
}
section#quotes .flex-container .quote-slider-images a#button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  overflow: hidden;
}
section#quotes .flex-container .quote-slider-images a#button:hover::after {
  background-color: #ffffff;
}
section#quotes .timer-bar {
  position: absolute;
  bottom: 27px;
  left: 25px;
  width: calc(100% - 50px);
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  /* Background for the timer */
  overflow: hidden;
  z-index: 1;
  border-radius: 6px;
}
section#quotes .timer-bar .progress {
  height: 100%;
  width: 0%;
  background-color: #04C3FF;
  transition: width linear;
}
@media screen and (max-width: 1155px) {
  section#quotes .title-section {
    flex-direction: column;
  }
  section#quotes .flex-container {
    padding: 0 25px;
  }
  section#quotes .flex-container .quote-slider-images {
    left: 0;
  }
  section#quotes .flex-container .quote-slider-images #quote-card {
    position: initial;
    width: 100%;
    opacity: 1 !important;
  }
}
section#quotes.layout-slider #button-container {
  margin-top: -30px;
  max-width: 300px;
}
section#quotes.dark .flex-container .quote-slider-images #quote-card {
  border: 1px solid #202E56;
  background: #131D3A;
}
section#quotes.dark .flex-container .quote-slider-images #quote-info #separator-line {
  background-color: #3C476B;
}
section#quotes.dark #slider-buttons a::after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23202E56'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%233C476B'/%3E%3Cpath d='M15 20L20 15L15 10' stroke='white' stroke-width='2'/%3E%3Cpath d='M20 15H9' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
}
section#divider {
  height: 75px;
  padding: 0;
  position: relative;
}
section#divider.wedge-dark #wedge svg path, section#divider.wedge-dark #wedge svg rect {
  fill: #020B27;
}
section#divider.wedge-neutral #wedge svg path, section#divider.wedge-neutral #wedge svg rect {
  fill: #F9F9FF;
}
section#divider.upward #wedge {
  position: absolute;
  top: 0;
  right: 0;
}
section#divider.downward #wedge {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 1155px) {
  section#divider {
    height: 37.5px;
  }
  section#divider #wedge svg {
    width: 40px;
    height: 24px;
  }
}
section .flex-columns.quotes {
  flex-wrap: nowrap;
}
section .flex-columns.quotes::before {
  content: "";
  height: 0.5px;
  width: 100vw;
  background-color: #C5CBDB;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
section .flex-columns.quotes::after {
  content: "";
  height: 0.5px;
  width: 100vw;
  background-color: #C5CBDB;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1155px) {
  section .flex-columns.quotes {
    flex-direction: column;
  }
  section .flex-columns.quotes::after {
    display: none;
  }
  section .flex-columns.quotes::before {
    display: none;
  }
}
section .quote-card {
  flex-basis: 100%;
  padding: 30px;
  display: inline-block;
  border: 1px solid #C5CBDB;
  padding-bottom: 126px;
  position: relative;
  overflow: hidden;
  transition: 0.2s all;
}
section .quote-card .read-story::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128' viewBox='0 0 128 128' fill='none'%3E%3Cpath d='M128 0C57.3076 6.18013e-06 -2.61941e-06 57.3076 3.56072e-06 128L128 128L128 0Z' fill='%235C91F6'/%3E%3C/svg%3E");
}
section .quote-card .quote-logo {
  margin-bottom: 50px;
}
section .quote-card .quote-logo img {
  width: auto;
  max-height: 50px;
}
section .quote-card p.quote {
  padding-top: 20px;
  position: relative;
}
section .quote-card p.quote::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 2px;
  width: 70px;
  background-color: #3A0078;
}
section .quote-card h6 {
  color: #ffffff;
  margin-top: 20px;
}
section .quote-card p.caption {
  color: #576180;
}
section .quote-card:hover {
  background-color: #EFF0F7;
}
section .quote-card .read-story {
  height: 128px;
  width: 128px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: end;
  padding-right: 30px;
  padding-bottom: 15px;
}
section .quote-card .read-story::before {
  top: 128px;
  right: -128px;
  position: absolute;
  z-index: 1;
  transition: 0.2s all;
}
section .quote-card .read-story p {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  position: relative;
  z-index: 2;
}
section .quote-card:hover .read-story::before {
  right: 0;
  top: 20px;
}
section .quote-card:hover .read-story p {
  color: #000000;
}
section#cta {
  position: relative;
}
section#cta.mid-page {
  padding: 65px;
}
@media screen and (max-width: 768px) {
  section#cta.mid-page {
    padding: 50px 0;
  }
}
section#cta.mid-page .cta-container {
  border-radius: 3px;
  padding: 50px 70px;
  height: 203px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
section#cta.mid-page .cta-container .content-container {
  max-width: calc(100% - 440px);
}
@media screen and (max-width: 768px) {
  section#cta.mid-page .cta-container {
    padding: 30px;
  }
}
@media screen and (max-width: 1155px) {
  section#cta.mid-page .cta-container {
    flex-flow: column;
    align-items: flex-start;
  }
}
section#cta.mid-page .cta-container h1, section#cta.mid-page .cta-container h2, section#cta.mid-page .cta-container h3, section#cta.mid-page .cta-container h4, section#cta.mid-page .cta-container h5, section#cta.mid-page .cta-container h6, section#cta.mid-page .cta-container p {
  color: #000000;
}
section#cta.mid-page .cta-container h3 {
  margin-bottom: 10px;
}
section#cta.mid-page .cta-container #button-container {
  position: relative;
}
@media screen and (max-width: 1155px) {
  section#cta.mid-page .cta-container #button-container {
    margin-top: 40px;
  }
}
section#cta.mid-page .cta-container #design-container {
  position: absolute;
  right: 0;
  height: 100%;
}
section#cta.mid-page.light .cta-container {
  background-color: #F9F9FF;
}
section#cta.mid-page.neutral {
  background-color: #F9F9FF;
}
section#cta.mid-page.neutral .cta-container {
  background-color: #020B27;
}
section#cta.mid-page.neutral .cta-container h3, section#cta.mid-page.neutral .cta-container p {
  color: #ffffff;
}
section#cta.mid-page.dark-alt {
  background-color: #020B27;
}
section#cta.mid-page.dark-alt .cta-container {
  background-color: #ffffff;
}
@media screen and (max-width: 1155px) {
  section#cta.mid-page .cta-container {
    height: auto;
  }
  section#cta.mid-page .cta-container .content-container {
    max-width: none;
  }
  section#cta.mid-page .cta-container #design-container {
    position: absolute;
    right: -150px;
    bottom: -50px;
    height: 50%;
  }
}
section#cta.large-center {
  overflow: hidden;
}
section#cta.large-center h2 + #button-container {
  margin-top: 40px !important;
}
section#cta.large-center #large-cta {
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  justify-content: space-between;
}
section#cta.large-center #large-cta #content-container {
  padding: 70px;
}
section#cta.large-center #large-cta #image-container img {
  max-width: 450px;
}
@media screen and (max-width: 1155px) {
  section#cta.large-center #large-cta {
    flex-direction: column;
  }
  section#cta.large-center #large-cta #content-container {
    padding: 40px 40px 0;
  }
  section#cta.large-center #large-cta #image-container img {
    max-width: none;
  }
}
section#cta.large-center .grid {
  position: initial !important;
}
section#cta.large-center::after {
  content: "";
  background-image: url(/wp-content/themes/Payabli/assets/images/CTA-gradient.webp);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
section#cta.large-center.neutral .design-container .left-design path {
  fill: #F9F9FF;
}
section#cta.large-center.neutral .design-container .center-design {
  background-color: #F9F9FF;
}
section#cta.large-center.neutral .design-container .right-design path {
  fill: #F9F9FF;
}
section#cta.large-center.neutral .background-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_center_light_gradient.webp);
}
section#cta.large-center.light .design-container .left-design path {
  fill: #ffffff;
}
section#cta.large-center.light .design-container .center-design {
  background-color: #ffffff;
}
section#cta.large-center.light .design-container .right-design path {
  fill: #ffffff;
}
section#cta.large-center.light .background-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_center_light_gradient.webp);
}
section#cta.large-center.dark .design-container .left-design path {
  fill: #020B27;
}
section#cta.large-center.dark .design-container .center-design {
  background-color: #020B27;
}
section#cta.large-center.dark .design-container .right-design path {
  fill: #020B27;
}
section#cta.large-center.dark .background-container {
  background-image: url(/wp-content/themes/Payabli/assets/images/1_hero_copy_center_dark_gradient.webp);
}
section#cta.large-center .title-container {
  position: relative;
  z-index: 3;
}
section#cta.large-center .design-container {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  left: 0;
  height: 75px;
  z-index: 2;
}
section#cta.large-center .design-container .center-design {
  width: 100%;
}
@media screen and (max-width: 768px) {
  section#cta.large-center {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  section#cta::before, section#cta .design-container {
    display: none;
  }
}
section#cta.simple #cta-container {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1155px) {
  section#cta.simple #cta-container {
    flex-direction: column;
  }
}
section#cta.simple #cta-container #content-container {
  flex-basis: 50%;
  padding: 40px 65px 40px 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#cta.simple #cta-container #content-container h2 {
  margin-bottom: 20px;
}
section#cta.simple #cta-container #image-container {
  flex-basis: 50%;
  flex-shrink: 0;
  display: flex;
}
section#cta.simple #cta-container #image-container div {
  height: 100%;
  width: 100%;
  display: flex;
}
section#cta.simple.light #content-container, section#cta.simple.neutral #content-container {
  background-color: #020B27;
}
section#cta.simple.light #content-container h2, section#cta.simple.light #content-container p, section#cta.simple.neutral #content-container h2, section#cta.simple.neutral #content-container p {
  color: #ffffff;
}
section#cta.simple.light #image-container, section#cta.simple.neutral #image-container {
  background-color: #020B27;
}
section#cta.simple.light a#button, section#cta.simple.neutral a#button {
  background: #ffffff;
  color: #000000;
}
section#cta.simple.light a#button::after, section#cta.simple.neutral a#button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  overflow: hidden;
}
section#cta.simple.light a#button:hover::after, section#cta.simple.neutral a#button:hover::after {
  background-color: #ffffff;
}
section#cta.simple.light #text-button, section#cta.simple.neutral #text-button {
  color: #ffffff;
}
section#cta.simple.light #text-button::after, section#cta.simple.neutral #text-button::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='white' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}
section#cta.simple.light #text-button:hover::after, section#cta.simple.neutral #text-button:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='12' viewBox='0 0 18 12' fill='none'%3E%3Cpath d='M11 11L16 6L11 1' stroke='%2304C3FF' stroke-width='2'/%3E%3Cpath d='M16 6H-1.19209e-07' stroke='%2304C3FF' stroke-width='2'/%3E%3C/svg%3E");
}
section#cta.simple.dark-alt {
  background-color: #020B27;
}
section#cta.simple.dark-alt #content-container {
  background-color: #ffffff;
}
@media screen and (max-width: 1155px) {
  section#cta .title-container {
    margin-bottom: 40px;
  }
}
section#title {
  position: relative;
  overflow: hidden;
}
section#title h2 {
  margin-bottom: 20px;
}
section#title h3 {
  margin-bottom: 15px;
}
section#title h4 {
  margin-bottom: 10px;
}
section#title p {
  font-size: 20px;
  line-height: 150%;
}
section#resources {
  padding: 100px 0;
}
section#scrollable-content .grid.intro-title {
  align-items: center;
  margin-bottom: 80px;
}
section#scrollable-content .content-group {
  border-radius: 3px;
  background-color: #F9F9FF;
  border: 1px solid #EFF0F7;
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
}
section#scrollable-content .content-group h4 {
  margin-bottom: 15px;
}
section#scrollable-content .content-group li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
section#scrollable-content .content-group p:not(:last-child) {
  margin-bottom: 30px;
}
section#scrollable-content .content-group img.icon {
  margin-bottom: 30px;
}
section#scrollable-content .content-group #content-container {
  padding: 30px 40px 30px 30px;
  width: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}
section#scrollable-content .content-group #image-container {
  width: 50%;
}
section#scrollable-content .content-group #image-container img {
  object-fit: cover;
  height: 100%;
  width: auto;
}
@media screen and (max-width: 1155px) {
  section#scrollable-content .content-group {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }
  section#scrollable-content .content-group #content-container {
    width: 100%;
  }
  section#scrollable-content .content-group #image-container {
    width: 100%;
  }
  section#scrollable-content .content-group .grid.intro-title {
    margin-bottom: 50px;
  }
}
section #tab-buttons-top #tab-buttons {
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #8992AC;
}
@media screen and (max-width: 1155px) {
  section #tab-buttons-top #tab-buttons {
    flex-wrap: wrap;
  }
}
section #tab-buttons-top #tab-buttons #tab-button {
  text-align: center;
  flex-basis: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #3C476B;
  background-color: #C5CBDB;
  padding: 6px 10px;
  border-radius: 5px;
  text-wrap: nowrap;
  font-family: "helvetica_now_textmedium";
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #tab-buttons-top #tab-buttons #tab-button.active, section #tab-buttons-top #tab-buttons #tab-button:hover {
  color: #00F1F9;
  background-color: #00F1F9;
}
section #tab-buttons-side #tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (max-width: 1155px) {
  section #tab-buttons-side #tab-buttons {
    flex-wrap: wrap;
  }
}
section #tab-buttons-side #tab-buttons #tab-button {
  padding: 6px 10px;
  border-radius: 5px;
  background-color: #C5CBDB;
  color: #3C476B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  font-family: "helvetica_now_textmedium";
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #tab-buttons-side #tab-buttons #tab-button.active, section #tab-buttons-side #tab-buttons #tab-button:hover {
  color: #00F1F9;
  background-color: #00F1F9;
}
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;
}
@media screen and (max-width: 1155px) {
  section#post.basic .the-content {
    grid-column-start: 1;
  }
  section#post.basic #separator {
    display: none;
  }
}
section #quote-highlight-box {
  border-radius: 5px;
  background-color: #3C476B;
  display: flex;
  gap: 25px;
  padding: 30px;
  position: relative;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}
section #quote-highlight-box h6, section #quote-highlight-box p {
  color: #000000 !important;
}
section #quote-highlight-box::before {
  content: url("data:image/svg+xml,%3Csvg width='211' height='211' viewBox='0 0 211 211' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M0 211C-1.52813e-05 94.4679 94.4679 -1.50702e-05 211 -3.03515e-05L211 211L0 211Z' fill='%23F9F7F4'/%3E%3Cpath d='M87.9167 211C87.9167 143.023 143.023 87.9167 211 87.9167L211 211L87.9167 211Z' fill='%23E5E1DB'/%3E%3C/svg%3E%0A");
  position: absolute;
  bottom: -7px;
  right: 0;
}
section #quote-highlight-box #quote-text {
  position: relative;
  z-index: 2;
}
section #quote-highlight-box #quote-text p {
  font-size: 26px;
  line-height: 135%;
  font-weight: 400;
}
section #quote-highlight-box #content-container {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
  align-items: center;
}
section #quote-highlight-box #content-container .quote-photo img {
  height: 90px;
}
@media screen and (max-width: 420px) {
  section #quote-highlight-box #content-container .quote-photo img {
    width: auto;
    height: auto;
  }
}
section #quote-highlight-box #content-container .quote-cite {
  max-width: 200px;
}
section #quote-highlight-box .dark-logo {
  position: absolute;
  right: 0;
}
section #share-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C5CBDB;
  margin-bottom: 40px;
}
section #share-container #share-icons {
  display: flex;
  gap: 15px;
}
section #toc {
  height: 100%;
}
@media screen and (max-width: 1155px) {
  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: #000000;
  background-color: #EFF0F7;
  font-family: "Poppins", sans-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 #toc nav a:hover, section #toc nav a.active {
  background: #04C3FF;
}
section .hubspot-form {
  padding: 40px;
  border-radius: 3px;
  border: 1px solid #EFF0F7;
  background: #F9F9FF;
  text-align: left;
}
section .hubspot-form input[type=text],
section .hubspot-form input[type=tel],
section .hubspot-form input[type=email],
section .hubspot-form textarea,
section .hubspot-form select {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 2px;
  border: 1px solid #C5CBDB;
  background: #EFF0F7;
  width: 100% !important;
  min-height: 44px;
  color: #576180;
  margin-bottom: 5px;
}
section .hubspot-form input[type=text]::placeholder,
section .hubspot-form input[type=tel]::placeholder,
section .hubspot-form input[type=email]::placeholder,
section .hubspot-form textarea::placeholder,
section .hubspot-form select::placeholder {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #576180;
}
section .hubspot-form input[type=text] option,
section .hubspot-form input[type=tel] option,
section .hubspot-form input[type=email] option,
section .hubspot-form textarea option,
section .hubspot-form select option {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #576180;
}
section .hubspot-form textarea {
  height: 115px;
}
section .hubspot-form .hs-richtext {
  color: #576180;
  font-size: 13px;
  padding: 20px 0;
}
section .hubspot-form label {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #576180;
}
section .hubspot-form h4 {
  margin-bottom: 30px;
}
section .hubspot-form input[type=submit] {
  border: none;
  margin-top: 30px;
  cursor: pointer;
}
section .hubspot-form .hs-submit .actions {
  display: inline-block;
  position: relative;
}
section .hubspot-form .hs-submit .actions::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='50' viewBox='0 0 14 50' fill='none'%3E%3Cpath d='M13.25 40L5.25 50L0.75 50L0.749981 -1.09279e-06L12.25 -8.74249e-08C12.8023 -3.91426e-08 13.25 0.447716 13.25 1L13.25 40Z' fill='%23020B27'/%3E%3C/svg%3E");
  position: absolute;
  height: 50px;
  width: 12px;
  right: -11px;
  bottom: 0;
  overflow: hidden;
  transition: 0.2s all;
}
section .hubspot-form .hs-submit .actions:hover::after {
  background-color: #020B27;
}
section #blog-card {
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  align-self: stretch;
  background-color: #EFF0F7;
  gap: 45px;
}
section #blog-card .image-container {
  flex-shrink: 0;
  max-width: 480px;
  overflow: hidden;
}
section #blog-card .image-container img {
  transition: 0.2s;
}
section #blog-card .image-container img:hover {
  transform: scale(1.1);
}
section #blog-card #content-container p.date {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  section #blog-card {
    flex-flow: column;
  }
}
section #categories {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
section #categories span.post-category {
  padding: 4px 10px;
  border-radius: 4px;
  align-items: center;
  background-color: #00F1F9;
  color: #020B27;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
section #quote-container {
  padding: 30px;
  border-radius: 20px;
  background-color: #020B27;
  display: flex;
  flex-direction: column;
  align-items: start;
}
section #quote-container p {
  color: #ffffff;
  text-align: left;
}
section #quote-container svg {
  margin-bottom: 20px;
}
section #quote-container p.caption {
  margin-top: 15px;
}
section #quote-container .quote-logo {
  margin-top: 30px;
}
section #subscribe {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
section #subscribe .design-container {
  position: absolute;
  background-repeat: no-repeat;
  background-position: top right;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='183' height='177' viewBox='0 0 183 177' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='154.726' cy='22.2391' rx='92.0048' ry='92.0047' transform='rotate(90 154.726 22.2391)' stroke='black' stroke-width='2' stroke-linecap='round' stroke-dasharray='0.25 10'/%3E%3Cpath d='M155.388 36.9628C146.89 36.9628 140.002 30.0744 140.002 21.5771C140.002 13.0798 146.89 6.1914 155.388 6.1914C163.885 6.1914 170.773 13.0798 170.773 21.5771C170.773 30.0744 163.885 36.9628 155.388 36.9628Z' stroke='black'/%3E%3Cpath d='M42.8607 217.001C19.7411 217.001 0.998849 198.259 0.998854 175.139C0.998859 152.02 19.7411 133.277 42.8608 133.277C65.9804 133.277 84.7227 152.02 84.7226 175.139C84.7226 198.259 65.9804 217.001 42.8607 217.001Z' stroke='black'/%3E%3Cpath d='M242.758 128.144L171.934 42.7578' stroke='black'/%3E%3Cpath d='M76.8831 133.267L141.029 42.7574' stroke='black'/%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1155px) {
  section #subscribe {
    flex-direction: column;
  }
}
section #subscribe > * {
  flex-basis: 100%;
  width: 100%;
}
section #subscribe h4, section #subscribe p {
  color: #000000;
}
@media screen and (max-width: 1155px) {
  section #subscribe h4, section #subscribe p {
    margin-bottom: 24px;
  }
}
section #subscribe h4 {
  margin-bottom: 16px;
}
section #subscribe form .field-row {
  display: flex;
  gap: 24px;
}
section #subscribe form input[type=text],
section #subscribe form input[type=email] {
  height: 48px !important;
  padding: 0px 16px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #3C476B;
  margin-bottom: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: auto;
}
section #subscribe form input[type=text]::placeholder,
section #subscribe form input[type=email]::placeholder {
  color: #000000;
}
section .content p a:hover {
  color: #9FE8FF;
}
section .title-container.padding-40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 1155px) {
  section .title-container.padding-40 {
    padding-bottom: 24px;
  }
}
section .title-container.padding-75 {
  padding-bottom: 72px;
}
@media screen and (max-width: 1155px) {
  section .title-container.padding-75 {
    padding-bottom: 40px;
  }
}
section .title-container.padding-60 {
  padding-bottom: 60px;
}
@media screen and (max-width: 1155px) {
  section .title-container.padding-60 {
    padding-bottom: 30px;
  }
}
section .title-container.padding-80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 1155px) {
  section .title-container.padding-80 {
    padding-bottom: 40px;
  }
}
section .title-container.padding-100 {
  padding-bottom: 100px;
}
@media screen and (max-width: 1155px) {
  section .title-container.padding-100 {
    padding-bottom: 70px;
  }
}
section .title-container h2 {
  margin-bottom: 24px;
}
section .title-container h3:last-child {
  margin: 0;
}
section .title-container.with-button {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1155px) {
  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;
  border: 1px solid #020B27;
  padding: 4px 10px;
  color: #020B27;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
section #category-links a span:hover, section #category-links a span.active {
  background-color: #020B27;
  color: #ffffff;
}
section #category-links.collapsed {
  display: flex;
}
section:not(.light) #breadcrumb a {
  color: #00F1F9 !important;
}
section:not(.light) #breadcrumb a::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cpath d='M13 9C13.5523 9 14 8.55228 14 8C14 7.44772 13.5523 7 13 7L13 9ZM0.292893 7.29289C-0.0976314 7.68342 -0.0976315 8.31658 0.292892 8.70711L6.65685 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41421 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928932C7.68054 0.538407 7.04738 0.538407 6.65685 0.928932L0.292893 7.29289ZM13 7L1 7L1 9L13 9L13 7Z' fill='%235C91F6'/%3E%3C/svg%3E");
  position: relative;
  bottom: -2px;
  padding-right: 10px;
  margin-top: 40px;
}
section:not(.light) #breadcrumb a:hover {
  color: #ffffff !important;
}
section:not(.light) #breadcrumb a:hover::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16' fill='none'%3E%3Cpath d='M13 9C13.5523 9 14 8.55228 14 8C14 7.44772 13.5523 7 13 7L13 9ZM0.292893 7.29289C-0.0976314 7.68342 -0.0976315 8.31658 0.292892 8.70711L6.65685 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41421 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928932C7.68054 0.538407 7.04738 0.538407 6.65685 0.928932L0.292893 7.29289ZM13 7L1 7L1 9L13 9L13 7Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
section #pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-top: 10px;
}
section #pagination .page-numbers {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  height: 40px;
  width: 40px;
  border-radius: 2px;
  background-color: #F9F9FF;
  border: 1px solid #EFF0F7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #pagination .page-numbers.current {
  border-color: #04C3FF;
  background-color: #04C3FF;
}
section #pagination .page-numbers:hover {
  border-color: #04C3FF;
  background-color: #04C3FF;
}
section #pagination .page-numbers.next, section #pagination .page-numbers.prev {
  background-color: transparent !important;
  top: 2px;
  width: 36px;
  padding: 0;
  border: none;
}
section #pagination .page-numbers.next {
  margin-left: 20px;
}
section #pagination .page-numbers.prev {
  margin-right: 20px;
}
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;
  background: #00F1F9;
  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;
  border: 1px solid #3C476B;
  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: #ffffff;
  height: 50px;
  width: 50px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #3C476B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  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 {
  background: #00F1F9;
}
section ul.pagination li:hover a {
  background-color: transparent;
}
section ul.pagination.next, section ul.pagination.prev {
  position: relative;
  top: 2px;
}
section#archive {
  padding-top: 75px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1155px) {
  section#archive {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
section#archive.events {
  position: relative;
}
section#archive.events::after {
  content: url("data:image/svg+xml,%3Csvg width='373' height='69' viewBox='0 0 373 69' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-716 592C-716 614.091 -698.091 632 -676 632L476 632C498.091 632 516 614.091 516 592C516 575.984 528.984 563 545 563L805 563C827.091 563 845 545.091 845 523L845 211L845 210.984L845 27C845 12.0883 832.912 -1.0568e-06 818 -2.36042e-06L66.0001 -6.81023e-05C51.0884 -6.9406e-05 39.0001 12.0882 39.0001 26.9999L39.0001 28.9998C39.0001 51.0912 21.0914 68.9998 -0.999951 68.9998L-676 68.9997C-698.091 68.9997 -716 86.9083 -716 109L-716 592Z' fill='white'/%3E%3C/svg%3E%0A");
  position: absolute;
  height: 69px;
  width: 373px;
  top: -69px;
  right: 0;
}
section#archive.events .latest {
  padding-top: 65px;
}
section#archive.events .date-container .date-cube .month {
  text-transform: uppercase;
}
section#archive.events .date-container .date-cube h4 {
  line-height: 100%;
}
section#archive.events .content-container p.date {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #020B27 !important;
  margin-bottom: 12px;
}
section#archive.events .content-container h4 {
  margin-bottom: 12px;
}
section#archive.events .content-container p.location {
  color: #8992AC !important;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 12px;
}
section#archive.events .content-container a.excerpt-read-more {
  color: #000000;
  text-decoration: none;
}
section#archive.events .content-container a.excerpt-read-more:hover {
  color: #00F1F9;
}
section#archive.events .image-container img {
  border-radius: 20px;
}
section#archive #title-container {
  margin-bottom: 50px;
}
section .search-gray {
  background-color: #131D3A;
  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;
  color: #576180;
  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;
  color: #576180;
}
section .search-gray .search-form {
  width: 100%;
}
section .content h2 {
  margin-bottom: 20px;
}
section .content h3 {
  margin-bottom: 20px;
}
section .content h4 {
  margin-bottom: 20px;
}
section .content h5 {
  margin-bottom: 20px;
}
section .content p {
  margin-bottom: 24px;
}
section .content li {
  margin-bottom: 10px;
}
section .content li a {
  color: #000000 !important;
}
section .content ul {
  margin-left: 30px;
  margin-bottom: 0;
}
section .content img {
  margin: 0 0 32px;
}
section .content p.body-2 {
  font-size: 16px !important;
  line-height: 150% !important;
}
section #body-copy h2:not(:first-child),
section #body-copy div:not(:first-child) h2 {
  margin: 60px 0 40px;
}
@media screen and (max-width: 1155px) {
  section #body-copy h2:not(:first-child),
section #body-copy div:not(:first-child) h2 {
    margin: 24px;
    margin-left: 0;
  }
}
section #body-copy h2:first-child {
  margin: 0 0 40px;
}
@media screen and (max-width: 1155px) {
  section #body-copy h2:first-child {
    margin: 0 0 24px;
  }
}
section #body-copy h3 {
  margin: 40px 0 16px;
}
@media screen and (max-width: 1155px) {
  section #body-copy h3 {
    margin: 24px 0 16px;
  }
}
section #body-copy h4 {
  margin: 40px 0 16px;
}
@media screen and (max-width: 1155px) {
  section #body-copy h4 {
    margin: 24px 0 16px;
  }
}
section #body-copy ol {
  margin-left: 25px;
}
section #body-copy ul {
  margin-left: 0;
  padding-left: 0;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 20px;
}
section #body-copy ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
section #body-copy ul.full li {
  width: 100%;
}
section #body-copy blockquote {
  background: linear-gradient(180deg, #9CEDFF 0%, #00B2DB 100%);
  position: relative;
  border-radius: 5px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: none !important;
  margin: 48px 0;
}
section #body-copy blockquote::before {
  content: "";
  position: absolute;
  right: 33px;
  bottom: -2px;
  background-color: #ffffff;
  height: 10px;
  width: 33px;
  z-index: 2;
}
section #body-copy blockquote::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 0;
  left: 4px;
  z-index: 1;
  margin: -2px;
  border-radius: inherit;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #ffffff;
}
section #body-copy blockquote p {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  position: relative;
  z-index: 3;
  margin-bottom: 24px;
  text-indent: -12px;
}
section #body-copy blockquote cite {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
  position: relative;
  z-index: 3;
}
section #body-copy blockquote cite strong {
  font-weight: 600;
}
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;
  background-color: #131D3A;
  margin-top: 40px;
}
section #body-copy #body-CTA h3 {
  margin: 0 0 20px !important;
}
section #body-copy p {
  margin-bottom: 25px;
}
section #tags {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}
section #tags a {
  border-radius: 5px;
  background-color: #131D3A;
  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;
  color: #C5CBDB;
  text-decoration: none;
}
section #tags a:hover {
  background-color: #00F1F9;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
section #social-column {
  height: 100%;
}
@media screen and (max-width: 1155px) {
  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: 1155px) {
  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 #separator {
  position: relative;
  height: 100%;
}
section #separator .line {
  width: 1px;
  height: 100%;
  background-color: #C5CBDB;
  position: relative;
  left: 50%;
}
section aside {
  height: 100%;
}
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 h6.title::before {
  content: "";
  width: 44px;
  height: 5px;
  background-color: #131D3A;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}
section aside #sidebar-card {
  margin-bottom: 24px;
}
section aside #sidebar-card #image-container {
  margin-bottom: 24px;
}
@media screen and (max-width: 1155px) {
  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;
  background-color: #00F1F9;
  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: #000000;
}
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: #000000 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  display: flex;
  justify-content: center;
}
section aside #newsletter input[type=submit]:hover {
  background: #ffffff !important;
  color: #000000 !important;
}
section aside #form-container {
  padding: 40px;
  border-radius: 7px;
  background: linear-gradient(180deg, #AEFFD5 0%, #6FC79C 100%);
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}
section aside #form-container::after {
  content: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1476_34575)'%3E%3Cellipse cx='78.9977' cy='9' rx='69.5139' ry='69.5139' transform='rotate(87.211 78.9977 9)' stroke='black' stroke-width='2' stroke-linecap='round' stroke-dasharray='0.25 10'/%3E%3Cpath d='M79.3877 23.6332C70.8904 23.6332 64.002 16.7448 64.002 8.24753C64.002 -0.249771 70.8904 -7.13819 79.3877 -7.13819C87.885 -7.13819 94.7734 -0.249765 94.7734 8.24753C94.7734 16.7448 87.885 23.6332 79.3877 23.6332Z' stroke='black'/%3E%3Cpath d='M41.9882 45.7436C39.0031 45.1812 37.0392 42.3054 37.6016 39.3204C38.164 36.3353 41.0398 34.3714 44.0248 34.9338C47.0099 35.4962 48.9738 38.372 48.4114 41.357C47.849 44.3421 44.9732 46.306 41.9882 45.7436Z' stroke='black'/%3E%3Cpath d='M49.8006 33.9869L67.5676 18' stroke='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1476_34575'%3E%3Crect width='80' height='80' fill='white' transform='translate(0 80) rotate(-90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  width: 80px;
  height: 80px;
  top: 0;
  right: 0;
}
section aside #form-container #button-container #button {
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  transition: all 0.2s ease-in-out;
}
section aside #form-container #button-container #button:hover {
  color: #000000;
  background: #ffffff;
}
section aside #form-container h5 {
  margin-bottom: 24px;
  color: #000000;
}
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;
}
section aside #form-container form .input {
  margin-right: 0 !important;
}
section aside #form-container form input {
  width: 100% !important;
}
section aside #form-container form.mktoForm .mktoFormRow:nth-child(2) {
  margin-bottom: 14px !important;
}
section aside #form-container form.mktoForm .mktoFieldWrap {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}
@media screen and (max-width: 1155px) {
  section aside #form-container form.mktoForm .mktoFieldWrap {
    width: 100% !important;
  }
}
@media screen and (max-width: 1155px) {
  section aside #form-container form {
    width: 100% !important;
  }
  section aside #form-container form .mktoFormCol {
    width: 100% !important;
  }
  section aside #form-container form .mktoFormCol input {
    width: 100% !important;
  }
}
section aside #form-container input[type=text],
section aside #form-container input[type=email] {
  height: 48px !important;
  padding: 0px 16px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #000000;
  margin-bottom: 16px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
section aside #form-container input[type=text]::placeholder,
section aside #form-container input[type=email]::placeholder {
  color: #000000;
}
section aside #form-container button[type=submit] {
  width: 100% !important;
  border: none !important;
  background: #000000 !important;
  font-size: 16px !important;
  display: flex;
  justify-content: center;
}
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: #000000 !important;
  font-size: 24px;
  font-weight: 600 !important;
  line-height: 120%;
}
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 {
  color: #3C476B;
  font-weight: 400;
  text-decoration: none;
  padding-left: 13px;
  padding-bottom: 3px;
  display: block;
}
section aside ol.toc li a:hover {
  color: #000000;
  font-weight: 600;
  border-left: 2.5px solid #04C3FF;
}
section aside ol.toc li a.active {
  color: #000000;
  font-weight: 600;
  border-left: 2.5px solid #04C3FF;
}
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 #resource-card {
  border-radius: 3px;
  border: 1px solid #EFF0F7;
  background: #F9F9FF;
  display: flex;
  flex-direction: column;
}
section #resource-card #image-container img {
  height: 225px;
  overflow: hidden;
}
section #resource-card #content-container {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
}
section #resource-card #content-container h5 {
  margin-bottom: 30px;
  transition: 0.3s color cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #resource-card #content-container p.date {
  margin-bottom: 10px;
}
section #resource-card #content-container #button-container {
  margin-top: auto;
}
section #resource-card:hover h5 {
  color: #04C3FF;
}
section #news-card {
  padding-top: 15px;
  border-top: 1px solid #C5CBDB;
}
section #news-card h4 {
  transition: 0.3s color cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #news-card h5 {
  transition: 0.3s color cubic-bezier(0.075, 0.82, 0.165, 1);
}
section #news-card p.date {
  margin-bottom: 10px;
}
section #news-card:hover h5 {
  color: #04C3FF;
}
section #news-card:hover h4 {
  color: #04C3FF;
}
section ul {
  list-style-position: inside;
}
section#content .content {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#content .image-container {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#content #form-container {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#content #boxed-content {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: 1s all cubic-bezier(0.215, 0.61, 0.355, 1);
}
section#content #boxed-image {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
}
section#content.show .content,
section#content.show .image-container,
section#content.show #form-container,
section#content.show #boxed-content,
section#content.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#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;
}

#animated-line {
  position: fixed;
  opacity: 0;
  width: 3px;
  height: 47px;
  top: 50vh;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#animated-line.teal {
  background-color: #00F1F9;
}
#animated-line.pink {
  background-color: #FF67D5;
}
#animated-line.purple {
  background-color: #9532FF;
}

/*********************
FOOTER
*********************/
.footer {
  clear: both;
  position: relative;
  margin-top: 0;
  padding: 80px 0 20px;
  background: #020B27;
}
.footer p {
  color: #C5CBDB;
}
@media screen and (max-width: 1155px) {
  .footer {
    padding-top: 35px;
  }
}
.footer .section-footer {
  max-width: 1360px;
  margin: 0 auto;
}
.footer .section-footer .top-row, .footer .section-footer .bottom-row {
  grid-column-start: 1;
  grid-column-end: span 12;
}
.footer .section-footer .top-row .left-column {
  grid-column-end: span 3;
  display: flex;
  flex-direction: column;
}
.footer .section-footer .top-row .left-column a.logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer .section-footer .top-row .left-column .caption p {
  margin-bottom: 20px;
}
.footer .section-footer .top-row .left-column .separator::after {
  content: "";
  width: 1px;
  background-color: #DAE5FB;
  display: block;
  height: 100%;
  margin: -9px 20px;
  opacity: 0.25;
}
.footer .section-footer .top-row .left-column .link-group {
  display: flex;
  gap: 10px;
}
.footer .section-footer .top-row .left-column .link-group svg {
  height: 30px;
}
.footer .section-footer .top-row .left-column .link-group svg rect {
  transition: all 0.2s ease;
}
.footer .section-footer .top-row .left-column .link-group.social-links a:hover svg rect {
  fill: #ffffff;
}
@media only screen and (max-width: 768px) {
  .footer .section-footer .top-row .left-column {
    width: 100%;
    margin-bottom: 40px;
  }
}
.footer .section-footer .top-row .column {
  display: flex;
  flex-flow: column;
}
.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: 32px;
}
.footer .section-footer .top-row .column .footer-nav-group .header {
  font-size: 16px;
  font-weight: 700 !important;
  line-height: 150%;
  margin-bottom: 12px;
  color: #ffffff;
}
.footer .section-footer .top-row .column .footer-nav-group .header a {
  color: #ffffff;
  text-decoration: none;
}
.footer .section-footer .top-row .column .footer-nav-group .header a:hover {
  text-decoration: underline;
}
.footer .section-footer .top-row .column .footer-nav-group > a {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #B7C9D5;
  transition: all 0.2s ease;
}
.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: 8px;
}
.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 {
  margin-top: 12px;
  font-weight: 700;
  pointer-events: none;
  cursor: default;
}
.footer .section-footer .top-row .column .footer-nav-group > p + a.title {
  margin-top: 0 !important;
}
.footer .section-footer .columns {
  margin-top: 42px;
  margin-bottom: 76px;
}
.footer .section-footer .columns .column p.header {
  margin-bottom: 10px;
}
.footer .section-footer .columns .column p.header a {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: #ffffff;
  text-decoration: none;
}
.footer .section-footer .columns .column p.header a:hover {
  color: #00F1F9;
}
.footer .section-footer .columns .column > div > a {
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  display: block;
}
.footer .section-footer .columns .column > div > a:hover {
  color: #00F1F9;
}
.footer .section-footer .sidebar {
  text-align: right;
}
.footer .section-footer .sidebar .button-container {
  margin-bottom: 35px;
}
.footer .section-footer .sidebar .social-icons {
  display: flex;
  gap: 10px;
  justify-content: end;
}
.footer .section-footer .sidebar .social-icons rect, .footer .section-footer .sidebar .social-icons path {
  transition: 0.2s all;
}
.footer .section-footer .sidebar .social-icons a:hover svg rect {
  fill: #ffffff;
  stroke: #ffffff;
}
.footer .section-footer .sidebar .social-icons a:hover svg path {
  fill: #3C476B;
}
.footer .section-footer .sidebar .social-icons a:hover svg path:nth-child(2) {
  fill: #ffffff;
}
.footer .section-footer #button {
  color: #ffffff !important;
  background-color: transparent !important;
  width: 148.5px;
  height: 49.5px;
  padding: 14px 20px 14px 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='149' height='50' viewBox='0 0 149 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.25 2.11328C0.25 1.14678 1.0335 0.363281 2 0.363281H134V1.86328H2C1.86193 1.86328 1.75 1.97521 1.75 2.11328H0.25ZM134 49.8633H2C1.0335 49.8633 0.25 49.0798 0.25 48.1133H1.75C1.75 48.2514 1.86193 48.3633 2 48.3633H134V49.8633ZM2 49.8633C1.0335 49.8633 0.25 49.0798 0.25 48.1133V2.11328C0.25 1.14678 1.0335 0.363281 2 0.363281V1.86328C1.86193 1.86328 1.75 1.97521 1.75 2.11328V48.1133C1.75 48.2514 1.86193 48.3633 2 48.3633V49.8633Z' fill='white'/%3E%3Cpath d='M134 1.11328H146.5C147.052 1.11328 147.5 1.561 147.5 2.11328V35.9882L134.5 49.1133H134' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
@media only screen and (max-width: 1155px) {
  .footer .section-footer {
    padding: 40px 0;
    margin: 0 20px;
  }
  .footer .section-footer span {
    display: none;
  }
  .footer .section-footer .top-row, .footer .section-footer .bottom-row {
    padding: 0;
  }
  .footer .section-footer .bottom-row {
    flex-flow: column;
    justify-content: center;
    align-items: left;
    margin-top: 40px;
  }
  .footer .section-footer .bottom-row .column {
    margin-bottom: 20px;
  }
  .footer .section-footer .top-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .footer .section-footer .top-row .logo {
    margin-bottom: 50px;
    width: 100%;
  }
  .footer .section-footer .top-row .column {
    margin-bottom: 30px;
    width: 45%;
  }
  .footer .section-footer .top-row .column a, .footer .section-footer .top-row .column .header {
    margin-bottom: 30px;
  }
}
.footer .footer-mid {
  margin-top: 75px;
}
.footer .footer-mid .logo-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-bottom {
  margin-top: 25px;
}
.footer.simple-nav .top-row .column,
.footer.simple-nav .top-row .left-column > div {
  display: none !important;
}
.footer.simple-nav .top-row .left-column .logo {
  margin-bottom: 0;
}
.footer.simple-nav .top-row .button-container {
  display: none;
}
.footer.simple-nav .footer-mid {
  display: none;
}
.footer.simple-nav .sidebar {
  grid-column: 1/-1;
}
.footer.simple-nav .sidebar .social-icons {
  justify-content: center;
}

/*********************
BITS
*********************/
.single-event .image-container img {
  border-radius: 20px;
}

.single-career .wp-block-heading {
  margin-bottom: 24px;
}

@media (max-width: 1155px) {
  .single-post #hero {
    padding-bottom: 0;
  }
}
.single-post #post.light .wp-block-table td {
  color: #000;
}

@media (max-width: 1155px) {
  .single #sticky #toc {
    display: none;
  }
}
@media (max-width: 1155px) {
  .single #related-posts #button-container a {
    margin-top: 0;
  }
}

img {
  display: block;
}

.text-center img {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 650px) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 651px) {
  .hidden-lg {
    display: none;
  }
}

br.empty {
  content: "";
}

.social {
  justify-content: space-between;
  align-items: center;
}
.social div {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social div a {
  display: contents;
}
.responsive-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}
.responsive-video-wrapper iframe.responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*********************
ANIMATIONS
*********************/
@keyframes fromRight {
  0% {
    transform: translate(50px, 0px);
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes fromLeft {
  0% {
    transform: translate(-50px, 0px);
    opacity: 0.1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes fadein {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.fade, .stagger .col {
  opacity: 0;
}
@media (max-width: 766px) {
  .fade, .stagger .col {
    opacity: 1;
  }
}
.fade.in.animation, .stagger .col.in.animation {
  animation: fadein 0.5s;
  opacity: 1;
}
.fade.right.animation, .stagger .col.right.animation {
  animation: fromRight 0.7s;
  opacity: 1;
}
.fade.left.animation, .stagger .col.left.animation {
  animation: fromLeft 0.7s;
  opacity: 1;
}

.fade-load {
  animation: fadein 0.75s;
  /*
  opacity: 0;
  animation: fadein .5s ease .5s forwards;
   */
}

@media (max-width: 1155px) {
  .page-template-form-modular #form-container {
    margin-top: 40px;
  }
}

/*********************
POSTS & CONTENT STYLES
*********************/
.page-template-blog .title-container h2 {
  margin-bottom: 0;
}

.hubspot-form .submitted-message {
  color: #000000 !important;
}
.hubspot-form .submitted-message p, .hubspot-form .submitted-message p span {
  color: #000000 !important;
}

.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.byline {
  color: #000000;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

.post-password-form input[type=submit] {
  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] .post-password-form input[type=submit] {
  outline: 0;
}
.post-password-form input[type=submit], .post-password-form input[type=submit].disabled, .post-password-form input[type=submit][disabled], .post-password-form input[type=submit].disabled:hover, .post-password-form input[type=submit][disabled]:hover, .post-password-form input[type=submit].disabled:focus, .post-password-form input[type=submit][disabled]:focus {
  background-color: #000000;
  color: #ffffff;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background-color: black;
  color: #ffffff;
}

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-right: -15px;
  margin-left: -15px;
}

.gallery::before, .gallery::after {
  content: " ";
  display: table;
}

.gallery::after {
  clear: both;
}

.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-1 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-1 > dl, .gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-2 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-2 > dl, .gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-3 > dl {
  width: 33.3333333333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-3 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-3 > dl, .gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-4 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-4 > dl, .gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-5 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-5 > dl, .gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-6 > dl {
  width: 16.6666666667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-6 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-6 > dl, .gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-7 > dl {
  width: 14.2857142857%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-7 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-7 > dl, .gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .gallery.gallery-columns-8 > dl {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.gallery.gallery-columns-8 > dl, .gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
  float: right;
}

.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.gallery dl:last-child:not(:first-child) {
  float: right;
}

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem;
}

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none;
}

.widget ul {
  margin: 0;
}

/*********************
HEADER STYLES
*********************/
/*********************
FOOTER STYLES
*********************/
/*********************
VISUAL EDITOR STYLES
*********************/
body#tinymce {
  margin: 20px;
}

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0;
}

.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}

/*********************
AvaPrize FORM STYLES
*********************/
.gform-theme {
  max-width: 100%;
  background: #131D3A;
  padding: 40px;
  border-radius: 20px;
}
.gform-theme .gform_title {
  font-size: 22px;
  color: #000;
  margin-bottom: 25px !important;
}
.gform-theme .gform_required_legend {
  color: #000;
}
.gform-theme .button.gform_button {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 16px !important;
  font-family: "DM Sans", sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 100% !important;
  border-radius: 5px !important;
  color: #000000 !important;
  text-align: center !important;
  background: #35D3D3 !important;
  box-sizing: border-box !important;
  height: 48px !important;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1.5px solid #35D3D3 !important;
  margin: 0 !important;
}
.gform-theme .button.gform_button:hover {
  background: #FF9243 !important;
  border-color: #FF9243 !important;
}

@media (max-width: 660px) {
  .mktoForm .mktoFormRow {
    margin-bottom: 0 !important;
  }
}
/*********************
COST CALCULATOR STYLES
*********************/
.page-id-1064 #main-content {
  /* border*/
  /* end borders */
  /* Specific id styling */
  /* border specific */
  /* end border specific */
  /* Update width with content changes */
  /* use flex for stretchability */
}
.page-id-1064 #main-content input::-webkit-outer-spin-button,
.page-id-1064 #main-content input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.page-id-1064 #main-content .cp_cff_13 * {
  font-family: "DM Sans", sans-serif;
}
.page-id-1064 #main-content input[type=number] {
  -moz-appearance: textfield;
}
.page-id-1064 #main-content .cff-hidden-container {
  display: none;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=text]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=password]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=color]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=date]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=datetime]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=email]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=number]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=search]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=tel]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=time]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=url]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=week]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fields:not(.cff-switch-container) input[type=checkbox]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fields:not(.cff-switch-container) input[type=radio]:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder select:focus,
.page-id-1064 #main-content .cp_cff_13 #fbuilder textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 1px transparent;
  outline: 2px solid transparent;
  border-radius: 0px;
  background-color: rgba(0, 162, 170, 0.1);
}
.page-id-1064 #main-content .fields.calc-heading.fieldname20_1.cff-calculated-field:after,
.page-id-1064 #main-content .fields.calc-heading.fieldname28_1.cff-calculated-field#field_1-13:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  width: 100%;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0px;
}
.page-id-1064 #main-content #fieldname23_1 {
  position: relative;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-17:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  width: 100%;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0px;
}
.page-id-1064 #main-content .fields.fieldname3_1.cff-container-field#field_1-2 {
  padding: 0px;
}
.page-id-1064 #main-content .fields.calc-heading.fieldname2_1.cff-number-field#field_1-0 {
  padding: 39px 0px 42px 0px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .r {
  color: #00A2AA;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=number] {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  width: 100% !important;
  margin-top: 20px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=text],
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=text]::placeholder {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 10px;
  width: 100% !important;
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
  color: #636466;
  padding: 0px;
  line-height: 1;
  min-height: 23px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder span.uh {
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=button] {
  border-radius: 8px;
  background-color: #F16E00;
  border-color: #F16E00;
  font-weight: 700;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder input[type=button]:hover {
  border-color: #E34F00;
  background-color: #E34F00;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fieldname2_1 {
  display: inline-block;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fieldname32_1 {
  display: inline-block;
}
.page-id-1064 #main-content #fbuilder .fields:not(.cff-container-field) {
  padding: 20px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fields.section_breaks {
  padding: 0px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fields.cff-calculated-field > label {
  font-size: 16px;
  font-weight: 400;
  color: #636466;
  line-height: 0.9;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fields.cff-calculated-field {
  width: auto;
  background-color: rgba(0, 0, 0, 0.03);
  /*padding: 20px !important;*/
  border-radius: 10px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder .fields > label {
  font-size: 18px;
  font-weight: 600;
  color: #00A2AA;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder fieldset legend {
  border: 0;
  padding-left: 0;
  font-size: 18px;
  font-weight: 600;
  color: #00A2AA;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder fieldset {
  border: 0;
  padding: 0px;
  margin: 0;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-16 {
  background-color: #fff;
  position: relative;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 50px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-17 {
  background-color: #fff;
  padding-left: 0;
  position: relative;
  border-radius: 0;
  padding-top: 36px;
}
.page-id-1064 #main-content #fieldname3_1 {
  position: relative;
  padding: 0px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-17 legend {
  padding: 40px 0 10px 0px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-15 label {
  font-size: 18px;
  font-weight: 600;
  color: #00A2AA;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-8 {
  width: 100%;
  padding-top: 26px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-4 {
  width: 100%;
  padding-top: 28px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-13 {
  background-color: #fff;
  padding-left: 0;
  border-radius: 0;
  padding-bottom: 48px;
  padding-top: 40px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-13 label {
  font-size: 18px;
  font-weight: 600;
  color: #00A2AA;
}
.page-id-1064 #main-content #fieldname4_1 {
  /*display: flex;
     flex-flow: row wrap;
     justify-content: flex-start;
     gap: 20px 20px;*/
  width: 100%;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-18 {
  /*flex: 1 0 20%;*/
  width: 202px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-19 {
  /*flex: 1 0 30%;*/
  width: 282px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-20 {
  /*flex: 1 0 15%;*/
  width: 184px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-21 {
  /*flex: 1 0 20%;*/
  width: 188px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-22 {
  /*flex: 1 0 15%;*/
  width: 110px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
  clear: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-23 {
  /*flex: 1 0 22%;*/
  width: 190px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-24 {
  /*flex: 1 0 26%;*/
  width: 263px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-25 {
  /*flex: 1 0 26%;*/
  width: 269px;
  margin-bottom: 20px;
  float: left;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-6 {
  display: inline-block;
  margin-right: 0;
  /*border-right: 2px rgba(0,0,0,0.1) solid;*/
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(0, 162, 170, 0.1);
  text-align: center;
  position: relative;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-6:after {
  content: "";
  position: absolute;
  right: 0;
  height: 67%;
  width: 2px;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-7 {
  display: inline-block;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: rgba(0, 162, 170, 0.1);
  text-align: center;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-9 {
  width: 218px;
  display: inline-block;
  margin-right: 20px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-10 {
  width: 182px;
  display: inline-block;
  vertical-align: top;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #fieldname20_1,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #fieldname28_1 {
  background-color: rgba(0, 162, 170, 0.1);
  width: 180px !important;
  text-align: center;
  padding: 20px 10px !important;
  margin-top: 8px;
}
.page-id-1064 #main-content .cp_cff_13 #fbuilder #fieldname30_1,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #fieldname31_1 {
  text-align: center;
}
.page-id-1064 #main-content #fieldname29_1 {
  display: flex;
  justify-content: space-between;
}
.page-id-1064 #main-content #field_1-5.fields.fieldname33_1.cff-html-field {
  margin: 0px 0px 0px 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.02);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  width: 50%;
}
.page-id-1064 #main-content #fieldname33_1.dfield {
  min-height: 100%;
  align-items: center;
  display: flex;
  margin: 0px !important;
}
.page-id-1064 #main-content .dfield {
  padding-top: 0 !important;
}
.page-id-1064 #main-content #div_block-203-2-cu-btn {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}
.page-id-1064 #main-content .calc-text-div {
  color: #636466;
  font-size: 16px;
  font-weight: 400;
  margin-right: 30px;
}
.page-id-1064 #main-content #link_button-206-2-cu-btn,
.page-id-1064 #main-content .calc-btn-div {
  white-space: nowrap !important;
}
.page-id-1064 #main-content .ct-link-button, .page-id-1064 #main-content .calculate-button {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 16px !important;
  font-family: "DM Sans", sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 100% !important;
  border-radius: 5px !important;
  color: #000000 !important;
  text-align: center !important;
  background: #35D3D3 !important;
  box-sizing: border-box !important;
  height: 48px !important;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1.5px solid #35D3D3 !important;
  margin: 0 !important;
}
.page-id-1064 #main-content .ct-link-button:hover, .page-id-1064 #main-content .calculate-button:hover {
  background: #FF9243 !important;
  border-color: #FF9243 !important;
}
.page-id-1064 #main-content #span-27-239 a {
  color: #F16E00;
}
.page-id-1064 #main-content .fields.fieldname29_1.cff-container-field.column2#field_1-4 fieldset legend {
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-21 {
    margin-right: 20px;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-22 {
    clear: none !important;
  }
}
@media (max-width: 767px) {
  .page-id-1064 #main-content #fieldname29_1 {
    flex-wrap: wrap;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-6,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-7 {
    width: 50%;
  }
  .page-id-1064 #main-content #field_1-5.fields.fieldname33_1.cff-html-field {
    margin: 25px 0px 0px 0px;
    width: 100%;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-18,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-19,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-20,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-23,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-24,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-25 {
    /*flex: 1 0 30%;*/
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-8,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-4 {
    width: 100%;
  }
}
@media (max-width: 734px) {
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-22 {
    clear: both !important;
  }
}
@media (max-width: 479px) {
  .page-id-1064 #main-content .fields.calc-heading.fieldname2_1.cff-number-field#field_1-0 {
    padding: 39px 0px 20px 0px;
  }
  .page-id-1064 #main-content .fieldname32_1.cff-button-field#field_1-1 {
    padding: 0px 0px 40px 0px;
    display: block;
  }
  .page-id-1064 #main-content #fieldname4_1 {
    width: fit-content;
  }
  .page-id-1064 #main-content #fieldname29_1 {
    flex-wrap: wrap;
  }
  .page-id-1064 #main-content #field_1-31.fields.fieldname33_1.cff-html-field {
    margin: 25px 0px 0px 0px;
    width: 100%;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-18,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-19,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-20,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-21,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-23,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-24,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-25 {
    /*flex: none;
    flex-basis: fit-content;*/
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-22 {
    clear: left !important;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-9 {
    margin-bottom: 20px;
  }
  .page-id-1064 #main-content .fields.calc-heading.fieldname28_1.cff-calculated-field#field_1-13 {
    padding-top: 50px;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-6,
.page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-7 {
    width: 100%;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-6 {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-7 {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 10px;
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-6:after {
    right: auto;
    width: 53px;
    height: 2px;
    top: 100%;
    transform: translate(-50%, -50%);
  }
  .page-id-1064 #main-content .cp_cff_13 #fbuilder #field_1-13 {
    padding-top: 49px;
  }
  .page-id-1064 #main-content #field_1-31.fields.fieldname33_1.cff-html-field {
    padding: 20px;
  }
  .page-id-1064 #main-content #div_block-203-2-cu-btn {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .page-id-1064 #main-content .calc-text-div {
    margin-bottom: 20px;
  }
}

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