@media print, screen and (width >= 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    margin: 0 auto;
    left: auto;
    right: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow {
  transition-duration: .75s !important;
}

.fast {
  transition-duration: .25s !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(.485, .155, .24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(.485, .155, .515, .845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important;
}

.short-delay {
  transition-delay: .3s !important;
}

.long-delay {
  transition-delay: .7s !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-ccw-1turn;
}

@keyframes spin-ccw-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: .5s;
}

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

.slow {
  animation-duration: .75s !important;
}

.fast {
  animation-duration: .25s !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(.485, .155, .24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(.485, .155, .515, .845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(.76, -.245, .24, 1.245) !important;
}

.short-delay {
  animation-delay: .3s !important;
}

.long-delay {
  animation-delay: .7s !important;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  margin: 0;
}

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

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

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

a {
  background-color: #0000;
}

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

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

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

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

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

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

button:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="button"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="reset"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="submit"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

fieldset {
  padding: .35em .75em .625em;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

[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, [hidden] {
  display: none;
}

[data-whatintent="mouse"] *, [data-whatintent="mouse"] :focus, [data-whatintent="touch"] *, [data-whatintent="touch"] :focus, [data-whatinput="mouse"] *, [data-whatinput="mouse"] :focus, [data-whatinput="touch"] *, [data-whatinput="touch"] :focus {
  outline: none;
}

[draggable="false"] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

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

html {
  box-sizing: border-box;
  font-size: 1.125rem;
}

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

body {
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fffcf9;
  margin: 0;
  padding: 0;
  font-family: geometria, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

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

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

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

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

button {
  appearance: none;
  cursor: auto;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 0;
  line-height: 1;
}

[data-whatinput="mouse"] button {
  outline: 0;
}

pre {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

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

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

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

.grid-container {
  max-width: 66.6667rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-container {
    padding-left: .833333rem;
    padding-right: .833333rem;
  }
}

.grid-container.fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-container.fluid {
    padding-left: .833333rem;
    padding-right: .833333rem;
  }
}

.grid-container.full {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

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

.cell {
  flex: none;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.cell.auto {
  flex: 1 1 0;
}

.cell.shrink {
  flex: none;
}

.grid-x > .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 (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 (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: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (width >= 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    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: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (width >= 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    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: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .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: -.555556rem;
  margin-right: -.555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-margin-x {
    margin-left: -.833333rem;
    margin-right: -.833333rem;
  }
}

.grid-margin-x > .cell {
  width: calc(100% - 1.11111rem);
  margin-left: .555556rem;
  margin-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.66667rem);
    margin-left: .833333rem;
    margin-right: .833333rem;
  }
}

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

.grid-margin-x > .small-1 {
  width: calc(8.33333% - 1.11111rem);
}

.grid-margin-x > .small-2 {
  width: calc(16.6667% - 1.11111rem);
}

.grid-margin-x > .small-3 {
  width: calc(25% - 1.11111rem);
}

.grid-margin-x > .small-4 {
  width: calc(33.3333% - 1.11111rem);
}

.grid-margin-x > .small-5 {
  width: calc(41.6667% - 1.11111rem);
}

.grid-margin-x > .small-6 {
  width: calc(50% - 1.11111rem);
}

.grid-margin-x > .small-7 {
  width: calc(58.3333% - 1.11111rem);
}

.grid-margin-x > .small-8 {
  width: calc(66.6667% - 1.11111rem);
}

.grid-margin-x > .small-9 {
  width: calc(75% - 1.11111rem);
}

.grid-margin-x > .small-10 {
  width: calc(83.3333% - 1.11111rem);
}

.grid-margin-x > .small-11 {
  width: calc(91.6667% - 1.11111rem);
}

.grid-margin-x > .small-12 {
  width: calc(100% - 1.11111rem);
}

@media print, screen and (width >= 40em) {
  .grid-margin-x > .auto, .grid-margin-x > .shrink {
    width: auto;
  }

  .grid-margin-x > .small-1 {
    width: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-x > .small-2 {
    width: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-x > .small-3 {
    width: calc(25% - 1.66667rem);
  }

  .grid-margin-x > .small-4 {
    width: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-x > .small-5 {
    width: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-x > .small-6 {
    width: calc(50% - 1.66667rem);
  }

  .grid-margin-x > .small-7 {
    width: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-x > .small-8 {
    width: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-x > .small-9 {
    width: calc(75% - 1.66667rem);
  }

  .grid-margin-x > .small-10 {
    width: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-x > .small-11 {
    width: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-x > .small-12 {
    width: calc(100% - 1.66667rem);
  }

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

  .grid-margin-x > .medium-1 {
    width: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-x > .medium-2 {
    width: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.66667rem);
  }

  .grid-margin-x > .medium-4 {
    width: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-x > .medium-5 {
    width: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.66667rem);
  }

  .grid-margin-x > .medium-7 {
    width: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-x > .medium-8 {
    width: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.66667rem);
  }

  .grid-margin-x > .medium-10 {
    width: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-x > .medium-11 {
    width: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.66667rem);
  }
}

@media print, screen and (width >= 64em) {
  .grid-margin-x > .large-auto, .grid-margin-x > .large-shrink {
    width: auto;
  }

  .grid-margin-x > .large-1 {
    width: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-x > .large-2 {
    width: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-x > .large-3 {
    width: calc(25% - 1.66667rem);
  }

  .grid-margin-x > .large-4 {
    width: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-x > .large-5 {
    width: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-x > .large-6 {
    width: calc(50% - 1.66667rem);
  }

  .grid-margin-x > .large-7 {
    width: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-x > .large-8 {
    width: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-x > .large-9 {
    width: calc(75% - 1.66667rem);
  }

  .grid-margin-x > .large-10 {
    width: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-x > .large-11 {
    width: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-x > .large-12 {
    width: calc(100% - 1.66667rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-left: -.555556rem;
  margin-right: -.555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-padding-x .grid-padding-x {
    margin-left: -.833333rem;
    margin-right: -.833333rem;
  }
}

.grid-container:not(.full) > .grid-padding-x {
  margin-left: -.555556rem;
  margin-right: -.555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-left: -.833333rem;
    margin-right: -.833333rem;
  }
}

.grid-padding-x > .cell {
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-padding-x > .cell {
    padding-left: .833333rem;
    padding-right: .833333rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-margin-collapse > .small-1 {
  width: 8.33333%;
}

.small-margin-collapse > .small-2 {
  width: 16.6667%;
}

.small-margin-collapse > .small-3 {
  width: 25%;
}

.small-margin-collapse > .small-4 {
  width: 33.3333%;
}

.small-margin-collapse > .small-5 {
  width: 41.6667%;
}

.small-margin-collapse > .small-6 {
  width: 50%;
}

.small-margin-collapse > .small-7 {
  width: 58.3333%;
}

.small-margin-collapse > .small-8 {
  width: 66.6667%;
}

.small-margin-collapse > .small-9 {
  width: 75%;
}

.small-margin-collapse > .small-10 {
  width: 83.3333%;
}

.small-margin-collapse > .small-11 {
  width: 91.6667%;
}

.small-margin-collapse > .small-12 {
  width: 100%;
}

@media print, screen and (width >= 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  .small-margin-collapse > .medium-2 {
    width: 16.6667%;
  }

  .small-margin-collapse > .medium-3 {
    width: 25%;
  }

  .small-margin-collapse > .medium-4 {
    width: 33.3333%;
  }

  .small-margin-collapse > .medium-5 {
    width: 41.6667%;
  }

  .small-margin-collapse > .medium-6 {
    width: 50%;
  }

  .small-margin-collapse > .medium-7 {
    width: 58.3333%;
  }

  .small-margin-collapse > .medium-8 {
    width: 66.6667%;
  }

  .small-margin-collapse > .medium-9 {
    width: 75%;
  }

  .small-margin-collapse > .medium-10 {
    width: 83.3333%;
  }

  .small-margin-collapse > .medium-11 {
    width: 91.6667%;
  }

  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (width >= 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  .small-margin-collapse > .large-2 {
    width: 16.6667%;
  }

  .small-margin-collapse > .large-3 {
    width: 25%;
  }

  .small-margin-collapse > .large-4 {
    width: 33.3333%;
  }

  .small-margin-collapse > .large-5 {
    width: 41.6667%;
  }

  .small-margin-collapse > .large-6 {
    width: 50%;
  }

  .small-margin-collapse > .large-7 {
    width: 58.3333%;
  }

  .small-margin-collapse > .large-8 {
    width: 66.6667%;
  }

  .small-margin-collapse > .large-9 {
    width: 75%;
  }

  .small-margin-collapse > .large-10 {
    width: 83.3333%;
  }

  .small-margin-collapse > .large-11 {
    width: 91.6667%;
  }

  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

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

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

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

  .medium-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  .medium-margin-collapse > .small-2 {
    width: 16.6667%;
  }

  .medium-margin-collapse > .small-3 {
    width: 25%;
  }

  .medium-margin-collapse > .small-4 {
    width: 33.3333%;
  }

  .medium-margin-collapse > .small-5 {
    width: 41.6667%;
  }

  .medium-margin-collapse > .small-6 {
    width: 50%;
  }

  .medium-margin-collapse > .small-7 {
    width: 58.3333%;
  }

  .medium-margin-collapse > .small-8 {
    width: 66.6667%;
  }

  .medium-margin-collapse > .small-9 {
    width: 75%;
  }

  .medium-margin-collapse > .small-10 {
    width: 83.3333%;
  }

  .medium-margin-collapse > .small-11 {
    width: 91.6667%;
  }

  .medium-margin-collapse > .small-12 {
    width: 100%;
  }

  .medium-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  .medium-margin-collapse > .medium-2 {
    width: 16.6667%;
  }

  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }

  .medium-margin-collapse > .medium-4 {
    width: 33.3333%;
  }

  .medium-margin-collapse > .medium-5 {
    width: 41.6667%;
  }

  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }

  .medium-margin-collapse > .medium-7 {
    width: 58.3333%;
  }

  .medium-margin-collapse > .medium-8 {
    width: 66.6667%;
  }

  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }

  .medium-margin-collapse > .medium-10 {
    width: 83.3333%;
  }

  .medium-margin-collapse > .medium-11 {
    width: 91.6667%;
  }

  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (width >= 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  .medium-margin-collapse > .large-2 {
    width: 16.6667%;
  }

  .medium-margin-collapse > .large-3 {
    width: 25%;
  }

  .medium-margin-collapse > .large-4 {
    width: 33.3333%;
  }

  .medium-margin-collapse > .large-5 {
    width: 41.6667%;
  }

  .medium-margin-collapse > .large-6 {
    width: 50%;
  }

  .medium-margin-collapse > .large-7 {
    width: 58.3333%;
  }

  .medium-margin-collapse > .large-8 {
    width: 66.6667%;
  }

  .medium-margin-collapse > .large-9 {
    width: 75%;
  }

  .medium-margin-collapse > .large-10 {
    width: 83.3333%;
  }

  .medium-margin-collapse > .large-11 {
    width: 91.6667%;
  }

  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

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

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

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

  .large-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  .large-margin-collapse > .small-2 {
    width: 16.6667%;
  }

  .large-margin-collapse > .small-3 {
    width: 25%;
  }

  .large-margin-collapse > .small-4 {
    width: 33.3333%;
  }

  .large-margin-collapse > .small-5 {
    width: 41.6667%;
  }

  .large-margin-collapse > .small-6 {
    width: 50%;
  }

  .large-margin-collapse > .small-7 {
    width: 58.3333%;
  }

  .large-margin-collapse > .small-8 {
    width: 66.6667%;
  }

  .large-margin-collapse > .small-9 {
    width: 75%;
  }

  .large-margin-collapse > .small-10 {
    width: 83.3333%;
  }

  .large-margin-collapse > .small-11 {
    width: 91.6667%;
  }

  .large-margin-collapse > .small-12 {
    width: 100%;
  }

  .large-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  .large-margin-collapse > .medium-2 {
    width: 16.6667%;
  }

  .large-margin-collapse > .medium-3 {
    width: 25%;
  }

  .large-margin-collapse > .medium-4 {
    width: 33.3333%;
  }

  .large-margin-collapse > .medium-5 {
    width: 41.6667%;
  }

  .large-margin-collapse > .medium-6 {
    width: 50%;
  }

  .large-margin-collapse > .medium-7 {
    width: 58.3333%;
  }

  .large-margin-collapse > .medium-8 {
    width: 66.6667%;
  }

  .large-margin-collapse > .medium-9 {
    width: 75%;
  }

  .large-margin-collapse > .medium-10 {
    width: 83.3333%;
  }

  .large-margin-collapse > .medium-11 {
    width: 91.6667%;
  }

  .large-margin-collapse > .medium-12 {
    width: 100%;
  }

  .large-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  .large-margin-collapse > .large-2 {
    width: 16.6667%;
  }

  .large-margin-collapse > .large-3 {
    width: 25%;
  }

  .large-margin-collapse > .large-4 {
    width: 33.3333%;
  }

  .large-margin-collapse > .large-5 {
    width: 41.6667%;
  }

  .large-margin-collapse > .large-6 {
    width: 50%;
  }

  .large-margin-collapse > .large-7 {
    width: 58.3333%;
  }

  .large-margin-collapse > .large-8 {
    width: 66.6667%;
  }

  .large-margin-collapse > .large-9 {
    width: 75%;
  }

  .large-margin-collapse > .large-10 {
    width: 83.3333%;
  }

  .large-margin-collapse > .large-11 {
    width: 91.6667%;
  }

  .large-margin-collapse > .large-12 {
    width: 100%;
  }

  .large-padding-collapse {
    margin-left: 0;
    margin-right: 0;
  }

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

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

.grid-margin-x > .small-offset-0 {
  margin-left: .555556rem;
}

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

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.33333% + .555556rem);
}

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

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

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

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

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

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333% + .555556rem);
}

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

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6667% + .555556rem);
}

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

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

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

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333% + .555556rem);
}

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

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6667% + .555556rem);
}

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

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

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

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333% + .555556rem);
}

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

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6667% + .555556rem);
}

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

  .grid-margin-x > .medium-offset-0 {
    margin-left: .833333rem;
  }

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

  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.33333% + .833333rem);
  }

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

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

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

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

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

  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333% + .833333rem);
  }

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

  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6667% + .833333rem);
  }

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

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

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

  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333% + .833333rem);
  }

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

  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6667% + .833333rem);
  }

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

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

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

  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333% + .833333rem);
  }

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

  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6667% + .833333rem);
  }
}

@media print, screen and (width >= 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .large-offset-0 {
    margin-left: .833333rem;
  }

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

  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333% + .833333rem);
  }

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

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

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

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

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

  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333% + .833333rem);
  }

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

  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6667% + .833333rem);
  }

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

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

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

  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333% + .833333rem);
  }

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

  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6667% + .833333rem);
  }

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

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

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

  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333% + .833333rem);
  }

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

  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6667% + .833333rem);
  }
}

.grid-y {
  flex-flow: column;
  display: flex;
}

.grid-y > .cell {
  height: auto;
  max-height: none;
}

.grid-y > .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 (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 (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: none;
}

.grid-y > .small-1 {
  height: 8.33333%;
}

.grid-y > .small-2 {
  height: 16.6667%;
}

.grid-y > .small-3 {
  height: 25%;
}

.grid-y > .small-4 {
  height: 33.3333%;
}

.grid-y > .small-5 {
  height: 41.6667%;
}

.grid-y > .small-6 {
  height: 50%;
}

.grid-y > .small-7 {
  height: 58.3333%;
}

.grid-y > .small-8 {
  height: 66.6667%;
}

.grid-y > .small-9 {
  height: 75%;
}

.grid-y > .small-10 {
  height: 83.3333%;
}

.grid-y > .small-11 {
  height: 91.6667%;
}

.grid-y > .small-12 {
  height: 100%;
}

@media print, screen and (width >= 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    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: none;
  }

  .grid-y > .medium-shrink {
    height: auto;
  }

  .grid-y > .medium-1 {
    height: 8.33333%;
  }

  .grid-y > .medium-2 {
    height: 16.6667%;
  }

  .grid-y > .medium-3 {
    height: 25%;
  }

  .grid-y > .medium-4 {
    height: 33.3333%;
  }

  .grid-y > .medium-5 {
    height: 41.6667%;
  }

  .grid-y > .medium-6 {
    height: 50%;
  }

  .grid-y > .medium-7 {
    height: 58.3333%;
  }

  .grid-y > .medium-8 {
    height: 66.6667%;
  }

  .grid-y > .medium-9 {
    height: 75%;
  }

  .grid-y > .medium-10 {
    height: 83.3333%;
  }

  .grid-y > .medium-11 {
    height: 91.6667%;
  }

  .grid-y > .medium-12 {
    height: 100%;
  }
}

@media print, screen and (width >= 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    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: none;
  }

  .grid-y > .large-shrink {
    height: auto;
  }

  .grid-y > .large-1 {
    height: 8.33333%;
  }

  .grid-y > .large-2 {
    height: 16.6667%;
  }

  .grid-y > .large-3 {
    height: 25%;
  }

  .grid-y > .large-4 {
    height: 33.3333%;
  }

  .grid-y > .large-5 {
    height: 41.6667%;
  }

  .grid-y > .large-6 {
    height: 50%;
  }

  .grid-y > .large-7 {
    height: 58.3333%;
  }

  .grid-y > .large-8 {
    height: 66.6667%;
  }

  .grid-y > .large-9 {
    height: 75%;
  }

  .grid-y > .large-10 {
    height: 83.3333%;
  }

  .grid-y > .large-11 {
    height: 91.6667%;
  }

  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -.555556rem;
  margin-bottom: -.555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -.833333rem;
    margin-bottom: -.833333rem;
  }
}

.grid-padding-y > .cell {
  padding-top: .555556rem;
  padding-bottom: .555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-padding-y > .cell {
    padding-top: .833333rem;
    padding-bottom: .833333rem;
  }

  .grid-margin-y {
    margin-top: -.833333rem;
    margin-bottom: -.833333rem;
  }

  .grid-margin-y > .cell {
    height: calc(100% - 1.66667rem);
    margin-top: .833333rem;
    margin-bottom: .833333rem;
  }
}

@media print, screen and (width >= 40em) {
  .grid-margin-y > .auto, .grid-margin-y > .shrink {
    height: auto;
  }

  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-y > .small-2 {
    height: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-3 {
    height: calc(25% - 1.66667rem);
  }

  .grid-margin-y > .small-4 {
    height: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-y > .small-5 {
    height: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-6 {
    height: calc(50% - 1.66667rem);
  }

  .grid-margin-y > .small-7 {
    height: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-y > .small-8 {
    height: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-9 {
    height: calc(75% - 1.66667rem);
  }

  .grid-margin-y > .small-10 {
    height: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-y > .small-11 {
    height: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-12 {
    height: calc(100% - 1.66667rem);
  }

  .grid-margin-y > .medium-auto, .grid-margin-y > .medium-shrink {
    height: auto;
  }

  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-y > .medium-2 {
    height: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.66667rem);
  }

  .grid-margin-y > .medium-4 {
    height: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-y > .medium-5 {
    height: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.66667rem);
  }

  .grid-margin-y > .medium-7 {
    height: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-y > .medium-8 {
    height: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.66667rem);
  }

  .grid-margin-y > .medium-10 {
    height: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-y > .medium-11 {
    height: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.66667rem);
  }
}

@media print, screen and (width >= 64em) {
  .grid-margin-y > .large-auto, .grid-margin-y > .large-shrink {
    height: auto;
  }

  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-y > .large-2 {
    height: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-3 {
    height: calc(25% - 1.66667rem);
  }

  .grid-margin-y > .large-4 {
    height: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-y > .large-5 {
    height: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-6 {
    height: calc(50% - 1.66667rem);
  }

  .grid-margin-y > .large-7 {
    height: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-y > .large-8 {
    height: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-9 {
    height: calc(75% - 1.66667rem);
  }

  .grid-margin-y > .large-10 {
    height: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-y > .large-11 {
    height: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-12 {
    height: calc(100% - 1.66667rem);
  }
}

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

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

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

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

.cell-block-container {
  flex-direction: column;
  max-height: 100%;
  display: flex;
}

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

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

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

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

  .medium-cell-block-container {
    flex-direction: column;
    max-height: 100%;
    display: flex;
  }

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

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

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

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

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

  .large-cell-block-container {
    flex-direction: column;
    max-height: 100%;
    display: flex;
  }

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

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

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

@media print, screen and (width >= 40em) {
  .grid-y.medium-grid-frame {
    flex-wrap: nowrap;
    align-items: stretch;
    width: auto;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
}

@media print, screen and (width >= 64em) {
  .grid-y.large-grid-frame {
    flex-wrap: nowrap;
    align-items: stretch;
    width: auto;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}

@media print, screen and (width >= 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}

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

.grid-margin-y {
  margin-top: -.555556rem;
  margin-bottom: -.555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-margin-y {
    margin-top: -.833333rem;
    margin-bottom: -.833333rem;
  }
}

.grid-margin-y > .cell {
  height: calc(100% - 1.11111rem);
  margin-top: .555556rem;
  margin-bottom: .555556rem;
}

@media print, screen and (width >= 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.66667rem);
    margin-top: .833333rem;
    margin-bottom: .833333rem;
  }
}

.grid-margin-y > .auto, .grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.11111rem);
}

.grid-margin-y > .small-2 {
  height: calc(16.6667% - 1.11111rem);
}

.grid-margin-y > .small-3 {
  height: calc(25% - 1.11111rem);
}

.grid-margin-y > .small-4 {
  height: calc(33.3333% - 1.11111rem);
}

.grid-margin-y > .small-5 {
  height: calc(41.6667% - 1.11111rem);
}

.grid-margin-y > .small-6 {
  height: calc(50% - 1.11111rem);
}

.grid-margin-y > .small-7 {
  height: calc(58.3333% - 1.11111rem);
}

.grid-margin-y > .small-8 {
  height: calc(66.6667% - 1.11111rem);
}

.grid-margin-y > .small-9 {
  height: calc(75% - 1.11111rem);
}

.grid-margin-y > .small-10 {
  height: calc(83.3333% - 1.11111rem);
}

.grid-margin-y > .small-11 {
  height: calc(91.6667% - 1.11111rem);
}

.grid-margin-y > .small-12 {
  height: calc(100% - 1.11111rem);
}

@media print, screen and (width >= 40em) {
  .grid-margin-y > .auto, .grid-margin-y > .shrink {
    height: auto;
  }

  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-y > .small-2 {
    height: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-3 {
    height: calc(25% - 1.66667rem);
  }

  .grid-margin-y > .small-4 {
    height: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-y > .small-5 {
    height: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-6 {
    height: calc(50% - 1.66667rem);
  }

  .grid-margin-y > .small-7 {
    height: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-y > .small-8 {
    height: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-9 {
    height: calc(75% - 1.66667rem);
  }

  .grid-margin-y > .small-10 {
    height: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-y > .small-11 {
    height: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-y > .small-12 {
    height: calc(100% - 1.66667rem);
  }

  .grid-margin-y > .medium-auto, .grid-margin-y > .medium-shrink {
    height: auto;
  }

  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-y > .medium-2 {
    height: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.66667rem);
  }

  .grid-margin-y > .medium-4 {
    height: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-y > .medium-5 {
    height: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.66667rem);
  }

  .grid-margin-y > .medium-7 {
    height: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-y > .medium-8 {
    height: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.66667rem);
  }

  .grid-margin-y > .medium-10 {
    height: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-y > .medium-11 {
    height: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.66667rem);
  }
}

@media print, screen and (width >= 64em) {
  .grid-margin-y > .large-auto, .grid-margin-y > .large-shrink {
    height: auto;
  }

  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.66667rem);
  }

  .grid-margin-y > .large-2 {
    height: calc(16.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-3 {
    height: calc(25% - 1.66667rem);
  }

  .grid-margin-y > .large-4 {
    height: calc(33.3333% - 1.66667rem);
  }

  .grid-margin-y > .large-5 {
    height: calc(41.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-6 {
    height: calc(50% - 1.66667rem);
  }

  .grid-margin-y > .large-7 {
    height: calc(58.3333% - 1.66667rem);
  }

  .grid-margin-y > .large-8 {
    height: calc(66.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-9 {
    height: calc(75% - 1.66667rem);
  }

  .grid-margin-y > .large-10 {
    height: calc(83.3333% - 1.66667rem);
  }

  .grid-margin-y > .large-11 {
    height: calc(91.6667% - 1.66667rem);
  }

  .grid-margin-y > .large-12 {
    height: calc(100% - 1.66667rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.11111rem);
}

@media print, screen and (width >= 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.66667rem);
  }
}

@media print, screen and (width >= 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.66667rem);
  }
}

@media print, screen and (width >= 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.66667rem);
  }
}

@media print, screen and (width >= 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.66667rem);
  }
}

.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 {
  place-content: center;
  align-items: 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 (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 (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: auto;
}

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

.flex-child-shrink {
  flex: 0 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 (width >= 40em) {
  .medium-flex-container {
    display: flex;
  }

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

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

  .medium-flex-child-shrink {
    flex: 0 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 (width >= 64em) {
  .large-flex-container {
    display: flex;
  }

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

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

  .large-flex-child-shrink {
    flex: 0 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 {
  font-size: inherit;
  text-rendering: optimizeLegibility;
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

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

small {
  font-size: .777778rem;
  line-height: inherit;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: inherit;
  text-rendering: optimizeLegibility;
  font-family: Sora, Arial, sans-serif;
  font-style: normal;
  font-weight: 300;
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small {
  color: inherit;
  line-height: 0;
}

h1, .h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 2.66667rem;
  line-height: 1.2;
}

h2, .h2 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 2rem;
  line-height: 1.2;
}

h3, .h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.55556rem;
  line-height: 1.2;
}

h4, .h4 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.33333rem;
  line-height: 1.2;
}

h5, .h5 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.11111rem;
  line-height: 1.2;
}

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

@media print, screen and (width >= 40em) {
  h1, .h1 {
    font-size: 3.55556rem;
  }

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

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

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

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

  h6, .h6 {
    font-size: .888889rem;
  }
}

a {
  line-height: inherit;
  color: #ff8be6;
  cursor: pointer;
  text-decoration: none;
}

a:hover, a:focus {
  color: #1b4571;
}

a img {
  border: 0;
}

hr {
  clear: both;
  border: 0;
  border-bottom: 1px solid #1b45714d;
  max-width: 66.6667rem;
  height: 0;
  margin: 1.11111rem auto;
}

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

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-bottom: 0;
  margin-left: 1.25rem;
}

dl {
  margin-bottom: 1rem;
}

dl dt {
  margin-bottom: .3rem;
  font-weight: bold;
}

blockquote {
  border-left: none;
  margin: 0 0 1rem;
  padding: .5rem 1.11111rem 0 1.05556rem;
}

blockquote, blockquote p {
  color: inherit;
  line-height: 1.8;
}

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

figure {
  margin: 0;
}

kbd {
  color: #333;
  background-color: #ccc;
  border-radius: 8px;
  margin: 0;
  padding: .111111rem .222222rem 0;
  font-family: Consolas, Liberation Mono, Courier, monospace;
}

.subheader {
  color: #1b4571;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.4;
}

.lead {
  font-size: 1.40625rem;
  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 {
  color: inherit;
  font-size: .777778rem;
  display: block;
}

.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  color: #333;
  word-wrap: break-word;
  background-color: #ccc;
  border: 1px solid #aaa;
  max-width: 100%;
  padding: .111111rem .277778rem .0555556rem;
  font-family: Consolas, Liberation Mono, Courier, monospace;
  font-weight: 300;
  display: inline;
}

.code-block {
  color: #333;
  white-space: pre;
  background-color: #ccc;
  border: 1px solid #aaa;
  margin-bottom: 1.5rem;
  padding: 1rem;
  font-family: Consolas, Liberation Mono, Courier, monospace;
  font-weight: 300;
  display: block;
  overflow: auto;
}

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

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

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

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

@media print, screen and (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 (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 {
  * {
    print-color-adjust: economy;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    background: 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, 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 {
    page-break-inside: avoid;
    border: 1px solid #666;
  }

  thead {
    display: table-header-group;
  }

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

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

  @page {
    margin: .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 {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 2.16667rem;
  box-shadow: none;
  color: #333;
  background-color: #0000;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin: 0 0 .888889rem;
  padding: .444444rem;
  font-family: inherit;
  font-size: .888889rem;
  font-weight: 300;
  line-height: 1.5;
  transition: box-shadow .5s, border-color .25s ease-in-out;
  display: block;
}

[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 {
  background-color: #fff;
  border: 1px solid #666;
  outline: none;
  transition: box-shadow .5s, border-color .25s ease-in-out;
  box-shadow: 0 0 5px #aaa;
}

textarea {
  max-width: 100%;
}

textarea[rows] {
  height: auto;
}

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

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

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

::placeholder {
  color: #aaa;
}

[type="file"], [type="checkbox"], [type="radio"] {
  margin: 0 0 .888889rem;
}

[type="checkbox"] + label, [type="radio"] + label {
  vertical-align: baseline;
  margin-bottom: 0;
  margin-left: .444444rem;
  margin-right: .888889rem;
  display: inline-block;
}

[type="checkbox"] + label[for], [type="radio"] + label[for] {
  cursor: pointer;
}

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

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

label {
  color: #333;
  margin: 0;
  font-size: .777778rem;
  font-weight: bold;
  line-height: 1.8;
  display: block;
}

label.middle {
  margin: 0 0 .888889rem;
  padding: .5rem 0;
  line-height: 1.5;
}

.help-text {
  color: #333;
  margin-top: -.444444rem;
  font-size: .722222rem;
  font-style: italic;
}

.input-group {
  align-items: stretch;
  width: 100%;
  margin-bottom: .888889rem;
  display: flex;
}

.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 4px 0 0 4px;
}

.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 4px 4px 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 {
  white-space: nowrap;
  margin: 0;
}

.input-group-label {
  color: #333;
  text-align: center;
  white-space: nowrap;
  background: #ccc;
  border: 1px solid #aaa;
  flex: none;
  align-items: center;
  padding: 0 1rem;
  display: flex;
}

.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 0;
  min-width: 0;
}

.input-group-button {
  text-align: center;
  flex: none;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.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: .888889rem;
}

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

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

.fieldset {
  border: 1px solid #aaa;
  margin: 1rem 0;
  padding: 1.11111rem;
}

.fieldset legend {
  margin: 0 0 0 -.166667rem;
  padding: 0 .166667rem;
}

select {
  appearance: none;
  color: #333;
  background-color: #fff;
  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%28102, 102, 102%29\"></polygon></svg>");
  background-position: right -.888889rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-origin: content-box;
  border: 1px solid #aaa;
  border-radius: 8px;
  height: 2.16667rem;
  margin: 0 0 .888889rem;
  padding: .444444rem 1.33333rem .444444rem .444444rem;
  font-family: inherit;
  font-size: .888889rem;
  font-weight: 300;
  line-height: 1.5;
  transition: box-shadow .5s, border-color .25s ease-in-out;
}

select:focus {
  background-color: #fff;
  border: 1px solid #666;
  outline: none;
  transition: box-shadow .5s, border-color .25s ease-in-out;
  box-shadow: 0 0 5px #aaa;
}

select:disabled {
  cursor: not-allowed;
  background-color: #ccc;
}

select::-ms-expand {
  display: none;
}

select[multiple] {
  background-image: none;
  height: auto;
}

select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

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

.is-invalid-input:not(:focus)::placeholder, .is-invalid-label {
  color: #cc4b37;
}

.form-error {
  color: #cc4b37;
  margin-top: -.444444rem;
  margin-bottom: .888889rem;
  font-size: .666667rem;
  font-weight: bold;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.button {
  vertical-align: middle;
  -webkit-appearance: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 1000px;
  margin: 0 0 1rem;
  padding: .4em 1em;
  font-family: inherit;
  font-size: .9rem;
  line-height: 1;
  transition: background-color .25s ease-out, color .25s ease-out;
  display: inline-block;
}

[data-whatinput="mouse"] .button {
  outline: 0;
}

.button.tiny {
  font-size: .6rem;
}

.button.small {
  font-size: .75rem;
}

.button.large {
  font-size: 1.1rem;
}

.button.expanded {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  color: #fff;
  background-color: #102b46;
}

.button:hover, .button:focus {
  color: #fff;
  background-color: #ff8be6;
}

.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  color: #fff;
  background-color: #102b46;
}

.button.primary:hover, .button.primary:focus {
  color: #fff;
  background-color: #0d2238;
}

.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  color: #042132;
  background-color: #fff;
}

.button.secondary:hover, .button.secondary:focus {
  color: #042132;
  background-color: #ccc;
}

.button.white, .button.white.disabled, .button.white[disabled], .button.white.disabled:hover, .button.white[disabled]:hover, .button.white.disabled:focus, .button.white[disabled]:focus {
  color: #042132;
  background-color: #fff;
}

.button.white:hover, .button.white:focus {
  color: #042132;
  background-color: #ccc;
}

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

.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  color: #102b46;
  border: 2px solid #102b46;
}

.button.hollow:hover, .button.hollow:focus {
  color: #081623;
  border-color: #081623;
}

.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 {
  color: #102b46;
  border: 2px solid #102b46;
}

.button.hollow.primary:hover, .button.hollow.primary:focus {
  color: #081623;
  border-color: #081623;
}

.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 {
  color: #fff;
  border: 2px solid #fff;
}

.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  color: gray;
  border-color: gray;
}

.button.hollow.white, .button.hollow.white.disabled, .button.hollow.white[disabled], .button.hollow.white.disabled:hover, .button.hollow.white[disabled]:hover, .button.hollow.white.disabled:focus, .button.hollow.white[disabled]:focus {
  color: #fff;
  border: 2px solid #fff;
}

.button.hollow.white:hover, .button.hollow.white:focus {
  color: gray;
  border-color: gray;
}

.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 {
  background-color: #0000;
  border-color: #0000;
}

.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: #102b46;
}

.button.clear:hover, .button.clear:focus {
  color: #081623;
}

.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: #102b46;
}

.button.clear.primary:hover, .button.clear.primary:focus {
  color: #081623;
}

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

.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: gray;
}

.button.clear.white, .button.clear.white.disabled, .button.clear.white[disabled], .button.clear.white.disabled:hover, .button.clear.white[disabled]:hover, .button.clear.white.disabled:focus, .button.clear.white[disabled]:focus {
  color: #fff;
}

.button.clear.white:hover, .button.clear.white:focus {
  color: gray;
}

.button.disabled, .button[disabled] {
  opacity: .25;
  cursor: not-allowed;
}

.button.dropdown:after {
  content: "";
  float: right;
  border: .4em solid #0000;
  border-top-color: #fff;
  border-bottom-width: 0;
  width: 0;
  height: 0;
  margin-left: 1em;
  display: inline-block;
  position: relative;
  top: .4em;
}

.button.dropdown.hollow:after, .button.dropdown.clear:after, .button.dropdown.hollow.primary:after, .button.dropdown.clear.primary:after {
  border-top-color: #102b46;
}

.button.dropdown.hollow.secondary:after, .button.dropdown.clear.secondary:after, .button.dropdown.hollow.white:after, .button.dropdown.clear.white:after {
  border-top-color: #fff;
}

.button.arrow-only:after {
  float: none;
  margin-left: 0;
  top: -.1em;
}

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

.accordion {
  background: none;
  margin-left: 0;
  list-style-type: none;
}

.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

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

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

.accordion-title {
  color: inherit;
  border: 1px solid #1b45714d;
  border-bottom: 0;
  padding: 1.25rem 1rem;
  font-size: 1.11111rem;
  line-height: 1;
  display: block;
  position: relative;
}

:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #1b45714d;
  border-radius: 0 0 8px 8px;
}

.accordion-title:hover, .accordion-title:focus {
  background-color: #0000;
}

.accordion-title:before {
  content: "+";
  margin-top: -.5rem;
  position: absolute;
  top: 50%;
  right: 1rem;
}

.is-active > .accordion-title:before {
  content: "–";
}

.accordion-content {
  color: inherit;
  background-color: #0000;
  border: 1px solid #1b45714d;
  border-bottom: 0;
  padding: 1rem;
  display: none;
}

:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #1b45714d;
}

.accordion-menu li {
  width: 100%;
}

.accordion-menu a, .accordion-menu .is-accordion-submenu a {
  padding: .7rem 1rem;
}

.accordion-menu .nested.is-accordion-submenu {
  margin-left: 1rem;
  margin-right: 0;
}

.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-left: 0;
  margin-right: 1rem;
}

.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 {
  content: "";
  border: 6px solid #0000;
  border-top-color: #1b4571;
  border-bottom-width: 0;
  width: 0;
  height: 0;
  margin-top: -3px;
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
}

.accordion-menu.align-left .is-accordion-submenu-parent > a:after {
  left: auto;
  right: 1rem;
}

.accordion-menu.align-right .is-accordion-submenu-parent > a:after {
  left: 1rem;
  right: auto;
}

.accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] > a:after {
  transform-origin: 50%;
  transform: rotate(180deg);
}

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

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

.submenu-toggle {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.submenu-toggle:after {
  content: "";
  border: 6px solid #0000;
  border-top-color: #1b4571;
  border-bottom-width: 0;
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  top: 0;
  bottom: 0;
}

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

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

.badge {
  text-align: center;
  color: #fff;
  background: #1b4571;
  border-radius: 50%;
  min-width: 2.1em;
  padding: .3em;
  font-size: .8rem;
  display: inline-block;
}

.badge.neutral {
  color: #333;
  background: #fffcf9;
}

.badge.neutral-dark {
  color: #333;
  background: #fbf5ed;
}

.badge.primary {
  color: #fff;
  background: #1b4571;
}

.badge.secondary {
  color: #333;
  background: #ff8be6;
}

.badge.tertiary {
  color: #fff;
  background: #102b46;
}

.badge.tertiary-dark {
  color: #fff;
  background: #042132;
}

.badge.success {
  color: #333;
  background: #3adb76;
}

.badge.warning {
  color: #333;
  background: #ffae00;
}

.badge.alert {
  color: #fff;
  background: #cc4b37;
}

.breadcrumbs {
  margin: 0 0 1rem;
  list-style: none;
}

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

.breadcrumbs:after {
  clear: both;
}

.breadcrumbs li {
  float: left;
  color: #333;
  cursor: default;
  text-transform: uppercase;
  font-size: .611111rem;
}

.breadcrumbs li:not(:last-child):after {
  opacity: 1;
  content: "/";
  color: #aaa;
  margin: 0 .75rem;
  position: relative;
}

.breadcrumbs a {
  color: #1b4571;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .disabled {
  color: #aaa;
  cursor: not-allowed;
}

.button-group {
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: stretch;
  margin-bottom: 1rem;
  display: flex;
}

.button-group:before, .button-group:after {
  content: " ";
  flex-basis: 0;
  order: 1;
  display: table;
}

.button-group:after {
  clear: both;
}

.button-group .button {
  flex: none;
  margin: 0 1px 1px 0;
  font-size: .9rem;
}

.button-group .button:last-child {
  margin-right: 0;
}

.button-group.tiny .button {
  font-size: .6rem;
}

.button-group.small .button {
  font-size: .75rem;
}

.button-group.large .button {
  font-size: 1.1rem;
}

.button-group.expanded .button {
  flex: 1 1 0;
}

.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 {
  color: #fff;
  background-color: #102b46;
}

.button-group.primary .button:hover, .button-group.primary .button:focus {
  color: #fff;
  background-color: #0d2238;
}

.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 {
  color: #042132;
  background-color: #fff;
}

.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  color: #042132;
  background-color: #ccc;
}

.button-group.white .button, .button-group.white .button.disabled, .button-group.white .button[disabled], .button-group.white .button.disabled:hover, .button-group.white .button[disabled]:hover, .button-group.white .button.disabled:focus, .button-group.white .button[disabled]:focus {
  color: #042132;
  background-color: #fff;
}

.button-group.white .button:hover, .button-group.white .button:focus {
  color: #042132;
  background-color: #ccc;
}

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

.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 {
  color: #102b46;
  border: 2px solid #102b46;
}

.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  color: #081623;
  border-color: #081623;
}

.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 {
  color: #102b46;
  border: 2px solid #102b46;
}

.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  color: #081623;
  border-color: #081623;
}

.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 {
  color: #fff;
  border: 2px solid #fff;
}

.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  color: gray;
  border-color: gray;
}

.button-group.hollow.white .button, .button-group.hollow.white .button.disabled, .button-group.hollow.white .button[disabled], .button-group.hollow.white .button.disabled:hover, .button-group.hollow.white .button[disabled]:hover, .button-group.hollow.white .button.disabled:focus, .button-group.hollow.white .button[disabled]:focus, .button-group.hollow .button.white, .button-group.hollow .button.white.disabled, .button-group.hollow .button.white[disabled], .button-group.hollow .button.white.disabled:hover, .button-group.hollow .button.white[disabled]:hover, .button-group.hollow .button.white.disabled:focus, .button-group.hollow .button.white[disabled]:focus {
  color: #fff;
  border: 2px solid #fff;
}

.button-group.hollow.white .button:hover, .button-group.hollow.white .button:focus, .button-group.hollow .button.white:hover, .button-group.hollow .button.white:focus {
  color: gray;
  border-color: gray;
}

.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 {
  background-color: #0000;
  border-color: #0000;
}

.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: #102b46;
}

.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: #081623;
}

.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: #102b46;
}

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

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

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

.button-group.clear.white .button, .button-group.clear.white .button.disabled, .button-group.clear.white .button[disabled], .button-group.clear.white .button.disabled:hover, .button-group.clear.white .button[disabled]:hover, .button-group.clear.white .button.disabled:focus, .button-group.clear.white .button[disabled]:focus, .button-group.clear .button.white, .button-group.clear .button.white.disabled, .button-group.clear .button.white[disabled], .button-group.clear .button.white.disabled:hover, .button-group.clear .button.white[disabled]:hover, .button-group.clear .button.white.disabled:focus, .button-group.clear .button.white[disabled]:focus {
  color: #fff;
}

.button-group.clear.white .button:hover, .button-group.clear.white .button:focus, .button-group.clear .button.white:hover, .button-group.clear .button.white:focus {
  color: gray;
}

.button-group.no-gaps .button {
  margin-right: -.111111rem;
}

.button-group.no-gaps .button + .button {
  border-left-color: #0000;
}

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

@media print, screen and (width >= 40em) {
  .button-group.stacked-for-small .button {
    flex: none;
    margin-bottom: 0;
  }
}

@media print, screen and (width >= 64em) {
  .button-group.stacked-for-medium .button {
    flex: none;
    margin-bottom: 0;
  }
}

@media print, screen and (width <= 39.9988em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }

  .button-group.stacked-for-small.expanded .button {
    margin-right: 0;
    display: block;
  }
}

@media print, screen and (width <= 63.9988em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }

  .button-group.stacked-for-medium.expanded .button {
    margin-right: 0;
    display: block;
  }
}

.callout {
  color: #333;
  background-color: #fff;
  border: 1px solid #33333340;
  border-radius: 8px;
  margin: 0 0 1rem;
  padding: 1rem;
  position: relative;
}

.callout > :first-child {
  margin-top: 0;
}

.callout > :last-child {
  margin-bottom: 0;
}

.callout.neutral {
  color: #333;
  background-color: #fffffe;
}

.callout.neutral-dark {
  color: #333;
  background-color: #fefefc;
}

.callout.primary {
  color: #333;
  background-color: #d2e3f4;
}

.callout.secondary {
  color: #333;
  background-color: #ffeefb;
}

.callout.tertiary {
  color: #333;
  background-color: #cbdff3;
}

.callout.tertiary-dark {
  color: #333;
  background-color: #c0e4fa;
}

.callout.success {
  color: #333;
  background-color: #e1faea;
}

.callout.warning {
  color: #333;
  background-color: #fff3d9;
}

.callout.alert {
  color: #333;
  background-color: #f7e4e1;
}

.callout.small {
  padding: .5rem;
}

.callout.large {
  padding: 3rem;
}

.card {
  box-shadow: none;
  color: #333;
  background: #fbf5ed;
  border: none;
  border-radius: 8px;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  display: flex;
  overflow: hidden;
}

.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  background: #1b45714d;
  flex: 0 auto;
  padding: 1rem;
  display: flex;
}

.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 {
  z-index: 10;
  color: #666;
  cursor: pointer;
  position: absolute;
}

[data-whatinput="mouse"] .close-button {
  outline: 0;
}

.close-button:hover, .close-button:focus {
  color: #333;
}

.close-button.small {
  font-size: 1.5em;
  line-height: 1;
  top: .33em;
  right: .66rem;
}

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

.menu {
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
}

[data-whatinput="mouse"] .menu li {
  outline: 0;
}

.menu a, .menu .button {
  padding: .7rem 1rem;
  line-height: 1;
  text-decoration: none;
  display: block;
}

.menu input, .menu select, .menu a, .menu button {
  margin-bottom: 0;
}

.menu input {
  display: inline-block;
}

.menu, .menu.horizontal {
  flex-flow: wrap;
}

.menu.vertical {
  flex-flow: 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 0;
}

.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 (width >= 40em) {
  .menu.medium-horizontal {
    flex-flow: wrap;
  }

  .menu.medium-vertical {
    flex-flow: column;
  }

  .menu.medium-expanded li, .menu.medium-simple li {
    flex: 1 1 0;
  }
}

@media print, screen and (width >= 64em) {
  .menu.large-horizontal {
    flex-flow: wrap;
  }

  .menu.large-vertical {
    flex-flow: column;
  }

  .menu.large-expanded li, .menu.large-simple li {
    flex: 1 1 0;
  }
}

.menu.nested {
  margin-left: 1rem;
  margin-right: 0;
}

.menu.icons a, .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;
}

.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: .25rem;
}

.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row;
}

.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: .25rem;
}

.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column;
}

.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 {
  text-align: center;
  align-self: stretch;
  margin-bottom: .25rem;
}

.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column;
}

.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 {
  text-align: center;
  align-self: stretch;
  margin-bottom: .25rem;
}

.menu .is-active > a, .menu .active > a {
  color: #1b4571;
  background: none;
}

.menu.align-left {
  justify-content: flex-start;
}

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

.menu.align-right li .submenu li {
  justify-content: flex-start;
}

.menu.align-right.vertical li {
  text-align: right;
  display: block;
}

.menu.align-right.vertical li .submenu li, .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-left: 0;
  margin-right: 1rem;
}

.menu.align-center li {
  justify-content: center;
  display: flex;
}

.menu.align-center li .submenu li {
  justify-content: flex-start;
}

.menu .menu-text {
  color: inherit;
  padding: .7rem 1rem;
  font-weight: bold;
  line-height: 1;
}

.menu-centered > .menu {
  justify-content: center;
}

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

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

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

.menu-icon {
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.menu-icon:after {
  content: "";
  background: #1b4571;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 7px #1b4571, 0 14px #1b4571;
}

.menu-icon:hover:after {
  background: #102b46;
  box-shadow: 0 7px #102b46, 0 14px #102b46;
}

.menu-icon.dark {
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.menu-icon.dark:after {
  content: "";
  background: #333;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 7px #333, 0 14px #333;
}

.menu-icon.dark:hover:after {
  background: #666;
  box-shadow: 0 7px #666, 0 14px #666;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}

.is-drilldown li {
  display: block;
}

.is-drilldown.animate-height {
  transition: height .5s;
}

.drilldown a {
  background: #fff;
  padding: .7rem 1rem;
}

.drilldown .is-drilldown-submenu {
  z-index: -1;
  background: #fff;
  width: 100%;
  transition: transform .15s linear;
  position: absolute;
  top: 0;
  left: 100%;
}

.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: .7rem 1rem;
}

.drilldown .nested.is-drilldown-submenu {
  margin-left: 0;
  margin-right: 0;
}

.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}

.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}

.drilldown .is-drilldown-submenu-parent > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-color: #1b4571;
  border-right-width: 0;
  width: 0;
  height: 0;
  margin-top: -6px;
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
}

.drilldown.align-left .is-drilldown-submenu-parent > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-color: #1b4571;
  border-right-width: 0;
  width: 0;
  height: 0;
  display: block;
  left: auto;
  right: 1rem;
}

.drilldown.align-right .is-drilldown-submenu-parent > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-width: 0;
  border-right-color: #1b4571;
  width: 0;
  height: 0;
  display: block;
  left: 1rem;
  right: auto;
}

.drilldown .js-drilldown-back > a:before {
  content: "";
  vertical-align: middle;
  border: 6px solid #0000;
  border-left-width: 0;
  border-right-color: #1b4571;
  width: 0;
  height: 0;
  margin-right: .75rem;
  display: inline-block;
}

.dropdown-pane {
  z-index: 10;
  visibility: hidden;
  background-color: #fffcf9;
  border: 1px solid #aaa;
  border-radius: 8px;
  width: 300px;
  padding: 1rem;
  font-size: 1rem;
  display: none;
  position: absolute;
}

.dropdown-pane.is-opening {
  display: block;
}

.dropdown-pane.is-open {
  visibility: visible;
  display: block;
}

.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%;
  left: auto;
  right: 0;
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  left: 0;
  right: auto;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1.5rem;
  position: relative;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a:after {
  content: "";
  border: 6px solid #0000;
  border-top-color: #1b4571;
  border-bottom-width: 0;
  width: 0;
  height: 0;
  margin-top: -3px;
  display: block;
  left: auto;
  right: 5px;
}

[data-whatinput="mouse"] .dropdown.menu a {
  outline: 0;
}

.dropdown.menu > li > a {
  padding: .7rem 1rem;
}

.dropdown.menu > li.is-active > a {
  color: #1b4571;
  background: none;
}

.no-js .dropdown.menu ul {
  display: none;
}

.dropdown.menu .nested.is-dropdown-submenu {
  margin-left: 0;
  margin-right: 0;
}

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  left: auto;
  right: 100%;
}

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  left: 100%;
  right: auto;
}

.dropdown.menu.vertical > li > a:after {
  right: 14px;
}

.dropdown.menu.vertical > li.opens-left > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-width: 0;
  border-right-color: #1b4571;
  width: 0;
  height: 0;
  display: block;
  left: 5px;
  right: auto;
}

.dropdown.menu.vertical > li.opens-right > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-color: #1b4571;
  border-right-width: 0;
  width: 0;
  height: 0;
  display: block;
}

@media print, screen and (width >= 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    left: auto;
    right: 0;
  }

  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    left: 0;
    right: auto;
  }

  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }

  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:after {
    content: "";
    border: 6px solid #0000;
    border-top-color: #1b4571;
    border-bottom-width: 0;
    width: 0;
    height: 0;
    margin-top: -3px;
    display: block;
    left: auto;
    right: 5px;
  }

  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }

  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    left: auto;
    right: 100%;
  }

  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    left: 100%;
    right: auto;
  }

  .dropdown.menu.medium-vertical > li > a:after {
    right: 14px;
  }

  .dropdown.menu.medium-vertical > li.opens-left > a:after {
    content: "";
    border: 6px solid #0000;
    border-left-width: 0;
    border-right-color: #1b4571;
    width: 0;
    height: 0;
    display: block;
    left: 5px;
    right: auto;
  }

  .dropdown.menu.medium-vertical > li.opens-right > a:after {
    content: "";
    border: 6px solid #0000;
    border-left-color: #1b4571;
    border-right-width: 0;
    width: 0;
    height: 0;
    display: block;
  }
}

@media print, screen and (width >= 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    left: auto;
    right: 0;
  }

  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    left: 0;
    right: auto;
  }

  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative;
  }

  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a:after {
    content: "";
    border: 6px solid #0000;
    border-top-color: #1b4571;
    border-bottom-width: 0;
    width: 0;
    height: 0;
    margin-top: -3px;
    display: block;
    left: auto;
    right: 5px;
  }

  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }

  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    left: auto;
    right: 100%;
  }

  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    left: 100%;
    right: auto;
  }

  .dropdown.menu.large-vertical > li > a:after {
    right: 14px;
  }

  .dropdown.menu.large-vertical > li.opens-left > a:after {
    content: "";
    border: 6px solid #0000;
    border-left-width: 0;
    border-right-color: #1b4571;
    width: 0;
    height: 0;
    display: block;
    left: 5px;
    right: auto;
  }

  .dropdown.menu.large-vertical > li.opens-right > a:after {
    content: "";
    border: 6px solid #0000;
    border-left-color: #1b4571;
    border-right-width: 0;
    width: 0;
    height: 0;
    display: block;
  }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0;
}

.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 {
  margin-top: -6px;
  position: absolute;
  top: 50%;
  left: auto;
  right: 5px;
}

.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}

.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%;
}

.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  left: 100%;
  right: auto;
}

.is-dropdown-submenu {
  z-index: 1;
  background: #fff;
  border: none;
  min-width: 200px;
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
}

.dropdown .is-dropdown-submenu a {
  padding: .7rem 1rem;
}

.is-dropdown-submenu .is-dropdown-submenu-parent > a:after {
  right: 14px;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-width: 0;
  border-right-color: #1b4571;
  width: 0;
  height: 0;
  display: block;
  left: 5px;
  right: auto;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a:after {
  content: "";
  border: 6px solid #0000;
  border-left-color: #1b4571;
  border-right-width: 0;
  width: 0;
  height: 0;
  display: block;
}

.is-dropdown-submenu > li {
  width: 100%;
}

.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed, .flex-video {
  height: 0;
  margin-bottom: .888889rem;
  padding-bottom: 75%;
  position: relative;
  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 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.responsive-embed.widescreen, .flex-video.widescreen {
  padding-bottom: 56.25%;
}

.label {
  white-space: nowrap;
  cursor: default;
  color: #fff;
  background: #1b4571;
  border-radius: 8px;
  padding: .33333rem .5rem;
  font-size: .8rem;
  line-height: 1;
  display: inline-block;
}

.label.neutral {
  color: #333;
  background: #fffcf9;
}

.label.neutral-dark {
  color: #333;
  background: #fbf5ed;
}

.label.primary {
  color: #fff;
  background: #1b4571;
}

.label.secondary {
  color: #333;
  background: #ff8be6;
}

.label.tertiary {
  color: #fff;
  background: #102b46;
}

.label.tertiary-dark {
  color: #fff;
  background: #042132;
}

.label.success {
  color: #333;
  background: #3adb76;
}

.label.warning {
  color: #333;
  background: #ffae00;
}

.label.alert {
  color: #fff;
  background: #cc4b37;
}

.media-object {
  flex-wrap: nowrap;
  margin-bottom: 1rem;
  display: flex;
}

.media-object img {
  max-width: none;
}

@media print, screen and (width <= 39.9988em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}

.media-object-section {
  flex: 0 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 (width <= 39.9988em) {
  .stack-for-small .media-object-section {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 0 1rem;
  }

  .stack-for-small .media-object-section img {
    width: 100%;
  }
}

.media-object-section.main-section {
  flex: 1 1 0;
}

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

.js-off-canvas-overlay {
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  background: #ffffff40;
  width: 100%;
  height: 100%;
  transition: opacity .5s, visibility .5s;
  position: absolute;
  top: 0;
  left: 0;
  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 {
  z-index: 12;
  backface-visibility: hidden;
  background: #1b4571;
  transition: transform .5s;
  position: fixed;
}

[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 #333333b3;
}

.off-canvas.is-open {
  transform: translate(0);
}

.off-canvas-absolute {
  z-index: 12;
  backface-visibility: hidden;
  background: #1b4571;
  transition: transform .5s;
  position: absolute;
}

[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 #333333b3;
}

.off-canvas-absolute.is-open {
  transform: translate(0);
}

.position-left {
  -webkit-overflow-scrolling: touch;
  width: 250px;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  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);
}

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

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px #33333340;
}

.position-right {
  -webkit-overflow-scrolling: touch;
  width: 250px;
  height: 100%;
  top: 0;
  right: 0;
  overflow-y: auto;
  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);
}

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

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px #33333340;
}

.position-top {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 250px;
  top: 0;
  left: 0;
  overflow-x: auto;
  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);
}

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

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px #33333340;
}

.position-bottom {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 250px;
  bottom: 0;
  left: 0;
  overflow-x: auto;
  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);
}

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

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px #33333340;
}

.off-canvas-content {
  backface-visibility: hidden;
  transform: none;
}

.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform .5s;
}

.off-canvas-content.has-transition-push, .off-canvas-content .off-canvas.is-open {
  transform: translate(0);
}

@media print, screen and (width >= 40em) {
  .position-left.reveal-for-medium {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-medium {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-medium {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}

@media print, screen and (width >= 64em) {
  .position-left.reveal-for-large {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-large {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-large {
    z-index: 12;
    visibility: visible;
    transition: none;
    transform: none;
  }

  .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, .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}

@media print, screen and (width >= 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    background: none;
    width: auto;
    height: auto;
    transition: none;
    position: static;
    overflow: visible;
  }

  .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 (width >= 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    background: none;
    width: auto;
    height: auto;
    transition: none;
    position: static;
    overflow: visible;
  }

  .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 {
  height: 0;
  margin: 0;
  list-style: none;
  position: relative;
  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 {
  color: #fff;
  background-color: #33333380;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  position: absolute;
  bottom: 0;
}

.orbit-next, .orbit-previous {
  z-index: 10;
  color: #fff;
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

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

.orbit-previous {
  left: 0;
}

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

.orbit-bullets {
  text-align: center;
  margin-top: .8rem;
  margin-bottom: .8rem;
  position: relative;
}

[data-whatinput="mouse"] .orbit-bullets {
  outline: 0;
}

.orbit-bullets button {
  background-color: #aaa;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  margin: .1rem;
}

.orbit-bullets button:hover, .orbit-bullets button.is-active {
  background-color: #666;
}

.pagination {
  margin-bottom: 1rem;
  margin-left: 0;
}

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

.pagination:after {
  clear: both;
}

.pagination li {
  border-radius: 8px;
  margin-right: .0555556rem;
  font-size: .777778rem;
  display: none;
}

.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}

@media print, screen and (width >= 40em) {
  .pagination li {
    display: inline-block;
  }
}

.pagination a, .pagination button {
  color: #333;
  border-radius: 8px;
  padding: .166667rem .555556rem;
  display: block;
}

.pagination a:hover, .pagination button:hover {
  background: #ccc;
}

.pagination .current {
  color: #fff;
  cursor: default;
  background: #1b4571;
  padding: .166667rem .555556rem;
}

.pagination .disabled {
  color: #aaa;
  cursor: not-allowed;
  padding: .166667rem .555556rem;
}

.pagination .disabled:hover {
  background: none;
}

.pagination .ellipsis:after {
  content: "…";
  color: #333;
  padding: .166667rem .555556rem;
}

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

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

.progress {
  background-color: #aaa;
  border-radius: 8px;
  height: 1rem;
  margin-bottom: 1rem;
}

.progress.neutral .progress-meter {
  background-color: #fffcf9;
}

.progress.neutral-dark .progress-meter {
  background-color: #fbf5ed;
}

.progress.primary .progress-meter {
  background-color: #1b4571;
}

.progress.secondary .progress-meter {
  background-color: #ff8be6;
}

.progress.tertiary .progress-meter {
  background-color: #102b46;
}

.progress.tertiary-dark .progress-meter {
  background-color: #042132;
}

.progress.success .progress-meter {
  background-color: #3adb76;
}

.progress.warning .progress-meter {
  background-color: #ffae00;
}

.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  background-color: #1b4571;
  border-radius: 8px;
  width: 0%;
  height: 100%;
  display: block;
  position: relative;
}

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

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

.slider-fill {
  background-color: #aaa;
  max-width: 100%;
  height: .5rem;
  transition: all .2s ease-in-out;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-fill.is-dragging {
  transition: all linear;
}

.slider-handle {
  z-index: 1;
  cursor: grab;
  touch-action: manipulation;
  background-color: #1b4571;
  border-radius: 8px;
  width: 1.4rem;
  height: 1.4rem;
  transition: all .2s ease-in-out;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

[data-whatinput="mouse"] .slider-handle {
  outline: 0;
}

.slider-handle:hover {
  background-color: #173b60;
}

.slider-handle.is-dragging {
  cursor: grabbing;
  transition: all linear;
}

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

.slider.vertical {
  width: .5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  display: inline-block;
  transform: scale(1, -1);
}

.slider.vertical .slider-fill {
  width: .5rem;
  max-height: 100%;
  top: 0;
}

.slider.vertical .slider-handle {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

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

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

.sticky.is-stuck.is-at-top {
  top: 0;
}

.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

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

.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

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

html.is-reveal-open.zf-has-scroll {
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}

html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  z-index: 1005;
  -webkit-overflow-scrolling: touch;
  background-color: #33333373;
  display: none;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.reveal {
  -webkit-overflow-scrolling: touch;
  z-index: 1006;
  backface-visibility: hidden;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  display: none;
  position: relative;
  top: 100px;
  overflow-y: auto;
}

[data-whatinput="mouse"] .reveal {
  outline: 0;
}

@media print, screen and (width >= 40em) {
  .reveal {
    min-height: 0;
  }
}

.reveal .column {
  min-width: 0;
}

.reveal > :last-child {
  margin-bottom: 0;
}

@media print, screen and (width >= 40em) {
  .reveal {
    width: 600px;
    max-width: 66.6667rem;
  }
}

.reveal.collapse {
  padding: 0;
}

@media print, screen and (width >= 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 66.6667rem;
  }

  .reveal.small {
    width: 50%;
    max-width: 66.6667rem;
  }

  .reveal.large {
    width: 90%;
    max-width: 66.6667rem;
  }
}

.reveal.full {
  border: 0;
  border-radius: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  inset: 0;
}

@media print, screen and (width <= 39.9988em) {
  .reveal {
    border: 0;
    border-radius: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    inset: 0;
  }
}

.reveal.without-overlay {
  position: fixed;
}

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

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

.switch-paddle {
  width: 4rem;
  height: 2rem;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  background: #aaa;
  border-radius: 8px;
  transition: all .25s ease-out;
  display: block;
  position: relative;
}

input + .switch-paddle {
  margin: 0;
}

.switch-paddle:after {
  content: "";
  background: #fff;
  border-radius: 8px;
  width: 1.5rem;
  height: 1.5rem;
  transition: all .25s ease-out;
  display: block;
  position: absolute;
  top: .25rem;
  left: .25rem;
  transform: translate3d(0, 0, 0);
}

input:checked ~ .switch-paddle {
  background: #1b4571;
}

input:checked ~ .switch-paddle:after {
  left: 2.25rem;
}

input:focus-visible ~ .switch-paddle {
  background: #999;
}

input:focus-visible ~ .switch-paddle:after {
  background: #fff;
}

input:checked:focus-visible ~ .switch-paddle {
  background: #173b60;
}

input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: .5;
}

[data-whatinput="mouse"] input:focus ~ .switch-paddle {
  outline: 0;
}

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

.switch-active {
  display: none;
  left: 8%;
}

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: .555556rem;
}

.switch.tiny .switch-paddle:after {
  width: 1rem;
  height: 1rem;
  top: .25rem;
  left: .25rem;
}

.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: .666667rem;
}

.switch.small .switch-paddle:after {
  width: 1.25rem;
  height: 1.25rem;
  top: .25rem;
  left: .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: .888889rem;
}

.switch.large .switch-paddle:after {
  width: 2rem;
  height: 2rem;
  top: .25rem;
  left: .25rem;
}

.switch.large input:checked ~ .switch-paddle:after {
  left: 2.75rem;
}

table {
  border-collapse: collapse;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 1rem;
}

thead, tbody, tfoot {
  background-color: #fff;
  border: 1px solid #f2f2f2;
}

caption {
  padding: .444444rem .555556rem .555556rem;
  font-weight: bold;
}

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

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

thead tr, tfoot tr {
  background: none;
}

thead th, thead td, tfoot th, tfoot td {
  text-align: left;
  padding: .444444rem .555556rem .555556rem;
  font-weight: bold;
}

tbody th, tbody td {
  padding: .444444rem .555556rem .555556rem;
}

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

table.unstriped tbody {
  background-color: #fff;
}

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

@media print, screen and (width <= 63.9988em) {
  table.stack thead, table.stack tfoot {
    display: none;
  }

  table.stack tr, table.stack th, table.stack td {
    display: block;
  }

  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  width: 100%;
  display: block;
  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(2n):hover {
  background-color: #ededed;
}

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

.tabs {
  background: #fff;
  border: 1px solid #ccc;
  margin: 0;
  list-style-type: none;
}

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

.tabs:after {
  clear: both;
}

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

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

.tabs.simple > li > a:hover {
  background: none;
}

.tabs.primary {
  background: #1b4571;
}

.tabs.primary > li > a {
  color: #fff;
}

.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1f4e80;
}

.tabs-title {
  float: left;
}

.tabs-title > a {
  color: #1b4571;
  padding: 1.25rem 1.5rem;
  font-size: .666667rem;
  line-height: 1;
  display: block;
}

[data-whatinput="mouse"] .tabs-title > a {
  outline: 0;
}

.tabs-title > a:hover {
  color: #173b61;
  background: #fff;
}

.tabs-title > a:focus, .tabs-title > a[aria-selected="true"] {
  color: #1b4571;
  background: #ccc;
}

.tabs-content {
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 0;
  transition: all .5s;
}

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

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

.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  border: 4px solid #fff;
  border-radius: 8px;
  max-width: 100%;
  margin-bottom: 1rem;
  line-height: 0;
  display: inline-block;
  box-shadow: 0 0 0 1px #3333;
}

a.thumbnail {
  transition: box-shadow .2s ease-out;
}

a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px #1b457180;
}

a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  color: #fff;
  background: #333;
  justify-content: flex-start;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.title-bar .menu-icon {
  margin-left: .25rem;
  margin-right: .25rem;
}

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

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

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

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

.tooltip {
  z-index: 1200;
  color: #fff;
  background-color: #333;
  border-radius: 8px;
  max-width: 10rem;
  padding: .75rem;
  font-size: .777778rem;
  position: absolute;
  top: calc(100% + .6495rem);
}

.tooltip:before {
  position: absolute;
}

.tooltip.bottom:before {
  content: "";
  border: .75rem solid #0000;
  border-top-width: 0;
  border-bottom-color: #333;
  width: 0;
  height: 0;
  display: block;
  bottom: 100%;
}

.tooltip.bottom.align-center:before {
  left: 50%;
  transform: translateX(-50%);
}

.tooltip.top:before {
  content: "";
  border: .75rem solid #0000;
  border-top-color: #333;
  border-bottom-width: 0;
  width: 0;
  height: 0;
  display: block;
  top: 100%;
  bottom: auto;
}

.tooltip.top.align-center:before {
  left: 50%;
  transform: translateX(-50%);
}

.tooltip.left:before {
  content: "";
  border: .75rem solid #0000;
  border-left-color: #333;
  border-right-width: 0;
  width: 0;
  height: 0;
  display: block;
  left: 100%;
}

.tooltip.left.align-center:before {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.tooltip.right:before {
  content: "";
  border: .75rem solid #0000;
  border-left-width: 0;
  border-right-color: #333;
  width: 0;
  height: 0;
  display: block;
  left: auto;
  right: 100%;
}

.tooltip.right.align-center:before {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.tooltip.align-top:before {
  top: 10%;
  bottom: auto;
}

.tooltip.align-bottom:before {
  top: auto;
  bottom: 10%;
}

.tooltip.align-left:before {
  left: 10%;
  right: auto;
}

.tooltip.align-right:before {
  left: auto;
  right: 10%;
}

.top-bar {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.top-bar, .top-bar ul {
  background-color: #fff;
}

.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}

.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}

.top-bar input.button {
  width: auto;
}

.top-bar .top-bar-left, .top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

.top-bar {
  flex-wrap: nowrap;
}

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

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

@media print, screen and (width <= 63.9988em) {
  .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 (width <= 74.9988em) {
  .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: none;
  margin: .5rem 1rem .5rem 0;
}

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

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

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

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

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

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

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

@media screen and (width <= 39.9988em), screen and (width >= 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

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

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

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

@media screen and (width <= 63.9988em), screen and (width >= 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

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

.show-on-focus:active, .show-on-focus:focus {
  clip: auto !important;
  white-space: normal !important;
  width: auto !important;
  height: auto !important;
  position: static !important;
  overflow: visible !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;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }

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

.show-for-ie {
  display: none;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }

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

.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

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

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

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

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

.clearfix:after {
  clear: both;
}

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

.byline {
  color: #999;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-content .alignleft, .entry-content img.alignleft {
  float: left;
  margin-right: 1.5em;
  display: inline;
}

.entry-content .alignright, .entry-content img.alignright {
  float: right;
  margin-left: 1.5em;
  display: inline;
}

.entry-content .aligncenter, .entry-content img.aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

.wp-caption {
  background: #eee;
  max-width: 100%;
  padding: 5px;
}

.wp-caption img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.wp-caption p.wp-caption-text {
  text-align: center;
  margin: 4px 0 7px;
  font-size: .85em;
}

.post-password-form input[type="submit"] {
  vertical-align: middle;
  -webkit-appearance: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 1000px;
  margin: 0 0 1rem;
  padding: .4em 1em;
  font-family: inherit;
  font-size: .9rem;
  line-height: 1;
  transition: background-color .25s ease-out, color .25s ease-out;
  display: inline-block;
}

[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 {
  color: #fff;
  background-color: #102b46;
}

.post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
  color: #fff;
  background-color: #ff8be6;
}

.gallery {
  max-width: 100%;
  margin-left: -15px;
  margin-right: -15px;
}

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

.gallery:after {
  clear: both;
}

.gallery.gallery-columns-1 > dl {
  float: left;
  width: 100%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-1 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 50%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-2 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 33.3333%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-3 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 25%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-4 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 20%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-5 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 16.6667%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-6 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 14.2857%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-7 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 12.5%;
  padding-left: .555556rem;
  padding-right: .555556rem;
}

@media print, screen and (width >= 40em) {
  .gallery.gallery-columns-8 > dl {
    padding-left: 1.33333rem;
    padding-right: 1.33333rem;
  }
}

.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 {
  float: left;
  width: 100%;
  padding-left: .9375rem;
  padding-right: .9375rem;
}

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

.page-navigation {
  margin-top: 1rem;
}

#comments .commentlist, #respond ul {
  margin-left: 0;
}

.commentlist li {
  clear: both;
  margin-bottom: 1.5em;
  padding: .7335em 10px;
  list-style-type: none;
  position: relative;
  overflow: hidden;
}

.commentlist li:last-child {
  margin-bottom: 0;
}

.commentlist li ul.children {
  margin: 0;
}

.commentlist li[class*="depth-"] {
  margin-top: 1.1em;
}

.commentlist li.depth-1 {
  margin-top: 0;
  margin-left: 0;
}

.commentlist li:not(.depth-1) {
  margin-top: 0;
  margin-left: 10px;
  padding-bottom: 0;
}

.commentlist .vcard {
  margin-left: 50px;
}

.commentlist .vcard cite.fn {
  font-style: normal;
  font-weight: 700;
}

.commentlist .vcard time {
  float: right;
}

.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}

.commentlist .vcard time a:hover {
  text-decoration: underline;
}

.commentlist .vcard img.avatar {
  background: #fff;
  border: 1px solid #cecece;
  padding: 2px;
  position: absolute;
  left: 10px;
}

.commentlist .comment_content p {
  margin: .7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

.commentlist .comment-reply-link {
  float: right;
}

.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}

.respond-form form {
  margin: .75em 0;
}

.respond-form form li {
  clear: both;
  margin-bottom: .7335em;
  list-style-type: none;
}

.respond-form form li label, .respond-form form li small {
  display: none;
}

.respond-form form input[type="text"], .respond-form form input[type="email"], .respond-form form input[type="url"], .respond-form form textarea {
  background: #efefef;
  border: 2px solid #cecece;
  padding: 3px 6px;
  line-height: 1.5em;
}

.respond-form form input[type="text"]:focus, .respond-form form input[type="email"]:focus, .respond-form form input[type="url"]:focus, .respond-form form textarea:focus {
  background: #fff;
}

.respond-form form input[type="text"]:invalid, .respond-form form input[type="email"]:invalid, .respond-form form input[type="url"]:invalid, .respond-form form textarea:invalid {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  background-color: #f6e7eb;
  border-color: #fbc2c4;
  outline: none;
}

.respond-form form input[type="text"], .respond-form form input[type="email"], .respond-form form input[type="url"] {
  min-width: 250px;
  max-width: 400px;
}

.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}

#comment-form-title {
  margin: 0 0 1.1em;
}

#allowed_tags {
  margin: 1.5em 10px .7335em 0;
}

.nocomments {
  margin: 0 20px 1.1em;
}

.sidebar li {
  list-style: none;
}

.widget ul {
  margin: 0;
}

.footer {
  clear: both;
  margin-top: 1em;
}

body#tinymce {
  margin: 20px;
}

.gform_body ul {
  margin: 0;
  list-style: none;
}

.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 {
  left: -9000px;
  display: none !important;
  position: absolute !important;
}

body {
  text-wrap: pretty;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em, .h1 em, .h2 em, .h3 em, .h4 em, .h5 em, .h6 em {
  color: #1b4571;
  font-style: normal;
}

.block-link {
  color: #333;
  border-bottom: 2px solid #ff8be6;
  padding-bottom: 2px;
  font-size: 16px;
  font-weight: bold;
}

.block-link:hover, .block-link:active {
  border-color: #1b4571;
}

.block-link:not(.button-no-arrow):after {
  content: "";
  margin-left: .5rem;
  font-family: "Font Awesome 7 Sharp";
}

.quote-icon {
  color: #1b4571;
  font-size: 2.66667rem;
}

.subheader {
  text-transform: uppercase;
  font-size: .777778rem;
  display: block;
}

.overlap-item {
  z-index: 10;
  position: relative;
}

@media print, screen and (width >= 64em) {
  .overlap-item {
    margin-top: -160px;
    padding: 32px;
  }

  .callout-block-wrapper .overlap-item {
    margin-top: -200px;
    padding: 32px;
  }
}

.overlap-wrapper {
  position: relative;
}

.callout-block-wrapper.has-overlapping-tertiary-background {
  background-image: linear-gradient(#0000 200px, #102b46 200px, #102b46);
}

@media print, screen and (width >= 64em) {
  div:has( + div > .overlap-item) {
    padding-bottom: 200px;
  }
}

h2, h3, .h2, .h3 {
  line-height: 1.2;
}

.dual-accordion-block-inner {
  padding: 40px;
}

.dual-accordion-block-wrapper {
  padding-bottom: 100px;
}

.accordion-title, .accordion-content, :last-child:not(.is-active) > .accordion-title {
  border: none;
}

.accordion-content {
  padding: 0 1rem;
}

.accordion-item:not(:last-of-type) {
  border-bottom: 1px solid #102b4633;
}

.accordion-title:before {
  color: #1b4571;
  font-weight: bold;
}

.accordion-title {
  font-weight: bold;
}

.accordion-title:hover {
  color: #ff8be6;
}

.accordion-item.is-active {
  background: #fbf5ed;
}

.card-image {
  width: 100%;
  height: 200px;
}

.card-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.split-hero-block {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.split-hero-image {
  width: 100%;
  height: 400px;
}

.split-hero-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media print, screen and (width >= 64em) {
  .split-hero-image {
    width: 600px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.split-hero-inner {
  width: 100%;
  position: relative;
}

.split-hero-inner:before {
  content: "";
  opacity: .9;
  background-image: url("https://onewaterecon.wpenginepowered.com/wp-content/themes/footpath/assets/images/decal.png");
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 30%;
  width: 100%;
  height: calc(100% + 200px);
  display: block;
  position: absolute;
  top: 0;
  right: -1rem;
}

@media print, screen and (width >= 64em) {
  .split-hero-inner {
    max-width: calc(100vw - 600px);
    margin-left: 0;
  }
}

@media screen and (width >= 1600px) {
  .split-hero-inner {
    max-width: calc(200px + 50vw);
  }
}

@media print, screen and (width >= 64em) {
  .split-hero-form {
    width: 750px;
  }
}

.excerpt-read-more {
  display: none;
}

.follow-callout {
  color: #fff;
  max-width: max-content;
  transition: all .8s;
  position: relative;
}

.follow-callout:focus, .follow-callout:hover {
  color: #fff;
  background: #102b46;
  transition: all .8s;
}

.lead-capture {
  width: 100%;
  margin-top: 40px;
}

.image-sidebar ul {
  grid-gap: 1rem;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  max-width: calc(100vw - 2rem);
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  overflow: auto scroll;
}

.image-sidebar ul::-webkit-scrollbar {
  display: none;
}

@media print, screen and (width >= 64em) {
  .image-sidebar ul {
    margin: 0;
  }
}

.image-sidebar-image {
  flex: none;
  width: 80vw;
  max-width: 400px;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.image-sidebar-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

label {
  text-transform: uppercase;
}

.post-sidebar {
  width: 100%;
  max-width: 420px;
}

.wp-block-quote {
  grid-gap: .5rem;
  font-size: 24px;
  display: flex;
}

.focus-list {
  position: relative;
}

.quote:before, .wp-block-quote:before {
  content: "“";
  color: #102b46;
  margin-right: 1rem;
  font-family: Sora;
  font-size: 30px;
  font-weight: bold;
}

@media print, screen and (width >= 64em) {
  .quote:before, .wp-block-quote:before {
    font-size: 90px;
    line-height: 1;
  }
}

.card p {
  font-size: 14px;
}

.single-inner {
  margin-top: 40px;
  margin-bottom: 60px;
}

.author-image {
  z-index: 4;
  position: relative;
}

.author-image img {
  border-radius: 100%;
}

.search-filter-label {
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: 14px;
  font-weight: bold;
}

.search-filter-base {
  margin-bottom: 1rem;
}

.search-filter-input-button {
  font-size: .6rem;
}

.search-filter-field__input {
  min-width: 100px;
  font-size: 16px;
  font-weight: bold;
}

.badge {
  color: #333;
  background: #fbf5ed;
  border-radius: 100px;
  margin-bottom: .5rem;
  padding: .5rem;
}

.feed-sidebar {
  max-width: 500px;
  padding-top: 1rem;
}

.author-info {
  margin-bottom: 20px;
}

.category-return {
  margin-bottom: 40px;
  font-size: 12px;
}

.author-image img {
  width: 100px;
}

.menu .linked-in-link {
  grid-gap: .5rem;
  margin-right: 20px;
  display: flex;
}

.focus-section {
  position: relative;
}

.focus-section:before {
  content: "";
  background-image: url("https://onewaterecon.wpenginepowered.com/wp-content/themes/footpath/assets/images/decal.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 20%;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.split-block {
  position: relative;
}

.split-block:before {
  content: url("decal-outline.651bf790.png");
  max-width: calc(100vw + 100px);
  height: auto;
  display: block;
  position: absolute;
  top: -40px;
  left: -100px;
  overflow: hidden;
}

.profile-info {
  margin-top: -140px;
  padding: 140px 1rem 1rem;
  position: relative;
}

.button-group {
  grid-gap: .5rem;
}

.footer {
  margin-top: 0;
  font-size: 90%;
  position: relative;
}

.footer a:not(.button) {
  color: #fff;
}

.footer a:not(.button):hover, .footer a:not(.button):focus {
  color: #ff8be6;
}

.footer-menu {
  min-width: 260px;
}

.footer-menu li {
  padding-bottom: .5rem;
}

.footer-heading {
  width: 100%;
  padding-bottom: .5rem;
}

@media print, screen and (width >= 40em) {
  .footer-heading {
    border-bottom: 1px solid #1b4571;
  }
}

.source-org a {
  text-decoration: underline;
}

.social-link a {
  padding: 0 0 .5rem .5rem;
}

.footer-logo img {
  max-width: 140px;
}

@media print, screen and (width <= 39.9988em) {
  .footer-column {
    border-bottom: 1px solid #1b4571;
  }
}

.pre-footer {
  position: relative;
}

.pre-footer p {
  margin-bottom: 0;
}

.is-dropdown-submenu {
  border: 1px solid #102b461a;
  border-top: 2px solid #1b4571;
  width: max-content;
  max-width: 400px;
}

.mobile-nav {
  z-index: 20;
  width: 100%;
  max-height: calc(100vh - 70px);
  position: fixed;
  top: 70px;
  overflow: scroll;
}

.top-bar {
  z-index: 400;
  width: 100vw;
  position: relative;
  box-shadow: inset 0 -1px #0421321a;
}

@media print, screen and (width >= 40em) {
  .top-bar {
    padding: 1rem;
  }
}

.top-bar a:not(.button), .mobile-nav a:not(.button) {
  color: #1b4571;
  padding: 0;
}

.top-bar a:not(.button):hover, .mobile-nav a:not(.button):hover {
  color: #ff8be6;
}

@media print, screen and (width >= 40em) {
  .top-bar a:not(.button), .mobile-nav a:not(.button) {
    font-size: 80%;
  }
}

.is-dropdown-submenu-item {
  padding: 1rem;
}

.top-bar-left a {
  text-transform: uppercase;
  font-weight: 600;
}

.menu .button {
  margin-top: 0;
  padding: .4em 1em;
}

.menu .button:hover {
  background: #ff8be6;
}

.menu-logo {
  max-width: 140px;
  padding-right: 2rem;
  transition: all .8s;
}

@media print, screen and (width >= 64em) {
  .menu-logo {
    max-width: 320px;
  }
}

.sticky-shrinknav-wrapper .menu-logo {
  max-width: 140px;
  transition: all .8s;
}

.sticky-shrinknav-wrapper .top-bar {
  position: fixed;
}

.mobile-nav {
  background: #fff;
}

.mobile-nav .menu-item {
  padding: 1rem;
}

.mobile-nav .menu-item:not(:last-child) {
  border-bottom: 1px solid #102b461a;
}

.menu-icon:before {
  margin-left: 0;
  left: 0 !important;
}

.menu-icon:after {
  content: "" !important;
}

.testimonial-logo img {
  max-width: 130px;
}

.testimonial-heading {
  margin-bottom: 1rem;
}

.testimonial-block {
  margin-top: 40px;
  margin-bottom: 10px;
}

@media print, screen and (width >= 64em) {
  .testimonial-block {
    margin-top: 60px;
    margin-bottom: 120px;
  }
}

.callout-block-wrapper {
  padding-bottom: 40px;
}

@media print, screen and (width >= 64em) {
  .callout-block-wrapper {
    padding-bottom: 100px;
  }
}

.callout-block-inner {
  padding: 40px;
}

@media print, screen and (width >= 64em) {
  .callout-block-inner {
    padding: 40px;
  }
}

.callout-block.container-regular, .callout-block-inner.container-regular {
  max-width: 1150px;
}

.card {
  flex-grow: 0;
}

.card-feed {
  margin-top: 40px;
}

.mini-card {
  flex-direction: row;
}

.mini-card .arrow-link {
  color: #ff8be6;
}

.mini-card:hover, .mini-card:focus {
  color: #1b4571;
  background: #fff;
}

.mini-card:hover .arrow-link, .mini-card:focus .arrow-link {
  color: #1b4571;
}

.mini-card .card-section {
  flex-direction: row;
}

.hero-block {
  background-size: cover;
  width: 100%;
  min-height: 300px;
  padding: 100px 40px 40px;
}

@media print, screen and (width >= 64em) {
  .hero-block {
    min-height: 730px;
    padding-bottom: 280px;
  }
}

.hero-content-image {
  margin-bottom: 2rem;
}

.hero-slider .orbit-figure {
  width: 100%;
  height: 300px;
}

@media print, screen and (width >= 64em) {
  .hero-slider .orbit-figure {
    height: 730px;
  }
}

.orbit-figure {
  position: relative;
}

.orbit-figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.orbit-figure:after {
  content: "";
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.big-link-image {
  border: 2px solid #ff8be6;
  border-radius: 1000px;
  padding: 10px;
}

.big-link-image img {
  border-radius: 1000px;
  width: 140px;
  height: 140px;
}

.big-link {
  color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 24px 0;
  transition: all .8s;
}

.big-link:hover, .big-link:focus {
  color: #fff;
  background: #1b4571;
  transition: all .8s;
}

.focus-section {
  padding-bottom: 260px;
}

.project-feed:not(:last-child) {
  padding: 40px;
}

@media print, screen and (width >= 64em) {
  .split-block-content {
    padding: 50px 80px;
  }
}

.button, button:not(.search-filter-input-button), .button.primary, input[type="submit"] {
  font-weight: 500;
  line-height: 1.3;
  transition: all .8s;
  position: relative;
}

.button:not(.hollow), button:not(.search-filter-input-button):not(.hollow), .button.primary:not(.hollow), input[type="submit"]:not(.hollow) {
  margin: .5rem;
}

.button:not(.hollow):before, button:not(.search-filter-input-button):not(.hollow):before, .button.primary:not(.hollow):before, input[type="submit"]:not(.hollow):before {
  content: "";
  border: 2px solid #ff8be6;
  border-radius: 1000px;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  position: absolute;
  top: -.5rem;
  left: -.5rem;
}

.button:not(.button-no-arrow):after, button:not(.search-filter-input-button):not(.button-no-arrow):after, .button.primary:not(.button-no-arrow):after, input[type="submit"]:not(.button-no-arrow):after {
  content: "";
  margin-left: .5rem;
  font-family: "Font Awesome 7 Sharp";
}

.button:hover, .button:focus, button:not(.search-filter-input-button):hover, button:not(.search-filter-input-button):focus, .button.primary:hover, .button.primary:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #1b4571;
  transition: all .8s;
}

.button.hollow {
  padding: .6em 1em;
}

.button.hollow:hover, .button.hollow:focus {
  color: #fff;
  background: #102b46;
}

.button.button-no-arrow {
  margin: 0 auto 30px;
}

.button.secondary:before {
  border: 2px solid #1b4571;
}

.button.secondary:hover, .button.secondary:focus {
  color: #fff;
  background: #1b4571;
}

.button.secondary:hover:before, .button.secondary:focus:before {
  border-color: #ff8be6;
}

.search-filter-input-button {
  border-radius: 100px;
}

.splide__arrows {
  justify-content: flex-end;
  gap: 30px;
  width: 100%;
  display: flex;
}

.splide__arrow {
  background: none;
  transform: scale(.7);
}

.has-border {
  border: 1px solid #ff8be6;
}

@media screen and (width >= 0) {
  .has-border-small {
    border: 1px solid #ff8be6;
  }
}

@media screen and (width >= 640px) {
  .has-border-medium {
    border: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1024px) {
  .has-border-large {
    border: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1200px) {
  .has-border-xlarge {
    border: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1440px) {
  .has-border-xxlarge {
    border: 1px solid #ff8be6;
  }
}

.has-border-top {
  border-top: 1px solid #ff8be6;
}

@media screen and (width >= 0) {
  .has-border-small-top {
    border-top: 1px solid #ff8be6;
  }
}

@media screen and (width >= 640px) {
  .has-border-medium-top {
    border-top: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1024px) {
  .has-border-large-top {
    border-top: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1200px) {
  .has-border-xlarge-top {
    border-top: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1440px) {
  .has-border-xxlarge-top {
    border-top: 1px solid #ff8be6;
  }
}

.has-border-right {
  border-right: 1px solid #ff8be6;
}

@media screen and (width >= 0) {
  .has-border-small-right {
    border-right: 1px solid #ff8be6;
  }
}

@media screen and (width >= 640px) {
  .has-border-medium-right {
    border-right: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1024px) {
  .has-border-large-right {
    border-right: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1200px) {
  .has-border-xlarge-right {
    border-right: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1440px) {
  .has-border-xxlarge-right {
    border-right: 1px solid #ff8be6;
  }
}

.has-border-bottom {
  border-bottom: 1px solid #ff8be6;
}

@media screen and (width >= 0) {
  .has-border-small-bottom {
    border-bottom: 1px solid #ff8be6;
  }
}

@media screen and (width >= 640px) {
  .has-border-medium-bottom {
    border-bottom: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1024px) {
  .has-border-large-bottom {
    border-bottom: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1200px) {
  .has-border-xlarge-bottom {
    border-bottom: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1440px) {
  .has-border-xxlarge-bottom {
    border-bottom: 1px solid #ff8be6;
  }
}

.has-border-left {
  border-left: 1px solid #ff8be6;
}

@media screen and (width >= 0) {
  .has-border-small-left {
    border-left: 1px solid #ff8be6;
  }
}

@media screen and (width >= 640px) {
  .has-border-medium-left {
    border-left: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1024px) {
  .has-border-large-left {
    border-left: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1200px) {
  .has-border-xlarge-left {
    border-left: 1px solid #ff8be6;
  }
}

@media screen and (width >= 1440px) {
  .has-border-xxlarge-left {
    border-left: 1px solid #ff8be6;
  }
}

.rounded {
  border-radius: 8px;
}

@media screen and (width >= 0) {
  .small-rounded {
    border-radius: 8px;
  }
}

@media screen and (width >= 640px) {
  .medium-rounded {
    border-radius: 8px;
  }
}

@media screen and (width >= 1024px) {
  .large-rounded {
    border-radius: 8px;
  }
}

@media screen and (width >= 1200px) {
  .xlarge-rounded {
    border-radius: 8px;
  }
}

@media screen and (width >= 1440px) {
  .xxlarge-rounded {
    border-radius: 8px;
  }
}

.has-neutral-color {
  color: #fffcf9;
}

.has-neutral-border {
  border-color: #fffcf9;
}

.has-neutral-background {
  background-color: #fffcf9;
}

.has-neutral-dark-color {
  color: #fbf5ed;
}

.has-neutral-dark-border {
  border-color: #fbf5ed;
}

.has-neutral-dark-background {
  background-color: #fbf5ed;
}

.has-primary-color {
  color: #1b4571;
}

.has-primary-border {
  border-color: #1b4571;
}

.has-primary-background {
  background-color: #1b4571;
}

.has-secondary-color {
  color: #ff8be6;
}

.has-secondary-border {
  border-color: #ff8be6;
}

.has-secondary-background {
  background-color: #ff8be6;
}

.has-tertiary-color {
  color: #102b46;
}

.has-tertiary-border {
  border-color: #102b46;
}

.has-tertiary-background {
  background-color: #102b46;
}

.has-tertiary-dark-color {
  color: #042132;
}

.has-tertiary-dark-border {
  border-color: #042132;
}

.has-tertiary-dark-background {
  background-color: #042132;
}

.has-success-color {
  color: #3adb76;
}

.has-success-border {
  border-color: #3adb76;
}

.has-success-background {
  background-color: #3adb76;
}

.has-warning-color {
  color: #ffae00;
}

.has-warning-border {
  border-color: #ffae00;
}

.has-warning-background {
  background-color: #ffae00;
}

.has-alert-color {
  color: #cc4b37;
}

.has-alert-border {
  border-color: #cc4b37;
}

.has-alert-background {
  background-color: #cc4b37;
}

.has-overlapping-neutral-background {
  background-image: linear-gradient(#0000 100px, #fffcf9 100px, #fffcf9);
}

.has-overlapping-neutral-dark-background {
  background-image: linear-gradient(#0000 100px, #fbf5ed 100px, #fbf5ed);
}

.has-overlapping-primary-background {
  background-image: linear-gradient(#0000 100px, #1b4571 100px, #1b4571);
}

.has-overlapping-secondary-background {
  background-image: linear-gradient(#0000 100px, #ff8be6 100px, #ff8be6);
}

.has-overlapping-tertiary-background {
  background-image: linear-gradient(#0000 100px, #102b46 100px, #102b46);
}

.has-overlapping-tertiary-dark-background {
  background-image: linear-gradient(#0000 100px, #042132 100px, #042132);
}

.has-overlapping-success-background {
  background-image: linear-gradient(#0000 100px, #3adb76 100px, #3adb76);
}

.has-overlapping-warning-background {
  background-image: linear-gradient(#0000 100px, #ffae00 100px, #ffae00);
}

.has-overlapping-alert-background {
  background-image: linear-gradient(#0000 100px, #cc4b37 100px, #cc4b37);
}

.margin-0 {
  margin: 0;
}

@media screen and (width >= 0) {
  .margin-small-0 {
    margin: 0;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-0 {
    margin: 0;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-0 {
    margin: 0;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-0 {
    margin: 0;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-0 {
    margin: 0;
  }
}

.margin-1 {
  margin: 1rem;
}

@media screen and (width >= 0) {
  .margin-small-1 {
    margin: 1rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-1 {
    margin: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-1 {
    margin: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-1 {
    margin: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-1 {
    margin: 1rem;
  }
}

.margin-2 {
  margin: 2rem;
}

@media screen and (width >= 0) {
  .margin-small-2 {
    margin: 2rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-2 {
    margin: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-2 {
    margin: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-2 {
    margin: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-2 {
    margin: 2rem;
  }
}

.margin-3 {
  margin: 3rem;
}

@media screen and (width >= 0) {
  .margin-small-3 {
    margin: 3rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-3 {
    margin: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-3 {
    margin: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-3 {
    margin: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-3 {
    margin: 3rem;
  }
}

.margin-4 {
  margin: 4rem;
}

@media screen and (width >= 0) {
  .margin-small-4 {
    margin: 4rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-4 {
    margin: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-4 {
    margin: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-4 {
    margin: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-4 {
    margin: 4rem;
  }
}

.margin-top-0 {
  margin-top: 0;
}

@media screen and (width >= 0) {
  .margin-small-top-0 {
    margin-top: 0;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-top-0 {
    margin-top: 0;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-top-0 {
    margin-top: 0;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-top-0 {
    margin-top: 0;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-top-0 {
    margin-top: 0;
  }
}

.margin-top-1 {
  margin-top: 1rem;
}

@media screen and (width >= 0) {
  .margin-small-top-1 {
    margin-top: 1rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-top-1 {
    margin-top: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-top-1 {
    margin-top: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-top-1 {
    margin-top: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-top-1 {
    margin-top: 1rem;
  }
}

.margin-top-2 {
  margin-top: 2rem;
}

@media screen and (width >= 0) {
  .margin-small-top-2 {
    margin-top: 2rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-top-2 {
    margin-top: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-top-2 {
    margin-top: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-top-2 {
    margin-top: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-top-2 {
    margin-top: 2rem;
  }
}

.margin-top-3 {
  margin-top: 3rem;
}

@media screen and (width >= 0) {
  .margin-small-top-3 {
    margin-top: 3rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-top-3 {
    margin-top: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-top-3 {
    margin-top: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-top-3 {
    margin-top: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-top-3 {
    margin-top: 3rem;
  }
}

.margin-top-4 {
  margin-top: 4rem;
}

@media screen and (width >= 0) {
  .margin-small-top-4 {
    margin-top: 4rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-top-4 {
    margin-top: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-top-4 {
    margin-top: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-top-4 {
    margin-top: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-top-4 {
    margin-top: 4rem;
  }
}

.margin-right-0 {
  margin-right: 0;
}

@media screen and (width >= 0) {
  .margin-small-right-0 {
    margin-right: 0;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-right-0 {
    margin-right: 0;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-right-0 {
    margin-right: 0;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-right-0 {
    margin-right: 0;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-right-0 {
    margin-right: 0;
  }
}

.margin-right-1 {
  margin-right: 1rem;
}

@media screen and (width >= 0) {
  .margin-small-right-1 {
    margin-right: 1rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-right-1 {
    margin-right: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-right-1 {
    margin-right: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-right-1 {
    margin-right: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-right-1 {
    margin-right: 1rem;
  }
}

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

@media screen and (width >= 0) {
  .margin-small-right-2 {
    margin-right: 2rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-right-2 {
    margin-right: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-right-2 {
    margin-right: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-right-2 {
    margin-right: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-right-2 {
    margin-right: 2rem;
  }
}

.margin-right-3 {
  margin-right: 3rem;
}

@media screen and (width >= 0) {
  .margin-small-right-3 {
    margin-right: 3rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-right-3 {
    margin-right: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-right-3 {
    margin-right: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-right-3 {
    margin-right: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-right-3 {
    margin-right: 3rem;
  }
}

.margin-right-4 {
  margin-right: 4rem;
}

@media screen and (width >= 0) {
  .margin-small-right-4 {
    margin-right: 4rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-right-4 {
    margin-right: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-right-4 {
    margin-right: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-right-4 {
    margin-right: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-right-4 {
    margin-right: 4rem;
  }
}

.margin-bottom-0 {
  margin-bottom: 0;
}

@media screen and (width >= 0) {
  .margin-small-bottom-0 {
    margin-bottom: 0;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-bottom-0 {
    margin-bottom: 0;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-bottom-0 {
    margin-bottom: 0;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-bottom-0 {
    margin-bottom: 0;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-bottom-0 {
    margin-bottom: 0;
  }
}

.margin-bottom-1 {
  margin-bottom: 1rem;
}

@media screen and (width >= 0) {
  .margin-small-bottom-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-bottom-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-bottom-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-bottom-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-bottom-1 {
    margin-bottom: 1rem;
  }
}

.margin-bottom-2 {
  margin-bottom: 2rem;
}

@media screen and (width >= 0) {
  .margin-small-bottom-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-bottom-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-bottom-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-bottom-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-bottom-2 {
    margin-bottom: 2rem;
  }
}

.margin-bottom-3 {
  margin-bottom: 3rem;
}

@media screen and (width >= 0) {
  .margin-small-bottom-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-bottom-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-bottom-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-bottom-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-bottom-3 {
    margin-bottom: 3rem;
  }
}

.margin-bottom-4 {
  margin-bottom: 4rem;
}

@media screen and (width >= 0) {
  .margin-small-bottom-4 {
    margin-bottom: 4rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-bottom-4 {
    margin-bottom: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-bottom-4 {
    margin-bottom: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-bottom-4 {
    margin-bottom: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-bottom-4 {
    margin-bottom: 4rem;
  }
}

.margin-left-0 {
  margin-left: 0;
}

@media screen and (width >= 0) {
  .margin-small-left-0 {
    margin-left: 0;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-left-0 {
    margin-left: 0;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-left-0 {
    margin-left: 0;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-left-0 {
    margin-left: 0;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-left-0 {
    margin-left: 0;
  }
}

.margin-left-1 {
  margin-left: 1rem;
}

@media screen and (width >= 0) {
  .margin-small-left-1 {
    margin-left: 1rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-left-1 {
    margin-left: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-left-1 {
    margin-left: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-left-1 {
    margin-left: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-left-1 {
    margin-left: 1rem;
  }
}

.margin-left-2 {
  margin-left: 2rem;
}

@media screen and (width >= 0) {
  .margin-small-left-2 {
    margin-left: 2rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-left-2 {
    margin-left: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-left-2 {
    margin-left: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-left-2 {
    margin-left: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-left-2 {
    margin-left: 2rem;
  }
}

.margin-left-3 {
  margin-left: 3rem;
}

@media screen and (width >= 0) {
  .margin-small-left-3 {
    margin-left: 3rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-left-3 {
    margin-left: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-left-3 {
    margin-left: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-left-3 {
    margin-left: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-left-3 {
    margin-left: 3rem;
  }
}

.margin-left-4 {
  margin-left: 4rem;
}

@media screen and (width >= 0) {
  .margin-small-left-4 {
    margin-left: 4rem;
  }
}

@media screen and (width >= 640px) {
  .margin-medium-left-4 {
    margin-left: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .margin-large-left-4 {
    margin-left: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .margin-xlarge-left-4 {
    margin-left: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .margin-xxlarge-left-4 {
    margin-left: 4rem;
  }
}

.padding-0 {
  padding: 0;
}

@media screen and (width >= 0) {
  .padding-small-0 {
    padding: 0;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-0 {
    padding: 0;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-0 {
    padding: 0;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-0 {
    padding: 0;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-0 {
    padding: 0;
  }
}

.padding-1 {
  padding: 1rem;
}

@media screen and (width >= 0) {
  .padding-small-1 {
    padding: 1rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-1 {
    padding: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-1 {
    padding: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-1 {
    padding: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-1 {
    padding: 1rem;
  }
}

.padding-2 {
  padding: 2rem;
}

@media screen and (width >= 0) {
  .padding-small-2 {
    padding: 2rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-2 {
    padding: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-2 {
    padding: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-2 {
    padding: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-2 {
    padding: 2rem;
  }
}

.padding-3 {
  padding: 3rem;
}

@media screen and (width >= 0) {
  .padding-small-3 {
    padding: 3rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-3 {
    padding: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-3 {
    padding: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-3 {
    padding: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-3 {
    padding: 3rem;
  }
}

.padding-4 {
  padding: 4rem;
}

@media screen and (width >= 0) {
  .padding-small-4 {
    padding: 4rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-4 {
    padding: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-4 {
    padding: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-4 {
    padding: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-4 {
    padding: 4rem;
  }
}

.padding-top-0 {
  padding-top: 0;
}

@media screen and (width >= 0) {
  .padding-small-top-0 {
    padding-top: 0;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-top-0 {
    padding-top: 0;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-top-0 {
    padding-top: 0;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-top-0 {
    padding-top: 0;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-top-0 {
    padding-top: 0;
  }
}

.padding-top-1 {
  padding-top: 1rem;
}

@media screen and (width >= 0) {
  .padding-small-top-1 {
    padding-top: 1rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-top-1 {
    padding-top: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-top-1 {
    padding-top: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-top-1 {
    padding-top: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-top-1 {
    padding-top: 1rem;
  }
}

.padding-top-2 {
  padding-top: 2rem;
}

@media screen and (width >= 0) {
  .padding-small-top-2 {
    padding-top: 2rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-top-2 {
    padding-top: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-top-2 {
    padding-top: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-top-2 {
    padding-top: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-top-2 {
    padding-top: 2rem;
  }
}

.padding-top-3 {
  padding-top: 3rem;
}

@media screen and (width >= 0) {
  .padding-small-top-3 {
    padding-top: 3rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-top-3 {
    padding-top: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-top-3 {
    padding-top: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-top-3 {
    padding-top: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-top-3 {
    padding-top: 3rem;
  }
}

.padding-top-4 {
  padding-top: 4rem;
}

@media screen and (width >= 0) {
  .padding-small-top-4 {
    padding-top: 4rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-top-4 {
    padding-top: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-top-4 {
    padding-top: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-top-4 {
    padding-top: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-top-4 {
    padding-top: 4rem;
  }
}

.padding-right-0 {
  padding-right: 0;
}

@media screen and (width >= 0) {
  .padding-small-right-0 {
    padding-right: 0;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-right-0 {
    padding-right: 0;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-right-0 {
    padding-right: 0;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-right-0 {
    padding-right: 0;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-right-0 {
    padding-right: 0;
  }
}

.padding-right-1 {
  padding-right: 1rem;
}

@media screen and (width >= 0) {
  .padding-small-right-1 {
    padding-right: 1rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-right-1 {
    padding-right: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-right-1 {
    padding-right: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-right-1 {
    padding-right: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-right-1 {
    padding-right: 1rem;
  }
}

.padding-right-2 {
  padding-right: 2rem;
}

@media screen and (width >= 0) {
  .padding-small-right-2 {
    padding-right: 2rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-right-2 {
    padding-right: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-right-2 {
    padding-right: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-right-2 {
    padding-right: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-right-2 {
    padding-right: 2rem;
  }
}

.padding-right-3 {
  padding-right: 3rem;
}

@media screen and (width >= 0) {
  .padding-small-right-3 {
    padding-right: 3rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-right-3 {
    padding-right: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-right-3 {
    padding-right: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-right-3 {
    padding-right: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-right-3 {
    padding-right: 3rem;
  }
}

.padding-right-4 {
  padding-right: 4rem;
}

@media screen and (width >= 0) {
  .padding-small-right-4 {
    padding-right: 4rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-right-4 {
    padding-right: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-right-4 {
    padding-right: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-right-4 {
    padding-right: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-right-4 {
    padding-right: 4rem;
  }
}

.padding-bottom-0 {
  padding-bottom: 0;
}

@media screen and (width >= 0) {
  .padding-small-bottom-0 {
    padding-bottom: 0;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-bottom-0 {
    padding-bottom: 0;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-bottom-0 {
    padding-bottom: 0;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-bottom-0 {
    padding-bottom: 0;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-bottom-0 {
    padding-bottom: 0;
  }
}

.padding-bottom-1 {
  padding-bottom: 1rem;
}

@media screen and (width >= 0) {
  .padding-small-bottom-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-bottom-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-bottom-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-bottom-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-bottom-1 {
    padding-bottom: 1rem;
  }
}

.padding-bottom-2 {
  padding-bottom: 2rem;
}

@media screen and (width >= 0) {
  .padding-small-bottom-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-bottom-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-bottom-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-bottom-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-bottom-2 {
    padding-bottom: 2rem;
  }
}

.padding-bottom-3 {
  padding-bottom: 3rem;
}

@media screen and (width >= 0) {
  .padding-small-bottom-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-bottom-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-bottom-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-bottom-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-bottom-3 {
    padding-bottom: 3rem;
  }
}

.padding-bottom-4 {
  padding-bottom: 4rem;
}

@media screen and (width >= 0) {
  .padding-small-bottom-4 {
    padding-bottom: 4rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-bottom-4 {
    padding-bottom: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-bottom-4 {
    padding-bottom: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-bottom-4 {
    padding-bottom: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-bottom-4 {
    padding-bottom: 4rem;
  }
}

.padding-left-0 {
  padding-left: 0;
}

@media screen and (width >= 0) {
  .padding-small-left-0 {
    padding-left: 0;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-left-0 {
    padding-left: 0;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-left-0 {
    padding-left: 0;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-left-0 {
    padding-left: 0;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-left-0 {
    padding-left: 0;
  }
}

.padding-left-1 {
  padding-left: 1rem;
}

@media screen and (width >= 0) {
  .padding-small-left-1 {
    padding-left: 1rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-left-1 {
    padding-left: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-left-1 {
    padding-left: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-left-1 {
    padding-left: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-left-1 {
    padding-left: 1rem;
  }
}

.padding-left-2 {
  padding-left: 2rem;
}

@media screen and (width >= 0) {
  .padding-small-left-2 {
    padding-left: 2rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-left-2 {
    padding-left: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-left-2 {
    padding-left: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-left-2 {
    padding-left: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-left-2 {
    padding-left: 2rem;
  }
}

.padding-left-3 {
  padding-left: 3rem;
}

@media screen and (width >= 0) {
  .padding-small-left-3 {
    padding-left: 3rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-left-3 {
    padding-left: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-left-3 {
    padding-left: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-left-3 {
    padding-left: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-left-3 {
    padding-left: 3rem;
  }
}

.padding-left-4 {
  padding-left: 4rem;
}

@media screen and (width >= 0) {
  .padding-small-left-4 {
    padding-left: 4rem;
  }
}

@media screen and (width >= 640px) {
  .padding-medium-left-4 {
    padding-left: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .padding-large-left-4 {
    padding-left: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .padding-xlarge-left-4 {
    padding-left: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .padding-xxlarge-left-4 {
    padding-left: 4rem;
  }
}

.gap-0 {
  grid-gap: 0rem;
}

@media screen and (width >= 0) {
  .gap-small-0 {
    grid-gap: 0rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-0 {
    grid-gap: 0rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-0 {
    grid-gap: 0rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-0 {
    grid-gap: 0rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-0 {
    grid-gap: 0rem;
  }
}

.gap-1 {
  grid-gap: 1rem;
}

@media screen and (width >= 0) {
  .gap-small-1 {
    grid-gap: 1rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-1 {
    grid-gap: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-1 {
    grid-gap: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-1 {
    grid-gap: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-1 {
    grid-gap: 1rem;
  }
}

.gap-2 {
  grid-gap: 2rem;
}

@media screen and (width >= 0) {
  .gap-small-2 {
    grid-gap: 2rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-2 {
    grid-gap: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-2 {
    grid-gap: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-2 {
    grid-gap: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-2 {
    grid-gap: 2rem;
  }
}

.gap-3 {
  grid-gap: 3rem;
}

@media screen and (width >= 0) {
  .gap-small-3 {
    grid-gap: 3rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-3 {
    grid-gap: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-3 {
    grid-gap: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-3 {
    grid-gap: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-3 {
    grid-gap: 3rem;
  }
}

.gap-4 {
  grid-gap: 4rem;
}

@media screen and (width >= 0) {
  .gap-small-4 {
    grid-gap: 4rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-4 {
    grid-gap: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-4 {
    grid-gap: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-4 {
    grid-gap: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-4 {
    grid-gap: 4rem;
  }
}

.gap-row-0 {
  grid-row-gap: 0rem;
}

@media screen and (width >= 0) {
  .gap-small-row-0 {
    grid-row-gap: 0rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-row-0 {
    grid-row-gap: 0rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-row-0 {
    grid-row-gap: 0rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-row-0 {
    grid-row-gap: 0rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-row-0 {
    grid-row-gap: 0rem;
  }
}

.gap-row-1 {
  grid-row-gap: 1rem;
}

@media screen and (width >= 0) {
  .gap-small-row-1 {
    grid-row-gap: 1rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-row-1 {
    grid-row-gap: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-row-1 {
    grid-row-gap: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-row-1 {
    grid-row-gap: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-row-1 {
    grid-row-gap: 1rem;
  }
}

.gap-row-2 {
  grid-row-gap: 2rem;
}

@media screen and (width >= 0) {
  .gap-small-row-2 {
    grid-row-gap: 2rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-row-2 {
    grid-row-gap: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-row-2 {
    grid-row-gap: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-row-2 {
    grid-row-gap: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-row-2 {
    grid-row-gap: 2rem;
  }
}

.gap-row-3 {
  grid-row-gap: 3rem;
}

@media screen and (width >= 0) {
  .gap-small-row-3 {
    grid-row-gap: 3rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-row-3 {
    grid-row-gap: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-row-3 {
    grid-row-gap: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-row-3 {
    grid-row-gap: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-row-3 {
    grid-row-gap: 3rem;
  }
}

.gap-row-4 {
  grid-row-gap: 4rem;
}

@media screen and (width >= 0) {
  .gap-small-row-4 {
    grid-row-gap: 4rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-row-4 {
    grid-row-gap: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-row-4 {
    grid-row-gap: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-row-4 {
    grid-row-gap: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-row-4 {
    grid-row-gap: 4rem;
  }
}

.gap-column-0 {
  grid-column-gap: 0rem;
}

@media screen and (width >= 0) {
  .gap-small-column-0 {
    grid-column-gap: 0rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-column-0 {
    grid-column-gap: 0rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-column-0 {
    grid-column-gap: 0rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-column-0 {
    grid-column-gap: 0rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-column-0 {
    grid-column-gap: 0rem;
  }
}

.gap-column-1 {
  grid-column-gap: 1rem;
}

@media screen and (width >= 0) {
  .gap-small-column-1 {
    grid-column-gap: 1rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-column-1 {
    grid-column-gap: 1rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-column-1 {
    grid-column-gap: 1rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-column-1 {
    grid-column-gap: 1rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-column-1 {
    grid-column-gap: 1rem;
  }
}

.gap-column-2 {
  grid-column-gap: 2rem;
}

@media screen and (width >= 0) {
  .gap-small-column-2 {
    grid-column-gap: 2rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-column-2 {
    grid-column-gap: 2rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-column-2 {
    grid-column-gap: 2rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-column-2 {
    grid-column-gap: 2rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-column-2 {
    grid-column-gap: 2rem;
  }
}

.gap-column-3 {
  grid-column-gap: 3rem;
}

@media screen and (width >= 0) {
  .gap-small-column-3 {
    grid-column-gap: 3rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-column-3 {
    grid-column-gap: 3rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-column-3 {
    grid-column-gap: 3rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-column-3 {
    grid-column-gap: 3rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-column-3 {
    grid-column-gap: 3rem;
  }
}

.gap-column-4 {
  grid-column-gap: 4rem;
}

@media screen and (width >= 0) {
  .gap-small-column-4 {
    grid-column-gap: 4rem;
  }
}

@media screen and (width >= 640px) {
  .gap-medium-column-4 {
    grid-column-gap: 4rem;
  }
}

@media screen and (width >= 1024px) {
  .gap-large-column-4 {
    grid-column-gap: 4rem;
  }
}

@media screen and (width >= 1200px) {
  .gap-xlarge-column-4 {
    grid-column-gap: 4rem;
  }
}

@media screen and (width >= 1440px) {
  .gap-xxlarge-column-4 {
    grid-column-gap: 4rem;
  }
}

.container-copy {
  width: 100%;
  max-width: 800px;
}

.container-copy-left {
  margin-left: 0;
}

.container-copy-right {
  margin-right: 0;
}

.container-copy-center {
  margin-left: auto;
  margin-right: auto;
}

.container-narrow {
  width: 100%;
  max-width: 1000px;
}

.container-narrow-left {
  margin-left: 0;
}

.container-narrow-right {
  margin-right: 0;
}

.container-narrow-center {
  margin-left: auto;
  margin-right: auto;
}

.container-regular {
  width: 100%;
  max-width: 1400px;
}

.container-regular-left {
  margin-left: 0;
}

.container-regular-right {
  margin-right: 0;
}

.container-regular-center {
  margin-left: auto;
  margin-right: auto;
}

.container-wide {
  width: 100%;
  max-width: 1600px;
}

.container-wide-left {
  margin-left: 0;
}

.container-wide-right {
  margin-right: 0;
}

.container-wide-center {
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  width: 100%;
  max-width: 100%;
}

.container-full-left {
  margin-left: 0;
}

.container-full-right {
  margin-right: 0;
}

.container-full-center, .container-center {
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  width: 100%;
}

.has-primary-background, .has-primary-background label, .has-primary-background a:not(.button, .box-link) {
  color: #fff;
}

.has-primary-background a:not(.button, .box-link):hover {
  color: #ff8be6;
}

.has-primary-background .subheader {
  color: #fbf5ed;
}

.has-primary-background .block-link {
  color: #fff;
}

.has-primary-background .block-link:hover, .has-primary-background .block-link:active {
  border-color: #fff;
}

.has-primary-background .button:not(:hover), .has-primary-background .button.primary:not(:hover), .has-primary-background button:not(:hover), .has-primary-background input[type="submit"] {
  color: #102b46;
  background: #fff;
}

.has-primary-background .button:not(:hover):hover, .has-primary-background .button:not(:hover):focus, .has-primary-background .button.primary:not(:hover):hover, .has-primary-background .button.primary:not(:hover):focus, .has-primary-background button:not(:hover):hover, .has-primary-background button:not(:hover):focus, .has-primary-background input[type="submit"]:hover, .has-primary-background input[type="submit"]:focus {
  background-color: #102b46;
}

.has-primary-background h1 em, .has-primary-background h2 em, .has-primary-background h3 em, .has-primary-background h4 em, .has-primary-background h5 em, .has-primary-background h6 em, .has-primary-background .h1 em, .has-primary-background .h2 em, .has-primary-background .h3 em, .has-primary-background .h4 em, .has-primary-background .h5 em, .has-primary-background .h6 em {
  color: #ff8be6;
}

.has-tertiary-background, .has-tertiary-background label, .has-tertiary-background a:not(.button, .box-link) {
  color: #fff;
}

.has-tertiary-background a:not(.button, .box-link):hover {
  color: #ff8be6;
}

.has-tertiary-background .subheader {
  color: #fbf5ed;
}

.has-tertiary-background .block-link {
  color: #fff;
}

.has-tertiary-background .block-link:hover, .has-tertiary-background .block-link:active {
  border-color: #fff;
}

.has-tertiary-background .button:not(:hover), .has-tertiary-background .button.primary:not(:hover), .has-tertiary-background button:not(:hover), .has-tertiary-background input[type="submit"] {
  color: #102b46;
  background: #fff;
}

.has-tertiary-background .button:not(:hover):hover, .has-tertiary-background .button:not(:hover):focus, .has-tertiary-background .button.primary:not(:hover):hover, .has-tertiary-background .button.primary:not(:hover):focus, .has-tertiary-background button:not(:hover):hover, .has-tertiary-background button:not(:hover):focus, .has-tertiary-background input[type="submit"]:hover, .has-tertiary-background input[type="submit"]:focus {
  background-color: #102b46;
}

.has-tertiary-background h1 em, .has-tertiary-background h2 em, .has-tertiary-background h3 em, .has-tertiary-background h4 em, .has-tertiary-background h5 em, .has-tertiary-background h6 em, .has-tertiary-background .h1 em, .has-tertiary-background .h2 em, .has-tertiary-background .h3 em, .has-tertiary-background .h4 em, .has-tertiary-background .h5 em, .has-tertiary-background .h6 em {
  color: #ff8be6;
}

.has-tertiary-dark-background, .has-tertiary-dark-background label, .has-tertiary-dark-background a:not(.button, .box-link) {
  color: #fff;
}

.has-tertiary-dark-background a:not(.button, .box-link):hover {
  color: #ff8be6;
}

.has-tertiary-dark-background .subheader {
  color: #fbf5ed;
}

.has-tertiary-dark-background .block-link {
  color: #fff;
}

.has-tertiary-dark-background .block-link:hover, .has-tertiary-dark-background .block-link:active {
  border-color: #fff;
}

.has-tertiary-dark-background .button:not(:hover), .has-tertiary-dark-background .button.primary:not(:hover), .has-tertiary-dark-background button:not(:hover), .has-tertiary-dark-background input[type="submit"] {
  color: #102b46;
  background: #fff;
}

.has-tertiary-dark-background .button:not(:hover):hover, .has-tertiary-dark-background .button:not(:hover):focus, .has-tertiary-dark-background .button.primary:not(:hover):hover, .has-tertiary-dark-background .button.primary:not(:hover):focus, .has-tertiary-dark-background button:not(:hover):hover, .has-tertiary-dark-background button:not(:hover):focus, .has-tertiary-dark-background input[type="submit"]:hover, .has-tertiary-dark-background input[type="submit"]:focus {
  background-color: #102b46;
}

.has-tertiary-dark-background h1 em, .has-tertiary-dark-background h2 em, .has-tertiary-dark-background h3 em, .has-tertiary-dark-background h4 em, .has-tertiary-dark-background h5 em, .has-tertiary-dark-background h6 em, .has-tertiary-dark-background .h1 em, .has-tertiary-dark-background .h2 em, .has-tertiary-dark-background .h3 em, .has-tertiary-dark-background .h4 em, .has-tertiary-dark-background .h5 em, .has-tertiary-dark-background .h6 em {
  color: #ff8be6;
}
/*# sourceMappingURL=main.css.map */
