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

Stylesheet: Main Stylesheet

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

******************************************************************/
/* Valeur reprises de _settings.scss ($grid-margin-gutters) */
/**
 * Foundation for Sites by ZURB
 * Version 6.6.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

a {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

html {
  box-sizing: border-box;
  font-size: 18px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

pre {
  overflow: auto;
}

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

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

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

.grid-container {
  padding-right: 0.8888888889rem;
  padding-left: 0.8888888889rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.8333333333rem;
    padding-left: 0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container {
    padding-right: 1.3888888889rem;
    padding-left: 1.3888888889rem;
  }
}
.grid-container.fluid {
  padding-right: 0.8888888889rem;
  padding-left: 0.8888888889rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.8333333333rem;
    padding-left: 0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container.fluid {
    padding-right: 1.3888888889rem;
    padding-left: 1.3888888889rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 90em) {
  .grid-x > .xlarge-auto {
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xlarge-12, .grid-x > .xlarge-11, .grid-x > .xlarge-10, .grid-x > .xlarge-9, .grid-x > .xlarge-8, .grid-x > .xlarge-7, .grid-x > .xlarge-6, .grid-x > .xlarge-5, .grid-x > .xlarge-4, .grid-x > .xlarge-3, .grid-x > .xlarge-2, .grid-x > .xlarge-1, .grid-x > .xlarge-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .xlarge-shrink {
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.3333333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.6666666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.3333333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.6666666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.3333333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.6666666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.3333333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.6666666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

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

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

.grid-padding-x .grid-padding-x {
  margin-right: -0.8888888889rem;
  margin-left: -0.8888888889rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.8333333333rem;
    margin-left: -0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -1.3888888889rem;
    margin-left: -1.3888888889rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.8888888889rem;
  margin-left: -0.8888888889rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.8333333333rem;
    margin-left: -0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -1.3888888889rem;
    margin-left: -1.3888888889rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.8888888889rem;
  padding-left: 0.8888888889rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 0.8333333333rem;
    padding-left: 0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-x > .cell {
    padding-right: 1.3888888889rem;
    padding-left: 1.3888888889rem;
  }
}

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.3333333333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.6666666667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.2857142857%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.7777777778rem);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 90em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-padding-y .grid-padding-y {
  margin-top: -0.8888888889rem;
  margin-bottom: -0.8888888889rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.8333333333rem;
    margin-bottom: -0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -1.3888888889rem;
    margin-bottom: -1.3888888889rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.8888888889rem;
  padding-bottom: 0.8888888889rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 0.8333333333rem;
    padding-bottom: 0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-padding-y > .cell {
    padding-top: 1.3888888889rem;
    padding-bottom: 1.3888888889rem;
  }
}

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

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

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

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

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

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

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

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

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

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.7777777778rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.6666666667rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.7777777778rem);
  }
}
@media screen and (min-width: 90em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 2.7777777778rem);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-order-1 {
    order: 1;
  }
  .xlarge-order-2 {
    order: 2;
  }
  .xlarge-order-3 {
    order: 3;
  }
  .xlarge-order-4 {
    order: 4;
  }
  .xlarge-order-5 {
    order: 5;
  }
  .xlarge-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-flex-container {
    display: flex;
  }
  .xlarge-flex-child-auto {
    flex: 1 1 auto;
  }
  .xlarge-flex-child-grow {
    flex: 1 0 auto;
  }
  .xlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
  .xlarge-flex-dir-row {
    flex-direction: row;
  }
  .xlarge-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .xlarge-flex-dir-column {
    flex-direction: column;
  }
  .xlarge-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

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

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

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #1F2937;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #68738C;
}

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 2.2222222222rem;
  }
  h2, .h2 {
    font-size: 1.7777777778rem;
  }
  h3, .h3 {
    font-size: 1.3333333333rem;
  }
  h4, .h4 {
    font-size: 1.3333333333rem;
  }
  h5, .h5 {
    font-size: 0.8888888889rem;
  }
  h6, .h6 {
    font-size: 0.8888888889rem;
  }
}
@media print, screen and (min-width: 64em) {
  h1, .h1 {
    font-size: 2.6666666667rem;
  }
  h2, .h2 {
    font-size: 2.2222222222rem;
  }
  h3, .h3 {
    font-size: 1.7777777778rem;
  }
  h4, .h4 {
    font-size: 1.3333333333rem;
  }
  h5, .h5 {
    font-size: 0.8888888889rem;
  }
  h6, .h6 {
    font-size: 0.8888888889rem;
  }
}
a {
  line-height: inherit;
  color: #C3B6EF;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: rgb(155.2651685393, 133.6559550562, 228.4040449438);
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 100%;
  height: 0;
  margin: 1.5555555556rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(104, 115, 140, 0.2);
  border-left: 0;
}

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

li {
  font-size: inherit;
}

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

ol {
  margin-left: 1.25rem;
}

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

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

blockquote {
  margin: 0 0 1.2rem;
  padding: 0.5rem 1.1111111111rem 0 1.0555555556rem;
  border-left: 1px solid #68738C;
}
blockquote, blockquote p {
  line-height: 1.7;
  color: #404851;
}

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

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.1111111111rem 0.2222222222rem 0;
  background-color: #EEF0F4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
  border-radius: 10px;
}

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

.lead {
  font-size: 22.5px;
  line-height: 1.6;
}

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

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

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

.code-inline, code {
  border: 1px solid #68738C;
  background-color: #EEF0F4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #0a0a0a;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.1111111111rem 0.2777777778rem 0.0555555556rem;
}

.code-block {
  border: 1px solid #68738C;
  background-color: #EEF0F4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #0a0a0a;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 90em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-print-color-adjust: economy;
            color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #404851;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.6365079365rem;
  margin: 0 0 0.8888888889rem;
  padding: 0.6349206349rem;
  border: 1px solid rgba(104, 115, 140, 0.2);
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: none;
  font-family: inherit;
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.6;
  color: #404851;
  transition: border-color 0.25s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #68738C;
  background-color: #ffffff;
  box-shadow: none;
  transition: border-color 0.25s ease-in-out;
}

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

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

[type=submit],
[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 10px;
}

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

::-moz-placeholder {
  color: rgba(31, 41, 55, 0.5);
}

::placeholder {
  color: rgba(31, 41, 55, 0.5);
}

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

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

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

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

label {
  display: block;
  margin: 0;
  font-size: 0.7777777778rem;
  font-weight: 400;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 0.8888888889rem;
  padding: 0.5rem 0;
}

.help-text {
  margin-top: -0.4444444444rem;
  font-size: 0.7222222222rem;
  font-style: italic;
  color: #0a0a0a;
}

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

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

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

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

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

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

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

.fieldset {
  margin: 1rem 0;
  padding: 1.1111111111rem;
  border: 1px solid #EEF0F4;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1666666667rem;
  padding: 0 0.1666666667rem;
}

select {
  height: 2.6365079365rem;
  margin: 0 0 0.8888888889rem;
  padding: 0.6349206349rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgba(104, 115, 140, 0.2);
  border-radius: 10px;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 0.8888888889rem;
  font-weight: 400;
  line-height: 1.6;
  color: #404851;
  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%2864, 72, 81%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -0.8888888889rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.3333333333rem;
  transition: border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #68738C;
  background-color: #ffffff;
  box-shadow: none;
  transition: border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #EEF0F4;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: rgb(249.9, 237, 235);
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

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

.form-error {
  display: none;
  margin-top: -0.4444444444rem;
  margin-bottom: 0.8888888889rem;
  font-size: 0.6666666667rem;
  font-weight: 700;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em 1em;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 1rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.2rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #C3B6EF;
  color: #ffffff;
}
.button:hover, .button:focus {
  background-color: rgb(152.4269662921, 130.2028089888, 227.6471910112);
  color: #ffffff;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #C3B6EF;
  color: #0a0a0a;
}
.button.primary:hover, .button.primary:focus {
  background-color: rgb(138.2359550562, 112.9370786517, 223.8629213483);
  color: #0a0a0a;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #1F2937;
  color: #ffffff;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(24.8, 32.8, 44);
  color: #ffffff;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #9CCC33;
  color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(124.8, 163.2, 40.8);
  color: #0a0a0a;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: #0a0a0a;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #ffffff;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #ffffff;
}
.button.body-color, .button.body-color.disabled, .button.body-color[disabled], .button.body-color.disabled:hover, .button.body-color[disabled]:hover, .button.body-color.disabled:focus, .button.body-color[disabled]:focus {
  background-color: #374151;
  color: #ffffff;
}
.button.body-color:hover, .button.body-color:focus {
  background-color: rgb(44, 52, 64.8);
  color: #ffffff;
}
.button.light-gray, .button.light-gray.disabled, .button.light-gray[disabled], .button.light-gray.disabled:hover, .button.light-gray[disabled]:hover, .button.light-gray.disabled:focus, .button.light-gray[disabled]:focus {
  background-color: #EEF0F4;
  color: #0a0a0a;
}
.button.light-gray:hover, .button.light-gray:focus {
  background-color: rgb(179.4714285714, 188.3571428571, 206.1285714286);
  color: #0a0a0a;
}
.button.medium-gray, .button.cat-link, .button.medium-gray.disabled, .button.medium-gray[disabled], .button.medium-gray.disabled:hover, .button.medium-gray[disabled]:hover, .button.medium-gray.disabled:focus, .button.medium-gray[disabled]:focus {
  background-color: #68738C;
  color: #ffffff;
}
.button.medium-gray:hover, .button.cat-link:hover, .button.medium-gray:focus, .button.cat-link:focus {
  background-color: rgb(83.2, 92, 112);
  color: #ffffff;
}
.button.dark-gray, .button.dark-gray.disabled, .button.dark-gray[disabled], .button.dark-gray.disabled:hover, .button.dark-gray[disabled]:hover, .button.dark-gray.disabled:focus, .button.dark-gray[disabled]:focus {
  background-color: #404851;
  color: #ffffff;
}
.button.dark-gray:hover, .button.dark-gray:focus {
  background-color: rgb(51.2, 57.6, 64.8);
  color: #ffffff;
}
.button.white, .button.white.disabled, .button.white[disabled], .button.white.disabled:hover, .button.white[disabled]:hover, .button.white.disabled:focus, .button.white[disabled]:focus {
  background-color: #ffffff;
  color: #0a0a0a;
}
.button.white:hover, .button.white:focus {
  background-color: #cccccc;
  color: #0a0a0a;
}
.button.black, .button.black.disabled, .button.black[disabled], .button.black.disabled:hover, .button.black[disabled]:hover, .button.black.disabled:focus, .button.black[disabled]:focus {
  background-color: #0a0a0a;
  color: #ffffff;
}
.button.black:hover, .button.black:focus {
  background-color: #080808;
  color: #ffffff;
}
.button.blue, .button.blue.disabled, .button.blue[disabled], .button.blue.disabled:hover, .button.blue[disabled]:hover, .button.blue.disabled:focus, .button.blue[disabled]:focus {
  background-color: #0A2157;
  color: #ffffff;
}
.button.blue:hover, .button.blue:focus {
  background-color: rgb(8, 26.4, 69.6);
  color: #ffffff;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid #C3B6EF;
  color: #C3B6EF;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #C3B6EF;
  color: #C3B6EF;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #1F2937;
  color: #1F2937;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: rgb(15.5, 20.5, 27.5);
  color: rgb(15.5, 20.5, 27.5);
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #9CCC33;
  color: #9CCC33;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(78, 102, 25.5);
  color: rgb(78, 102, 25.5);
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.hollow.body-color, .button.hollow.body-color.disabled, .button.hollow.body-color[disabled], .button.hollow.body-color.disabled:hover, .button.hollow.body-color[disabled]:hover, .button.hollow.body-color.disabled:focus, .button.hollow.body-color[disabled]:focus {
  border: 1px solid #374151;
  color: #374151;
}
.button.hollow.body-color:hover, .button.hollow.body-color:focus {
  border-color: rgb(27.5, 32.5, 40.5);
  color: rgb(27.5, 32.5, 40.5);
}
.button.hollow.light-gray, .button.hollow.light-gray.disabled, .button.hollow.light-gray[disabled], .button.hollow.light-gray.disabled:hover, .button.hollow.light-gray[disabled]:hover, .button.hollow.light-gray.disabled:focus, .button.hollow.light-gray[disabled]:focus {
  border: 1px solid #EEF0F4;
  color: #EEF0F4;
}
.button.hollow.light-gray:hover, .button.hollow.light-gray:focus {
  border-color: rgb(94.6785714286, 111.8928571429, 146.3214285714);
  color: rgb(94.6785714286, 111.8928571429, 146.3214285714);
}
.button.hollow.medium-gray, .button.hollow.cat-link, .button.hollow.medium-gray.disabled, .button.hollow.medium-gray[disabled], .button.hollow.medium-gray.disabled:hover, .button.hollow.medium-gray[disabled]:hover, .button.hollow.medium-gray.disabled:focus, .button.hollow.medium-gray[disabled]:focus {
  border: 1px solid #68738C;
  color: #68738C;
}
.button.hollow.medium-gray:hover, .button.hollow.cat-link:hover, .button.hollow.medium-gray:focus, .button.hollow.cat-link:focus {
  border-color: rgb(52, 57.5, 70);
  color: rgb(52, 57.5, 70);
}
.button.hollow.dark-gray, .button.hollow.dark-gray.disabled, .button.hollow.dark-gray[disabled], .button.hollow.dark-gray.disabled:hover, .button.hollow.dark-gray[disabled]:hover, .button.hollow.dark-gray.disabled:focus, .button.hollow.dark-gray[disabled]:focus {
  border: 1px solid #404851;
  color: #404851;
}
.button.hollow.dark-gray:hover, .button.hollow.dark-gray:focus {
  border-color: rgb(32, 36, 40.5);
  color: rgb(32, 36, 40.5);
}
.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 {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button.hollow.white:hover, .button.hollow.white:focus {
  border-color: rgb(127.5, 127.5, 127.5);
  color: rgb(127.5, 127.5, 127.5);
}
.button.hollow.black, .button.hollow.black.disabled, .button.hollow.black[disabled], .button.hollow.black.disabled:hover, .button.hollow.black[disabled]:hover, .button.hollow.black.disabled:focus, .button.hollow.black[disabled]:focus {
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
}
.button.hollow.black:hover, .button.hollow.black:focus {
  border-color: #050505;
  color: #050505;
}
.button.hollow.blue, .button.hollow.blue.disabled, .button.hollow.blue[disabled], .button.hollow.blue.disabled:hover, .button.hollow.blue[disabled]:hover, .button.hollow.blue.disabled:focus, .button.hollow.blue[disabled]:focus {
  border: 1px solid #0A2157;
  color: #0A2157;
}
.button.hollow.blue:hover, .button.hollow.blue:focus {
  border-color: rgb(5, 16.5, 43.5);
  color: rgb(5, 16.5, 43.5);
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #C3B6EF;
}
.button.clear:hover, .button.clear:focus {
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.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: #C3B6EF;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.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: #1F2937;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: rgb(15.5, 20.5, 27.5);
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #9CCC33;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: rgb(78, 102, 25.5);
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.clear.body-color, .button.clear.body-color.disabled, .button.clear.body-color[disabled], .button.clear.body-color.disabled:hover, .button.clear.body-color[disabled]:hover, .button.clear.body-color.disabled:focus, .button.clear.body-color[disabled]:focus {
  color: #374151;
}
.button.clear.body-color:hover, .button.clear.body-color:focus {
  color: rgb(27.5, 32.5, 40.5);
}
.button.clear.light-gray, .button.clear.light-gray.disabled, .button.clear.light-gray[disabled], .button.clear.light-gray.disabled:hover, .button.clear.light-gray[disabled]:hover, .button.clear.light-gray.disabled:focus, .button.clear.light-gray[disabled]:focus {
  color: #EEF0F4;
}
.button.clear.light-gray:hover, .button.clear.light-gray:focus {
  color: rgb(94.6785714286, 111.8928571429, 146.3214285714);
}
.button.clear.medium-gray, .button.clear.cat-link, .button.clear.medium-gray.disabled, .button.clear.medium-gray[disabled], .button.clear.medium-gray.disabled:hover, .button.clear.medium-gray[disabled]:hover, .button.clear.medium-gray.disabled:focus, .button.clear.medium-gray[disabled]:focus {
  color: #68738C;
}
.button.clear.medium-gray:hover, .button.clear.cat-link:hover, .button.clear.medium-gray:focus, .button.clear.cat-link:focus {
  color: rgb(52, 57.5, 70);
}
.button.clear.dark-gray, .button.clear.dark-gray.disabled, .button.clear.dark-gray[disabled], .button.clear.dark-gray.disabled:hover, .button.clear.dark-gray[disabled]:hover, .button.clear.dark-gray.disabled:focus, .button.clear.dark-gray[disabled]:focus {
  color: #404851;
}
.button.clear.dark-gray:hover, .button.clear.dark-gray:focus {
  color: rgb(32, 36, 40.5);
}
.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: #ffffff;
}
.button.clear.white:hover, .button.clear.white:focus {
  color: rgb(127.5, 127.5, 127.5);
}
.button.clear.black, .button.clear.black.disabled, .button.clear.black[disabled], .button.clear.black.disabled:hover, .button.clear.black[disabled]:hover, .button.clear.black.disabled:focus, .button.clear.black[disabled]:focus {
  color: #0a0a0a;
}
.button.clear.black:hover, .button.clear.black:focus {
  color: #050505;
}
.button.clear.blue, .button.clear.blue.disabled, .button.clear.blue[disabled], .button.clear.blue.disabled:hover, .button.clear.blue[disabled]:hover, .button.clear.blue.disabled:focus, .button.clear.blue[disabled]:focus {
  color: #0A2157;
}
.button.clear.blue:hover, .button.clear.blue:focus {
  color: rgb(5, 16.5, 43.5);
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #C3B6EF;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #C3B6EF;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #1F2937;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #9CCC33;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.dropdown.hollow.body-color::after, .button.dropdown.clear.body-color::after {
  border-top-color: #374151;
}
.button.dropdown.hollow.light-gray::after, .button.dropdown.clear.light-gray::after {
  border-top-color: #EEF0F4;
}
.button.dropdown.hollow.medium-gray::after, .button.dropdown.hollow.cat-link::after, .button.dropdown.clear.medium-gray::after, .button.dropdown.clear.cat-link::after {
  border-top-color: #68738C;
}
.button.dropdown.hollow.dark-gray::after, .button.dropdown.clear.dark-gray::after {
  border-top-color: #404851;
}
.button.dropdown.hollow.white::after, .button.dropdown.clear.white::after {
  border-top-color: #ffffff;
}
.button.dropdown.hollow.black::after, .button.dropdown.clear.black::after {
  border-top-color: #0a0a0a;
}
.button.dropdown.hollow.blue::after, .button.dropdown.clear.blue::after {
  border-top-color: #0A2157;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

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

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

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

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

.accordion-content {
  display: none;
  padding: 1rem;
  border: none;
  border-bottom: 0;
  background-color: #ffffff;
  color: #374151;
}
:last-child > .accordion-content:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #C3B6EF;
  color: #ffffff;
}
.badge.primary {
  background: #C3B6EF;
  color: #0a0a0a;
}
.badge.secondary {
  background: #1F2937;
  color: #ffffff;
}
.badge.success {
  background: #9CCC33;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #ffffff;
}
.badge.body-color {
  background: #374151;
  color: #ffffff;
}
.badge.light-gray {
  background: #EEF0F4;
  color: #0a0a0a;
}
.badge.medium-gray, .badge.cat-link {
  background: #68738C;
  color: #ffffff;
}
.badge.dark-gray {
  background: #404851;
  color: #ffffff;
}
.badge.white {
  background: #ffffff;
  color: #0a0a0a;
}
.badge.black {
  background: #0a0a0a;
  color: #ffffff;
}
.badge.blue {
  background: #0A2157;
  color: #ffffff;
}

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

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 1rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.2rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #C3B6EF;
  color: #0a0a0a;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: rgb(138.2359550562, 112.9370786517, 223.8629213483);
  color: #0a0a0a;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #1F2937;
  color: #ffffff;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(24.8, 32.8, 44);
  color: #ffffff;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: #9CCC33;
  color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: rgb(124.8, 163.2, 40.8);
  color: #0a0a0a;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(204, 139.2, 0);
  color: #0a0a0a;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #cc4b37;
  color: #ffffff;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #ffffff;
}
.button-group.body-color .button, .button-group.body-color .button.disabled, .button-group.body-color .button[disabled], .button-group.body-color .button.disabled:hover, .button-group.body-color .button[disabled]:hover, .button-group.body-color .button.disabled:focus, .button-group.body-color .button[disabled]:focus {
  background-color: #374151;
  color: #ffffff;
}
.button-group.body-color .button:hover, .button-group.body-color .button:focus {
  background-color: rgb(44, 52, 64.8);
  color: #ffffff;
}
.button-group.light-gray .button, .button-group.light-gray .button.disabled, .button-group.light-gray .button[disabled], .button-group.light-gray .button.disabled:hover, .button-group.light-gray .button[disabled]:hover, .button-group.light-gray .button.disabled:focus, .button-group.light-gray .button[disabled]:focus {
  background-color: #EEF0F4;
  color: #0a0a0a;
}
.button-group.light-gray .button:hover, .button-group.light-gray .button:focus {
  background-color: rgb(179.4714285714, 188.3571428571, 206.1285714286);
  color: #0a0a0a;
}
.button-group.medium-gray .button, .button-group.cat-link .button, .button-group.medium-gray .button.disabled, .button-group.medium-gray .button[disabled], .button-group.medium-gray .button.disabled:hover, .button-group.medium-gray .button[disabled]:hover, .button-group.medium-gray .button.disabled:focus, .button-group.medium-gray .button[disabled]:focus {
  background-color: #68738C;
  color: #ffffff;
}
.button-group.medium-gray .button:hover, .button-group.cat-link .button:hover, .button-group.medium-gray .button:focus, .button-group.cat-link .button:focus {
  background-color: rgb(83.2, 92, 112);
  color: #ffffff;
}
.button-group.dark-gray .button, .button-group.dark-gray .button.disabled, .button-group.dark-gray .button[disabled], .button-group.dark-gray .button.disabled:hover, .button-group.dark-gray .button[disabled]:hover, .button-group.dark-gray .button.disabled:focus, .button-group.dark-gray .button[disabled]:focus {
  background-color: #404851;
  color: #ffffff;
}
.button-group.dark-gray .button:hover, .button-group.dark-gray .button:focus {
  background-color: rgb(51.2, 57.6, 64.8);
  color: #ffffff;
}
.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 {
  background-color: #ffffff;
  color: #0a0a0a;
}
.button-group.white .button:hover, .button-group.white .button:focus {
  background-color: #cccccc;
  color: #0a0a0a;
}
.button-group.black .button, .button-group.black .button.disabled, .button-group.black .button[disabled], .button-group.black .button.disabled:hover, .button-group.black .button[disabled]:hover, .button-group.black .button.disabled:focus, .button-group.black .button[disabled]:focus {
  background-color: #0a0a0a;
  color: #ffffff;
}
.button-group.black .button:hover, .button-group.black .button:focus {
  background-color: #080808;
  color: #ffffff;
}
.button-group.blue .button, .button-group.blue .button.disabled, .button-group.blue .button[disabled], .button-group.blue .button.disabled:hover, .button-group.blue .button[disabled]:hover, .button-group.blue .button.disabled:focus, .button-group.blue .button[disabled]:focus {
  background-color: #0A2157;
  color: #ffffff;
}
.button-group.blue .button:hover, .button-group.blue .button:focus {
  background-color: rgb(8, 26.4, 69.6);
  color: #ffffff;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid #C3B6EF;
  color: #C3B6EF;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #C3B6EF;
  color: #C3B6EF;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #1F2937;
  color: #1F2937;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: rgb(15.5, 20.5, 27.5);
  color: rgb(15.5, 20.5, 27.5);
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #9CCC33;
  color: #9CCC33;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: rgb(78, 102, 25.5);
  color: rgb(78, 102, 25.5);
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.hollow.body-color .button, .button-group.hollow.body-color .button.disabled, .button-group.hollow.body-color .button[disabled], .button-group.hollow.body-color .button.disabled:hover, .button-group.hollow.body-color .button[disabled]:hover, .button-group.hollow.body-color .button.disabled:focus, .button-group.hollow.body-color .button[disabled]:focus, .button-group.hollow .button.body-color, .button-group.hollow .button.body-color.disabled, .button-group.hollow .button.body-color[disabled], .button-group.hollow .button.body-color.disabled:hover, .button-group.hollow .button.body-color[disabled]:hover, .button-group.hollow .button.body-color.disabled:focus, .button-group.hollow .button.body-color[disabled]:focus {
  border: 1px solid #374151;
  color: #374151;
}
.button-group.hollow.body-color .button:hover, .button-group.hollow.body-color .button:focus, .button-group.hollow .button.body-color:hover, .button-group.hollow .button.body-color:focus {
  border-color: rgb(27.5, 32.5, 40.5);
  color: rgb(27.5, 32.5, 40.5);
}
.button-group.hollow.light-gray .button, .button-group.hollow.light-gray .button.disabled, .button-group.hollow.light-gray .button[disabled], .button-group.hollow.light-gray .button.disabled:hover, .button-group.hollow.light-gray .button[disabled]:hover, .button-group.hollow.light-gray .button.disabled:focus, .button-group.hollow.light-gray .button[disabled]:focus, .button-group.hollow .button.light-gray, .button-group.hollow .button.light-gray.disabled, .button-group.hollow .button.light-gray[disabled], .button-group.hollow .button.light-gray.disabled:hover, .button-group.hollow .button.light-gray[disabled]:hover, .button-group.hollow .button.light-gray.disabled:focus, .button-group.hollow .button.light-gray[disabled]:focus {
  border: 1px solid #EEF0F4;
  color: #EEF0F4;
}
.button-group.hollow.light-gray .button:hover, .button-group.hollow.light-gray .button:focus, .button-group.hollow .button.light-gray:hover, .button-group.hollow .button.light-gray:focus {
  border-color: rgb(94.6785714286, 111.8928571429, 146.3214285714);
  color: rgb(94.6785714286, 111.8928571429, 146.3214285714);
}
.button-group.hollow.medium-gray .button, .button-group.hollow.cat-link .button, .button-group.hollow.medium-gray .button.disabled, .button-group.hollow.medium-gray .button[disabled], .button-group.hollow.medium-gray .button.disabled:hover, .button-group.hollow.medium-gray .button[disabled]:hover, .button-group.hollow.medium-gray .button.disabled:focus, .button-group.hollow.medium-gray .button[disabled]:focus, .button-group.hollow .button.medium-gray, .button-group.hollow .button.cat-link, .button-group.hollow .button.medium-gray.disabled, .button-group.hollow .button.medium-gray[disabled], .button-group.hollow .button.medium-gray.disabled:hover, .button-group.hollow .button.medium-gray[disabled]:hover, .button-group.hollow .button.medium-gray.disabled:focus, .button-group.hollow .button.medium-gray[disabled]:focus {
  border: 1px solid #68738C;
  color: #68738C;
}
.button-group.hollow.medium-gray .button:hover, .button-group.hollow.cat-link .button:hover, .button-group.hollow.medium-gray .button:focus, .button-group.hollow.cat-link .button:focus, .button-group.hollow .button.medium-gray:hover, .button-group.hollow .button.cat-link:hover, .button-group.hollow .button.medium-gray:focus, .button-group.hollow .button.cat-link:focus {
  border-color: rgb(52, 57.5, 70);
  color: rgb(52, 57.5, 70);
}
.button-group.hollow.dark-gray .button, .button-group.hollow.dark-gray .button.disabled, .button-group.hollow.dark-gray .button[disabled], .button-group.hollow.dark-gray .button.disabled:hover, .button-group.hollow.dark-gray .button[disabled]:hover, .button-group.hollow.dark-gray .button.disabled:focus, .button-group.hollow.dark-gray .button[disabled]:focus, .button-group.hollow .button.dark-gray, .button-group.hollow .button.dark-gray.disabled, .button-group.hollow .button.dark-gray[disabled], .button-group.hollow .button.dark-gray.disabled:hover, .button-group.hollow .button.dark-gray[disabled]:hover, .button-group.hollow .button.dark-gray.disabled:focus, .button-group.hollow .button.dark-gray[disabled]:focus {
  border: 1px solid #404851;
  color: #404851;
}
.button-group.hollow.dark-gray .button:hover, .button-group.hollow.dark-gray .button:focus, .button-group.hollow .button.dark-gray:hover, .button-group.hollow .button.dark-gray:focus {
  border-color: rgb(32, 36, 40.5);
  color: rgb(32, 36, 40.5);
}
.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 {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.button-group.hollow.white .button:hover, .button-group.hollow.white .button:focus, .button-group.hollow .button.white:hover, .button-group.hollow .button.white:focus {
  border-color: rgb(127.5, 127.5, 127.5);
  color: rgb(127.5, 127.5, 127.5);
}
.button-group.hollow.black .button, .button-group.hollow.black .button.disabled, .button-group.hollow.black .button[disabled], .button-group.hollow.black .button.disabled:hover, .button-group.hollow.black .button[disabled]:hover, .button-group.hollow.black .button.disabled:focus, .button-group.hollow.black .button[disabled]:focus, .button-group.hollow .button.black, .button-group.hollow .button.black.disabled, .button-group.hollow .button.black[disabled], .button-group.hollow .button.black.disabled:hover, .button-group.hollow .button.black[disabled]:hover, .button-group.hollow .button.black.disabled:focus, .button-group.hollow .button.black[disabled]:focus {
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
}
.button-group.hollow.black .button:hover, .button-group.hollow.black .button:focus, .button-group.hollow .button.black:hover, .button-group.hollow .button.black:focus {
  border-color: #050505;
  color: #050505;
}
.button-group.hollow.blue .button, .button-group.hollow.blue .button.disabled, .button-group.hollow.blue .button[disabled], .button-group.hollow.blue .button.disabled:hover, .button-group.hollow.blue .button[disabled]:hover, .button-group.hollow.blue .button.disabled:focus, .button-group.hollow.blue .button[disabled]:focus, .button-group.hollow .button.blue, .button-group.hollow .button.blue.disabled, .button-group.hollow .button.blue[disabled], .button-group.hollow .button.blue.disabled:hover, .button-group.hollow .button.blue[disabled]:hover, .button-group.hollow .button.blue.disabled:focus, .button-group.hollow .button.blue[disabled]:focus {
  border: 1px solid #0A2157;
  color: #0A2157;
}
.button-group.hollow.blue .button:hover, .button-group.hollow.blue .button:focus, .button-group.hollow .button.blue:hover, .button-group.hollow .button.blue:focus {
  border-color: rgb(5, 16.5, 43.5);
  color: rgb(5, 16.5, 43.5);
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #C3B6EF;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.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: #C3B6EF;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: rgb(68.5898876404, 37.8426966292, 172.6573033708);
}
.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: #1F2937;
}
.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: rgb(15.5, 20.5, 27.5);
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #9CCC33;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: rgb(78, 102, 25.5);
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.clear.body-color .button, .button-group.clear.body-color .button.disabled, .button-group.clear.body-color .button[disabled], .button-group.clear.body-color .button.disabled:hover, .button-group.clear.body-color .button[disabled]:hover, .button-group.clear.body-color .button.disabled:focus, .button-group.clear.body-color .button[disabled]:focus, .button-group.clear .button.body-color, .button-group.clear .button.body-color.disabled, .button-group.clear .button.body-color[disabled], .button-group.clear .button.body-color.disabled:hover, .button-group.clear .button.body-color[disabled]:hover, .button-group.clear .button.body-color.disabled:focus, .button-group.clear .button.body-color[disabled]:focus {
  color: #374151;
}
.button-group.clear.body-color .button:hover, .button-group.clear.body-color .button:focus, .button-group.clear .button.body-color:hover, .button-group.clear .button.body-color:focus {
  color: rgb(27.5, 32.5, 40.5);
}
.button-group.clear.light-gray .button, .button-group.clear.light-gray .button.disabled, .button-group.clear.light-gray .button[disabled], .button-group.clear.light-gray .button.disabled:hover, .button-group.clear.light-gray .button[disabled]:hover, .button-group.clear.light-gray .button.disabled:focus, .button-group.clear.light-gray .button[disabled]:focus, .button-group.clear .button.light-gray, .button-group.clear .button.light-gray.disabled, .button-group.clear .button.light-gray[disabled], .button-group.clear .button.light-gray.disabled:hover, .button-group.clear .button.light-gray[disabled]:hover, .button-group.clear .button.light-gray.disabled:focus, .button-group.clear .button.light-gray[disabled]:focus {
  color: #EEF0F4;
}
.button-group.clear.light-gray .button:hover, .button-group.clear.light-gray .button:focus, .button-group.clear .button.light-gray:hover, .button-group.clear .button.light-gray:focus {
  color: rgb(94.6785714286, 111.8928571429, 146.3214285714);
}
.button-group.clear.medium-gray .button, .button-group.clear.cat-link .button, .button-group.clear.medium-gray .button.disabled, .button-group.clear.medium-gray .button[disabled], .button-group.clear.medium-gray .button.disabled:hover, .button-group.clear.medium-gray .button[disabled]:hover, .button-group.clear.medium-gray .button.disabled:focus, .button-group.clear.medium-gray .button[disabled]:focus, .button-group.clear .button.medium-gray, .button-group.clear .button.cat-link, .button-group.clear .button.medium-gray.disabled, .button-group.clear .button.medium-gray[disabled], .button-group.clear .button.medium-gray.disabled:hover, .button-group.clear .button.medium-gray[disabled]:hover, .button-group.clear .button.medium-gray.disabled:focus, .button-group.clear .button.medium-gray[disabled]:focus {
  color: #68738C;
}
.button-group.clear.medium-gray .button:hover, .button-group.clear.cat-link .button:hover, .button-group.clear.medium-gray .button:focus, .button-group.clear.cat-link .button:focus, .button-group.clear .button.medium-gray:hover, .button-group.clear .button.cat-link:hover, .button-group.clear .button.medium-gray:focus, .button-group.clear .button.cat-link:focus {
  color: rgb(52, 57.5, 70);
}
.button-group.clear.dark-gray .button, .button-group.clear.dark-gray .button.disabled, .button-group.clear.dark-gray .button[disabled], .button-group.clear.dark-gray .button.disabled:hover, .button-group.clear.dark-gray .button[disabled]:hover, .button-group.clear.dark-gray .button.disabled:focus, .button-group.clear.dark-gray .button[disabled]:focus, .button-group.clear .button.dark-gray, .button-group.clear .button.dark-gray.disabled, .button-group.clear .button.dark-gray[disabled], .button-group.clear .button.dark-gray.disabled:hover, .button-group.clear .button.dark-gray[disabled]:hover, .button-group.clear .button.dark-gray.disabled:focus, .button-group.clear .button.dark-gray[disabled]:focus {
  color: #404851;
}
.button-group.clear.dark-gray .button:hover, .button-group.clear.dark-gray .button:focus, .button-group.clear .button.dark-gray:hover, .button-group.clear .button.dark-gray:focus {
  color: rgb(32, 36, 40.5);
}
.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: #ffffff;
}
.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: rgb(127.5, 127.5, 127.5);
}
.button-group.clear.black .button, .button-group.clear.black .button.disabled, .button-group.clear.black .button[disabled], .button-group.clear.black .button.disabled:hover, .button-group.clear.black .button[disabled]:hover, .button-group.clear.black .button.disabled:focus, .button-group.clear.black .button[disabled]:focus, .button-group.clear .button.black, .button-group.clear .button.black.disabled, .button-group.clear .button.black[disabled], .button-group.clear .button.black.disabled:hover, .button-group.clear .button.black[disabled]:hover, .button-group.clear .button.black.disabled:focus, .button-group.clear .button.black[disabled]:focus {
  color: #0a0a0a;
}
.button-group.clear.black .button:hover, .button-group.clear.black .button:focus, .button-group.clear .button.black:hover, .button-group.clear .button.black:focus {
  color: #050505;
}
.button-group.clear.blue .button, .button-group.clear.blue .button.disabled, .button-group.clear.blue .button[disabled], .button-group.clear.blue .button.disabled:hover, .button-group.clear.blue .button[disabled]:hover, .button-group.clear.blue .button.disabled:focus, .button-group.clear.blue .button[disabled]:focus, .button-group.clear .button.blue, .button-group.clear .button.blue.disabled, .button-group.clear .button.blue[disabled], .button-group.clear .button.blue.disabled:hover, .button-group.clear .button.blue[disabled]:hover, .button-group.clear .button.blue.disabled:focus, .button-group.clear .button.blue[disabled]:focus {
  color: #0A2157;
}
.button-group.clear.blue .button:hover, .button-group.clear.blue .button:focus, .button-group.clear .button.blue:hover, .button-group.clear .button.blue:focus {
  color: rgb(5, 16.5, 43.5);
}
.button-group.no-gaps .button {
  margin-right: -0.0555555556rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 10px;
  background-color: white;
  color: #374151;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: rgb(246, 244.05, 252.6);
  color: #374151;
}
.callout.secondary {
  background-color: rgb(214.3255813953, 221.7209302326, 232.0744186047);
  color: #374151;
}
.callout.success {
  background-color: rgb(240.15, 247.35, 224.4);
  color: #374151;
}
.callout.warning {
  background-color: rgb(255, 242.85, 216.75);
  color: #374151;
}
.callout.alert {
  background-color: rgb(247.35, 228, 225);
  color: #374151;
}
.callout.body-color {
  background-color: rgb(221.5875, 225.7125, 232.3125);
  color: #374151;
}
.callout.light-gray {
  background-color: rgb(252.45, 252.75, 253.35);
  color: #374151;
}
.callout.medium-gray, .callout.cat-link {
  background-color: rgb(232.106557377, 233.9053278689, 237.993442623);
  color: #374151;
}
.callout.dark-gray {
  background-color: rgb(224.4155172414, 227.4362068966, 230.8344827586);
  color: #374151;
}
.callout.white {
  background-color: white;
  color: #374151;
}
.callout.black {
  background-color: rgb(218.25, 218.25, 218.25);
  color: #374151;
}
.callout.blue {
  background-color: rgb(199.4365979381, 214.1257731959, 248.6134020619);
  color: #374151;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 5px 0 rgba(64, 72, 81, 0.1), 0 10px 14px 0 rgba(64, 72, 81, 0.05);
  overflow: hidden;
  color: #374151;
}
.card > :last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #C3B6EF;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

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

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

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #68738C;
  background: #ffffff;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

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

.label {
  display: inline-block;
  padding: 0.1666666667rem 0.2222222222rem 0.1111111111rem;
  border-radius: 0.1666666667rem;
  font-size: 0.6111111111rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #C3B6EF;
  color: #ffffff;
}
.label.primary {
  background: #C3B6EF;
  color: #0a0a0a;
}
.label.secondary {
  background: #1F2937;
  color: #ffffff;
}
.label.success {
  background: #9CCC33;
  color: #0a0a0a;
}
.label.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.label.alert {
  background: #cc4b37;
  color: #ffffff;
}
.label.body-color {
  background: #374151;
  color: #ffffff;
}
.label.light-gray {
  background: #EEF0F4;
  color: #0a0a0a;
}
.label.medium-gray, .label.cat-link {
  background: #68738C;
  color: #ffffff;
}
.label.dark-gray {
  background: #404851;
  color: #ffffff;
}
.label.white {
  background: #ffffff;
  color: #0a0a0a;
}
.label.black {
  background: #0a0a0a;
  color: #ffffff;
}
.label.blue {
  background: #0A2157;
  color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.orbit-figure {
  margin: 0;
}

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

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

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

.orbit-previous {
  left: 0;
}

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

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

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0555555556rem;
  border-radius: 10px;
  font-size: 0.8888888889rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1666666667rem 0.5555555556rem;
  border-radius: 10px;
  color: #0a0a0a;
}
.pagination a:hover,
.pagination button:hover {
  background: #EEF0F4;
}
.pagination .current {
  padding: 0.1666666667rem 0.5555555556rem;
  background: #C3B6EF;
  color: #ffffff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1666666667rem 0.5555555556rem;
  color: #68738C;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1666666667rem 0.5555555556rem;
  content: "…";
  color: #0a0a0a;
}

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

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

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background-color: #68738C;
}
.progress.primary .progress-meter {
  background-color: #C3B6EF;
}
.progress.secondary .progress-meter {
  background-color: #1F2937;
}
.progress.success .progress-meter {
  background-color: #9CCC33;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}
.progress.body-color .progress-meter {
  background-color: #374151;
}
.progress.light-gray .progress-meter {
  background-color: #EEF0F4;
}
.progress.medium-gray .progress-meter, .progress.cat-link .progress-meter {
  background-color: #68738C;
}
.progress.dark-gray .progress-meter {
  background-color: #404851;
}
.progress.white .progress-meter {
  background-color: #ffffff;
}
.progress.black .progress-meter {
  background-color: #0a0a0a;
}
.progress.blue .progress-meter {
  background-color: #0A2157;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #C3B6EF;
  border-radius: 10px;
}

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

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

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

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

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

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

.sticky-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
}
thead,
tbody,
tfoot {
  border: 1px solid rgb(242.25, 242.25, 242.25);
  background-color: #ffffff;
}

caption {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
  font-weight: 700;
}

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

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

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
  font-weight: 700;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: rgb(242.25, 242.25, 242.25);
}

table.unstriped tbody {
  background-color: #ffffff;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid rgb(242.25, 242.25, 242.25);
  background-color: #ffffff;
}

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

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

table.hover thead tr:hover {
  background-color: rgb(243.525, 243.525, 243.525);
}
table.hover tfoot tr:hover {
  background-color: rgb(237.15, 237.15, 237.15);
}
table.hover tbody tr:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: rgb(237.15, 237.15, 237.15);
}

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

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

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

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

.tabs.primary {
  background: #C3B6EF;
}
.tabs.primary > li > a {
  color: #0a0a0a;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: rgb(180.808988764, 164.7342696629, 235.2157303371);
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 2.2222222222rem 3.0555555556rem;
  font-size: 1rem;
  line-height: 1;
  color: #1F2937;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #ffffff;
  color: rgb(26.66, 35.26, 47.3);
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #ffffff;
  color: #1F2937;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 90em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

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

@media screen and (min-width: 90em) and (max-width: 101.24875em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

/************************************************

Stylesheet: Global Stylesheet

*************************************************/
body {
  background-color: #FCFBFE;
}
body.blurred:before {
  content: "";
  background: rgba(37, 20, 63, 0.8);
  position: relative;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
}

a:hover {
  /* Par défaut foundation calcule une couleur de hover mais elle ne convient pas */
  color: #4F4069;
}

.display1 {
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
.display1 b {
  color: #E5DBFF;
  font-weight: 700;
  font-size: 1.3333333333rem;
  display: block;
}
@media print, screen and (min-width: 64em) {
  .display1 b {
    font-size: 1.5555555556rem;
  }
}
@media print, screen and (min-width: 64em) {
  .display1 {
    font-size: 3.3333333333rem;
    line-height: 3.5555555556rem;
    max-width: 390px;
  }
}

.display2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
@media print, screen and (min-width: 64em) {
  .display2 {
    font-size: 64px;
    line-height: 66px;
  }
}

h1 {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h2 {
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h3 {
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h4 {
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.stripe {
  position: relative;
}
.stripe:before {
  content: "";
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/stripe.svg");
  width: 48px;
  height: 12px;
  display: block;
  position: absolute;
  top: -23px;
  left: 0;
}
@media print, screen and (min-width: 64em) {
  .stripe:before {
    top: -33px;
  }
}

.btn,
.home .nos-projets .scroll-horizontal-mobile .cell a,
.wp-block-button__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  transition: all 0.5s;
  text-align: center;
  padding: 16px 32px;
}

.large-btn {
  padding: 16px 32px;
}
@media print, screen and (min-width: 64em) {
  .large-btn {
    padding: 24px 32px;
  }
}

.light-btn,
.mobi-cta .wp-block-button__link {
  background: #E5DBFF;
  color: #25143F;
}
.light-btn:hover,
.mobi-cta .wp-block-button__link:hover {
  color: #25143F;
  background: #FAF8FF;
}

.dark-btn,
.mobi-content-column .wp-block-button__link,
.mobi-button-with-text .wp-block-button__link,
button.tarteaucitronAllow {
  background: #25143F;
  color: #FFF;
}
.dark-btn:hover,
.mobi-content-column .wp-block-button__link:hover,
.mobi-button-with-text .wp-block-button__link:hover,
button.tarteaucitronAllow:hover {
  background: #4F4069;
  color: #FFF;
}

.link {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-right: 32px;
  padding-bottom: 3px;
  position: relative;
  transition: all 0.5s;
  display: inline-block;
}
.link:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  margin-top: -12px;
  position: absolute;
}
.link:before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -0.17rem;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.link:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.dark-link {
  color: #25143F;
}
.dark-link:after {
  background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/dark-purple-arrow-right.svg");
}
.dark-link:before {
  background-color: #25143F;
}
.dark-link:hover {
  color: #25143F;
}

.light-link {
  color: #E5DBFF;
}
.light-link:after {
  background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/purple-arrow-right.svg");
}
.light-link:before {
  background-color: #E5DBFF;
}
.light-link:hover {
  color: #E5DBFF;
}

.text-light {
  color: #68738C;
}

.text-dark {
  color: #1F2937;
}

.scroll-horizontal-mobile {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Chaque sous classe doit définir le gap ex : gap: 10px; */
  white-space: nowrap;
  scroll-padding-left: 0px;
  justify-content: flex-start;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.scroll-horizontal-mobile:-webkit-scrollbar {
  width: 0;
  height: 0;
}
.scroll-horizontal-mobile .cell {
  /* Chaque sous classe doit définir le flex ex : flex: 0 0 80%; */
  /* Chaque sous classe doit définir le min-width ex min-width: 80%; */
  scroll-snap-align: start;
  white-space: normal;
  padding-left: 16px;
  padding-right: 16px;
}
@media print, screen and (min-width: 64em) {
  .scroll-horizontal-mobile .cell {
    flex: initial !important;
    min-width: auto !important;
    padding: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .scroll-horizontal-mobile {
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: visible;
    /* Chaque sous classe doit définir le gap ex : gap:32px; */
  }
}

.pagination li {
  display: inline-block;
}
.pagination li a {
  font-size: 1.1111111111rem;
}
.pagination li a.prev, .pagination li a.next {
  font-size: 1.1111111111rem;
}
.pagination .current {
  color: #25143F;
}

h4, .h4 {
  margin-bottom: 0.8rem;
}

.entry-content a:not(.button), .mobizel-jobs a:not(.button), .contact-infos a:not(.button), #footer a:not(.button) {
  position: relative;
  font-weight: 600;
  transition: all 0.25s ease;
  color: #3D376F;
}
.entry-content a:not(.button)::before, .mobizel-jobs a:not(.button)::before, .contact-infos a:not(.button)::before, #footer a:not(.button)::before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -0.1666666667rem;
  left: 0;
  background-color: #3D376F;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.entry-content a:not(.button):hover::before, .mobizel-jobs a:not(.button):hover::before, .contact-infos a:not(.button):hover::before, #footer a:not(.button):hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.page p {
  font-weight: 600;
}

.note {
  color: rgba(64, 72, 81, 0.5);
}
.note a {
  color: rgba(64, 72, 81, 0.5);
  text-decoration: underline;
  transition: 0.25s;
}
.note a:hover {
  color: #9CCC33;
}

b, strong {
  font-weight: 700;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.byline {
  color: #999;
}

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

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

.post-password-form input[type=submit] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em 1em;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 1rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .post-password-form input[type=submit] {
  outline: 0;
}
.post-password-form input[type=submit], .post-password-form input[type=submit].disabled, .post-password-form input[type=submit][disabled], .post-password-form input[type=submit].disabled:hover, .post-password-form input[type=submit][disabled]:hover, .post-password-form input[type=submit].disabled:focus, .post-password-form input[type=submit][disabled]:focus {
  background-color: #C3B6EF;
  color: #ffffff;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background-color: rgb(152.4269662921, 130.2028089888, 227.6471910112);
  color: #ffffff;
}

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

#gallery-1 img {
  border: none !important;
}

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

.gallery::after {
  clear: both;
}

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

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

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

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

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

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

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

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

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

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

.fluidbox {
  cursor: zoom-in;
}
.fluidbox img {
  border-radius: 10px;
}
.fluidbox .fluidbox__ghost {
  border-radius: 10px;
}
@media print, screen and (max-width: 39.99875em) {
  .fluidbox {
    pointer-events: none;
  }
}

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

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

.widget ul {
  margin: 0;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 1em;
}

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

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

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

.b-shadow, body.page-template-methodology .methodology-section .icon, .cahier-charge, .newsletter, .cat-link:hover {
  box-shadow: 0 2px 5px 0 rgba(64, 72, 81, 0.1), 0 10px 14px 0 rgba(64, 72, 81, 0.05);
}

@media print, screen and (max-width: 39.99875em) {
  body {
    font-size: 0.8888888889rem;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  body {
    font-size: 0.9444444444rem;
  }
}

.grecaptcha-badge {
  display: none;
}

.wp-block-image figcaption {
  text-align: center;
  font-style: italic;
  font-size: 0.8333333333rem;
}

.wp-block-gallery .blocks-gallery-item  {
  border-radius: 10px;
  overflow: hidden;
}

.wp-block-quote {
  background: rgba(195, 182, 239, 0.06);
  border-radius: 10px;
  border-left: none;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
}
.wp-block-quote p {
  margin-bottom: 0 !important;
}
.wp-block-quote::before {
  content: "";
  position: absolute;
  width: 4px;
  left: 0;
  top: 0;
  bottom: 0;
  background: #C3B6EF;
}
.wp-block-quote cite {
  margin-top: 1rem;
  text-align: right;
}

.cta-primary {
  background: #E5DBFF;
  color: #0A2157;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 12px 1rem;
  border-radius: 33px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
@media print, screen and (max-width: 39.99875em) {
  .cta-primary {
    font-size: 14px;
  }
}
.cta-primary.cta-header {
  display: none;
}
@media print, screen and (min-width: 64em) {
  .cta-primary.cta-header {
    display: flex;
  }
}
.cta-primary:hover {
  background: #ece5ff;
  color: #0A2157;
}

.pilier-container, .postHeader {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 4.6666666667rem 0.8888888889rem;
}
.pilier-container:after, .postHeader:after {
  content: "";
  border-radius: 0px 0px 60px 60px;
  background: rgba(37, 20, 63, 0.9);
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 64em) {
  .pilier-container:after, .postHeader:after {
    border-radius: 0px 0px 120px 120px;
  }
}
@media print, screen and (min-width: 40em) {
  .pilier-container, .postHeader {
    padding: 108px 0.8333333333rem;
  }
}
@media print, screen and (min-width: 64em) {
  .pilier-container, .postHeader {
    padding: 64px 1.3888888889rem;
  }
}
.pilier-container.pilier-container-methodology, .postHeader.pilier-container-methodology {
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .pilier-container.pilier-container-methodology::after, .postHeader.pilier-container-methodology::after {
    content: "";
    position: absolute;
    height: 400px;
    width: 100%;
    z-index: -10;
    background: #f0f8e1;
  }
}
@media print, screen and (min-width: 64em) {
  .pilier-container.pilier-container-methodology::after, .postHeader.pilier-container-methodology::after {
    content: "";
    position: absolute;
    height: 150px;
    width: 100%;
    z-index: -10;
    background: #f0f8e1;
  }
}
.pilier-container .header-content, .postHeader .header-content {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.pilier-container .header-content h1, .postHeader .header-content h1 {
  color: #fff;
}

.hero-bloc {
  margin-bottom: 48px;
}
.hero-bloc .hero-bloc-content {
  padding: 24px;
}
@media print, screen and (min-width: 40em) {
  .hero-bloc .hero-bloc-content {
    padding: 48px;
  }
}
.hero-bloc::after {
  content: "";
  position: absolute;
  height: 200px;
  width: 100%;
  z-index: -10;
}
@media print, screen and (min-width: 40em) {
  .hero-bloc {
    margin-bottom: 48px;
  }
  .hero-bloc::after {
    content: "";
    position: absolute;
    height: 200px;
    width: 100%;
    z-index: -10;
  }
}
@media print, screen and (min-width: 64em) {
  .hero-bloc::after {
    content: "";
    position: absolute;
    height: 150px;
    width: 100%;
    z-index: -10;
  }
}

.section-methodology {
  margin-bottom: 72px;
  padding: 0 24px;
}

.center-element {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Valeur reprises de _settings.scss ($grid-margin-gutters) */
.rounded-0 {
  border-radius: 0;
}

.rounded-1 {
  border-radius: 0.15rem;
}

.rounded-2 {
  border-radius: 0.25rem;
}

.rounded-3 {
  border-radius: 0.5rem;
}

.rounded-default {
  border-radius: 1.1111111111rem;
}

.rounded-50 {
  border-radius: 50%;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-global, .cat-link {
  border-radius: 10px;
}

.rounded-global2 {
  border-radius: 20px;
}

.bt {
  border-top: 1px solid #1F2937;
}

.bb {
  border-bottom: 1px solid #1F2937;
}

.bl {
  border-left: 1px solid #1F2937;
}

.br {
  border-right: 1px solid #1F2937;
}

.ba-primary {
  border: 1px solid #C3B6EF;
}

.ba-primary-w {
  border: 2px solid #C3B6EF;
}

.ba-primary-hover:hover {
  border: 1px solid #C3B6EF;
}

.ba-primary-hover-w:hover {
  border: 2px solid #C3B6EF;
}

.ba-primary-focus:focus {
  border: 1px solid #C3B6EF;
}

.ba-primary-focus-w:focus {
  border: 2px solid #C3B6EF;
}

.ba-secondary {
  border: 1px solid #1F2937;
}

.ba-secondary-w {
  border: 2px solid #1F2937;
}

.ba-secondary-hover:hover {
  border: 1px solid #1F2937;
}

.ba-secondary-hover-w:hover {
  border: 2px solid #1F2937;
}

.ba-secondary-focus:focus {
  border: 1px solid #1F2937;
}

.ba-secondary-focus-w:focus {
  border: 2px solid #1F2937;
}

.ba-success {
  border: 1px solid #9CCC33;
}

.ba-success-w {
  border: 2px solid #9CCC33;
}

.ba-success-hover:hover {
  border: 1px solid #9CCC33;
}

.ba-success-hover-w:hover {
  border: 2px solid #9CCC33;
}

.ba-success-focus:focus {
  border: 1px solid #9CCC33;
}

.ba-success-focus-w:focus {
  border: 2px solid #9CCC33;
}

.ba-warning {
  border: 1px solid #ffae00;
}

.ba-warning-w {
  border: 2px solid #ffae00;
}

.ba-warning-hover:hover {
  border: 1px solid #ffae00;
}

.ba-warning-hover-w:hover {
  border: 2px solid #ffae00;
}

.ba-warning-focus:focus {
  border: 1px solid #ffae00;
}

.ba-warning-focus-w:focus {
  border: 2px solid #ffae00;
}

.ba-alert {
  border: 1px solid #cc4b37;
}

.ba-alert-w {
  border: 2px solid #cc4b37;
}

.ba-alert-hover:hover {
  border: 1px solid #cc4b37;
}

.ba-alert-hover-w:hover {
  border: 2px solid #cc4b37;
}

.ba-alert-focus:focus {
  border: 1px solid #cc4b37;
}

.ba-alert-focus-w:focus {
  border: 2px solid #cc4b37;
}

.ba-body-color {
  border: 1px solid #374151;
}

.ba-body-color-w {
  border: 2px solid #374151;
}

.ba-body-color-hover:hover {
  border: 1px solid #374151;
}

.ba-body-color-hover-w:hover {
  border: 2px solid #374151;
}

.ba-body-color-focus:focus {
  border: 1px solid #374151;
}

.ba-body-color-focus-w:focus {
  border: 2px solid #374151;
}

.ba-light-gray {
  border: 1px solid #EEF0F4;
}

.ba-light-gray-w {
  border: 2px solid #EEF0F4;
}

.ba-light-gray-hover:hover {
  border: 1px solid #EEF0F4;
}

.ba-light-gray-hover-w:hover {
  border: 2px solid #EEF0F4;
}

.ba-light-gray-focus:focus {
  border: 1px solid #EEF0F4;
}

.ba-light-gray-focus-w:focus {
  border: 2px solid #EEF0F4;
}

.ba-medium-gray {
  border: 1px solid #68738C;
}

.ba-medium-gray-w {
  border: 2px solid #68738C;
}

.ba-medium-gray-hover:hover {
  border: 1px solid #68738C;
}

.ba-medium-gray-hover-w:hover {
  border: 2px solid #68738C;
}

.ba-medium-gray-focus:focus {
  border: 1px solid #68738C;
}

.ba-medium-gray-focus-w:focus {
  border: 2px solid #68738C;
}

.ba-dark-gray {
  border: 1px solid #404851;
}

.ba-dark-gray-w {
  border: 2px solid #404851;
}

.ba-dark-gray-hover:hover {
  border: 1px solid #404851;
}

.ba-dark-gray-hover-w:hover {
  border: 2px solid #404851;
}

.ba-dark-gray-focus:focus {
  border: 1px solid #404851;
}

.ba-dark-gray-focus-w:focus {
  border: 2px solid #404851;
}

.ba-white {
  border: 1px solid #ffffff;
}

.ba-white-w {
  border: 2px solid #ffffff;
}

.ba-white-hover:hover {
  border: 1px solid #ffffff;
}

.ba-white-hover-w:hover {
  border: 2px solid #ffffff;
}

.ba-white-focus:focus {
  border: 1px solid #ffffff;
}

.ba-white-focus-w:focus {
  border: 2px solid #ffffff;
}

.ba-black {
  border: 1px solid #0a0a0a;
}

.ba-black-w {
  border: 2px solid #0a0a0a;
}

.ba-black-hover:hover {
  border: 1px solid #0a0a0a;
}

.ba-black-hover-w:hover {
  border: 2px solid #0a0a0a;
}

.ba-black-focus:focus {
  border: 1px solid #0a0a0a;
}

.ba-black-focus-w:focus {
  border: 2px solid #0a0a0a;
}

.ba-blue {
  border: 1px solid #0A2157;
}

.ba-blue-w {
  border: 2px solid #0A2157;
}

.ba-blue-hover:hover {
  border: 1px solid #0A2157;
}

.ba-blue-hover-w:hover {
  border: 2px solid #0A2157;
}

.ba-blue-focus:focus {
  border: 1px solid #0A2157;
}

.ba-blue-focus-w:focus {
  border: 2px solid #0A2157;
}

.primary {
  color: #C3B6EF;
}

.bg-primary {
  background-color: #C3B6EF;
}

.fill-primary {
  fill: #C3B6EF;
}
.fill-primary path {
  fill: #C3B6EF;
}

.secondary {
  color: #1F2937;
}

.bg-secondary {
  background-color: #1F2937;
}

.fill-secondary {
  fill: #1F2937;
}
.fill-secondary path {
  fill: #1F2937;
}

.success {
  color: #9CCC33;
}

.bg-success {
  background-color: #9CCC33;
}

.fill-success {
  fill: #9CCC33;
}
.fill-success path {
  fill: #9CCC33;
}

.warning {
  color: #ffae00;
}

.bg-warning {
  background-color: #ffae00;
}

.fill-warning {
  fill: #ffae00;
}
.fill-warning path {
  fill: #ffae00;
}

.alert {
  color: #cc4b37;
}

.bg-alert {
  background-color: #cc4b37;
}

.fill-alert {
  fill: #cc4b37;
}
.fill-alert path {
  fill: #cc4b37;
}

.body-color {
  color: #374151;
}

.bg-body-color {
  background-color: #374151;
}

.fill-body-color {
  fill: #374151;
}
.fill-body-color path {
  fill: #374151;
}

.light-gray {
  color: #EEF0F4;
}

.bg-light-gray {
  background-color: #EEF0F4;
}

.fill-light-gray {
  fill: #EEF0F4;
}
.fill-light-gray path {
  fill: #EEF0F4;
}

.medium-gray, .cat-link:hover, .cat-link {
  color: #68738C;
}

.bg-medium-gray {
  background-color: #68738C;
}

.fill-medium-gray {
  fill: #68738C;
}
.fill-medium-gray path {
  fill: #68738C;
}

.dark-gray {
  color: #404851;
}

.bg-dark-gray {
  background-color: #404851;
}

.fill-dark-gray {
  fill: #404851;
}
.fill-dark-gray path {
  fill: #404851;
}

.white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.fill-white {
  fill: #ffffff;
}
.fill-white path {
  fill: #ffffff;
}

.black {
  color: #0a0a0a;
}

.bg-black {
  background-color: #0a0a0a;
}

.fill-black {
  fill: #0a0a0a;
}
.fill-black path {
  fill: #0a0a0a;
}

.blue {
  color: #0A2157;
}

.bg-blue {
  background-color: #0A2157;
}

.fill-blue {
  fill: #0A2157;
}
.fill-blue path {
  fill: #0A2157;
}

.db {
  display: block;
}

.db-for-small {
  display: block;
}

@media print, screen and (min-width: 40em) {
  .db-for-medium {
    display: block;
  }
}

@media print, screen and (min-width: 64em) {
  .db-for-large {
    display: block;
  }
}

@media screen and (min-width: 90em) {
  .db-for-xlarge {
    display: block;
  }
}

.di {
  display: inline;
}

.di-for-small {
  display: inline;
}

@media print, screen and (min-width: 40em) {
  .di-for-medium {
    display: inline;
  }
}

@media print, screen and (min-width: 64em) {
  .di-for-large {
    display: inline;
  }
}

@media screen and (min-width: 90em) {
  .di-for-xlarge {
    display: inline;
  }
}

.dib {
  display: inline-block;
}

.dib-for-small {
  display: inline-block;
}

@media print, screen and (min-width: 40em) {
  .dib-for-medium {
    display: inline-block;
  }
}

@media print, screen and (min-width: 64em) {
  .dib-for-large {
    display: inline-block;
  }
}

@media screen and (min-width: 90em) {
  .dib-for-xlarge {
    display: inline-block;
  }
}

.df {
  display: flex;
}

.df-for-small {
  display: flex;
}

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

@media print, screen and (min-width: 64em) {
  .df-for-large {
    display: flex;
  }
}

@media screen and (min-width: 90em) {
  .df-for-xlarge {
    display: flex;
  }
}

.dif {
  display: inline-flex;
}

.dif-for-small {
  display: inline-flex;
}

@media print, screen and (min-width: 40em) {
  .dif-for-medium {
    display: inline-flex;
  }
}

@media print, screen and (min-width: 64em) {
  .dif-for-large {
    display: inline-flex;
  }
}

@media screen and (min-width: 90em) {
  .dif-for-xlarge {
    display: inline-flex;
  }
}

.v-hidden {
  visibility: hidden;
}

.v-visible {
  visibility: visible;
}

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

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

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

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

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

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

.fl-col {
  flex-direction: column;
}

.pointer {
  cursor: pointer;
}

.no-pointer {
  cursor: auto !important;
}

.center-v, .center-both {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.center-h, .center-both {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.center-both {
  transform: translate(-50%, -50%);
}

@font-face {
  font-family: "OpenSans";
  src: url("../../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.f-0 {
  font-size: 0.5555555556rem;
}

.f-1 {
  font-size: 0.6111111111rem;
}

.f-2 {
  font-size: 0.6666666667rem;
}

.f-3 {
  font-size: 0.7222222222rem;
}

.f-4 {
  font-size: 0.7777777778rem;
}

.f-5 {
  font-size: 0.8333333333rem;
}

.f-6 {
  font-size: 0.8888888889rem;
}

.f-7 {
  font-size: 1rem;
}

.f-8 {
  font-size: 1.5555555556rem;
}

.f-9 {
  font-size: 2.1111111111rem;
}

.f-10 {
  font-size: 2.4444444444rem;
}

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

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

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

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

.fw-normal {
  font-weight: 400;
}

.fw-bold, h3, .h3, h4, .h4 {
  font-weight: 600;
}

.ff-body {
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
}

.ff-head {
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
}

.underline {
  text-decoration: underline;
}

.italic {
  font-style: italic;
}

.upper {
  text-transform: uppercase;
}

.opacity-100 {
  opacity: 1;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-0 {
  opacity: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fill {
  width: 100%;
  height: 100%;
}

.h-0 {
  height: 0;
}

.h-1 {
  height: 1em;
}

.h-2 {
  height: 2em;
}

.h-3 {
  height: 3em;
}

.h-4 {
  height: 4em;
}

.h-6 {
  height: 6em;
}

.h-10 {
  height: 10%;
}

.h-15 {
  height: 15%;
}

.h-17 {
  height: 17%;
}

.h-1-8 {
  height: 12.5%;
}

.h-20 {
  height: 20%;
}

.h-1-4 {
  height: 25%;
}

.h-30 {
  height: 30%;
}

.h-1-3 {
  height: 33.33333%;
}

.h-40 {
  height: 40%;
}

.h-45 {
  height: 45%;
}

.h-50 {
  height: 50%;
}

.h-1-2 {
  height: 50%;
}

.h-60 {
  height: 60%;
}

.h-5-8 {
  height: 62.5%;
}

.h-2-3 {
  height: 66.66667%;
}

.h-70 {
  height: 70%;
}

.h-3-4 {
  height: 75%;
}

.h-80 {
  height: 80%;
}

.h-7-8 {
  height: 87.5%;
}

.h-90 {
  height: 90%;
}

.h-95 {
  height: 95%;
}

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.w-0 {
  width: 0;
}

.w-1 {
  width: 1em;
}

.w-2 {
  width: 2em;
}

.w-3 {
  width: 3em;
}

.w-4 {
  width: 4em;
}

.w-6 {
  width: 6em;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-17 {
  width: 17%;
}

.w-1-8 {
  width: 12.5%;
}

.w-20 {
  width: 20%;
}

.w-1-4 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-1-3 {
  width: 33.33333%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-1-2 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-5-8 {
  width: 62.5%;
}

.w-2-3 {
  width: 66.66667%;
}

.w-70 {
  width: 70%;
}

.w-3-4 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-7-8 {
  width: 87.5%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.h-max-0 {
  max-height: 0;
}

.h-max-1 {
  max-height: 1em;
}

.h-max-2 {
  max-height: 2em;
}

.h-max-3 {
  max-height: 3em;
}

.h-max-4 {
  max-height: 4em;
}

.h-max-6 {
  max-height: 6em;
}

.h-max-10 {
  max-height: 10%;
}

.h-max-15 {
  max-height: 15%;
}

.h-max-17 {
  max-height: 17%;
}

.h-max-1-8 {
  max-height: 12.5%;
}

.h-max-20 {
  max-height: 20%;
}

.h-max-1-4 {
  max-height: 25%;
}

.h-max-30 {
  max-height: 30%;
}

.h-max-1-3 {
  max-height: 33.33333%;
}

.h-max-40 {
  max-height: 40%;
}

.h-max-45 {
  max-height: 45%;
}

.h-max-50 {
  max-height: 50%;
}

.h-max-1-2 {
  max-height: 50%;
}

.h-max-60 {
  max-height: 60%;
}

.h-max-5-8 {
  max-height: 62.5%;
}

.h-max-2-3 {
  max-height: 66.66667%;
}

.h-max-70 {
  max-height: 70%;
}

.h-max-3-4 {
  max-height: 75%;
}

.h-max-80 {
  max-height: 80%;
}

.h-max-7-8 {
  max-height: 87.5%;
}

.h-max-90 {
  max-height: 90%;
}

.h-max-95 {
  max-height: 95%;
}

.h-max-100 {
  max-height: 100%;
}

.h-max-auto {
  max-height: auto;
}

.h-max-fit {
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.w-max-0 {
  max-width: 0;
}

.w-max-1 {
  max-width: 1em;
}

.w-max-2 {
  max-width: 2em;
}

.w-max-3 {
  max-width: 3em;
}

.w-max-4 {
  max-width: 4em;
}

.w-max-6 {
  max-width: 6em;
}

.w-max-10 {
  max-width: 10%;
}

.w-max-15 {
  max-width: 15%;
}

.w-max-17 {
  max-width: 17%;
}

.w-max-1-8 {
  max-width: 12.5%;
}

.w-max-20 {
  max-width: 20%;
}

.w-max-1-4 {
  max-width: 25%;
}

.w-max-30 {
  max-width: 30%;
}

.w-max-1-3 {
  max-width: 33.33333%;
}

.w-max-40 {
  max-width: 40%;
}

.w-max-45 {
  max-width: 45%;
}

.w-max-50 {
  max-width: 50%;
}

.w-max-1-2 {
  max-width: 50%;
}

.w-max-60 {
  max-width: 60%;
}

.w-max-5-8 {
  max-width: 62.5%;
}

.w-max-2-3 {
  max-width: 66.66667%;
}

.w-max-70 {
  max-width: 70%;
}

.w-max-3-4 {
  max-width: 75%;
}

.w-max-80 {
  max-width: 80%;
}

.w-max-7-8 {
  max-width: 87.5%;
}

.w-max-90 {
  max-width: 90%;
}

.w-max-95 {
  max-width: 95%;
}

.w-max-100 {
  max-width: 100%;
}

.w-max-auto {
  max-width: auto;
}

.w-max-fit {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.h-min-0 {
  min-height: 0;
}

.h-min-1 {
  min-height: 1em;
}

.h-min-2 {
  min-height: 2em;
}

.h-min-3 {
  min-height: 3em;
}

.h-min-4 {
  min-height: 4em;
}

.h-min-6 {
  min-height: 6em;
}

.h-min-10 {
  min-height: 10%;
}

.h-min-15 {
  min-height: 15%;
}

.h-min-17 {
  min-height: 17%;
}

.h-min-1-8 {
  min-height: 12.5%;
}

.h-min-20 {
  min-height: 20%;
}

.h-min-1-4 {
  min-height: 25%;
}

.h-min-30 {
  min-height: 30%;
}

.h-min-1-3 {
  min-height: 33.33333%;
}

.h-min-40 {
  min-height: 40%;
}

.h-min-45 {
  min-height: 45%;
}

.h-min-50 {
  min-height: 50%;
}

.h-min-1-2 {
  min-height: 50%;
}

.h-min-60 {
  min-height: 60%;
}

.h-min-5-8 {
  min-height: 62.5%;
}

.h-min-2-3 {
  min-height: 66.66667%;
}

.h-min-70 {
  min-height: 70%;
}

.h-min-3-4 {
  min-height: 75%;
}

.h-min-80 {
  min-height: 80%;
}

.h-min-7-8 {
  min-height: 87.5%;
}

.h-min-90 {
  min-height: 90%;
}

.h-min-95 {
  min-height: 95%;
}

.h-min-100 {
  min-height: 100%;
}

.h-min-auto {
  min-height: auto;
}

.h-min-fit {
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.w-min-0 {
  min-width: 0;
}

.w-min-1 {
  min-width: 1em;
}

.w-min-2 {
  min-width: 2em;
}

.w-min-3 {
  min-width: 3em;
}

.w-min-4 {
  min-width: 4em;
}

.w-min-6 {
  min-width: 6em;
}

.w-min-10 {
  min-width: 10%;
}

.w-min-15 {
  min-width: 15%;
}

.w-min-17 {
  min-width: 17%;
}

.w-min-1-8 {
  min-width: 12.5%;
}

.w-min-20 {
  min-width: 20%;
}

.w-min-1-4 {
  min-width: 25%;
}

.w-min-30 {
  min-width: 30%;
}

.w-min-1-3 {
  min-width: 33.33333%;
}

.w-min-40 {
  min-width: 40%;
}

.w-min-45 {
  min-width: 45%;
}

.w-min-50 {
  min-width: 50%;
}

.w-min-1-2 {
  min-width: 50%;
}

.w-min-60 {
  min-width: 60%;
}

.w-min-5-8 {
  min-width: 62.5%;
}

.w-min-2-3 {
  min-width: 66.66667%;
}

.w-min-70 {
  min-width: 70%;
}

.w-min-3-4 {
  min-width: 75%;
}

.w-min-80 {
  min-width: 80%;
}

.w-min-7-8 {
  min-width: 87.5%;
}

.w-min-90 {
  min-width: 90%;
}

.w-min-95 {
  min-width: 95%;
}

.w-min-100 {
  min-width: 100%;
}

.w-min-auto {
  min-width: auto;
}

.w-min-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.fb-0 {
  flex-basis: 0;
}

.left-1 {
  left: 1em;
}

.right-1 {
  right: 1em;
}

.top-1 {
  top: 1em;
}

.bottom-1 {
  bottom: 1em;
}

.fb-1 {
  flex-basis: 1em;
}

.left-2 {
  left: 2em;
}

.right-2 {
  right: 2em;
}

.top-2 {
  top: 2em;
}

.bottom-2 {
  bottom: 2em;
}

.fb-2 {
  flex-basis: 2em;
}

.left-3 {
  left: 3em;
}

.right-3 {
  right: 3em;
}

.top-3 {
  top: 3em;
}

.bottom-3 {
  bottom: 3em;
}

.fb-3 {
  flex-basis: 3em;
}

.left-4 {
  left: 4em;
}

.right-4 {
  right: 4em;
}

.top-4 {
  top: 4em;
}

.bottom-4 {
  bottom: 4em;
}

.fb-4 {
  flex-basis: 4em;
}

.left-6 {
  left: 6em;
}

.right-6 {
  right: 6em;
}

.top-6 {
  top: 6em;
}

.bottom-6 {
  bottom: 6em;
}

.fb-6 {
  flex-basis: 6em;
}

.left-10 {
  left: 10%;
}

.right-10 {
  right: 10%;
}

.top-10 {
  top: 10%;
}

.bottom-10 {
  bottom: 10%;
}

.fb-10 {
  flex-basis: 10%;
}

.left-15 {
  left: 15%;
}

.right-15 {
  right: 15%;
}

.top-15 {
  top: 15%;
}

.bottom-15 {
  bottom: 15%;
}

.fb-15 {
  flex-basis: 15%;
}

.left-17 {
  left: 17%;
}

.right-17 {
  right: 17%;
}

.top-17 {
  top: 17%;
}

.bottom-17 {
  bottom: 17%;
}

.fb-17 {
  flex-basis: 17%;
}

.left-1-8 {
  left: 12.5%;
}

.right-1-8 {
  right: 12.5%;
}

.top-1-8 {
  top: 12.5%;
}

.bottom-1-8 {
  bottom: 12.5%;
}

.fb-1-8 {
  flex-basis: 12.5%;
}

.left-20 {
  left: 20%;
}

.right-20 {
  right: 20%;
}

.top-20 {
  top: 20%;
}

.bottom-20 {
  bottom: 20%;
}

.fb-20 {
  flex-basis: 20%;
}

.left-1-4 {
  left: 25%;
}

.right-1-4 {
  right: 25%;
}

.top-1-4 {
  top: 25%;
}

.bottom-1-4 {
  bottom: 25%;
}

.fb-1-4 {
  flex-basis: 25%;
}

.left-30 {
  left: 30%;
}

.right-30 {
  right: 30%;
}

.top-30 {
  top: 30%;
}

.bottom-30 {
  bottom: 30%;
}

.fb-30 {
  flex-basis: 30%;
}

.left-1-3 {
  left: 33.33333%;
}

.right-1-3 {
  right: 33.33333%;
}

.top-1-3 {
  top: 33.33333%;
}

.bottom-1-3 {
  bottom: 33.33333%;
}

.fb-1-3 {
  flex-basis: 33.33333%;
}

.left-40 {
  left: 40%;
}

.right-40 {
  right: 40%;
}

.top-40 {
  top: 40%;
}

.bottom-40 {
  bottom: 40%;
}

.fb-40 {
  flex-basis: 40%;
}

.left-45 {
  left: 45%;
}

.right-45 {
  right: 45%;
}

.top-45 {
  top: 45%;
}

.bottom-45 {
  bottom: 45%;
}

.fb-45 {
  flex-basis: 45%;
}

.left-50 {
  left: 50%;
}

.right-50 {
  right: 50%;
}

.top-50 {
  top: 50%;
}

.bottom-50 {
  bottom: 50%;
}

.fb-50 {
  flex-basis: 50%;
}

.left-1-2 {
  left: 50%;
}

.right-1-2 {
  right: 50%;
}

.top-1-2 {
  top: 50%;
}

.bottom-1-2 {
  bottom: 50%;
}

.fb-1-2 {
  flex-basis: 50%;
}

.left-60 {
  left: 60%;
}

.right-60 {
  right: 60%;
}

.top-60 {
  top: 60%;
}

.bottom-60 {
  bottom: 60%;
}

.fb-60 {
  flex-basis: 60%;
}

.left-5-8 {
  left: 62.5%;
}

.right-5-8 {
  right: 62.5%;
}

.top-5-8 {
  top: 62.5%;
}

.bottom-5-8 {
  bottom: 62.5%;
}

.fb-5-8 {
  flex-basis: 62.5%;
}

.left-2-3 {
  left: 66.66667%;
}

.right-2-3 {
  right: 66.66667%;
}

.top-2-3 {
  top: 66.66667%;
}

.bottom-2-3 {
  bottom: 66.66667%;
}

.fb-2-3 {
  flex-basis: 66.66667%;
}

.left-70 {
  left: 70%;
}

.right-70 {
  right: 70%;
}

.top-70 {
  top: 70%;
}

.bottom-70 {
  bottom: 70%;
}

.fb-70 {
  flex-basis: 70%;
}

.left-3-4 {
  left: 75%;
}

.right-3-4 {
  right: 75%;
}

.top-3-4 {
  top: 75%;
}

.bottom-3-4 {
  bottom: 75%;
}

.fb-3-4 {
  flex-basis: 75%;
}

.left-80 {
  left: 80%;
}

.right-80 {
  right: 80%;
}

.top-80 {
  top: 80%;
}

.bottom-80 {
  bottom: 80%;
}

.fb-80 {
  flex-basis: 80%;
}

.left-7-8 {
  left: 87.5%;
}

.right-7-8 {
  right: 87.5%;
}

.top-7-8 {
  top: 87.5%;
}

.bottom-7-8 {
  bottom: 87.5%;
}

.fb-7-8 {
  flex-basis: 87.5%;
}

.left-90 {
  left: 90%;
}

.right-90 {
  right: 90%;
}

.top-90 {
  top: 90%;
}

.bottom-90 {
  bottom: 90%;
}

.fb-90 {
  flex-basis: 90%;
}

.left-95 {
  left: 95%;
}

.right-95 {
  right: 95%;
}

.top-95 {
  top: 95%;
}

.bottom-95 {
  bottom: 95%;
}

.fb-95 {
  flex-basis: 95%;
}

.left-100 {
  left: 100%;
}

.right-100 {
  right: 100%;
}

.top-100 {
  top: 100%;
}

.bottom-100 {
  bottom: 100%;
}

.fb-100 {
  flex-basis: 100%;
}

.left-auto {
  left: auto;
}

.right-auto {
  right: auto;
}

.top-auto {
  top: auto;
}

.bottom-auto {
  bottom: auto;
}

.fb-auto {
  flex-basis: auto;
}

.left-fit {
  left: fit-content;
}

.right-fit {
  right: fit-content;
}

.top-fit {
  top: fit-content;
}

.bottom-fit {
  bottom: fit-content;
}

.fb-fit {
  flex-basis: fit-content;
}

.h-5v {
  height: 5vh;
}

.w-5v {
  width: 5vw;
}

.h-max-5v {
  max-height: 5vh;
}

.w-max-5v {
  max-width: 5vw;
}

.h-min-5v {
  min-height: 5vh;
}

.w-min-5v {
  min-width: 5vw;
}

.h-10v {
  height: 10vh;
}

.w-10v {
  width: 10vw;
}

.h-max-10v {
  max-height: 10vh;
}

.w-max-10v {
  max-width: 10vw;
}

.h-min-10v {
  min-height: 10vh;
}

.w-min-10v {
  min-width: 10vw;
}

.h-14v {
  height: 14vh;
}

.w-14v {
  width: 14vw;
}

.h-max-14v {
  max-height: 14vh;
}

.w-max-14v {
  max-width: 14vw;
}

.h-min-14v {
  min-height: 14vh;
}

.w-min-14v {
  min-width: 14vw;
}

.h-20v {
  height: 20vh;
}

.w-20v {
  width: 20vw;
}

.h-max-20v {
  max-height: 20vh;
}

.w-max-20v {
  max-width: 20vw;
}

.h-min-20v {
  min-height: 20vh;
}

.w-min-20v {
  min-width: 20vw;
}

.h-1-4v {
  height: 25vh;
}

.w-1-4v {
  width: 25vw;
}

.h-max-1-4v {
  max-height: 25vh;
}

.w-max-1-4v {
  max-width: 25vw;
}

.h-min-1-4v {
  min-height: 25vh;
}

.w-min-1-4v {
  min-width: 25vw;
}

.h-30v {
  height: 30vh;
}

.w-30v {
  width: 30vw;
}

.h-max-30v {
  max-height: 30vh;
}

.w-max-30v {
  max-width: 30vw;
}

.h-min-30v {
  min-height: 30vh;
}

.w-min-30v {
  min-width: 30vw;
}

.h-1-3v {
  height: 33.33333vh;
}

.w-1-3v {
  width: 33.33333vw;
}

.h-max-1-3v {
  max-height: 33.33333vh;
}

.w-max-1-3v {
  max-width: 33.33333vw;
}

.h-min-1-3v {
  min-height: 33.33333vh;
}

.w-min-1-3v {
  min-width: 33.33333vw;
}

.h-40v {
  height: 40vh;
}

.w-40v {
  width: 40vw;
}

.h-max-40v {
  max-height: 40vh;
}

.w-max-40v {
  max-width: 40vw;
}

.h-min-40v {
  min-height: 40vh;
}

.w-min-40v {
  min-width: 40vw;
}

.h-50v {
  height: 50vh;
}

.w-50v {
  width: 50vw;
}

.h-max-50v {
  max-height: 50vh;
}

.w-max-50v {
  max-width: 50vw;
}

.h-min-50v {
  min-height: 50vh;
}

.w-min-50v {
  min-width: 50vw;
}

.h-1-2v {
  height: 50vh;
}

.w-1-2v {
  width: 50vw;
}

.h-max-1-2v {
  max-height: 50vh;
}

.w-max-1-2v {
  max-width: 50vw;
}

.h-min-1-2v {
  min-height: 50vh;
}

.w-min-1-2v {
  min-width: 50vw;
}

.h-60v {
  height: 60vh;
}

.w-60v {
  width: 60vw;
}

.h-max-60v {
  max-height: 60vh;
}

.w-max-60v {
  max-width: 60vw;
}

.h-min-60v {
  min-height: 60vh;
}

.w-min-60v {
  min-width: 60vw;
}

.h-2-3v {
  height: 66.66667vh;
}

.w-2-3v {
  width: 66.66667vw;
}

.h-max-2-3v {
  max-height: 66.66667vh;
}

.w-max-2-3v {
  max-width: 66.66667vw;
}

.h-min-2-3v {
  min-height: 66.66667vh;
}

.w-min-2-3v {
  min-width: 66.66667vw;
}

.h-3-4v {
  height: 75vh;
}

.w-3-4v {
  width: 75vw;
}

.h-max-3-4v {
  max-height: 75vh;
}

.w-max-3-4v {
  max-width: 75vw;
}

.h-min-3-4v {
  min-height: 75vh;
}

.w-min-3-4v {
  min-width: 75vw;
}

.h-80v {
  height: 80vh;
}

.w-80v {
  width: 80vw;
}

.h-max-80v {
  max-height: 80vh;
}

.w-max-80v {
  max-width: 80vw;
}

.h-min-80v {
  min-height: 80vh;
}

.w-min-80v {
  min-width: 80vw;
}

.h-90v {
  height: 90vh;
}

.w-90v {
  width: 90vw;
}

.h-max-90v {
  max-height: 90vh;
}

.w-max-90v {
  max-width: 90vw;
}

.h-min-90v {
  min-height: 90vh;
}

.w-min-90v {
  min-width: 90vw;
}

.h-100v {
  height: 100vh;
}

.w-100v {
  width: 100vw;
}

.h-max-100v {
  max-height: 100vh;
}

.w-max-100v {
  max-width: 100vw;
}

.h-min-100v {
  min-height: 100vh;
}

.w-min-100v {
  min-width: 100vw;
}

.fullwidth {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.pa {
  padding: 1rem;
}

.ma {
  margin: 1rem;
}

.pa-0 {
  padding: 0;
}

.ma-0 {
  margin: 0;
}

.pt-0 {
  padding-top: 0;
}

.mt-0 {
  margin-top: 0;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-0 {
  padding-bottom: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-0 {
  padding-left: 0;
}

.ml-0 {
  margin-left: 0;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-0 {
  padding-right: 0;
}

.mr-0 {
  margin-right: 0;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.mv-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-0 {
  padding-left: 0;
  padding-right: 0;
}

.mh-0 {
  margin-left: 0;
  margin-right: 0;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pa-1 {
  padding: 0.25rem;
}

.ma-1 {
  margin: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.mv-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.mh-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pa-2 {
  padding: 0.5rem;
}

.ma-2 {
  margin: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mv-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.mh-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pa-3 {
  padding: 1rem;
}

.ma-3 {
  margin: 1rem;
}

.pt-3 {
  padding-top: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-3, .cat-link {
  padding-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-3 {
  padding-left: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-3 {
  padding-right: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh-3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pa-4 {
  padding: 2rem;
}

.ma-4 {
  margin: 2rem;
}

.pt-4 {
  padding-top: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-4 {
  padding-left: 2rem;
}

.ml-4 {
  margin-left: 2rem;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-4 {
  padding-right: 2rem;
}

.mr-4 {
  margin-right: 2rem;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mv-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mh-4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pa-5 {
  padding: 4rem;
}

.ma-5 {
  margin: 4rem;
}

.pt-5 {
  padding-top: 4rem;
}

.mt-5 {
  margin-top: 4rem;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-5 {
  padding-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 4rem;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-5 {
  padding-left: 4rem;
}

.ml-5 {
  margin-left: 4rem;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-5 {
  padding-right: 4rem;
}

.mr-5 {
  margin-right: 4rem;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mv-5 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-5 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.mh-5 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

.pa-auto {
  padding: auto;
}

.ma-auto {
  margin: auto;
}

.pt-auto {
  padding-top: auto;
}

.mt-auto {
  margin-top: auto;
}

.pt {
  padding-top: 1rem;
}

.mt {
  margin-top: 1rem;
}

.pb-auto {
  padding-bottom: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.pb {
  padding-bottom: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.pl-auto {
  padding-left: auto;
}

.ml-auto {
  margin-left: auto;
}

.pl {
  padding-left: 1rem;
}

.ml {
  margin-left: 1rem;
}

.pr-auto {
  padding-right: auto;
}

.mr-auto {
  margin-right: auto;
}

.pr {
  padding-right: 1rem;
}

.mr {
  margin-right: 1rem;
}

.pv-auto {
  padding-top: auto;
  padding-bottom: auto;
}

.mv-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.pv {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mv {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ph-auto {
  padding-left: auto;
  padding-right: auto;
}

.mh-auto {
  margin-left: auto;
  margin-right: auto;
}

.ph {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mh {
  margin-left: 1rem;
  margin-right: 1rem;
}

@media print, screen and (max-width: 39.99875em) {
  .no-padding-for-small {
    padding: 0;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .no-padding-for-medium {
    padding: 0;
  }
}
.rotate-left {
  transform: rotate(-180deg);
}

.rotate-right {
  transform: rotate(180deg);
}

.rotate-up {
  transform: rotate(-90deg);
}

.rotate-down {
  transform: rotate(90deg);
}

.accordion .accordion-item .accordion-title {
  background-color: #fff;
}
.accordion .accordion-item .accordion-title:before {
  content: "";
  background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/chevron-down.svg");
  width: 16px;
  height: 16px;
}
.accordion .accordion-item .accordion-title:not(.blog-category) {
  position: relative;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #EEF0F4, 0 2px 5px 0 rgba(73, 91, 138, 0), 0 18px 24px 0 rgba(73, 91, 138, 0);
  overflow: hidden;
  transition: all ease 0.25s;
}
@media print, screen and (max-width: 39.99875em) {
  .accordion .accordion-item .accordion-title:not(.blog-category) {
    padding: 1.3888888889rem 1.3888888889rem;
    font-size: 0.8888888889rem;
  }
}
.accordion .accordion-item .accordion-title:not(.blog-category):after {
  content: "";
  position: absolute;
  background: #C3B6EF;
  width: 0.3333333333rem;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all ease 0.25s;
}
.accordion .accordion-item .accordion-title:not(.blog-category):hover, .accordion .accordion-item .accordion-title:not(.blog-category):focus {
  color: #1F2937;
}
.accordion .accordion-item .accordion-title:not(.blog-category):not(:last-child) {
  margin-bottom: 1.7777777778rem;
}
.accordion .accordion-item.is-active .accordion-title:before {
  content: "";
  background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/chevron-up.svg");
  width: 16px;
  height: 16px;
}
.accordion .accordion-item.is-active .accordion-title:not(.blog-category) {
  box-shadow: 0 2px 5px 0 rgba(73, 91, 138, 0.1), 0 18px 24px 0 rgba(73, 91, 138, 0.07);
  transition: all ease 0.25s;
}
.accordion .accordion-item.is-active .accordion-title:not(.blog-category):after {
  opacity: 1;
  transition: all ease 0.25s;
}

.article-box .article-box-img {
  overflow: hidden;
}
.article-box .article-box-item {
  display: grid;
  align-content: space-between;
  position: relative;
  height: 100%;
  padding: 1rem;
  border-radius: 15px;
  text-align: left;
  transition: 0.25s;
}
@media print, screen and (max-width: 39.99875em) {
  .article-box .article-box-item {
    box-shadow: 0px 12px 20px rgba(64, 72, 81, 0.15);
    transition: 0.25s;
    cursor: default;
  }
}
@media print, screen and (min-width: 40em) {
  .article-box .article-box-item:before {
    content: "";
    position: absolute;
    z-index: 50;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 12px 20px rgba(64, 72, 81, 0.15);
    border-radius: 15px;
    opacity: 0;
    transition: 0.25s;
  }
  .article-box .article-box-item:hover {
    transform: translate(0, -2px);
  }
  .article-box .article-box-item:hover .blog-category {
    border-color: #C3B6EF;
  }
  .article-box .article-box-item:hover:before {
    opacity: 1;
  }
}
.article-box .article-box-item .article-box-img {
  border-radius: 10px;
}
.article-box .article-box-item .article-box-img img {
  width: 100%;
}
.article-box .article-box-item .title {
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 400;
  color: #0A2157;
  margin: 1rem 0 0.4rem 0;
  line-height: 1.3;
}
.article-box .article-box-item .date {
  font-size: 0.6111111111rem;
  color: #68738C;
  font-weight: 400;
}
.article-box .article-box-item .blog-category {
  padding-top: 1.8rem;
  padding-bottom: 0.8rem;
  transition: 0.25s;
}
.article-box .article-box-item .blog-category .text-cat {
  color: #68738C;
  font-size: 0.7222222222rem;
}
@media print, screen and (min-width: 40em) {
  .article-box .article-box-item .blog-category {
    border-bottom: 2px solid rgba(64, 72, 81, 0.1);
  }
}
.article-box .article-box-item .button {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.blog-category {
  font-size: 0.8333333333rem;
  color: #404851;
  font-weight: 400;
}
.blog-category .icon {
  display: inline-flex;
  background: rgba(195, 182, 239, 0.1);
  padding: 0.3rem;
  border-radius: 9px;
  margin-right: 0.5555555556rem;
  vertical-align: middle;
}
.blog-category .icon svg {
  fill: #C3B6EF;
  vertical-align: middle;
  height: 0.8888888889rem;
  width: 0.8888888889rem;
}
.blog-category .text-cat {
  display: inline-flex;
  vertical-align: middle;
  font-weight: 400;
}

@media print, screen and (min-width: 40em) {
  .cat-item.categories .accordion-title {
    pointer-events: none;
    cursor: default;
  }
  .cat-item.categories .accordion-title::before {
    display: none;
  }
}

.cest-quoi .icon {
  background: rgba(74, 144, 226, 0.07);
}
.cest-quoi .icon svg {
  fill: #4A90E2;
}
.cest-quoi.article-box-item:hover .blog-category {
  border-color: #4A90E2;
}

.conception .icon {
  background: rgba(25, 202, 149, 0.07);
}
.conception .icon svg {
  fill: #19CA95;
}
.conception.article-box-item:hover .blog-category {
  border-color: #19CA95;
}

.design-ux .icon {
  background: rgba(248, 26, 143, 0.07);
}
.design-ux .icon svg {
  fill: #F81A8F;
}
.design-ux.article-box-item:hover .blog-category {
  border-color: #F81A8F;
}

.developpement .icon {
  background: rgba(84, 117, 242, 0.07);
}
.developpement .icon svg {
  fill: #5475F2;
}
.developpement.article-box-item:hover .blog-category {
  border-color: #5475F2;
}

.promotion .icon {
  background: rgba(245, 166, 35, 0.07);
}
.promotion .icon svg {
  fill: #F5A623;
}
.promotion.article-box-item:hover .blog-category {
  border-color: #F5A623;
}

.store .icon {
  background: rgba(248, 66, 66, 0.07);
}
.store .icon svg {
  fill: #F84242;
}
.store.article-box-item:hover .blog-category {
  border-color: #F84242;
}

.serious-games .icon {
  background: rgba(1, 135, 144, 0.07);
}
.serious-games .icon svg {
  fill: #018790;
}
.serious-games.article-box-item:hover .blog-category {
  border-color: #018790;
}

.cartographie .icon {
  background: rgba(224, 142, 121, 0.07);
}
.cartographie .icon svg {
  fill: #E08E79;
}
.cartographie.article-box-item:hover .blog-category {
  border-color: #E08E79;
}

.innovation .icon {
  background: rgba(252, 202, 85, 0.07);
}
.innovation .icon svg {
  fill: #FCCA55;
}
.innovation.article-box-item:hover .blog-category {
  border-color: #FCCA55;
}

.iot .icon {
  background: rgba(89, 179, 144, 0.07);
}
.iot .icon svg {
  fill: #59B390;
}
.iot.article-box-item:hover .blog-category {
  border-color: #59B390;
}

.transformation-numerique .icon {
  background: rgba(236, 80, 114, 0.07);
}
.transformation-numerique .icon svg {
  fill: #EC5072;
}
.transformation-numerique.article-box-item:hover .blog-category {
  border-color: #EC5072;
}

.test .icon {
  background: rgba(243, 137, 71, 0.07);
}
.test .icon svg {
  fill: #f38947;
}
.test.article-box-item:hover .blog-category {
  border-color: #f38947;
}

.maintenance .icon {
  background: rgba(116, 31, 184, 0.07);
}
.maintenance .icon svg {
  fill: #741FB8;
}
.maintenance.article-box-item:hover .blog-category {
  border-color: #741FB8;
}

.ecommerce .icon {
  background: rgba(157, 89, 213, 0.07);
}
.ecommerce .icon svg {
  fill: #9D59D5;
}
.ecommerce.article-box-item:hover .blog-category {
  border-color: #9D59D5;
}

.metier .icon {
  background: rgba(84, 117, 242, 0.07);
}
.metier .icon svg {
  fill: #5475F2;
}
.metier.article-box-item:hover .blog-category {
  border-color: #5475F2;
}

.sante .icon {
  background: rgba(99, 200, 94, 0.07);
}
.sante .icon svg {
  fill: #63C85E;
}
.sante.article-box-item:hover .blog-category {
  border-color: #63C85E;
}

#breadcrumbs {
  font-size: 0.6666666667rem;
}
#breadcrumbs span {
  color: #fff;
}
#breadcrumbs a {
  text-decoration: underline;
  color: #E5DBFF;
}
#breadcrumbs a, #breadcrumbs .breadcrumb_last {
  margin: 0 0.2777777778rem;
}

.button {
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output,
.mc4wp-notice {
  margin: 1rem 0 0;
  padding: 1rem;
  background: rgba(10, 33, 87, 0.1);
  border: 1px solid rgba(10, 33, 87, 0.3);
  border-radius: 10px;
  font-size: 0.8888888889rem;
}
.wpcf7 form .wpcf7-response-output p,
.mc4wp-notice p {
  margin-bottom: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.mc4wp-alert {
  border-color: #ffae00;
  background: rgba(255, 174, 0, 0.12);
  color: #8a6517;
}
.wpcf7 form.invalid .wpcf7-response-output p,
.mc4wp-alert p {
  color: #8a6517;
}

.wpcf7 form.sent .wpcf7-response-output,
.mc4wp-success {
  border-color: #9CCC33;
  color: #517503;
  background: rgba(156, 204, 51, 0.15);
}
.wpcf7 form.sent .wpcf7-response-output p,
.mc4wp-success p {
  color: #517503;
}

#demandeDeContact .wpcf7-acceptance input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#demandeDeContact .wpcf7-acceptance .custom_check {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
@media screen and (min-width: 640px) and (max-width: 797px) {
  #demandeDeContact .wpcf7-acceptance .custom_check {
    top: -30px;
  }
}
#demandeDeContact .wpcf7-acceptance:hover input ~ .wpcf7-list-item-label span {
  background-color: #ccc;
}
#demandeDeContact .wpcf7-acceptance input:checked ~ .wpcf7-list-item-label span {
  background-color: #9CCC33;
}
#demandeDeContact .wpcf7-acceptance .wpcf7-list-item-label {
  margin-left: 2rem;
}

.label {
  text-transform: uppercase;
}
.label.hollow {
  background: none;
  border: 1px solid #ffffff;
}

.cat-link {
  -webkit-hyphens: auto;
          hyphens: auto;
  font-weight: 600;
  box-shadow: 0 2px 5px 0 rgba(64, 72, 81, 0), 0 10px 14px 0 rgba(64, 72, 81, 0);
  transition: 0.25s;
}
.cat-link .icon {
  display: inline-flex;
  padding: 0.8333333333rem;
  margin: 1.8888888889rem 2.1111111111rem 1rem;
  border-radius: 30px;
}
.cat-link .icon svg {
  width: 3.3333333333rem;
  height: 3.3333333333rem;
}
.cat-link:hover {
  transition: 0.25s;
}
@media print, screen and (max-width: 63.99875em) {
  .cat-link .icon {
    margin: 1.3333333333rem 0.5555555556rem 0.5555555556rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .cat-link .icon {
    padding: 0.5555555556rem;
    border-radius: 20px;
  }
  .cat-link .icon svg {
    width: 2.7777777778rem;
    height: 2.7777777778rem;
  }
}

.list {
  list-style: none;
  margin-left: 1.8rem;
}
.list li {
  position: relative;
}
.list li::before {
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/puce-violette.svg");
  background-size: 12px 12px;
  content: " ";
  color: #68738C;
  font-weight: 600;
  height: 12px;
  left: -1.8rem;
  position: absolute;
  top: 6px;
  width: 12px;
}
@media print, screen and (min-width: 40em) {
  .list li::before {
    font-size: 1rem;
  }
}

.paginate {
  margin-top: 2rem;
}
.paginate .page-numbers {
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}
.paginate .page-numbers:not(.prev, .next, .current) {
  background: none;
}
.paginate .page-numbers:not(.prev, .next, .current):hover {
  background: #EEF0F4;
}
.paginate .page-numbers.current {
  background: #C3B6EF;
  color: #ffffff;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
}
@media print, screen and (min-width: 40em) {
  .pagination {
    text-align: right;
  }
}
.pagination li a,
.pagination li span {
  border-radius: 4px;
}
.pagination li a {
  color: #404851;
}
.pagination li .next,
.pagination li .prev {
  color: #C3B6EF;
}
@media print, screen and (max-width: 39.99875em) {
  .pagination li .next,
  .pagination li .prev {
    font-size: 2.2222222222rem;
  }
}

.tabs-home .tabs .tabs-title, .tabs-about .tabs .tabs-title {
  position: relative;
  display: flex;
  padding: 24px 32px;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid rgba(37, 20, 63, 0.12);
  background: #FFF;
  cursor: pointer;
  transition: all 0.5s;
  overflow: hidden;
}
.tabs-home .tabs .tabs-title a, .tabs-about .tabs .tabs-title a {
  color: #25143F;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.tabs-home .tabs .tabs-title:after, .tabs-about .tabs .tabs-title:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.tabs-home .tabs .tabs-title.tabs-title_conseil:after, .tabs-about .tabs .tabs-title.tabs-title_conseil:after {
  background: #19ca95;
}
.tabs-home .tabs .tabs-title.tabs-title_design:after, .tabs-about .tabs .tabs-title.tabs-title_design:after {
  background: #f3478b;
}
.tabs-home .tabs .tabs-title.tabs-title_dev:after, .tabs-about .tabs .tabs-title.tabs-title_dev:after {
  background: #5475f2;
}
.tabs-home .tabs .tabs-title.tabs-title_test:after, .tabs-about .tabs .tabs-title.tabs-title_test:after {
  background: #f38947;
}
.tabs-home .tabs .tabs-title.tabs-title_evolutions:after, .tabs-about .tabs .tabs-title.tabs-title_evolutions:after {
  background: #741fb8;
}
.tabs-home .tabs .tabs-title:not(:last-child), .tabs-about .tabs .tabs-title:not(:last-child) {
  margin-bottom: 1.7777777778rem;
}
.tabs-home .tabs .tabs-title.is-active, .tabs-about .tabs .tabs-title.is-active {
  box-shadow: 0px 4px 24px 0px rgba(23, 12, 38, 0.12);
  transition: all 0.5s;
}
.tabs-home .tabs .tabs-title.is-active:after, .tabs-about .tabs .tabs-title.is-active:after {
  opacity: 1;
  transition: all 0.5s;
}

.tabs-about .tabs .tabs-title:after {
  background: #9CCC33;
}

.tabs-panel.is-active {
  animation-duration: 0.5s;
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media print, screen and (min-width: 64em) {
  .tabs-home .tabs a, .tabs-about .tabs a {
    font-size: 1.75rem;
    font-weight: 600;
    padding: 0;
  }
  .tabs-home .tabs.vertical > li, .tabs-about .tabs.vertical > li {
    display: flex !important;
    align-items: center;
    padding-left: 51px;
  }
  .tabs-home .tabs .tabs-title a, .tabs-about .tabs .tabs-title a {
    font-size: 1.125rem;
  }
}
#pre-chat-message {
  display: none !important;
}

#floating-chatbot-button {
  width: 130px !important;
  height: 130px !important;
}
#floating-chatbot-button img {
  height: 130px !important;
  width: 130px !important;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
#floating-chatbot-button:hover {
  transform: scale(0.8);
}

#floating-chatbot #mxchat-chatbot-wrapper .chatbot-top-bar {
  background: linear-gradient(275deg, rgba(255, 42, 94, 0.1) 10.04%, rgba(97, 50, 220, 0.1) 41.36%, rgba(37, 20, 63, 0.03) 60.55%), linear-gradient(180deg, #25143F 84.5%, #120A2E 100%), #212121 !important;
}
#floating-chatbot #mxchat-chatbot-wrapper .chatbot-top-bar .chat-mode-indicator {
  font-family: Figtree;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
#floating-chatbot #mxchat-chatbot-wrapper .chatbot-top-bar .chatbot-title-group img {
  width: 46px;
  height: 46px;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container {
  background: linear-gradient(to bottom, #F8F6FA 0%, #FCFBFE calc(100% - 100px), #FCFBFE 100%);
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #chat-box .user-message {
  background: radial-gradient(673.44% 141.42% at 100% 100%, rgba(85, 232, 183, 0.1215686275) 0%, rgba(85, 232, 183, 0.0901960784) 100%), #FFFFFF !important;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #chat-box .bot-message a {
  color: #C3B6EF;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #chat-box .bot-message a:hover {
  color: #374151;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #mxchat-popular-questions {
  background: #FCFBFE;
  /* box-shadow: 0 -1px 12px 0 rgba(0, 0, 0, 0.08); */
  box-shadow: 0 -4px 8px -4px rgba(0, 0, 0, 0.08);
  padding-top: 21px;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #mxchat-popular-questions .mxchat-popular-question {
  border: 1px solid #E2E8FF;
  background: #FFF;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #input-container {
  background: #fff;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #input-container #chat-input {
  font-size: 14px;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #input-container #send-button {
  width: 32px;
  height: 32px;
  background: radial-gradient(50% 50% at 50% 50%, #F4F1FC 96.15%, #E4DDFA 100%) !important;
  padding: 9px;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container #input-container #send-button svg {
  fill: #25143F;
}
#floating-chatbot #mxchat-chatbot-wrapper #mxchat-chatbot #chat-container .chatbot-footer {
  background: #FCFBFE;
}

.category-sidebar {
  margin-top: 0.4rem;
}
.category-sidebar .button-group {
  text-align: center;
}
.category-sidebar .button-group .button {
  height: 40px;
  line-height: 38px;
  border-radius: 20px;
  margin: 5px;
  background: white;
  color: black;
  border: 2px solid #68738C;
}
.category-sidebar .button-group .button.button-parent {
  min-width: 150px;
  border: 2px solid #C3B6EF;
}
.category-sidebar .button-group .button.button-parent.active {
  background-color: #C3B6EF;
  color: rgb(238, 226, 226);
}
.category-sidebar .button-group .button.button-parent:hover {
  background-color: white;
}
.category-sidebar .button-group .button.button-child {
  font-size: 0.6111111111rem;
  padding: 0 1rem;
  border: 2px solid #68738C;
  height: 36px;
  line-height: 34px;
}
.category-sidebar .button-group .button.button-child.active {
  background-color: #68738C;
  color: white;
}
.category-sidebar .button-group .button.button-child:hover {
  background-color: rgb(117.0081967213, 127.8504098361, 152.4918032787);
}
.category-sidebar .button-group hr {
  margin: 0.8rem auto;
}
.category-sidebar .button-group hr:last-child {
  display: none;
}
.category-sidebar .accordion {
  background: none;
}
.category-sidebar .accordion .accordion-item {
  margin-bottom: 0.8rem;
}
.category-sidebar .accordion .accordion-item.cat-item .accordion-title .icon {
  padding: 0;
  background: none;
}
.category-sidebar .accordion .accordion-item.cat-item .accordion-title .icon svg {
  fill: #0a0a0a;
}
.category-sidebar .accordion .accordion-title {
  display: inline-block;
  border: none;
  padding: 1rem 1rem 1rem 0.5rem;
  text-transform: uppercase;
  font-size: 0.7777777778rem;
  color: #25143F;
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  background: transparent;
}
.category-sidebar .accordion .accordion-title:before {
  right: -0.5rem;
}
.category-sidebar .accordion .accordion-title:hover, .category-sidebar .accordion .accordion-title:focus {
  background: none;
}
.category-sidebar .accordion .accordion-title .text-cat {
  font-weight: 700;
}
.category-sidebar .accordion .accordion-content {
  border: none;
  padding: 0;
  margin-left: 0;
  background-color: transparent;
}
.category-sidebar .accordion .accordion-content.children .cat-item {
  padding: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .category-sidebar .accordion .accordion-content.children .cat-item {
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 0.2777777778rem;
    background: #E5DBFF;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category {
    padding: 0.4rem 0.5rem 0.5rem 0.5rem !important;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category .text-cat {
    color: #25143F;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.cest-quoi {
    background: rgba(74, 144, 226, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.cest-quoi .text-cat {
    color: #4A90E2;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.conception {
    background: rgba(25, 202, 149, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.conception .text-cat {
    color: #19CA95;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.design-ux {
    background: rgba(248, 26, 143, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.design-ux .text-cat {
    color: #F81A8F;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.developpement {
    background: rgba(84, 117, 242, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.developpement .text-cat {
    color: #5475F2;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.promotion {
    background: rgba(245, 166, 35, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.promotion .text-cat {
    color: #F5A623;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.store {
    background: rgba(248, 66, 66, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.store .text-cat {
    color: #F84242;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.serious-games {
    background: rgba(1, 135, 144, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.serious-games .text-cat {
    color: #018790;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.cartographie {
    background: rgba(224, 142, 121, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.cartographie .text-cat {
    color: #E08E79;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.innovation {
    background: rgba(252, 202, 85, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.innovation .text-cat {
    color: #FCCA55;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.iot {
    background: rgba(89, 179, 144, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.iot .text-cat {
    color: #59B390;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.transformation-numerique {
    background: rgba(236, 80, 114, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.transformation-numerique .text-cat {
    color: #EC5072;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.test {
    background: rgba(243, 137, 71, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.test .text-cat {
    color: #f38947;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.maintenance {
    background: rgba(116, 31, 184, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.maintenance .text-cat {
    color: #741FB8;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.ecommerce {
    background: rgba(157, 89, 213, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.ecommerce .text-cat {
    color: #9D59D5;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.metier {
    background: rgba(84, 117, 242, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.metier .text-cat {
    color: #5475F2;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.sante {
    background: rgba(99, 200, 94, 0.07);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item.sante .text-cat {
    color: #63C85E;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .icon {
    display: none;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .text-cat {
    font-weight: 700;
  }
}
.category-sidebar .accordion .accordion-content.children .cat-item .blog-category {
  display: inline-block;
  position: relative;
  padding: 0.5rem 0.8rem 0.5rem 0.5rem;
}
@media print, screen and (min-width: 40em) {
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category {
    transition: 0.25s;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category:before {
    content: "";
    position: absolute;
    z-index: 50;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 4px 12px rgba(10, 10, 10, 0.1);
    border-radius: 15px;
    opacity: 0;
    transition: 0.25s;
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category:hover {
    transform: translate(0, -1px);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category:hover, .category-sidebar .accordion .accordion-content.children .cat-item .blog-category:focus {
    color: rgba(10, 10, 10, 0.7);
  }
  .category-sidebar .accordion .accordion-content.children .cat-item .blog-category:hover:before, .category-sidebar .accordion .accordion-content.children .cat-item .blog-category:focus:before {
    opacity: 1;
  }
}
.category-sidebar .accordion .cat-item {
  list-style: none;
}

#footer {
  padding-top: 2.6666666667rem;
  color: #68738C;
  color: #68738C;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media print, screen and (max-width: 39.99875em) {
  #footer {
    padding-bottom: 5rem;
  }
}
#footer a {
  color: #68738C;
  display: inline-block;
}
#footer a:before {
  background-color: #25143F !important;
}
#footer a:hover {
  color: #25143F;
}
#footer a.link-image:before {
  display: none;
}
#footer a.link-image:hover {
  opacity: 0.8;
}
@media print, screen and (max-width: 63.99875em) {
  #footer .inner-footer {
    justify-content: center;
  }
}
#footer .inner-footer .footer-contact {
  width: 100%;
  margin-bottom: 1.7777777778rem;
}
@media print, screen and (min-width: 64em) {
  #footer .inner-footer .footer-contact {
    width: auto;
    padding-right: 3.1111111111rem;
  }
}
#footer .inner-footer .footer-contact a {
  font-weight: 700;
  color: #68738C;
}
#footer .inner-footer .footer-contact a:hover {
  color: #25143F;
}
#footer .inner-footer .footer-contact .streetAddress {
  display: block;
}
#footer .inner-footer nav {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 3.3333333333rem;
}
#footer .inner-footer nav .group {
  width: 100%;
  text-align: right;
}
#footer .inner-footer nav .footer-block { /* bloc de liens */
  flex: 1 1 calc(50% - 3.3333333333rem);
  margin-bottom: 1.7777777778rem;
}
@media print, screen and (min-width: 64em) {
  #footer .inner-footer nav .footer-block {
    flex: 1 1 auto;
    max-width: calc(25% - 3.3333333333rem);
  }
}
#footer .inner-footer nav .footer-block span {
  color: #1F2937;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.8888888889rem;
  display: block;
}
#footer .inner-footer nav .footer-block .menu { /* ul */
  flex-wrap: nowrap;
  flex-direction: column;
}
#footer .inner-footer nav .footer-block .menu .active > a {
  background: none;
}
#footer .inner-footer nav .footer-block .menu .menu-item { /* li */
  margin-bottom: 0.8888888889rem;
}
#footer .inner-footer nav .footer-block .menu .menu-item a {
  color: #68738C;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.5s;
  padding: 0;
}
#footer .inner-footer nav .footer-block .menu .menu-item a:hover {
  color: #25143F;
}
@media print, screen and (max-width: 39.99875em) {
  #footer .inner-footer nav .footer-block .menu {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
#footer .secondary-footer #footer-bottom-links {
  display: inline-flex;
}
#footer .secondary-footer #footer-bottom-links li a {
  color: #68738C;
}
#footer .secondary-footer #footer-bottom-links li a:hover {
  color: #25143F;
}
#footer .secondary-footer #footer-bottom-links li.active > a {
  background: none;
}
@media print, screen and (min-width: 40em) {
  #footer .secondary-footer #footer-bottom-links li:not(:last-child) a {
    position: relative;
  }
  #footer .secondary-footer #footer-bottom-links li:not(:last-child) a::after {
    content: "-";
    position: absolute;
    right: -3px;
  }
}
@media print, screen and (min-width: 64em) {
  #footer .secondary-footer #footer-bottom-links li:first-child a {
    padding-left: 0;
  }
}

#header {
  position: relative;
  z-index: 6;
}
#header .desktop-header {
  display: none;
}
#header .mobile-header {
  width: 100%;
  z-index: 6;
  position: fixed;
  height: 3.3333333333rem;
  background-color: rgba(37, 20, 63, 0.9);
}
#header .mobile-header .logo {
  display: block;
  position: absolute;
  width: 125px;
  height: 28px;
  left: 50%;
  margin-left: -62px;
  top: 50%;
  margin-top: -14px;
  z-index: 7;
}
#header .mobile-header .menu-btn {
  display: none;
}
#header .mobile-header .menu-btn:checked ~ .nav-menu {
  max-height: 100vh;
  box-shadow: rgba(37, 20, 63, 0.8) 0px 100vh 0px 100vh;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  height: calc(100vh + 100px);
}
#header .mobile-header .menu-btn:checked ~ .custom-menu-icon .navicon {
  background: transparent;
}
#header .mobile-header .menu-btn:checked ~ .custom-menu-icon .navicon:before {
  transform: rotate(-45deg);
}
#header .mobile-header .menu-btn:checked ~ .custom-menu-icon .navicon:after {
  transform: rotate(45deg);
}
#header .mobile-header .menu-btn:checked ~ .custom-menu-icon:not(.steps) .navicon:before {
  top: 0;
}
#header .mobile-header .menu-btn:checked ~ .custom-menu-icon:not(.steps) .navicon:after {
  top: 0;
}
#header .mobile-header .custom-menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  z-index: 7;
}
#header .mobile-header .custom-menu-icon .navicon {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}
#header .mobile-header .custom-menu-icon .navicon:before {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: 5px;
}
#header .mobile-header .custom-menu-icon .navicon:after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: -5px;
}
#header .mobile-header .nav-menu {
  margin: 0;
  list-style: none;
  overflow: hidden;
  clear: both;
  max-height: 0;
  transition: all 0.5s;
  position: absolute;
  top: -1.7777777778rem;
  width: 100%;
  background-color: rgba(37, 20, 63, 0.85);
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/bg-menu-mobile.svg");
  z-index: 6;
}
#header .mobile-header .nav-menu .dropdown {
  padding: 1.7777777778rem;
  padding-top: 6rem;
}
#header .mobile-header .nav-menu .dropdown > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
}
#header .mobile-header .nav-menu .dropdown > li > a {
  color: #fff;
  position: relative;
  padding: 1.3333333333rem;
  transition: all 0.5s;
}
#header .mobile-header .nav-menu .dropdown > li.is-showed.menu-item-has-children > a:after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg id='angle-up'%3E%3Cpath id='Vector' d='M4.66654 8.21996C4.79145 8.34412 4.96041 8.41382 5.13654 8.41382C6.93778 8.41382 8.94436 8.41382 10.8299 8.41382C11.006 8.41382 11.175 8.34412 11.2999 8.21996C11.3624 8.15798 11.412 8.08425 11.4458 8.00301C11.4796 7.92177 11.4971 7.83463 11.4971 7.74662C11.4971 7.65862 11.4796 7.57148 11.4458 7.49024C11.412 7.409 11.3624 7.33527 11.2999 7.27329L8.47321 4.44662C8.41123 4.38414 8.3375 4.33454 8.25626 4.3007C8.17502 4.26685 8.08788 4.24942 7.99987 4.24942C7.91186 4.24942 7.82473 4.26685 7.74349 4.3007C7.66225 4.33454 7.58851 4.38414 7.52654 4.44662L4.66654 7.27329C4.60405 7.33527 4.55446 7.409 4.52061 7.49024C4.48677 7.57148 4.46934 7.65862 4.46934 7.74662C4.46934 7.83463 4.48677 7.92177 4.52061 8.00301C4.55446 8.08425 4.60405 8.15798 4.66654 8.21996Z' fill='%2325143F'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg id='angle-up'%3E%3Cpath id='Vector' d='M4.66654 8.21996C4.79145 8.34412 4.96041 8.41382 5.13654 8.41382C6.93778 8.41382 8.94436 8.41382 10.8299 8.41382C11.006 8.41382 11.175 8.34412 11.2999 8.21996C11.3624 8.15798 11.412 8.08425 11.4458 8.00301C11.4796 7.92177 11.4971 7.83463 11.4971 7.74662C11.4971 7.65862 11.4796 7.57148 11.4458 7.49024C11.412 7.409 11.3624 7.33527 11.2999 7.27329L8.47321 4.44662C8.41123 4.38414 8.3375 4.33454 8.25626 4.3007C8.17502 4.26685 8.08788 4.24942 7.99987 4.24942C7.91186 4.24942 7.82473 4.26685 7.74349 4.3007C7.66225 4.33454 7.58851 4.38414 7.52654 4.44662L4.66654 7.27329C4.60405 7.33527 4.55446 7.409 4.52061 7.49024C4.48677 7.57148 4.46934 7.65862 4.46934 7.74662C4.46934 7.83463 4.48677 7.92177 4.52061 8.00301C4.55446 8.08425 4.60405 8.15798 4.66654 8.21996Z' fill='%2325143F'/%3E%3C/g%3E%3C/svg%3E");
}
#header .mobile-header .nav-menu .dropdown > li.is-showed.menu-item-has-children .is-dropdown-submenu {
  max-height: 100vh;
  padding-bottom: 0.7777777778rem;
}
#header .mobile-header .nav-menu .dropdown > li:last-child { /* Bouton de contact */
  border: none;
}
#header .mobile-header .nav-menu .dropdown > li:last-child a div {
  width: calc(100% + 2.6666666667rem);
  margin-left: -1.3333333333rem;
}
#header .mobile-header .nav-menu .dropdown > li:last-child a:after {
  display: none;
}
#header .mobile-header .nav-menu .dropdown > li.active a {
  background: transparent;
  color: #C3B6EF;
}
#header .mobile-header .nav-menu .dropdown .is-dropdown-submenu-parent > a {
  pointer-events: none;
}
#header .mobile-header .nav-menu .dropdown .is-dropdown-submenu-parent > a:after {
  position: absolute;
  right: 1.3333333333rem;
  top: 50%;
  margin-top: -8px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='angle-down'%3E%3Cpath id='Vector' d='M11.3335 7.78004C11.2086 7.65588 11.0396 7.58618 10.8635 7.58618C9.06222 7.58618 7.05564 7.58618 5.17013 7.58618C4.994 7.58618 4.82504 7.65588 4.70013 7.78004C4.63764 7.84202 4.58805 7.91575 4.5542 7.99699C4.52036 8.07823 4.50293 8.16537 4.50293 8.25338C4.50293 8.34138 4.52036 8.42852 4.5542 8.50976C4.58805 8.591 4.63764 8.66473 4.70013 8.72671L7.52679 11.5534C7.58877 11.6159 7.6625 11.6655 7.74374 11.6993C7.82498 11.7332 7.91212 11.7506 8.00013 11.7506C8.08814 11.7506 8.17527 11.7332 8.25651 11.6993C8.33775 11.6655 8.41149 11.6159 8.47346 11.5534L11.3335 8.72671C11.3959 8.66473 11.4455 8.591 11.4794 8.50976C11.5132 8.42852 11.5307 8.34138 11.5307 8.25338C11.5307 8.16537 11.5132 8.07823 11.4794 7.99699C11.4455 7.91575 11.3959 7.84202 11.3335 7.78004Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='angle-down'%3E%3Cpath id='Vector' d='M11.3335 7.78004C11.2086 7.65588 11.0396 7.58618 10.8635 7.58618C9.06222 7.58618 7.05564 7.58618 5.17013 7.58618C4.994 7.58618 4.82504 7.65588 4.70013 7.78004C4.63764 7.84202 4.58805 7.91575 4.5542 7.99699C4.52036 8.07823 4.50293 8.16537 4.50293 8.25338C4.50293 8.34138 4.52036 8.42852 4.5542 8.50976C4.58805 8.591 4.63764 8.66473 4.70013 8.72671L7.52679 11.5534C7.58877 11.6159 7.6625 11.6655 7.74374 11.6993C7.82498 11.7332 7.91212 11.7506 8.00013 11.7506C8.08814 11.7506 8.17527 11.7332 8.25651 11.6993C8.33775 11.6655 8.41149 11.6159 8.47346 11.5534L11.3335 8.72671C11.3959 8.66473 11.4455 8.591 11.4794 8.50976C11.5132 8.42852 11.5307 8.34138 11.5307 8.25338C11.5307 8.16537 11.5132 8.07823 11.4794 7.99699C11.4455 7.91575 11.3959 7.84202 11.3335 7.78004Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
}
#header .mobile-header .nav-menu .dropdown .is-dropdown-submenu-parent .is-dropdown-submenu { /* ul */
  /* On supprime le comportement du dropdown au survol */
  position: relative;
  top: initial;
  right: initial;
  left: initial;
  background: transparent;
  border: none;
  display: block !important;
  max-height: 0;
  transition: all 0.5s;
  overflow: hidden;
}
#header .mobile-header .nav-menu .dropdown .is-dropdown-submenu-parent .is-dropdown-submenu li.active a {
  background: transparent;
  color: #C3B6EF;
}
#header .mobile-header .nav-menu .dropdown .is-dropdown-submenu-parent .is-dropdown-submenu li a {
  color: #FCFBFE;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.5555555556rem 0.4444444444rem 0.5555555556rem 1.7777777778rem;
}
#header .mobile-header .nav-menu .dropdown .is-dropdown-submenu-parent .is-dropdown-submenu li a:hover {
  color: #C3B6EF;
}

@media print, screen and (min-width: 64em) {
  .mobile-header {
    display: none;
  }
  #header {
    padding-top: 0;
  }
  #header .desktop-header { /* Menu sauf mobile */
    display: block;
  }
  #header .desktop-header .top-bar {
    background-color: rgba(37, 20, 63, 0.9);
    transition: background-color 0.5s ease-in-out;
    z-index: 5;
  }
  #header .desktop-header .top-bar .white-logo {
    display: block;
  }
  #header .desktop-header .top-bar .color-logo {
    display: none;
  }
  #header .desktop-header .top-bar .nav {
    width: 100%;
  }
  #header .desktop-header .top-bar .nav .grid-x {
    width: 100%;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.7777777778rem 0;
    position: relative;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.active a {
    background-color: transparent;
    color: #C3B6EF;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.menu-item-has-children > a {
    position: relative;
    padding-right: 1.7777777778rem;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.menu-item-has-children > a:after {
    position: absolute;
    right: 0.8888888889rem;
    top: 50%;
    margin-top: -8px;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='angle-down'%3E%3Cpath id='Vector' d='M11.3335 7.78004C11.2086 7.65588 11.0396 7.58618 10.8635 7.58618C9.06222 7.58618 7.05564 7.58618 5.17013 7.58618C4.994 7.58618 4.82504 7.65588 4.70013 7.78004C4.63764 7.84202 4.58805 7.91575 4.5542 7.99699C4.52036 8.07823 4.50293 8.16537 4.50293 8.25338C4.50293 8.34138 4.52036 8.42852 4.5542 8.50976C4.58805 8.591 4.63764 8.66473 4.70013 8.72671L7.52679 11.5534C7.58877 11.6159 7.6625 11.6655 7.74374 11.6993C7.82498 11.7332 7.91212 11.7506 8.00013 11.7506C8.08814 11.7506 8.17527 11.7332 8.25651 11.6993C8.33775 11.6655 8.41149 11.6159 8.47346 11.5534L11.3335 8.72671C11.3959 8.66473 11.4455 8.591 11.4794 8.50976C11.5132 8.42852 11.5307 8.34138 11.5307 8.25338C11.5307 8.16537 11.5132 8.07823 11.4794 7.99699C11.4455 7.91575 11.3959 7.84202 11.3335 7.78004Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='angle-down'%3E%3Cpath id='Vector' d='M11.3335 7.78004C11.2086 7.65588 11.0396 7.58618 10.8635 7.58618C9.06222 7.58618 7.05564 7.58618 5.17013 7.58618C4.994 7.58618 4.82504 7.65588 4.70013 7.78004C4.63764 7.84202 4.58805 7.91575 4.5542 7.99699C4.52036 8.07823 4.50293 8.16537 4.50293 8.25338C4.50293 8.34138 4.52036 8.42852 4.5542 8.50976C4.58805 8.591 4.63764 8.66473 4.70013 8.72671L7.52679 11.5534C7.58877 11.6159 7.6625 11.6655 7.74374 11.6993C7.82498 11.7332 7.91212 11.7506 8.00013 11.7506C8.08814 11.7506 8.17527 11.7332 8.25651 11.6993C8.33775 11.6655 8.41149 11.6159 8.47346 11.5534L11.3335 8.72671C11.3959 8.66473 11.4455 8.591 11.4794 8.50976C11.5132 8.42852 11.5307 8.34138 11.5307 8.25338C11.5307 8.16537 11.5132 8.07823 11.4794 7.99699C11.4455 7.91575 11.3959 7.84202 11.3335 7.78004Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    mask-size: cover;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.is-showed.menu-item-has-children > a {
    color: #C3B6EF;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.is-showed.menu-item-has-children > a:after {
    background-color: #C3B6EF;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg id='angle-up'%3E%3Cpath id='Vector' d='M4.66654 8.21996C4.79145 8.34412 4.96041 8.41382 5.13654 8.41382C6.93778 8.41382 8.94436 8.41382 10.8299 8.41382C11.006 8.41382 11.175 8.34412 11.2999 8.21996C11.3624 8.15798 11.412 8.08425 11.4458 8.00301C11.4796 7.92177 11.4971 7.83463 11.4971 7.74662C11.4971 7.65862 11.4796 7.57148 11.4458 7.49024C11.412 7.409 11.3624 7.33527 11.2999 7.27329L8.47321 4.44662C8.41123 4.38414 8.3375 4.33454 8.25626 4.3007C8.17502 4.26685 8.08788 4.24942 7.99987 4.24942C7.91186 4.24942 7.82473 4.26685 7.74349 4.3007C7.66225 4.33454 7.58851 4.38414 7.52654 4.44662L4.66654 7.27329C4.60405 7.33527 4.55446 7.409 4.52061 7.49024C4.48677 7.57148 4.46934 7.65862 4.46934 7.74662C4.46934 7.83463 4.48677 7.92177 4.52061 8.00301C4.55446 8.08425 4.60405 8.15798 4.66654 8.21996Z' fill='%2325143F'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cg id='angle-up'%3E%3Cpath id='Vector' d='M4.66654 8.21996C4.79145 8.34412 4.96041 8.41382 5.13654 8.41382C6.93778 8.41382 8.94436 8.41382 10.8299 8.41382C11.006 8.41382 11.175 8.34412 11.2999 8.21996C11.3624 8.15798 11.412 8.08425 11.4458 8.00301C11.4796 7.92177 11.4971 7.83463 11.4971 7.74662C11.4971 7.65862 11.4796 7.57148 11.4458 7.49024C11.412 7.409 11.3624 7.33527 11.2999 7.27329L8.47321 4.44662C8.41123 4.38414 8.3375 4.33454 8.25626 4.3007C8.17502 4.26685 8.08788 4.24942 7.99987 4.24942C7.91186 4.24942 7.82473 4.26685 7.74349 4.3007C7.66225 4.33454 7.58851 4.38414 7.52654 4.44662L4.66654 7.27329C4.60405 7.33527 4.55446 7.409 4.52061 7.49024C4.48677 7.57148 4.46934 7.65862 4.46934 7.74662C4.46934 7.83463 4.48677 7.92177 4.52061 8.00301C4.55446 8.08425 4.60405 8.15798 4.66654 8.21996Z' fill='%2325143F'/%3E%3C/g%3E%3C/svg%3E");
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.is-showed.menu-item-has-children .submenu { /* sous menu quand il est visible */
    transform: translateY(0);
    transition: translate 0.5s ease-out;
    box-shadow: rgba(37, 20, 63, 0.8) -16vh 100vh 0px 100vh;
    max-height: 100vh;
    transition: max-height 0.5s ease-out;
    border-top: 1px solid rgba(37, 20, 63, 0.2) !important;
    z-index: 3;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8888888889rem 1.3333333333rem;
    padding: 2.3333333333rem;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li.is-showed.menu-item-has-children .submenu .submenu {
    display: none !important;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li a {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0.8888888889rem;
    position: relative;
    z-index: 3;
    transition: all 0.5s;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li a .btn {
    margin-left: 1.7777777778rem;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li a:hover {
    color: #C3B6EF;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li:last-of-type a {
    padding: 0; /* pas de padding autour du bouton */
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu { /* Sous menu quand il n'est pas visible */
    border-radius: 0px 0px 16px 16px;
    border: none !important;
    background: rgb(255, 255, 255);
    left: -332px !important;
    width: 664px;
    transform: translateY(-20px);
    max-height: 0;
    overflow: hidden;
    z-index: 2;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu .submenu {
    display: none !important; /* On affiche pas les menus de 2ème niveau */
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu li {
    padding: 0;
    justify-content: left;
    flex: 1 1 calc(50% - 1.3333333333rem);
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu li a {
    color: #25143F;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    padding: 0;
    padding-left: 28px;
    position: relative;
    transition: all 0.5s;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu li a:hover {
    color: #C3B6EF;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu li a:before {
    content: "";
    display: block;
    height: 24px;
    width: 24px;
    background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/purple-arrow-right.svg");
    position: absolute;
    left: 0;
    top: 1px;
  }
  #header .desktop-header .top-bar .nav .grid-x .nav-menu ul > li .submenu li.current-menu-item a {
    color: #C3B6EF;
  }
  #header .desktop-header .top-bar.is-stuck, #header .desktop-header .top-bar.menu-active { /* Menu sur fond blanc */
    background-color: #fff;
  }
  #header .desktop-header .top-bar.is-stuck .white-logo, #header .desktop-header .top-bar.menu-active .white-logo {
    display: none;
  }
  #header .desktop-header .top-bar.is-stuck .color-logo, #header .desktop-header .top-bar.menu-active .color-logo {
    display: block;
  }
  #header .desktop-header .top-bar.is-stuck .nav .nav-menu ul li a, #header .desktop-header .top-bar.menu-active .nav .nav-menu ul li a {
    color: #25143F;
  }
  #header .desktop-header .top-bar.is-stuck .nav .nav-menu ul li.menu-item-has-children a, #header .desktop-header .top-bar.menu-active .nav .nav-menu ul li.menu-item-has-children a {
    position: relative;
  }
  #header .desktop-header .top-bar.is-stuck .nav .nav-menu ul li.menu-item-has-children a:after, #header .desktop-header .top-bar.menu-active .nav .nav-menu ul li.menu-item-has-children a:after {
    background-color: #25143F;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='angle-down'%3E%3Cpath id='Vector' d='M11.3335 7.78004C11.2086 7.65588 11.0396 7.58618 10.8635 7.58618C9.06222 7.58618 7.05564 7.58618 5.17013 7.58618C4.994 7.58618 4.82504 7.65588 4.70013 7.78004C4.63764 7.84202 4.58805 7.91575 4.5542 7.99699C4.52036 8.07823 4.50293 8.16537 4.50293 8.25338C4.50293 8.34138 4.52036 8.42852 4.5542 8.50976C4.58805 8.591 4.63764 8.66473 4.70013 8.72671L7.52679 11.5534C7.58877 11.6159 7.6625 11.6655 7.74374 11.6993C7.82498 11.7332 7.91212 11.7506 8.00013 11.7506C8.08814 11.7506 8.17527 11.7332 8.25651 11.6993C8.33775 11.6655 8.41149 11.6159 8.47346 11.5534L11.3335 8.72671C11.3959 8.66473 11.4455 8.591 11.4794 8.50976C11.5132 8.42852 11.5307 8.34138 11.5307 8.25338C11.5307 8.16537 11.5132 8.07823 11.4794 7.99699C11.4455 7.91575 11.3959 7.84202 11.3335 7.78004Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='angle-down'%3E%3Cpath id='Vector' d='M11.3335 7.78004C11.2086 7.65588 11.0396 7.58618 10.8635 7.58618C9.06222 7.58618 7.05564 7.58618 5.17013 7.58618C4.994 7.58618 4.82504 7.65588 4.70013 7.78004C4.63764 7.84202 4.58805 7.91575 4.5542 7.99699C4.52036 8.07823 4.50293 8.16537 4.50293 8.25338C4.50293 8.34138 4.52036 8.42852 4.5542 8.50976C4.58805 8.591 4.63764 8.66473 4.70013 8.72671L7.52679 11.5534C7.58877 11.6159 7.6625 11.6655 7.74374 11.6993C7.82498 11.7332 7.91212 11.7506 8.00013 11.7506C8.08814 11.7506 8.17527 11.7332 8.25651 11.6993C8.33775 11.6655 8.41149 11.6159 8.47346 11.5534L11.3335 8.72671C11.3959 8.66473 11.4455 8.591 11.4794 8.50976C11.5132 8.42852 11.5307 8.34138 11.5307 8.25338C11.5307 8.16537 11.5132 8.07823 11.4794 7.99699C11.4455 7.91575 11.3959 7.84202 11.3335 7.78004Z' fill='%23000'/%3E%3C/g%3E%3C/svg%3E");
  }
  #header .desktop-header .top-bar.is-stuck .nav .btn, #header .desktop-header .top-bar.menu-active .nav .btn {
    background-color: #25143F;
    color: #fff;
  }
  #header .desktop-header .top-bar.is-stuck .nav .btn:hover, #header .desktop-header .top-bar.menu-active .nav .btn:hover {
    background: #4F4069;
    color: #fff;
  }
}
.header-page {
  position: relative;
  overflow: hidden;
  background: #F0F8E1;
  z-index: 0;
}
.header-page h1 {
  margin-bottom: 1rem;
}
.header-page .separator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.mobizel-jobs {
  position: relative;
  margin: 6rem auto;
  color: #ffffff;
}
.mobizel-jobs h2, .mobizel-jobs h3, .mobizel-jobs h4 {
  color: #ffffff;
}
.mobizel-jobs .list li::before {
  color: #ffffff;
}
.mobizel-jobs .image-block {
  display: flex;
  position: absolute;
  width: 40%;
  z-index: -3;
  right: 0;
  top: 46px;
  height: 100%;
  transform: skewY(5deg);
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
.mobizel-jobs .image-block img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transform: skewY(-5deg) scale(1.2);
}
.mobizel-jobs::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #0A2157;
  border-radius: 0 20px 20px 0;
  width: 96%;
  transform: skewY(-6deg);
}
@media print, screen and (min-width: 40em) {
  .mobizel-jobs::before {
    width: 62%;
  }
}
@media print, screen and (min-width: 64em) {
  .mobizel-jobs::before {
    width: 70%;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .mobizel-jobs .align-right {
    justify-content: flex-start;
  }
}

.mobizel-tools {
  position: relative;
  margin: 6rem auto;
}
.mobizel-tools ul.list li {
  list-style: none;
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/puce-violette.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 0 7px;
  padding-left: 30px;
  margin-bottom: 1.6rem;
}
.mobizel-tools ul.list li::before {
  color: #4569f1;
}
.mobizel-tools .button {
  padding: 17px 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 2px 5px 0px rgba(64, 72, 81, 0.1), 0px 10px 14px 0px rgba(64, 72, 81, 0.05);
  color: #101827;
}
.mobizel-tools .button:hover {
  color: #ffffff;
  background: #4569f1;
  box-shadow: 0 2px 5px 0 rgba(64, 72, 81, 0), 0 10px 14px 0 rgba(64, 72, 81, 0);
}
.mobizel-tools .image-block {
  position: relative;
}
.mobizel-tools .image-block img {
  border-radius: 20px;
  border: 1px solid rgba(10, 33, 87, 0.1);
}
@media print, screen and (max-width: 63.99875em) {
  .mobizel-tools .image-block img {
    border-radius: 10px;
  }
}
.mobizel-tools .image-block svg {
  position: absolute;
  z-index: -1;
  width: 70%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.mobizel-tools::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #F3F4F6;
  border-radius: 0 20px 20px 0;
  width: 96%;
  transform: skewY(-6deg);
}
@media print, screen and (min-width: 40em) {
  .mobizel-tools::before {
    width: 62%;
  }
}
@media print, screen and (min-width: 64em) {
  .mobizel-tools::before {
    width: 70%;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .mobizel-tools .align-right {
    justify-content: flex-start;
  }
}

.newsletter {
  background: #ffffff;
  border-radius: 30px;
}
.newsletter input, .newsletter select {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .newsletter .email-field {
    padding-right: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .newsletter .select-field {
    padding-right: 1rem;
  }
}

.cahier-charge {
  background: #ffffff;
  border-radius: 30px;
}
.cahier-charge input, .cahier-charge select {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .cahier-charge .email-field {
    padding-right: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .cahier-charge .select-field {
    padding-right: 1rem;
  }
}
.cahier-charge .cta {
  max-width: 250px;
  width: 100%;
  margin: auto;
}
.cahier-charge .cahier-charge_mentions {
  font-size: 14px;
  color: #404851;
}
.cahier-charge .cahier-charge_mentions a {
  text-decoration: underline;
  color: #404851;
}

body.page-template-about section.welove .accordion .accordion-item .accordion-content {
  padding-top: 0;
}
@media print, screen and (max-width: 63.99875em) {
  body.page-template-about section.welove .accordion .accordion-item .accordion-content {
    text-align: center;
  }
}
@media print, screen and (min-width: 64em) {
  body.page-template-about section.welove .tabs-content .tabs-panel {
    padding-left: 6rem;
  }
}
body.page-template-about section.welove img {
  display: block;
  margin: 0 auto 2rem auto;
}
body.page-template-about section.team .button {
  margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  body.page-template-about section.team {
    text-align: center;
  }
  body.page-template-about section.team .button {
    margin-top: 2rem;
  }
  body.page-template-about section.team .b-shadow, body.page-template-about section.team body.page-template-methodology .methodology-section .icon, body.page-template-methodology .methodology-section body.page-template-about section.team .icon, body.page-template-about section.team .cat-link:hover, body.page-template-about section.team .newsletter, body.page-template-about section.team .cahier-charge {
    box-shadow: none;
  }
}

body.archive .category-name-and-description,
body.page-template-blog .category-name-and-description,
body.page-template-projects .category-name-and-description {
  text-align: center;
}
body.archive .category-name-and-description .category-description,
body.page-template-blog .category-name-and-description .category-description,
body.page-template-projects .category-name-and-description .category-description {
  font-size: 1rem;
  line-height: 1.54;
  margin-top: 1.6666666667rem;
  font-weight: 600;
}
body.archive .category-name-and-description .category-name,
body.page-template-blog .category-name-and-description .category-name,
body.page-template-projects .category-name-and-description .category-name {
  font-size: 1.1111111111rem;
  font-weight: 600;
}
body.archive .inner-content,
body.page-template-blog .inner-content,
body.page-template-projects .inner-content {
  padding-top: 1.6666666667rem;
}
@media print, screen and (min-width: 40em) {
  body.archive .inner-content,
  body.page-template-blog .inner-content,
  body.page-template-projects .inner-content {
    padding-top: 2.7777777778rem;
  }
}
@media print, screen and (min-width: 64em) {
  body.archive .inner-content,
  body.page-template-blog .inner-content,
  body.page-template-projects .inner-content {
    padding-top: 4.1666666667rem;
  }
}

.contact {
  margin-top: -1.7777777778rem;
}
.contact .hero-bloc .hero-bloc-content .hero-bloc-content_item {
  margin-bottom: 1rem;
  border-radius: 10px 10px 10px 0;
  background: #FFF;
  box-shadow: 0 2px 5px 0 rgba(64, 72, 81, 0.1);
  font-weight: 600;
  line-height: 1.5rem;
  text-align: left;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: start;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.contact .hero-bloc .hero-bloc-content .hero-bloc-content_item:first-child {
  color: #0A2157;
  font-weight: 600;
  line-height: 1.5rem;
}
.contact .hero-bloc .hero-bloc-content .hero-bloc-content_item:first-child p {
  color: #0A2157;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.contact .hero-bloc .hero-bloc-content .hero-bloc-content_item p {
  color: #1F2937;
  font-size: 16px;
  margin: 0;
}
.contact .hero-bloc .hero-bloc-infos {
  display: none;
  padding: 2rem 1.25rem;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 10px 14px 0 rgba(64, 72, 81, 0.05), 0 2px 5px 0 rgba(64, 72, 81, 0.1);
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  list-style: none;
  margin: 0;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #0A2157;
  font-weight: 600;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li .hero-bloc-infos_icon {
  border-radius: 15px;
  background: rgba(195, 182, 239, 0.1);
  flex-shrink: 0;
  display: flex;
  padding: 0.75rem;
  align-items: flex-start;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li .hero-bloc-infos_icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li .hero-bloc-infos_icon svg path {
  fill: #C3B6EF !important;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li .hero-bloc-infos_adress {
  gap: 0;
  margin: 0;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li .hero-bloc-infos_adress li {
  color: #68738C;
  font-size: 18px;
  line-height: 1.8rem;
  font-weight: 400;
}
.contact .hero-bloc .hero-bloc-infos .hero-bloc-infos_list li .hero-bloc-infos_adress li:first-child {
  color: #0A2157;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8rem;
}
.contact .map {
  width: 100%;
  height: 400px;
}
.contact #map {
  height: 100%;
}

@media print, screen and (min-width: 64em) {
  .contact .hero-bloc {
    display: flex;
    justify-content: space-between;
    margin-bottom: -60px;
  }
  .contact .hero-bloc .hero-bloc-content {
    padding: 0;
    max-width: 570px;
  }
  .contact .hero-bloc .hero-bloc-infos {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact .hero-bloc:after {
    height: 590px;
  }
  .contact .formulaire-contact {
    margin-bottom: 60px;
  }
  .contact .formulaire-contact .formulaire-contact_content {
    width: 60%;
    margin-top: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .contact .hero-bloc .hero-bloc-infos {
    width: 400px;
  }
}
.error404 .game {
  text-align: center;
  margin-top: 2rem;
}
.error404 .game .game-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.error404 .game .img-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 1.8px 2.8px rgba(0, 0, 0, 0.024), 0 5px 12.8px rgba(0, 0, 0, 0.035), 0 12.1px 34.6px rgba(0, 0, 0, 0.046), 0 40px 98px rgba(0, 0, 0, 0.07);
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 1rem auto;
  position: relative;
}
.error404 .game .img-wrapper .button-wrapper {
  z-index: 1;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
}
.error404 .game .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: 0.25s;
}
.error404 .game .img-wrapper:hover::after {
  opacity: 0;
  transition: 0.25s;
}

.home {
  /***** Hero Home *****/
  /***** Accompagnement *****/
  /***** Expertise Mobile *****/
  /***** Nos projets *****/
  /***** Partage Expertise *****/
  /***** L'agence mobile *****/
  /***** Choix Mobizel *****/
}
.home .hero-home {
  padding-top: 3.8888888889rem;
  margin-bottom: 1.3333333333rem;
  overflow: hidden;
  /*background: linear-gradient(180deg, $dark-purple 84.5%, #120A2E 100%);*/
  background: rgba(37, 20, 63, 0.9);
  position: relative;
}
.home .hero-home .hero-home_container {
  display: flex;
  align-items: center;
}
.home .hero-home .hero-home_container .hero-home_container-item {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content {
  align-self: top;
}
.home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content .btn {
  margin-bottom: 3.1111111111rem;
  width: 100%;
}
.home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content img {
  display: block;
  margin: auto;
  max-height: 300px;
}
.home .hero-home .conception {
  font-weight: 700;
  font-size: 1.5rem;
  color: #9CCC33;
  display: block;
  margin-bottom: -8px;
}
.home .hero-home p {
  margin-bottom: 2rem;
  color: #fff;
}
.home .hero-home .scrolling-words-container {
  display: flex;
  align-items: center;
  font-size: 27px;
  font-weight: 900;
  color: #0A2157;
}
.home .hero-home .scrolling-words-container p {
  font-weight: 700;
}
@media print, screen and (min-width: 64em) {
  .home .hero-home .scrolling-words-container {
    font-size: 38px;
  }
}
@media screen and (min-width: 90em) {
  .home .hero-home .scrolling-words-container {
    font-size: 2.5rem;
  }
}
.home .hero-home .scrolling-words-box {
  height: 3rem;
  overflow: hidden;
}
.home .hero-home .scrolling-words-box ul {
  margin: 0 1rem;
  padding: 0;
  animation: scrollUp 4s infinite;
}
.home .hero-home .scrolling-words-box ul li {
  display: flex;
  align-items: center;
  height: 3rem;
  list-style: none;
}
.home .hero-home .mesure {
  color: #0A2157;
  font-size: 1.5rem;
  display: block;
  margin-top: -8px;
}
@keyframes scrollUp {
  15%, 25% {
    transform: translateY(-20%);
  }
  40%, 50% {
    transform: translateY(-40%);
  }
  65%, 75% {
    transform: translateY(-60%);
  }
  90%, 100% {
    transform: translateY(-80%);
  }
}
.home .accompagnement {
  margin-bottom: 2.6111111111rem;
}
.home .accompagnement .scroll-horizontal-mobile {
  gap: 10px;
}
.home .accompagnement .scroll-horizontal-mobile .cell {
  flex: 0 0 40%;
  min-width: 40%;
}
.home .expertise-mobile {
  position: relative;
  margin-bottom: 2.6666666667rem;
}
.home .expertise-mobile p {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.home .expertise-mobile .btn {
  font-weight: 600;
  color: #25143F;
}
.home .expertise-mobile .btn_conseil {
  background: #CAACF7;
}
.home .expertise-mobile .btn_conseil:hover {
  background: #DFCCFA;
}
.home .expertise-mobile .btn_conception {
  background: #9EBAFF;
}
.home .expertise-mobile .btn_conception:hover {
  background: #C2D3FF;
}
.home .expertise-mobile .btn_design {
  background: #FED652;
}
.home .expertise-mobile .btn_design:hover {
  background: #FFE285;
}
.home .expertise-mobile .btn_developpement {
  background: #8BECF4;
}
.home .expertise-mobile .btn_developpement:hover {
  background: #B9F3F8;
}
.home .expertise-mobile .btn_recette-et-publication {
  background: #F07593;
}
.home .expertise-mobile .btn_recette-et-publication:hover {
  background: #F5A3B7;
}
.home .expertise-mobile .btn_maintenance-et-evolutions {
  background: #FDB663;
}
.home .expertise-mobile .btn_maintenance-et-evolutions:hover {
  background: #FECB90;
}
.home .expertise-mobile .tabs-home .accordion { /* Version mobile */
  background: transparent;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-title {
  color: #25143F;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-title:hover {
  color: #25143F;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item.title-conseil a:after {
  background: #CAACF7;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item.title-conception a:after {
  background: #9EBAFF;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item.title-design a:after {
  background: #FED652;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item.title-developpement a:after {
  background: #8BECF4;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item.title-recette-et-publication a:after {
  background: #F07593;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item.title-maintenance-et-evolutions a:after {
  background: #FDB663;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-content {
  border-radius: 32px;
  background: rgba(37, 20, 63, 0.04);
  margin-bottom: 1.7777777778rem;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-content p {
  line-height: 30px;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-content .panel-visuel {
  width: 235px;
  margin: auto;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-content .panel-visuel img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .expertise-mobile .tabs-home .accordion .accordion-item .accordion-content h3 {
  margin-bottom: 0.4444444444rem;
}
.home .nos-projets {
  margin-bottom: 3.5rem;
}
.home .nos-projets h2 {
  color: #25143F;
  margin-bottom: 1.7777777778rem;
}
.home .nos-projets .scroll-horizontal-mobile {
  gap: 10px;
}
.home .nos-projets .scroll-horizontal-mobile .cell {
  flex: 0 0 80%; /* Chaque projet occupe 80% de la largeur */
  min-width: 80%;
  display: flex;
  flex-direction: column;
}
.home .nos-projets .scroll-horizontal-mobile .cell img {
  margin-bottom: 1.3333333333rem;
}
.home .nos-projets .scroll-horizontal-mobile .cell .projet-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1; /* pour que le contenu prenne toute la hauteur disponible */
}
.home .nos-projets .scroll-horizontal-mobile .cell .projet-content .projet-content-1 h3 {
  text-align: left;
  font-size: 1.7777777778rem;
  color: #25143F;
}
.home .nos-projets .scroll-horizontal-mobile .cell .projet-content .projet-content-1 p {
  text-align: left;
  color: #4B4554;
  font-size: 16px; /* ajustement pour contenu */
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.3333333333rem;
}
.home .nos-projets .scroll-horizontal-mobile .cell .projet-content a {
  width: 100%;
  background: #25143F;
  color: #FFF;
  font-size: 16px; /* ajustement pour contenu */
  padding: 16px 16px; /* ajustement pour contenu */
}
.home .nos-projets .scroll-horizontal-mobile .cell .projet-content a:hover {
  background: #4F4069;
}
.home .nos-projets .link {
  margin: auto;
  margin-top: 1.7777777778rem;
  display: inline-block;
}
.home .partage-expertise {
  background-color: #25143F;
  padding-top: 3.1111111111rem;
  margin-bottom: 4.4444444444rem;
  max-width: 100%;
}
.home .partage-expertise h2 {
  color: #fff;
  margin-bottom: 1.3333333333rem;
}
.home .partage-expertise p {
  color: #fff;
  margin-bottom: 1.7777777778rem;
}
.home .partage-expertise .scroll-horizontal-mobile {
  gap: 10px;
  margin-bottom: 1.7777777778rem;
}
.home .partage-expertise .scroll-horizontal-mobile .cell-icon {
  flex: 0 0 40%;
  min-width: 40%;
  padding-left: 0.2222222222rem;
  padding-right: 0.2222222222rem;
}
.home .partage-expertise .scroll-horizontal-mobile .cell-icon a {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 16px;
  transition: all 0.5s;
  color: #fff;
  padding: 1.7777777778rem;
  font-size: 14px;
}
.home .partage-expertise .scroll-horizontal-mobile .cell-icon a .icon {
  display: flex;
  width: 84px;
  height: 84px;
  padding: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: rgba(25, 14, 43, 0.9);
  margin-bottom: 0.4444444444rem;
}
.home .partage-expertise .scroll-horizontal-mobile .cell-icon a:hover {
  border: 1px solid rgba(229, 219, 255, 0.6);
  background: rgba(25, 14, 43, 0.75);
  box-shadow: 0px 3px 16px 0px rgba(229, 219, 255, 0.25);
}
.home .partage-expertise .btn {
  margin-bottom: 3.1111111111rem;
}
.home .agence-mobile .intro {
  color: #1F2937;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.home .agence-mobile .grid1 {
  margin-bottom: 2.1111111111rem;
}
.home .agence-mobile .grid2 .nos-solutions {
  margin-bottom: 1.7777777778rem;
}
.home .agence-mobile .grid2 .nos-solutions .bloc {
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/home/mosaique-metiers.png");
  background-repeat: no-repeat;
  background-size: contain; /* ou 'cover' selon ton besoin */
  background-position: calc(100% + 50px) center; /* Décale de -100px */
}
.home .agence-mobile .grid2 .nos-solutions .bloc a {
  margin-bottom: 1.7777777778rem;
}
.home .agence-mobile .grid2 .nos-technologies {
  margin-bottom: 1.7777777778rem;
}
.home .agence-mobile .grid2 .bloc {
  padding: 1.7777777778rem;
  flex-shrink: 0;
  border-radius: 24px;
  background-color: #25143F;
  height: 100%;
}
.home .agence-mobile .grid2 .bloc img {
  display: block;
  margin: auto;
  margin-bottom: 0.8888888889rem;
}
.home .agence-mobile .grid2 .bloc h3 {
  color: #fff;
}
.home .agence-mobile .grid2 .bloc p {
  color: #fff;
}
.home .choix-mobizel .grid-x {
  border-radius: 24px;
  border: 1px solid rgba(37, 20, 63, 0.1);
  background: linear-gradient(0deg, rgba(229, 219, 255, 0.5) 0%, rgba(229, 219, 255, 0.5) 100%), url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/choix-mobizel.svg") left bottom no-repeat;
  padding: 1.7777777778rem;
  margin-bottom: 1.7777777778rem;
}
.home .choix-mobizel .grid-x h2 {
  color: #25143F;
}

@media print, screen and (min-width: 64em) {
  .home .hero-home {
    padding-top: 0;
    margin-bottom: 4.4444444444rem;
  }
  .home .hero-home:before {
    content: "";
    width: 410px;
    height: 386px;
    transform: rotate(-7.021deg);
    flex-shrink: 0;
    aspect-ratio: 409.94/386.31;
    border-radius: 64px;
    opacity: 0.3;
    background: #E5DBFF;
    display: block;
    filter: blur(6px);
    position: absolute;
    left: -224px;
    bottom: -260px;
  }
  .home .hero-home:after {
    content: "";
    background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/home/bg-visuel.svg");
    width: 655px;
    height: 725px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home .hero-home .hero-home_container .hero-home_container-item {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    max-height: 100%;
    align-items: center;
  }
  .home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content {
    grid-column: span 5/span 5;
  }
  .home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content h1 {
    margin-bottom: 1.7222222222rem;
  }
  .home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-content .btn {
    width: initial;
  }
  .home .hero-home .hero-home_container .hero-home_container-item img {
    max-height: 100%;
  }
  .home .hero-home .hero-home_container .hero-home_container-item .hero-home_container-lottie {
    display: block;
    grid-column: span 7/span 7;
    padding-left: 7.6111111111rem;
    padding-bottom: 3.6111111111rem;
    position: relative;
  }
  .home .accompagnement {
    margin-bottom: 7.4444444444rem;
  }
  .home .expertise-mobile {
    margin-bottom: 8.4444444444rem;
  }
  .home .expertise-mobile .tabs-home .tabs {
    background-color: transparent;
  }
  .home .expertise-mobile .tabs-home .tabs .tabs-title.title-conseil:after {
    background: #CAACF7;
  }
  .home .expertise-mobile .tabs-home .tabs .tabs-title.title-conception:after {
    background: #9EBAFF;
  }
  .home .expertise-mobile .tabs-home .tabs .tabs-title.title-design:after {
    background: #FED652;
  }
  .home .expertise-mobile .tabs-home .tabs .tabs-title.title-developpement:after {
    background: #8BECF4;
  }
  .home .expertise-mobile .tabs-home .tabs .tabs-title.title-recette-et-publication:after {
    background: #F07593;
  }
  .home .expertise-mobile .tabs-home .tabs .tabs-title.title-maintenance-et-evolutions:after {
    background: #FDB663;
  }
  .home .expertise-mobile .cell {
    padding-left: 2.2222222222rem;
  }
  .home .expertise-mobile .cell .tabs-content { /* uniquement en version > mobile */
    border-radius: 32px;
    background: rgba(37, 20, 63, 0.03);
    height: 100%;
  }
  .home .expertise-mobile .cell .tabs-content p {
    line-height: 30px;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel {
    padding: 3.3333333333rem 5.3333333333rem;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel .panel-visuel {
    height: 240px;
    margin: auto;
    margin-bottom: 0.7222222222rem;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel .panel-visuel img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel a {
    color: #25143F;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel a:hover {
    color: #25143F;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel h3 {
    margin-bottom: 0.2222222222rem;
  }
  .home .expertise-mobile .cell .tabs-content .tabs-panel.is-active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .home .nos-projets {
    margin-bottom: 5.7222222222rem;
  }
  .home .nos-projets h2 {
    margin-bottom: 2.2222222222rem;
  }
  .home .nos-projets .projets-container {
    gap: 32px;
  }
  .home .nos-projets .projets-container .cell .projet-content .projet-content-1 p {
    color: #68738C;
    font-size: 18px;
  }
  .home .partage-expertise {
    padding-top: 4.4444444444rem;
    margin-bottom: 9.3888888889rem;
  }
  .home .partage-expertise > .grid-x p {
    max-width: 960px;
  }
  .home .partage-expertise > .grid-x .scroll-horizontal-mobile {
    max-width: 960px;
  }
  .home .partage-expertise > .grid-x .btn {
    margin-bottom: 4.4444444444rem;
  }
  .home .agence-mobile .grid1 {
    margin-bottom: 2.6666666667rem;
  }
  .home .agence-mobile .grid2 .bloc {
    margin-bottom: 2.6666666667rem;
  }
  .home .choix-mobizel {
    margin-bottom: 3.1111111111rem;
  }
  .home .choix-mobizel p {
    max-width: 700px;
  }
}
.single article h1 {
  color: #292d32;
}
.single article h2,
.single article h3,
.single article h4,
.single article p,
.single article ul,
.single article ol {
  color: #3a4256;
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
}
.single article .article-header {
  padding: 4.6666666667rem 0;
}
@media print, screen and (min-width: 40em) {
  .single article .article-header {
    padding: 4.6666666667rem 0 3rem 0;
  }
}
@media print, screen and (min-width: 64em) {
  .single article .article-header {
    padding: 5rem 0 4rem 0;
  }
}
.single article .article-header .byline {
  margin-bottom: 0;
}
.single article .article-header #breadcrumbs a {
  color: #25143F;
  transition: all 0.5s;
}
.single article .article-header #breadcrumbs a:hover {
  color: #C3B6EF;
}
.single article .article-header #breadcrumbs span {
  color: #25143F;
}
.single article .post-banner-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
  right: -50%;
  max-width: 120%;
  width: 1200px;
  text-align: center;
}
.single article .post-banner-wrapper img {
  border-radius: 10px;
  position: relative;
  left: -50%;
}
@media print, screen and (min-width: 40em) {
  .single article .post-banner-wrapper {
    margin-bottom: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single article .post-banner-wrapper {
    margin-bottom: 4rem;
  }
}
.single article h1 {
  margin-bottom: 1.7777777778rem;
}
.single article .entry-content h2 {
  font-weight: 400;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .single article .entry-content h2 {
    font-size: 1.7777777778rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single article .entry-content h2 {
    font-size: 2rem;
    margin-bottom: 2.2222222222rem;
  }
}
.single article .entry-content h3 {
  font-weight: 700;
  margin-bottom: 1.4444444444rem;
}
.single article .entry-content p,
.single article .entry-content ul,
.single article .entry-content ol {
  font-size: 0.8888888889rem;
  line-height: 1.55;
  margin-bottom: 2.2222222222rem;
}
@media print, screen and (min-width: 40em) {
  .single article .entry-content p,
  .single article .entry-content ul,
  .single article .entry-content ol {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single article .entry-content p,
  .single article .entry-content ul,
  .single article .entry-content ol {
    font-size: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single article .entry-content p.byline,
  .single article .entry-content ul.byline,
  .single article .entry-content ol.byline {
    font-size: 1rem;
  }
}
.single article .entry-content p + h2,
.single article .entry-content ul + h2,
.single article .entry-content ol + h2 {
  padding-top: 2.2222222222rem;
}
.single article .entry-content ul,
.single article .entry-content ol {
  list-style: none;
}
.single article .entry-content ul li,
.single article .entry-content ol li {
  margin-bottom: 1.1111111111rem;
  position: relative;
  margin-left: 2rem;
}
.single article .entry-content ul:not(.blocks-gallery-grid) li::before {
  content: "•";
  color: #C3B6EF;
  position: absolute;
  left: -1.8rem;
}
@media print, screen and (min-width: 40em) {
  .single article .entry-content ul:not(.blocks-gallery-grid) li::before {
    font-size: 1.4rem;
    top: -5px;
  }
}
.single article .entry-content ol {
  counter-reset: li;
}
.single article .entry-content ol li {
  counter-increment: li;
}
.single article .entry-content ol li::before {
  content: counter(li) ".";
  color: #9CCC33;
  position: absolute;
  left: -1.5rem;
  font-weight: 700;
}
.single article .entry-content li ul,
.single article .entry-content li ol {
  margin-top: 1.1111111111rem;
}
.single article .entry-content li ul li::before {
  content: "᳃";
  color: #404851;
  font-weight: 600;
}
@media print, screen and (min-width: 40em) {
  .single article .entry-content li ul li::before {
    font-size: 1rem;
    top: 0.1111111111rem;
  }
}
.single article .marvel {
  width: 100%;
}
.single article .sharing hr {
  width: 5.5555555556rem;
  margin: 3.3333333333rem auto;
}
.single article .sharing p {
  color: #68738C;
}
.single article .sharing h3 {
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1111111111rem;
  margin-bottom: 0.3333333333rem;
}
.single article .stores a::before {
  content: none;
}
.single article .tags {
  font-size: 0.7777777778rem;
}
.single article .article-footer h2 {
  font-size: 1.8888888889rem;
  color: #0A2157;
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 600;
}
.single article .article-footer .button {
  background-color: #25143F;
}
.single article .article-footer .button:hover {
  background-color: #4F4069;
}

@media print, screen and (max-width: 39.99875em) {
  body.page-template-methodology .header-page {
    padding-bottom: 5rem;
  }
}
body.page-template-methodology section.introduction > .cell {
  padding: 0 !important;
}
body.page-template-methodology section.introduction .cat-link {
  border: 1px solid #EEF0F4;
}
body.page-template-methodology .methodology-section {
  position: relative;
}
@media print, screen and (max-width: 39.99875em) {
  body.page-template-methodology .methodology-section {
    transform: translateY(3.3333333333rem);
    z-index: 0;
  }
}
body.page-template-methodology .methodology-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  background: #EDF6FC;
  width: 96%;
}
@media print, screen and (min-width: 40em) {
  body.page-template-methodology .methodology-section::before {
    width: 80%;
  }
}
@media print, screen and (min-width: 64em) {
  body.page-template-methodology .methodology-section::before {
    width: 55%;
  }
}
body.page-template-methodology .methodology-section.left::before {
  left: 0;
  transform: skewY(-6deg);
  border-radius: 0 20px 20px 0;
}
body.page-template-methodology .methodology-section.right::before {
  right: 0;
  transform: skewY(5deg);
  border-radius: 20px 0 0 20px;
}
body.page-template-methodology .methodology-section.right .grid-x {
  transform: translateY(-2rem);
}
body.page-template-methodology .methodology-section#conception::before {
  background: #eef7f2;
}
body.page-template-methodology .methodology-section#conception .icon svg {
  fill: #19CA95;
}
body.page-template-methodology .methodology-section#conception .list li::before {
  color: #19CA95;
}
body.page-template-methodology .methodology-section#design::before {
  background: #fdecf3;
}
body.page-template-methodology .methodology-section#design .icon svg {
  fill: #F81A8F;
}
body.page-template-methodology .methodology-section#design .list li::before {
  color: #F81A8F;
}
body.page-template-methodology .methodology-section#developpement::before {
  background: #edf1fd;
}
body.page-template-methodology .methodology-section#developpement .icon svg {
  fill: #5475F2;
}
body.page-template-methodology .methodology-section#developpement .list li::before {
  color: #5475F2;
}
body.page-template-methodology .methodology-section#test::before {
  background: #fdf3ec;
}
body.page-template-methodology .methodology-section#test .icon svg {
  fill: #f38947;
}
body.page-template-methodology .methodology-section#test .list li::before {
  color: #f38947;
}
body.page-template-methodology .methodology-section#maintenance::before {
  background: #F1E8F7;
}
body.page-template-methodology .methodology-section#maintenance .icon svg {
  fill: #741FB8;
}
body.page-template-methodology .methodology-section .icon {
  display: inline-flex;
  background: #ffffff;
  padding: 0.83333rem;
  border-radius: 1.6666666667rem;
  transform: translateY(-3.5rem);
}
body.page-template-methodology .methodology-section .icon svg {
  vertical-align: middle;
  width: 3.33333rem;
  height: 3.33333rem;
}
body.page-template-methodology .methodology-section .list {
  font-weight: 700;
  color: #0A2157;
}
body.page-template-methodology .divider {
  position: relative;
  height: 5rem;
}
body.page-template-methodology .divider.small {
  height: 3.3333333333rem;
}
@media print, screen and (min-width: 40em) {
  body.page-template-methodology .divider {
    height: 11.1111111111rem;
  }
  body.page-template-methodology .divider.small {
    height: 5.5555555556rem;
  }
}
body.page-template-methodology .divider img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: -3;
  height: 860px;
  top: -350px;
}
body.page-template-methodology .highlighted-projects a img {
  transition: all 0.25s ease;
}
body.page-template-methodology .highlighted-projects a:hover img {
  transform: scale(1.02) translateY(-0.2rem);
}

body.page-template section.introduction > .cell {
  transform: translateY(-2.5rem);
}
@media print, screen and (min-width: 40em) {
  body.page-template section.introduction > .cell {
    padding: 2.5rem;
    transform: translateY(-6rem);
  }
}
@media print, screen and (min-width: 64em) {
  body.page-template section.introduction > .cell {
    padding: 3.5rem;
    transform: translateY(-8rem);
  }
}

.projects {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.projects p {
  font-size: 14px;
  line-height: 22px;
}

section.project-box {
  margin: 0;
}

.project-box .project-box-item {
  display: grid;
  text-align: center;
  margin: 0.7222222222rem;
  position: relative;
  transition: 0.25s;
}
@media print, screen and (min-width: 40em) {
  .project-box .project-box-item:before {
    content: "";
    position: absolute;
    z-index: 50;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 12px 20px rgba(10, 10, 10, 0.15);
    border-radius: 10px;
    opacity: 0;
    transition: 0.25s;
  }
  .project-box .project-box-item:hover {
    transform: translate(0, -2px);
  }
  .project-box .project-box-item:hover:before {
    opacity: 1;
  }
}
.project-box .project-box-item .project-box-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.project-box .project-box-item .project-box-img img {
  width: 100%;
}
.project-box .project-box-item .project-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  border-radius: 10px;
}
@media print, screen and (min-width: 40em) {
  .project-box .project-box-item .project-caption {
    opacity: 0;
    transition: 0.4s;
  }
}
.project-box .project-box-item .project-caption .caption-content {
  margin: 0.5555555556rem;
  padding: 0.9444444444rem 1.1111111111rem;
  color: #0a0a0a;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.project-box .project-box-item .project-caption .caption-content .title {
  font-family: "OpenSans", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1.0555555556rem;
  color: #0a0a0a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.project-box .project-box-item .project-caption .caption-content .text {
  font-size: 0.6666666667rem;
  font-weight: 600;
  color: #68738C;
  line-height: 1.5;
}
.project-box .project-box-item .project-caption .caption-content .button {
  margin-top: 1rem;
  margin-bottom: 0;
  background: #25143F;
}
.project-box .project-box-item .project-caption .caption-content .button:hover {
  background: #4F4069;
}
.project-box .project-box-item:hover .project-caption {
  opacity: 1;
}

.testimonial {
  background: #E5DBFF;
  border-radius: 10px;
}
.testimonial h2 {
  margin-bottom: 1rem !important;
}
.testimonial .icon {
  background: white;
  border-radius: 25px;
  box-shadow: 0 2px 5px 0 rgba(64, 72, 81, 0.1), 0 10px 14px 0 rgba(64, 72, 81, 0.05);
  float: right;
  padding: 0.5rem;
  text-align: center;
  width: 60%;
}
.testimonial .icon svg {
  width: 100%;
}
.testimonial .icon svg g g {
  fill: #25143F;
}
@media print, screen and (max-width: 63.99875em) {
  .testimonial {
    padding: 1rem;
  }
  .testimonial .icon {
    background: none;
    box-shadow: none;
    float: none;
    margin: auto;
  }
}

.mobi {
  /* Style sans passage par des patterns */
  background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/bg-content.svg") right center no-repeat;
  /* Style en passant par les patterns */
}
.mobi .wp-block-button__link {
  margin-bottom: 1.1111111111rem;
}
.mobi .mobi-bloc {
  position: relative;
  max-width: 992px;
}
@media print, screen and (min-width: 64em) {
  .mobi .mobi-bloc {
    max-width: 1010px;
  }
}
.mobi .mobi-bloc.mobi-grid p a, .mobi .mobi-bloc.mobi-intro p a, .mobi .mobi-bloc.mobi-content-with-picture p a, .mobi .mobi-bloc.mobi-text p a {
  color: #C3B6EF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  transition: all 0.5s;
}
.mobi .mobi-bloc.mobi-grid p a:hover, .mobi .mobi-bloc.mobi-intro p a:hover, .mobi .mobi-bloc.mobi-content-with-picture p a:hover, .mobi .mobi-bloc.mobi-text p a:hover {
  text-decoration: underline;
}
.mobi .mobi-bloc.mobi-grid {
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-grid .cell {
  padding: 1.3333333333rem;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 2px 5px 0px rgba(64, 72, 81, 0.1);
}
.mobi .mobi-bloc.mobi-grid ul {
  list-style-position: inside;
}
.mobi .mobi-bloc.mobi-grid.mobi-gridx6.is-layout-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
@media print, screen and (min-width: 40em) {
  .mobi .mobi-bloc.mobi-grid.mobi-gridx6.is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media print, screen and (min-width: 64em) {
  .mobi .mobi-bloc.mobi-grid.mobi-gridx6.is-layout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
.mobi .mobi-bloc.mobi-grid.mobi-gridx4.is-layout-grid, .mobi .mobi-bloc.mobi-grid.mobi-grid2x3.is-layout-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
@media print, screen and (min-width: 40em) {
  .mobi .mobi-bloc.mobi-grid.mobi-gridx4.is-layout-grid, .mobi .mobi-bloc.mobi-grid.mobi-grid2x3.is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.mobi .mobi-bloc.mobi-grid.is-layout-grid {
  gap: 1.3333333333rem;
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-intro {
  margin-top: -2.2222222222rem;
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-intro .wp-block-column {
  flex-basis: auto;
}
.mobi .mobi-bloc.mobi-content-with-picture {
  max-width: 100%;
  margin-bottom: 2.6666666667rem;
  gap: 3.5555555556rem;
  justify-content: center;
  padding: 7rem 0.8888888889rem;
}
@media print, screen and (min-width: 64em) {
  .mobi .mobi-bloc.mobi-content-with-picture {
    padding: 7rem 1.3888888889rem;
  }
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column {
  max-width: calc(496px - 3.5555555556rem);
}
@media print, screen and (min-width: 64em) {
  .mobi .mobi-bloc.mobi-content-with-picture .wp-block-column {
    max-width: calc(505px - 3.5555555556rem);
  }
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column {
  display: flex;
  flex-direction: column; /* Les éléments sont organisés en colonne */
  justify-content: center; /* Centre les éléments verticalement */
  align-items: flex-start; /* Aligne les éléments à gauche (horizontalement) */
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column p {
  margin-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column ul {
  margin-bottom: 1.3333333333rem;
  margin-left: 0;
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column ul li {
  list-style: none;
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/puce.svg");
  background-repeat: no-repeat;
  background-size: 32px 8px;
  background-position: 0 12px;
  padding-left: 42px;
  margin-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column ul li::before {
  color: #4569f1;
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column .wp-block-buttons {
  margin-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-content-column .wp-block-buttons .wp-block-button__link {
  margin-bottom: 0;
}
.mobi .mobi-bloc.mobi-content-with-picture .wp-block-column.mobi-picture-column {
  text-align: center;
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-left-content-with-picture::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50px;
  bottom: 50px;
  left: 0;
  transform: skewY(-6deg);
  border-radius: 20px;
  background: rgba(229, 219, 255, 0.5);
  width: 100%;
  order: 1;
}
@media screen and (min-width: 782px) {
  .mobi .mobi-bloc.mobi-content-with-picture.mobi-left-content-with-picture::before {
    width: 60%;
  }
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-right-content-with-picture::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50px;
  bottom: 50px;
  right: 0;
  transform: skewY(6deg);
  border-radius: 20px;
  background: rgba(229, 219, 255, 0.5);
  width: 100%;
  order: 1;
}
@media screen and (min-width: 782px) {
  .mobi .mobi-bloc.mobi-content-with-picture.mobi-right-content-with-picture::before {
    width: 60%;
  }
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-right-content-with-picture .mobi-picture-column {
  order: 2;
}
@media screen and (min-width: 782px) {
  .mobi .mobi-bloc.mobi-content-with-picture.mobi-right-content-with-picture .mobi-picture-column {
    order: initial;
  }
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-content-with-picture-hover {
  padding: 0;
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-content-with-picture-hover .mobi-content-column {
  padding-top: 11.6666666667rem;
  padding-left: 15.3333333333rem;
  padding-right: 9.8333333333rem;
  padding-bottom: 12.3888888889rem;
  position: relative;
  flex-basis: 33.3333333333%;
  flex-grow: 2;
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-content-with-picture-hover .mobi-content-column::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  right: 0;
  top: 50px;
  bottom: 0;
  background: #F3F4F6;
  border-radius: 30px;
  width: 100%;
  transform: skewY(-6deg);
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-content-with-picture-hover .mobi-picture-column {
  margin-left: -3.0555555556rem;
  flex-grow: 1;
  text-align: left;
}
.mobi .mobi-bloc.mobi-content-with-picture.mobi-content-with-picture-hover .mobi-picture-column img {
  max-width: 100%;
}
.mobi .mobi-bloc.mobi-button-with-text {
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-accordion {
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item {
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(64, 72, 81, 0.1), 0px 10px 14px 0px rgba(64, 72, 81, 0.05);
  border: none;
  border-radius: 24px;
  padding: 38px 40px;
  margin-bottom: 24px;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item .uagb-faq-questions-button {
  padding: 0;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item .uagb-faq-questions-button .uagb-faq-icon-wrap {
  padding: 0.4444444444rem;
  border-radius: 50%;
  background: rgba(195, 182, 239, 0.5);
  align-items: center;
  justify-content: center;
  margin: 0;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item .uagb-faq-questions-button .uagb-faq-icon-wrap svg {
  fill: #101827;
  transition: transform 0.5s ease-in-out;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item .uagb-faq-questions-button .uagb-question {
  font-size: 1rem;
  font-weight: 700;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item .uagb-faq-content {
  background-color: #fff;
  padding: 0;
}
.mobi .mobi-bloc.mobi-accordion .uagb-faq-item.uagb-faq-item-active .uagb-faq-icon-wrap svg {
  transform: rotate(45deg);
}
.mobi .mobi-bloc.mobi-tabs {
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__panel .uagb-tab {
  /* onglets */
  box-shadow: 0px 10px 14px 0px rgba(64, 72, 81, 0.0509803922);
  box-shadow: 0px 2px 5px 0px rgba(64, 72, 81, 0.1019607843);
  border-radius: 24px;
  border: solid 2px transparent;
  margin: 0 16px 24px 0;
  overflow: hidden;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__panel .uagb-tab a {
  padding: 24px 32px 24px 32px;
  background-color: #fff;
  width: 100%;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__panel .uagb-tab.uagb-tabs__active {
  border: solid 2px #25143F;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__panel .uagb-tab.uagb-tabs__active:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='81' height='73' viewBox='0 0 81 73' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.15178 57.5725C0.985901 38.3817 -2.57682 28.8812 2.50077 19.5672C7.42408 10.5362 32.0402 0 42.266 0C53.067 0 60.8979 4.03386 67.2612 14.2991C73.7133 24.7075 82.0311 30.8559 80.895 50.7993C79.7588 70.7426 64.0185 72.6241 42.266 72.6241C20.5134 72.6241 9.31766 76.7633 5.15178 57.5725Z' fill='%23CAB6FF'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(50px);
  width: 73px;
  height: 81px;
  display: block;
  position: absolute;
  z-index: -1;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__panel .uagb-tab.uagb-tabs__active a {
  font-weight: 700;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__body-wrap {
  /* Contenu des onglets */
  border: none;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__body-wrap .uagb-tabs__body-container {
  margin-bottom: 0;
}
.mobi .mobi-bloc.mobi-tabs .uagb-tabs__body-wrap .uagb-tabs__body-container p {
  margin-bottom: 0;
}
.mobi .mobi-bloc.mobi-picture {
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-text {
  margin-bottom: 2.6666666667rem;
}
.mobi .mobi-bloc.mobi-titles {
  margin-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-title {
  margin-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-cta {
  border-radius: 24px;
  background-image: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/choix-mobizel-dark.svg"), linear-gradient(180deg, #25143F 37.52%, #120A2E 100%);
  background-position: left bottom, center;
  background-repeat: no-repeat, no-repeat;
  padding: 1.7777777778rem;
  margin-left: 0.8888888889rem;
  margin-right: 0.8888888889rem;
  margin-bottom: 2.6666666667rem;
}
@media print, screen and (min-width: 64em) {
  .mobi .mobi-bloc.mobi-cta {
    margin-left: auto;
    margin-right: auto;
  }
}
.mobi .mobi-bloc.mobi-cta .wp-block-column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.mobi .mobi-bloc.mobi-cta .wp-block-column:last-child {
  align-items: center;
}
.mobi .mobi-bloc.mobi-cta h2 {
  color: #fff;
  margin-bottom: 1.3333333333rem;
}
.mobi .mobi-bloc.mobi-cta p {
  color: #fff;
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .mobi .mobi-bloc.mobi-cta p {
    margin-bottom: 3.4444444444rem;
  }
}
.mobi .mobi-bloc.mobi-cta .wp-block-button__link {
  padding: 1.3333333333rem 2.2222222222rem;
}

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

.sitemap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sitemap h2 a:not(.button) {
  color: #1F2937;
}
.sitemap h2 a:not(.button):before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -0.17rem;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  color: #1F2937;
  background-color: #1F2937;
}
.sitemap ul li {
  margin-left: 1.3333333333rem;
}

body #tarteaucitronRoot.tarteaucitronBeforeVisible {
  width: 100vw;
  height: 100vh;
  z-index: 10000000;
  overflow: hidden;
  position: fixed;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig {
  background-color: #FFF;
  box-shadow: 0 0 100px rgba(37, 20, 63, 0.4) !important;
  max-width: 500px;
  padding: 0 !important;
  border-radius: 8px !important;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig:before {
  display: none;
}
@media (max-width: 560px) {
  body #tarteaucitronRoot div#tarteaucitronAlertBig {
    width: calc(100% - 40px) !important;
  }
}
body #tarteaucitronRoot div#tarteaucitronAlertBig.tarteaucitronAlertBigBottom {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: 20px;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig span#tarteaucitronDisclaimerAlert {
  color: #25143F;
  margin-top: 0 !important;
  margin-bottom: 30px;
  font-size: 1rem;
  position: relative;
  padding-top: 220px;
  position: relative;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig span#tarteaucitronDisclaimerAlert:before {
  border-radius: 8px 8px 0 0;
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  margin: auto;
  background: url("/wp-content/themes/mobizel-2025/assets/images/mobizel2025/cookies.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: 0;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronDeny {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #FFF;
  border-radius: 8px;
  color: #25143F;
  font-size: 0.8rem !important;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronDeny span {
  display: none;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronDeny:hover {
  text-decoration: underline !important;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronAllow {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  padding: 13px 42px;
  color: #fff !important;
  background-color: #25143F !important;
  border: 1px solid #25143F !important;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
  position: relative;
  z-index: 2;
  font-family: "arial";
  font-size: 14px !important;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronAllow:hover {
  text-decoration: none;
  background-color: #fff !important;
  color: #25143F !important;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronAllow span {
  display: none;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronAllow:hover {
  background-color: #27ae60;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronPrivacyUrl {
  display: block;
  color: #25143F;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-size: 12px;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronCloseAlert {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  padding: 13px 42px;
  color: #25143F !important;
  background-color: #fff !important;
  border: 1px solid #25143F !important;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
  position: relative;
  z-index: 2;
  font-family: "arial";
  font-size: 14px !important;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}
body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronCloseAlert:hover {
  text-decoration: none;
  background-color: #25143F !important;
  color: #fff !important;
  border: 1px solid #25143F !important;
}
@media (min-width: 200px) {
  body #tarteaucitronRoot div#tarteaucitronAlertBig span#tarteaucitronDisclaimerAlert {
    color: #25143F;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 1rem;
  }
}
@media (hover: hover) {
  body #tarteaucitronRoot div#tarteaucitronAlertBig button.tarteaucitronDeny:hover {
    text-decoration: underline;
  }
  body #tarteaucitronRoot div#tarteaucitronAlertBig button#tarteaucitronPrivacyUrl:hover {
    text-decoration: underline;
  }
}
body #tarteaucitronRoot button#tarteaucitronClosePanel {
  right: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #FFF;
  color: #454549;
}
body #tarteaucitronRoot div#tarteaucitronServices {
  border-radius: 8px;
  box-shadow: 0 40px 60px rgba(84, 84, 84, 0.4);
}
body #tarteaucitronRoot div#tarteaucitronServices div#tarteaucitronMainLineOffset {
  background-color: #FFF;
  color: #25143F;
  border: none;
}
body #tarteaucitronRoot div#tarteaucitronServices .tarteaucitronH1 {
  color: #454549;
  font-weight: bold;
}
body #tarteaucitronRoot div#tarteaucitronServices div#tarteaucitronInfo {
  background-color: #FFF;
  color: #454549;
  border-top: none;
  border-bottom: none;
}
body #tarteaucitronRoot div#tarteaucitronServices div#tarteaucitronInfo button#tarteaucitronPrivacyUrlDialog {
  text-decoration: underline;
}
body #tarteaucitronRoot div#tarteaucitronServices .tarteaucitronH2 {
  color: #545454;
  font-weight: bold;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder {
  border: none;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder div.tarteaucitronTitle {
  background-color: #FFF;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder div.tarteaucitronTitle button {
  background-color: #25143F;
  border-radius: 0 8px 0 0 !important;
  padding: 10px 20px;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder div.tarteaucitronTitle button span {
  display: none;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder ul#tarteaucitronServices_mandatory li {
  background-color: #fff;
  border-bottom: solid 1px #CCC;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder ul#tarteaucitronServices_mandatory li:first-of-type {
  border-top: solid 1px #25143F;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder ul#tarteaucitronServices_mandatory li:last-of-type {
  border-bottom: none;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder ul#tarteaucitronServices_api li {
  background-color: #fff;
  border-bottom: solid 1px #CCC;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder ul#tarteaucitronServices_api li:first-of-type {
  border-top: solid 1px #25143F;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder ul#tarteaucitronServices_api li:last-of-type {
  border-bottom: none;
}
body #tarteaucitronRoot div#tarteaucitronServices div.tarteaucitronBorder div.tarteaucitronInfoBox {
  background-color: #25143F;
}
body #tarteaucitronRoot .tarteaucitronCross,
body #tarteaucitronRoot .tarteaucitronCheck {
  display: none;
}/*# sourceMappingURL=style.css.map */