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

Stylesheet: Main Stylesheet

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

******************************************************************/
/**
 * Foundation for Sites
 * Version 6.9.0
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 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: 0;
  -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;
}

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

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

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

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

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Golos Text", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #121518;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

strong,
b {
  font-weight: 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: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #8c9696;
}

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h3, .h3 {
    font-size: 1.9375rem;
  }
  h4, .h4 {
    font-size: 1.5625rem;
  }
  h5, .h5 {
    font-size: 1.25rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #f34249;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: rgb(240.4173134328, 25.3226865672, 33.8292537313);
}
a img {
  border: 0;
}

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

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

li {
  font-size: inherit;
}

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

ol {
  margin-left: 1.25rem;
}

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

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

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

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

figure {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  * {
    background: transparent !important;
    color: black !important;
    -webkit-print-color-adjust: economy;
            print-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 #1a2323;
    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 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #8c9696;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(18, 21, 24, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #121518;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[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 #1a2323;
  background-color: #ffffff;
  box-shadow: 0 0 5px #8c9696;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

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

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

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

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

::-moz-placeholder {
  color: #8c9696;
}

::placeholder {
  color: #8c9696;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #8c9696;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #121518;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  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%2826, 35, 35%29"></polygon></svg>');
}
@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 #1a2323;
  background-color: #ffffff;
  box-shadow: 0 0 5px #8c9696;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #f4f6f5;
  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.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  padding: 0.85em 1em;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #f34249;
  color: #ffffff;
}
.button:hover, .button:focus {
  background-color: rgb(240.2328358209, 22.4171641791, 31.0313432836);
  color: #ffffff;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #ffffff;
}
.button.primary:hover, .button.primary:focus {
  background-color: rgb(18.4, 96.8, 148.8);
  color: #ffffff;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #767676;
  color: #ffffff;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  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: #3adb76;
  color: #121518;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #121518;
}
.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: #121518;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: #121518;
}
.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.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 #f34249;
  color: #f34249;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgb(145.276119403, 9.223880597, 14.6044776119);
  color: rgb(145.276119403, 9.223880597, 14.6044776119);
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #f34249;
}
.button.clear:hover, .button.clear:focus {
  color: rgb(145.276119403, 9.223880597, 14.6044776119);
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #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: #f34249;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

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

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

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

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

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

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

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

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

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #f34249 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: #f34249;
  color: #ffffff;
}
.badge.primary {
  background: #1779ba;
  color: #ffffff;
}
.badge.secondary {
  background: #767676;
  color: #ffffff;
}
.badge.success {
  background: #3adb76;
  color: #121518;
}
.badge.warning {
  background: #ffae00;
  color: #121518;
}
.badge.alert {
  background: #cc4b37;
  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.6875rem;
  color: #121518;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #8c9696;
}
.breadcrumbs a {
  color: #f34249;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #8c9696;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-grow: 1;
}
.button-group::before, .button-group::after {
  display: none;
}
.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: 0.9rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #1779ba;
  color: #ffffff;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: rgb(18.4, 96.8, 148.8);
  color: #ffffff;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #767676;
  color: #ffffff;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  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: #3adb76;
  color: #121518;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #121518;
}
.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: #121518;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: rgb(204, 139.2, 0);
  color: #121518;
}
.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.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 #f34249;
  color: #f34249;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: rgb(145.276119403, 9.223880597, 14.6044776119);
  color: rgb(145.276119403, 9.223880597, 14.6044776119);
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #f34249;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: rgb(145.276119403, 9.223880597, 14.6044776119);
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 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 {
  background-color: white;
  color: #121518;
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(18, 21, 24, 0.25);
  border-radius: 0;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: rgb(214.8186602871, 235.9894736842, 250.0313397129);
  color: #121518;
}
.callout.secondary {
  background-color: rgb(234.45, 234.45, 234.45);
  color: #121518;
}
.callout.success {
  background-color: rgb(225.45, 249.6, 234.45);
  color: #121518;
}
.callout.warning {
  background-color: rgb(255, 242.85, 216.75);
  color: #121518;
}
.callout.alert {
  background-color: rgb(247.35, 228, 225);
  color: #121518;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

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

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #f4f6f5;
}
.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: #1a2323;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #121518;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

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

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

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

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

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

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

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

.drilldown a {
  padding: 0.7rem 1rem;
  background: #ffffff;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #f34249;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #f34249;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #f34249 transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #f34249 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 #8c9696;
  border-radius: 0;
  background-color: #ffffff;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

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

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

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

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

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

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #f34249;
  color: #ffffff;
}
.label.primary {
  background: #1779ba;
  color: #ffffff;
}
.label.secondary {
  background: #767676;
  color: #ffffff;
}
.label.success {
  background: #3adb76;
  color: #121518;
}
.label.warning {
  background: #ffae00;
  color: #121518;
}
.label.alert {
  background: #cc4b37;
  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 {
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #f4f6f5;
  position: fixed;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(18, 21, 24, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

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

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  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(18, 21, 24, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  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(18, 21, 24, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  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(18, 21, 24, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  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(18, 21, 24, 0.25);
}

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

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

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

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

.orbit-figure {
  margin: 0;
}

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

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

.orbit-next, .orbit-previous {
  z-index: 10;
  padding: 1rem;
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(18, 21, 24, 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: #8c9696;
}
.orbit-bullets button:hover {
  background-color: #1a2323;
}
.orbit-bullets button.is-active {
  background-color: #1a2323;
}

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

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

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

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

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

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

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #f4f6f5;
  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: #8c9696;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

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

.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;
  -webkit-overflow-scrolling: touch;
}
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(18, 21, 24, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

table.unstriped tbody {
  background-color: #ffffff;
}
table.unstriped tbody tr {
  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 #f4f6f5;
  background: #ffffff;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

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

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

.tabs.primary {
  background: #1779ba;
}
.tabs.primary > li > a {
  color: #ffffff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: rgb(21.85, 114.95, 176.7);
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #f34249;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #ffffff;
  color: rgb(240.4173134328, 25.3226865672, 33.8292537313);
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #f4f6f5;
  color: #f34249;
}

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

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

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

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #ffffff;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(18, 21, 24, 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(243, 66, 73, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #121518;
  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 #1a2323;
  font-weight: 700;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #121518;
  font-size: 80%;
  color: #ffffff;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-top-width: 0;
  border-color: transparent transparent #121518;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-color: #121518 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #121518;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #121518 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 {
  padding: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.top-bar,
.top-bar ul {
  background-color: #f4f6f5;
}
.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 {
  flex-wrap: wrap;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  flex: 0 0 100%;
  max-width: 100%;
}

@media print, screen and (min-width: 40em) {
  .top-bar {
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .top-bar.stacked-for-large {
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

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

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

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

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

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

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

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

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

Stylesheet: Global Stylesheet

*************************************************/
html {
  scroll-behavior: smooth;
}

*::-moz-selection {
  background: #f9cc3d;
}

*::selection {
  background: #f9cc3d;
}

/*********************
TYPOGRAPHY
**********************/
body {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.golos, .eyebrow, .paragraph, p,
li, .heading, h6,
.h6, h5,
.h5, h4,
.h4, h3,
.h3, h2,
.h2, h1,
.h1,
.xl {
  font-family: "Golos Text", sans-serif;
}

.heading, h6,
.h6, h5,
.h5, h4,
.h4, h3,
.h3, h2,
.h2, h1,
.h1,
.xl {
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
}
.heading strong, h6 strong,
.h6 strong, h5 strong,
.h5 strong, h4 strong,
.h4 strong, h3 strong,
.h3 strong, h2 strong,
.h2 strong, h1 strong,
.h1 strong,
.xl strong {
  font-weight: 800;
}
.heading.tag, h6.tag,
.tag.h6, h5.tag,
.tag.h5, h4.tag,
.tag.h4, h3.tag,
.tag.h3, h2.tag,
.tag.h2, h1.tag,
.tag.h1,
.tag.xl,
.heading span.tag,
h6 span.tag,
.h6 span.tag,
h5 span.tag,
.h5 span.tag,
h4 span.tag,
.h4 span.tag,
h3 span.tag,
.h3 span.tag,
h2 span.tag,
.h2 span.tag,
h1 span.tag,
.h1 span.tag,
.xl span.tag {
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  letter-spacing: 0.32px;
}
.heading span.tag, h6 span.tag,
.h6 span.tag, h5 span.tag,
.h5 span.tag, h4 span.tag,
.h4 span.tag, h3 span.tag,
.h3 span.tag, h2 span.tag,
.h2 span.tag, h1 span.tag,
.h1 span.tag,
.xl span.tag {
  line-height: 100%;
}
.heading a, h6 a,
.h6 a, h5 a,
.h5 a, h4 a,
.h4 a, h3 a,
.h3 a, h2 a,
.h2 a, h1 a,
.h1 a,
.xl a {
  color: #121518;
}
.heading a:hover, h6 a:hover,
.h6 a:hover, h5 a:hover,
.h5 a:hover, h4 a:hover,
.h4 a:hover, h3 a:hover,
.h3 a:hover, h2 a:hover,
.h2 a:hover, h1 a:hover,
.h1 a:hover,
.xl a:hover {
  color: #ad3a00;
}

.paragraph, p,
li {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 120%;
}

h1,
.h1,
.xl {
  font-size: 48px;
  line-height: 110%;
}
@media (max-width: 1155px) {
  h1,
  .h1,
  .xl {
    font-size: 3.75vw;
  }
}
@media (max-width: 768px) {
  h1,
  .h1,
  .xl {
    font-size: 5.25vw;
  }
}
@media (max-width: 480px) {
  h1,
  .h1,
  .xl {
    font-size: 10.5vw;
  }
}

h2,
.h2 {
  font-size: 42px;
  line-height: 115%;
}
@media (max-width: 1155px) {
  h2,
  .h2 {
    font-size: 3.3vw;
  }
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 5.125vw;
  }
}
@media (max-width: 480px) {
  h2,
  .h2 {
    font-size: 10.25vw;
  }
}

h3,
.h3 {
  font-size: 36px;
  line-height: 120%;
}
@media (max-width: 1155px) {
  h3,
  .h3 {
    font-size: 2.85vw;
  }
}
@media (max-width: 768px) {
  h3,
  .h3 {
    font-size: 4.625vw;
  }
}
@media (max-width: 480px) {
  h3,
  .h3 {
    font-size: 9.25vw;
  }
}

h4,
.h4 {
  font-size: 42px;
  line-height: 120%;
}
@media (max-width: 1155px) {
  h4,
  .h4 {
    font-size: 3.3vw;
  }
}
@media (max-width: 768px) {
  h4,
  .h4 {
    font-size: 4.125vw;
  }
}
@media (max-width: 480px) {
  h4,
  .h4 {
    font-size: 8.25vw;
  }
}

h5,
.h5 {
  font-size: 36px;
  line-height: 120%;
}
@media (max-width: 1155px) {
  h5,
  .h5 {
    font-size: 2.85vw;
  }
}
@media (max-width: 768px) {
  h5,
  .h5 {
    font-size: 2.75vw;
  }
}
@media (max-width: 480px) {
  h5,
  .h5 {
    font-size: 5.4vw;
  }
}

h6,
.h6 {
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 1155px) {
  h6,
  .h6 {
    font-size: 2.85vw;
  }
}
@media (max-width: 768px) {
  h6,
  .h6 {
    font-size: 3.5vw;
  }
}
@media (max-width: 480px) {
  h6,
  .h6 {
    font-size: 7vw;
  }
}

.eyebrow {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 110%;
  font-weight: 500;
  letter-spacing: 1.92px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 768px) {
  .eyebrow {
    font-size: 14px;
  }
}

p,
li {
  font-size: 16px;
  line-height: 160%;
}
@media (max-width: 768px) {
  p,
  li {
    font-size: 14px;
  }
}
p.lead,
li.lead {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  p.lead,
  li.lead {
    font-size: 16px;
  }
}
p.body-1,
li.body-1 {
  font-size: 16px;
  line-height: 160%;
}
@media (max-width: 768px) {
  p.body-1,
  li.body-1 {
    font-size: 14px;
  }
}
p.body-2,
li.body-2 {
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 768px) {
  p.body-2,
  li.body-2 {
    font-size: 12px;
  }
}
p.caption,
li.caption {
  font-size: 12px;
  line-height: 130%;
  margin-bottom: 10px;
  color: #485252;
}
@media (max-width: 768px) {
  p.caption,
  li.caption {
    font-size: 11px;
  }
}
p.caption-sm,
li.caption-sm {
  font-size: 10px;
  line-height: 130%;
}
@media (max-width: 768px) {
  p.caption-sm,
  li.caption-sm {
    font-size: 9px;
  }
}
p.stat,
li.stat {
  font-size: 50px;
  line-height: 100%;
  font-weight: 500;
}
p.date,
li.date {
  font-size: 16px !important;
  color: #8c9696 !important;
  font-weight: 500 !important;
}
@media (max-width: 768px) {
  p.date,
  li.date {
    font-size: 14px !important;
  }
}
p.date a,
li.date a {
  color: #8c9696;
}
@media (max-width: 768px) {
  p.lead,
  li.lead {
    font-size: 16px;
    line-height: 150%;
  }
}
p a,
li a {
  color: #ee1448;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}
p a:hover,
li a:hover {
  color: #952e32;
}

div.lead p {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  div.lead p {
    font-size: 16px;
    line-height: 150%;
  }
}

.body-2 p {
  font-size: 14px;
  line-height: 160%;
}

div#text-button,
a#text-button,
a.text-button {
  display: flex;
  position: relative;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #ee1448;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  color: #121518;
  padding-bottom: 5px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
div#text-button:hover,
a#text-button:hover,
a.text-button:hover {
  text-decoration-thickness: 2.5px;
}

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

span.anchor {
  display: block;
  height: 0;
  width: 0;
  position: relative;
  top: -120px;
  visibility: hidden;
}

.black a#button,
.black a.button,
.black input.button,
.black .hs-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 8px 8px 20px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 25px;
  color: #121518;
  text-align: center;
  background-color: #f9cc3d;
  box-sizing: border-box;
  height: 45px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  cursor: pointer;
}
.black a#button:after,
.black a.button:after,
.black input.button:after,
.black .hs-button:after {
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
.black a#button:hover,
.black a.button:hover,
.black input.button:hover,
.black .hs-button:hover {
  background-color: #f9cc3d;
  color: #121518;
}
.black a#button:hover:after,
.black a.button:hover:after,
.black input.button:hover:after,
.black .hs-button:hover:after {
  transform: rotate(-20deg);
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F9CC3D'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F9CC3D'/%3E%3C/svg%3E%0A");
}
.black a#button:focus,
.black a.button:focus,
.black input.button:focus,
.black .hs-button:focus {
  background-color: #f9cc3d;
  color: #121518;
}
.black a#button:focus:after,
.black a.button:focus:after,
.black input.button:focus:after,
.black .hs-button:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
.black a#button.secondary,
.black a.button.secondary,
.black input.button.secondary,
.black .hs-button.secondary {
  background: transparent;
  border: 1.5px solid #121518;
  color: #121518;
}
.black a#button.secondary:hover,
.black a.button.secondary:hover,
.black input.button.secondary:hover,
.black .hs-button.secondary:hover {
  background: transparent;
  color: #121518;
}
.black a#button.secondary:hover:after,
.black a.button.secondary:hover:after,
.black input.button.secondary:hover:after,
.black .hs-button.secondary:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
.black a#button.secondary:focus,
.black a.button.secondary:focus,
.black input.button.secondary:focus,
.black .hs-button.secondary:focus {
  background: transparent;
}
.black a#button.secondary:focus:after,
.black a.button.secondary:focus:after,
.black input.button.secondary:focus:after,
.black .hs-button.secondary:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
.black li.button {
  background: none;
  margin: 0;
}
.black li.button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 8px 8px 20px !important;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 25px;
  color: #121518;
  text-align: center;
  background: #f9cc3d;
  box-sizing: border-box;
  height: 45px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  cursor: pointer;
}
.black li.button a:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
.black li.button a:hover {
  color: #121518;
}
.black li.button:hover {
  background: none;
}
.black li.button:hover a:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F9CC3D'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F9CC3D'/%3E%3C/svg%3E%0A");
}
.black li.button a:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
.black li.button.secondary {
  background: none;
  color: #121518;
}
.black li.button.secondary a {
  background: transparent;
  border: 1.5px solid #121518;
}
.black li.button.secondary:hover {
  background: none;
}
.black li.button.secondary:hover a {
  background: transparent;
}
.black li.button.secondary:hover a:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
.black li.button.secondary a:focus {
  background: transparent;
}
.black li.button.secondary a:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
.black div#text-button,
.black a#text-button,
.black a.text-button {
  display: flex;
  position: relative;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #f9cc3d;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  color: #ffffff;
  padding-bottom: 5px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
.black div#text-button:hover,
.black a#text-button:hover,
.black a.text-button:hover {
  text-decoration-thickness: 2.5px;
}

/*********************
GRID
*********************/
.grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(12, 5.46875%);
  gap: 0 3.125%;
  margin: auto;
  box-sizing: content-box;
  align-items: flex-start;
  position: relative;
  padding: 0 22px;
}
.grid.align-center {
  align-items: center;
}
.grid.flex-end {
  align-items: flex-end;
}
.grid.stretch {
  align-items: stretch;
}
.grid.gap-24 {
  row-gap: 24px;
}
@media screen and (max-width: 1155px) {
  .grid.gap-24 {
    row-gap: 12px;
  }
}
.grid.gap-40 {
  row-gap: 40px;
}
@media screen and (max-width: 1155px) {
  .grid.gap-40 {
    row-gap: 24px;
  }
}
.grid.gap-50 {
  row-gap: 50px;
}
.grid .full {
  grid-column: auto/span 12;
}
.grid .ten {
  grid-column: auto/span 10;
}
.grid .three-quarters {
  grid-column: auto/span 9;
}
.grid .two-thirds {
  grid-column: auto/span 8;
}
.grid .seven {
  grid-column: auto/span 7;
}
.grid .half {
  grid-column: auto/span 6;
}
.grid .six {
  grid-column: auto/span 6;
}
.grid .five {
  grid-column: auto/span 5;
}
.grid .third {
  grid-column: auto/span 4;
}
.grid .quarter {
  grid-column: auto/span 3;
}
.grid .fourth {
  grid-column: auto/span 3;
}
.grid .sixth {
  grid-column: auto/span 2;
}
.grid .single {
  grid-column: auto/span 1;
}
.grid .large-center {
  grid-column: 2/span 10;
}
.grid .medium-center {
  grid-column: 3/span 8;
}
.grid .start-2 {
  grid-column-start: 2;
}
.grid .start-3 {
  grid-column-start: 3;
}
.grid .start-4 {
  grid-column-start: 4;
}
.grid .start-5 {
  grid-column-start: 5;
}
.grid .start-6 {
  grid-column-start: 6;
}
.grid .start-7 {
  grid-column-start: 7;
}
.grid .start-8 {
  grid-column-start: 8;
}
.grid .start-9 {
  grid-column-start: 9;
}
.grid .start-10 {
  grid-column-start: 10;
}
@media screen and (max-width: 1155px) {
  .grid {
    max-width: calc(100vw - 48px);
    grid-template-columns: repeat(8, 9.01857%);
    gap: 0 3.97878%;
  }
  .grid .full {
    grid-column: auto/span 8;
  }
  .grid .ten {
    grid-column: auto/span 8;
  }
  .grid .three-quarters {
    grid-column: auto/span 8;
  }
  .grid .two-thirds {
    grid-column: auto/span 8;
  }
  .grid .seven {
    grid-column: auto/span 8;
  }
  .grid .half {
    grid-column: auto/span 4;
  }
  .grid .six {
    grid-column: auto/span 4;
  }
  .grid .five {
    grid-column: auto/span 4;
  }
  .grid .third {
    grid-column: auto/span 4;
  }
  .grid .quarter {
    grid-column: auto/span 4;
  }
  .grid .fourth {
    grid-column: auto/span 4;
  }
  .grid .sixth {
    grid-column: auto/span 4;
  }
  .grid .large-center {
    grid-column: 1/span 8;
  }
  .grid .medium-center {
    grid-column: 1/span 8;
  }
  .grid .start-2 {
    grid-column-start: auto;
  }
  .grid .start-5 {
    grid-column-start: auto;
  }
  .grid .start-6 {
    grid-column-start: auto;
  }
  .grid .start-7 {
    grid-column-start: auto;
  }
  .grid .start-8 {
    grid-column-start: auto;
  }
  .grid .start-9 {
    grid-column-start: auto;
  }
}
@media screen and (max-width: 768px) {
  .grid {
    max-width: 768px;
    grid-template-columns: repeat(4, 18.51743%);
    gap: 0 8.57143%;
  }
  .grid .full {
    grid-column: auto/span 4;
  }
  .grid .ten {
    grid-column: auto/span 4;
  }
  .grid .three-quarters {
    grid-column: auto/span 4;
  }
  .grid .two-thirds {
    grid-column: auto/span 4;
  }
  .grid .seven {
    grid-column: auto/span 4;
  }
  .grid .half {
    grid-column: auto/span 4;
  }
  .grid .six {
    grid-column: auto/span 4;
  }
  .grid .five {
    grid-column: auto/span 4;
  }
  .grid .third {
    grid-column: auto/span 4;
  }
  .grid .quarter {
    grid-column: auto/span 4;
  }
  .grid .fourth {
    grid-column: auto/span 4;
  }
  .grid .sixth {
    grid-column: auto/span 2;
  }
  .grid .large-center {
    grid-column: auto/span 4;
  }
  .grid .medium-center {
    grid-column: auto/span 4;
  }
}

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

#promotion-bar {
  background-color: #ff5500;
  height: 34px;
  width: 100%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#promotion-bar a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #ffffff;
  text-underline-offset: 2px;
}
#promotion-bar a:hover {
  text-decoration: underline;
}
#promotion-bar a svg {
  margin-left: 8px;
}

/*********************
SCROLL ANIMATION
*********************/
body.page-template-default .off-canvas-wrapper.bg-white {
  background-color: #ffffff;
}
body.page-template-default .off-canvas-wrapper.bg-black {
  background-color: #121518;
}
body.page-template-default .off-canvas-wrapper.bg-sand {
  background-color: #f9f7f1;
}

/*********************
SECTIONS
*********************/
@media screen and (min-width: 1155px) {
  .hide-for-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 1155px) {
  .hide-for-tablet {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hide-for-mobile {
    display: none !important;
  }
  .show-for-mobile {
    display: block !important;
  }
  .show-for-mobile#button-container {
    display: flex !important;
  }
}
.padding-0 {
  padding: 0;
}

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

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

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

section .title-container.text-center .eyebrow {
  text-align: center;
  margin: 0 auto 15px;
}
section .title-container.text-center #button-container {
  justify-content: center;
}
section#hero.full {
  z-index: 0;
  position: relative;
}
section#hero.full .image-container {
  margin-top: 75px;
}
section#hero.full.image-active.white {
  background: #ffffff;
}
section#hero.full.image-active.white:before, section#hero.full.image-active.white:after {
  background-color: #f9f7f1;
}
section#hero.full.image-active.black {
  background: #121518;
}
section#hero.full.image-active.black:before, section#hero.full.image-active.black:after {
  background-color: #f9f7f1;
}
section#hero.full.image-active.sand {
  background: #f9f7f1;
}
section#hero.full.image-active.sand:before, section#hero.full.image-active.sand:after {
  background-color: #ffffff;
}
section#hero.full.image-active:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 255px;
  height: 255px;
  z-index: -1;
  clip-path: circle(100% at 100% 100%);
}
section#hero.full.image-active:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 255px;
  width: calc(100% - 255px);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  section#hero.full.image-active:before, section#hero.full.image-active:after {
    display: none;
  }
}
section#hero.half .content-container.half p {
  max-width: 510px;
}
section#hero.half .image-container img,
section#hero.half .image-container svg {
  max-height: 500px;
}
section#hero .bottom-image-container {
  margin-top: 40px;
}
section#hero .image-container .hbspt-form {
  background-color: #f4f6f5;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #121518;
  box-shadow: #121518 4px 4px 0;
}
section#hero .image-container .hbspt-form iframe {
  border-radius: 0;
}
section#hero .image-container .hbspt-form h6 {
  margin-bottom: 40px;
}
section#hero .image-container .hbspt-form fieldset.form-columns-1 {
  max-width: none;
  width: 100%;
}
section#hero .image-container .hbspt-form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
  height: 50px;
  border-radius: 100px;
  border: 2px solid #121518;
  box-shadow: none;
  padding: 10px 20px;
}
section#hero .image-container .hbspt-form input.hs-button {
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
}
section#scrollable-content .intro-title {
  margin-bottom: 60px;
}
section#scrollable-content #toc {
  height: 100%;
}
@media screen and (max-width: 1155px) {
  section#scrollable-content #toc {
    display: none;
  }
}
section#scrollable-content #toc #sticky {
  position: sticky;
  top: 130px;
}
section#scrollable-content #toc nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}
section#scrollable-content #toc nav a {
  border: 1px solid #e0ded1;
  background: #efecdf;
  color: #121518;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  width: 100%;
  padding: 14px 18px;
  border-radius: 200px;
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
section#scrollable-content #toc nav a:hover, section#scrollable-content #toc nav a.active {
  border: 1px solid #ee1448;
  background: #ee1448;
}
section#scrollable-content #scrolled-content .content-group:not(:last-child) {
  margin-bottom: 50px;
}
section#scrollable-content #scrolled-content .content-group > h2 {
  margin-bottom: 15px;
}
section#scrollable-content #scrolled-content .content-group > img {
  max-height: 45px;
  margin-bottom: 35px;
}
section#scrollable-content #scrolled-content .content-group #content-block-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
section#scrollable-content #scrolled-content .content-group #content-block-container #content-block {
  background-color: #f9f7f1;
  border: 1px solid #efecdf;
  padding: 40px;
  border-radius: 10px;
  flex-basis: 50%;
}
section#scrollable-content #scrolled-content .content-group #content-block-container #content-block img {
  max-height: 45px;
  margin-bottom: 30px;
}
section#scrollable-content #scrolled-content .content-group #content-block-container #content-block img.block-image {
  max-height: unset;
  width: 100%;
  margin-bottom: 0;
}
section#scrollable-content #scrolled-content .content-group #content-block-container #content-block h5 {
  margin-bottom: 15px;
}
section#scrollable-content #scrolled-content .content-group #content-block-container #content-block #button-container {
  margin-top: 30px;
  align-items: flex-start;
}
section#scrollable-content #scrolled-content .content-group #content-block-container #content-block.image-block {
  padding: 0;
  border-radius: 0;
  background-color: transparent !important;
  border: none !important;
}
@media screen and (max-width: 1155px) {
  section#scrollable-content #scrolled-content .content-group #content-block-container {
    flex-wrap: wrap;
  }
  section#scrollable-content #scrolled-content .content-group #content-block-container #content-block {
    flex-basis: 100%;
  }
}
section#scrollable-content.black #toc nav a {
  background-color: #1a2323;
  border: 1px solid #283232;
  color: #ffffff;
}
section#scrollable-content.black #toc nav a:hover, section#scrollable-content.black #toc nav a.active {
  border: 1px solid #f9cc3d;
  background: #f9cc3d;
  color: #121518;
}
section#scrollable-content.black #scrolled-content .content-group #content-block-container #content-block {
  background-color: #1a2323;
  border: 1px solid #283232;
}
section#divider {
  padding: 0;
  height: 75px;
  display: flex;
}
@media screen and (max-width: 768px) {
  section#divider {
    height: 25px;
  }
}
section#divider.white-black {
  background-color: #ffffff;
}
section#divider.white-black:after {
  content: url("data:image/svg+xml,%3Csvg width='70' height='75' viewBox='0 0 70 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18013e-06 75C0.00942785 35.4839 30.5812 2.92267 69.3737 -2.84471e-05L8.73684e-06 -3.4512e-05L2.18013e-06 75Z' fill='%23121518'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  section#divider.white-black:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 0H0V25C0 11.1929 11.1929 0 25 0Z' fill='%23121518'/%3E%3C/svg%3E%0A");
  }
}
section#divider.white-sand {
  background-color: #ffffff;
}
section#divider.white-sand:after {
  content: url("data:image/svg+xml,%3Csvg width='70' height='75' viewBox='0 0 70 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18013e-06 75C0.00942785 35.4839 30.5812 2.92267 69.3737 -2.84471e-05L8.73684e-06 -3.4512e-05L2.18013e-06 75Z' fill='%23F9F7F1'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  section#divider.white-sand:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 0H0V25C0 11.1929 11.1929 0 25 0Z' fill='%23F9F7F1'/%3E%3C/svg%3E%0A");
  }
}
section#divider.sand-black {
  background-color: #f9f7f1;
}
section#divider.sand-black:after {
  content: url("data:image/svg+xml,%3Csvg width='70' height='75' viewBox='0 0 70 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18013e-06 75C0.00942785 35.4839 30.5812 2.92267 69.3737 -2.84471e-05L8.73684e-06 -3.4512e-05L2.18013e-06 75Z' fill='%23121518'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  section#divider.sand-black:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 0H0V25C0 11.1929 11.1929 0 25 0Z' fill='%23121518'/%3E%3C/svg%3E%0A");
  }
}
section#divider.sand-white {
  background-color: #f9f7f1;
}
section#divider.sand-white:after {
  content: url("data:image/svg+xml,%3Csvg width='70' height='75' viewBox='0 0 70 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18013e-06 75C0.00942785 35.4839 30.5812 2.92267 69.3737 -2.84471e-05L8.73684e-06 -3.4512e-05L2.18013e-06 75Z' fill='white'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  section#divider.sand-white:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 0H0V25C0 11.1929 11.1929 0 25 0Z' fill='white'/%3E%3C/svg%3E%0A");
  }
}
section#divider.black-white {
  background-color: #121518;
}
section#divider.black-white:after {
  content: url("data:image/svg+xml,%3Csvg width='70' height='75' viewBox='0 0 70 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18013e-06 75C0.00942785 35.4839 30.5812 2.92267 69.3737 -2.84471e-05L8.73684e-06 -3.4512e-05L2.18013e-06 75Z' fill='white'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  section#divider.black-white:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 0H0V25C0 11.1929 11.1929 0 25 0Z' fill='white'/%3E%3C/svg%3E%0A");
  }
}
section#divider.black-sand {
  background-color: #121518;
}
section#divider.black-sand:after {
  content: url("data:image/svg+xml,%3Csvg width='70' height='75' viewBox='0 0 70 75' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.18013e-06 75C0.00942785 35.4839 30.5812 2.92267 69.3737 -2.84471e-05L8.73684e-06 -3.4512e-05L2.18013e-06 75Z' fill='%23F9F7F1'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  section#divider.black-sand:after {
    content: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 0H0V25C0 11.1929 11.1929 0 25 0Z' fill='%23F9F7F1'/%3E%3C/svg%3E%0A");
  }
}
section#divider.right {
  justify-content: flex-end;
}
section#divider.right:after {
  transform: rotate(180deg);
}
section#copy-image .content p {
  margin-bottom: 20px;
}
section#copy-image.full .eyebrow {
  margin: 0 auto 30px;
}
section#copy-image.full .image-container {
  margin-top: 75px;
}
section#copy-image.half .half.content,
section#copy-image.half .half.image-container {
  align-self: center;
}
section#copy-image.half .half.content p {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.4px;
}
section#copy-image.half .content-first .half.content {
  grid-column: span 5;
}
@media screen and (max-width: 1155px) {
  section#copy-image.half .content-first .half.content {
    grid-row: 1 !important;
    grid-column: 1/span 8 !important;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.half .content-first .half.content {
    grid-row: 1 !important;
    grid-column: 1/span 4 !important;
  }
}
section#copy-image.half .content-first .half.image-container {
  grid-column-start: 7;
}
@media screen and (max-width: 1155px) {
  section#copy-image.half .content-first .half.image-container {
    grid-row: 2 !important;
    grid-column: 1/span 8 !important;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.half .content-first .half.image-container {
    grid-row: 2 !important;
    grid-column: 1/span 4 !important;
  }
}
section#copy-image.half .image-first .half.content {
  grid-column-end: 13 !important;
  grid-column-start: 8 !important;
}
@media screen and (max-width: 1155px) {
  section#copy-image.half .image-first .half.content {
    grid-column: 1/span 8 !important;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.half .image-first .half.content {
    grid-column: 1/span 4 !important;
  }
}
section#copy-image.boxed .title-container {
  grid-column: 2/span 10;
  margin-bottom: 60px;
}
@media screen and (max-width: 1155px) {
  section#copy-image.boxed .title-container {
    grid-column: 1/span 8;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.boxed .title-container {
    grid-column: 1/span 4;
  }
}
section#copy-image.boxed .boxed.boxed-content, section#copy-image.boxed .boxed.image-container {
  align-self: center;
}
section#copy-image.boxed .boxed.boxed-content {
  grid-column: auto/span 5;
  display: flex;
  flex-flow: column;
  justify-content: start;
  align-items: flex-start;
  text-align: left;
  background-color: #f9f7f1;
  border: 1px solid #efecdf;
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  box-sizing: border-box;
}
section#copy-image.boxed .boxed.boxed-content img {
  margin-bottom: 35px;
  max-width: 32px;
  width: 100%;
}
section#copy-image.boxed .boxed.image-container {
  grid-column: auto/span 7;
}
@media screen and (max-width: 1155px) {
  section#copy-image.boxed .boxed.boxed-content, section#copy-image.boxed .boxed.image-container {
    grid-column: auto/span 4;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image.boxed .boxed.boxed-content, section#copy-image.boxed .boxed.image-container {
    grid-column-start: 1 !important;
    grid-row: auto !important;
  }
}
section#copy-image.boxed .image-first .image-container {
  grid-column-start: 1;
  grid-row: 2;
}
section#copy-image.boxed .image-first .boxed-content {
  grid-column-start: 8;
  grid-row: 2;
}
section#copy-image.boxed.black .boxed.boxed-content {
  background-color: #1a2323;
  border: 1px solid #283232;
}
section#copy-image.boxed.sand .boxed.boxed-content {
  background-color: #efecdf;
  border: 1px solid #e0ded1;
}
@media screen and (max-width: 1155px) {
  section#copy-image .image-container {
    margin-top: 40px !important;
  }
}
section#copy-image > .grid.image-first .half.content {
  grid-column-start: 7;
  grid-column-end: 13;
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#copy-image > .grid.image-first .half.content {
    grid-column: auto/span 8;
    grid-row-start: auto;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image > .grid.image-first .half.content {
    grid-column: auto/span 4;
  }
}
section#copy-image > .grid.image-first > .half.image-container {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media screen and (max-width: 1155px) {
  section#copy-image > .grid.image-first > .half.image-container {
    grid-column: auto/span 8;
    grid-row-start: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  section#copy-image > .grid.image-first > .half.image-container {
    grid-column: auto/span 4;
    margin-top: 0;
  }
}
section#copy-image > .grid .bottom-content-container,
section#copy-image > .grid .stacked-columns-container {
  margin-top: 75px;
}
@media screen and (max-width: 1155px) {
  section#copy-image > .grid .bottom-content-container,
  section#copy-image > .grid .stacked-columns-container {
    margin-top: 50px;
  }
}
section#copy-image > .grid .stacked-columns-container .icon-container {
  margin-bottom: 15px;
  max-width: 30px;
}
@media screen and (max-width: 1155px) {
  section#copy-image > .grid .stacked-columns-container .column {
    margin-bottom: 40px;
  }
}
section#resources .resource-select {
  margin-top: 75px;
}
section#resources a#resource-card,
section#resources .resource-card {
  border-radius: 10px;
  background-color: #f9f7f1;
  border: 1px solid #efecdf;
  color: #121518;
  display: flex;
  flex-flow: column;
}
section#resources a#resource-card #content-container,
section#resources .resource-card #content-container {
  padding: 0 20px 25px;
  display: flex;
  flex-flow: column;
  height: 100%;
  box-sizing: content-box;
}
section#resources a#resource-card #content-container #button-container,
section#resources .resource-card #content-container #button-container {
  margin-top: auto;
}
section#resources a#resource-card #image-container,
section#resources .resource-card #image-container {
  margin-bottom: 30px;
}
section#resources a#resource-card #image-container img,
section#resources .resource-card #image-container img {
  transition: 0.2s all cubic-bezier(0.455, 0.03, 0.515, 0.955);
  border-radius: 10px 10px 0 0;
  width: 100%;
}
section#resources a#resource-card:hover,
section#resources .resource-card:hover {
  cursor: pointer;
  background-color: #f5f2ea;
  border: 1px solid #e0ded1;
}
section#resources.sand a#resource-card,
section#resources.sand .resource-card {
  background-color: #efecdf;
  border: 1px solid #e0ded1;
  color: #121518;
}
section#resources.black a#resource-card,
section#resources.black .resource-card {
  background-color: #1a2323;
  border: 1px solid #283232;
  color: #ffffff;
}
section#resources.black a#resource-card:hover,
section#resources.black .resource-card:hover {
  background-color: #485252;
  border: 1px solid #8c9696;
}
section#columns .top-content {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  section#columns .top-content {
    padding-bottom: 40px;
  }
}
section#columns .top-content .title-container.text-center .eyebrow {
  margin: 0 auto 30px;
}
section#columns .top-content .title-container.text-center #button-container {
  justify-content: center;
}
section#columns .column-wrapper .column .icon-active img {
  max-width: 32px;
  width: 100%;
}
@media screen and (max-width: 1155px) {
  section#columns .column-wrapper .column h6 {
    margin-bottom: 10px;
  }
}
section#columns.simple .column {
  box-sizing: border-box;
  height: 100%;
}
section#columns.simple .column .content {
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
  height: 100%;
}
section#columns.simple .column .content #button-container {
  margin-top: auto;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  section#columns.simple .column .content #button-container {
    margin-bottom: 10px;
    margin-top: 0;
    padding-top: 10px;
    align-items: flex-start;
  }
}
section#columns.simple .column .image-container {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section#columns.simple .column .image-container {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  section#columns.simple .column {
    margin-bottom: 20px;
  }
}
section#columns.simple.boxed .column .content {
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #efecdf;
  background-color: #f9f7f1;
}
section#columns.simple.boxed .column .content #button-container {
  align-items: flex-start;
}
section#columns.simple.boxed.black .column .content {
  border: 1px solid #283232;
  background-color: #1a2323;
}
section#columns.simple.boxed.sand .column .content {
  border: 1px solid #e0ded1;
  background-color: #efecdf;
}
section#columns.stats .column-wrapper {
  align-items: stretch;
}
section#columns.stats .column-wrapper.centered-columns .column .stats-container {
  align-items: center;
  display: flex;
  flex-flow: column;
  text-align: center;
}
section#columns.stats .column-wrapper.centered-columns .column #button-container {
  justify-content: center;
}
section#columns.stats .column.stats {
  border-radius: 15px;
}
section#columns.stats .column.stats .content {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  border-radius: 15px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
section#columns.stats .column.stats .content .icon-active {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  section#columns.stats .column {
    margin-bottom: 20px;
  }
}
section#columns.stats .column #button-container {
  margin-top: auto;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  section#columns.stats .column #button-container {
    margin-bottom: 10px;
    margin-top: 0;
    padding-top: 10px;
  }
}
section.tabs {
  border: none;
}
section.tabs .title-container {
  margin-bottom: 100px;
}
section.tabs .title-container.text-center .eyebrow {
  margin: 0 auto 30px;
}
section.tabs .title-container.text-center .button-container {
  justify-content: center;
}
@media screen and (max-width: 1155px) {
  section.tabs .title-container {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  section.tabs .title-container {
    margin-bottom: 40px;
  }
}
section.tabs.top-tabs .faq-tabs {
  display: flex;
  gap: 10px;
  align-items: start;
  border-radius: 200px;
  background-color: #f9f7f1;
  margin: 0 auto 60px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  section.tabs.top-tabs .faq-tabs {
    width: calc(100% - 20px);
    padding-bottom: 10px !important;
  }
}
section.tabs.top-tabs .faq-tabs .tab-dropdown {
  border: 1px solid #e0ded1;
  border-radius: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5883 7.36953L9 11.9578L4.41172 7.36953H13.5883Z' fill='black'/%3E%3C/svg%3E%0A");
  background-size: 20px;
  margin-bottom: 0;
}
section.tabs.top-tabs .faq-tabs .tab-button {
  font-family: "Golos Text";
  display: flex;
  color: #121518;
  padding: 14px 18px;
  border: 1px solid #e0ded1;
  border-radius: 200px;
  background-color: #efecdf;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transition: 0.2s all cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
section.tabs.top-tabs .faq-tabs .tab-button.active {
  border: 1px solid #ee1448;
  background-color: #ee1448;
}
section.tabs.top-tabs .faq-tabs .tab-button:hover {
  border: 1px solid #ee1448;
  background-color: #ee1448;
}
@media screen and (max-width: 1155px) {
  section.tabs.top-tabs .faq-tabs {
    padding-bottom: 30px;
    grid-column: auto/span 8;
  }
}
@media screen and (max-width: 768px) {
  section.tabs.top-tabs .faq-tabs {
    grid-column: auto/span 4;
  }
}
section.tabs.top-tabs .tab-details h4 {
  opacity: 0 !important;
  transition: 0.3s all;
}
section.tabs.top-tabs .tab-details.active h4 {
  opacity: 1 !important;
}
@media screen and (max-width: 1155px) {
  section.tabs.top-tabs .tab-details {
    padding-left: 0;
  }
  section.tabs.top-tabs .tab-details::before {
    display: none;
  }
}
section.tabs.top-tabs .tab-image img {
  width: 100%;
}
section.tabs.top-tabs .tab-image::before {
  content: "";
  background-image: url("/wp-content/themes/Avasure/assets/images/tabs-image-background.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  max-width: 650px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1155px) {
  section.tabs.top-tabs .tab-image {
    margin-top: 50px;
  }
}
section.tabs.top-tabs.black .faq-tabs {
  background-color: #000;
}
section.tabs.top-tabs.black .faq-tabs .tab-button {
  color: #ffffff;
  border: 1px solid #283232;
  background-color: #1a2323;
}
section.tabs.top-tabs.black .faq-tabs .tab-button.active {
  color: #121518;
  border: 1px solid #f9cc3d;
  background-color: #f9cc3d;
}
section.tabs.top-tabs.black .faq-tabs .tab-button:hover {
  color: #121518;
  border: 1px solid #f9cc3d;
  background-color: #f9cc3d;
}
section.tabs.right-image > .grid, section.tabs.left-image > .grid {
  align-items: center;
}
section.tabs.right-image .title-container, section.tabs.left-image .title-container {
  padding-bottom: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #121518;
}
section.tabs.right-image .faq-tabs, section.tabs.left-image .faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15px;
  align-items: start;
}
section.tabs.right-image .faq-tabs .tab-button, section.tabs.left-image .faq-tabs .tab-button {
  display: flex;
  flex-wrap: wrap;
  color: #121518;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  width: -webkit-fill-available;
  position: relative;
  transition: 0.2s all cubic-bezier(0.455, 0.03, 0.515, 0.955);
  justify-content: space-between;
}
section.tabs.right-image .faq-tabs .tab-button:not(:first-of-type), section.tabs.left-image .faq-tabs .tab-button:not(:first-of-type) {
  border-top: 1px solid #121518;
  padding-top: 15px;
}
section.tabs.right-image .faq-tabs .tab-button h6, section.tabs.left-image .faq-tabs .tab-button h6 {
  align-self: center;
  margin-bottom: 0;
  width: 80%;
}
section.tabs.right-image .faq-tabs .tab-button .tab-copy,
section.tabs.right-image .faq-tabs .tab-button .text-button, section.tabs.left-image .faq-tabs .tab-button .tab-copy,
section.tabs.left-image .faq-tabs .tab-button .text-button {
  display: none;
  width: 100%;
  margin-top: 15px;
}
section.tabs.right-image .faq-tabs .tab-button .arrow, section.tabs.left-image .faq-tabs .tab-button .arrow {
  width: 30px;
  height: 30px;
}
section.tabs.right-image .faq-tabs .tab-button.active .tab-copy,
section.tabs.right-image .faq-tabs .tab-button.active .text-button, section.tabs.left-image .faq-tabs .tab-button.active .tab-copy,
section.tabs.left-image .faq-tabs .tab-button.active .text-button {
  display: block;
}
section.tabs.right-image .faq-tabs .tab-button.active .arrow, section.tabs.left-image .faq-tabs .tab-button.active .arrow {
  animation: rotate 0.2s linear forwards;
}
@keyframes rotate {
  100% {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 1155px) {
  section.tabs.right-image .faq-tabs, section.tabs.left-image .faq-tabs {
    padding-bottom: 60px;
    grid-column: auto/span 8;
  }
}
@media screen and (max-width: 768px) {
  section.tabs.right-image .faq-tabs, section.tabs.left-image .faq-tabs {
    grid-column: auto/span 4;
  }
}
section.tabs.right-image .tab-image img, section.tabs.left-image .tab-image img {
  width: 100%;
}
section.tabs.right-image.black .title-container, section.tabs.left-image.black .title-container {
  border-bottom: 1px solid #283232;
}
section.tabs.right-image.black .title-container div.lead, section.tabs.left-image.black .title-container div.lead {
  color: #ffffff;
}
section.tabs.right-image.black .tab-button:not(:first-of-type), section.tabs.left-image.black .tab-button:not(:first-of-type) {
  border-top: 1px solid #283232;
}
section.tabs.right-image.black .tab-button .arrow svg .bg, section.tabs.left-image.black .tab-button .arrow svg .bg {
  fill: #283232;
}
section.tabs.right-image.black .tab-button .arrow svg .ol, section.tabs.left-image.black .tab-button .arrow svg .ol {
  stroke: #485252;
}
section.tabs.right-image.black .tab-button .arrow svg path, section.tabs.left-image.black .tab-button .arrow svg path {
  stroke: #ffffff;
}
section.tabs.right-image.sand .title-container, section.tabs.left-image.sand .title-container {
  border-bottom: 1px solid #e0ded1;
}
section.tabs.right-image.sand .tab-button:not(:first-of-type), section.tabs.left-image.sand .tab-button:not(:first-of-type) {
  border-top: 1px solid #e0ded1;
}
section.tabs.right-image.sand .tab-button .arrow svg .bg, section.tabs.left-image.sand .tab-button .arrow svg .bg {
  fill: #efecdf;
}
section.tabs.right-image.sand .tab-button .arrow svg .ol, section.tabs.left-image.sand .tab-button .arrow svg .ol {
  stroke: #e0ded1;
}
section.tabs .tab-details {
  display: none;
  align-self: center;
  height: 100%;
  position: relative;
}
section.tabs .tab-details.active {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
section.tabs .tab-details .icon {
  max-width: 40px;
  margin-bottom: 35px;
}
section.tabs .tab-image {
  display: none;
}
section.tabs .tab-image.active {
  display: block;
}
section#accordion .grid.intro-title {
  align-items: center;
  margin-bottom: 75px;
}
section#accordion .grid.intro-title h2 {
  margin-bottom: 0;
}
section#accordion .grid.intro-title p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  section#accordion .grid.intro-title {
    margin-bottom: 60px;
  }
}
section#accordion #accordion-info {
  gap: 15px;
  display: flex;
  flex-flow: column;
}
section#accordion #accordion-info .accordion-row {
  padding: 20px;
  border-radius: 10px;
}
section#accordion #accordion-info .accordion-row #question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0ded1;
  padding-top: 15px;
}
section#accordion #accordion-info .accordion-row #question h6 {
  margin-right: 20px;
  margin-bottom: 0;
}
section#accordion #accordion-info .accordion-row #question svg {
  height: 25px;
  width: 25px;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
section#accordion #accordion-info .accordion-row #question .accordion-toggle {
  position: relative;
  display: flex;
}
section#accordion #accordion-info .accordion-row #question .accordion-toggle::after {
  content: "-";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Golos Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: #121518;
  position: absolute;
  top: 1px;
  left: 0;
}
section#accordion #accordion-info .accordion-row #question.active .accordion-toggle::after, section#accordion #accordion-info .accordion-row #question:hover .accordion-toggle::after {
  content: "+";
}
section#accordion #accordion-info .accordion-row #question.active + #answer {
  display: block !important;
}
section#accordion #accordion-info .accordion-row #answer {
  display: none;
  margin-top: 20px;
}
section#accordion.black .accordion-toggle svg circle {
  fill: #1a2323;
  stroke: #283232;
}
section#accordion.black .accordion-toggle::after {
  color: #ffffff !important;
}
section#masonry .title-container {
  margin-bottom: 40px;
}
section#masonry .tile-wrapper .tile {
  display: flex;
  flex-flow: column;
  border-radius: 15px;
  background: #f4f6f5;
  padding: 30px;
  justify-content: flex-start;
  height: -webkit-fill-available;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  section#masonry .tile-wrapper .tile {
    padding: 20px;
  }
}
section#masonry .tile-wrapper .tile .icon {
  margin-bottom: 25px;
}
section#masonry .tile-wrapper .tile h3 {
  margin-bottom: 10px;
}
section#masonry .tile-wrapper .tile.image-bottom {
  flex-flow: column-reverse;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  section#masonry .tile-wrapper .tile.image-bottom {
    flex-flow: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  section#masonry .tile-wrapper .tile.full .image-container {
    height: 0;
    padding-bottom: 60.25%;
    position: relative;
  }
  section#masonry .tile-wrapper .tile.full .image-container img {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-position: left;
       object-position: left;
    border-radius: 10px;
  }
}
section#quotes .title-section {
  margin-bottom: 75px;
}
section#quotes .title-section h2 {
  margin-bottom: 0;
}
section#quotes .title-section p {
  margin-top: 20px;
}
section#quotes .quote-content #button-container {
  justify-content: flex-end;
}
section#quotes .slick-track {
  display: flex !important;
}
section#quotes .slick-slide {
  height: inherit !important;
}
section#quotes .slick-list {
  padding: 0 20% 0 0 !important;
  overflow: visible !important;
}
section#quotes .slick-list .slick-slide.quote-slide {
  background: #f9f7f1;
  border-radius: 15px;
  padding: 30px;
  margin-right: 30px;
  border: 1px solid #efecdf;
  transition: all 0.4s ease-in-out;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-image {
  width: 37.08%;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-image img {
  width: 100%;
  border-radius: 5px;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-image .quote-logo {
  max-width: 180px;
  margin-top: 20px;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-image .quote-logo img {
  width: 100%;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-content {
  width: 62.92%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 25px;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-content .quote {
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section#quotes .slick-list .slick-slide.quote-slide .quote-content .quote {
    font-size: 18px;
  }
}
section#quotes .slick-list .slick-slide.quote-slide .quote-content .byline {
  color: #121518;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-content .byline p.lead {
  margin-bottom: 0;
}
section#quotes .slick-list .slick-slide.quote-slide .quote-content #button-container {
  margin-top: auto;
}
@media screen and (max-width: 1155px) {
  section#quotes .slick-list .slick-slide.quote-slide {
    flex-flow: column;
    margin-right: 12px;
    row-gap: 40px;
  }
  section#quotes .slick-list .slick-slide.quote-slide:last-child {
    margin-right: 0;
  }
  section#quotes .slick-list .slick-slide.quote-slide .quote-image {
    width: 100%;
    max-height: 188px;
    display: flex;
  }
  section#quotes .slick-list .slick-slide.quote-slide .quote-image img {
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#quotes .slick-list .slick-slide.quote-slide .quote-content {
    width: 100%;
    height: 100%;
  }
  section#quotes .slick-list .slick-slide.quote-slide .quote-content #button-container {
    align-items: flex-end;
  }
}
@media screen and (max-width: 1155px) {
  section#quotes .slick-list {
    padding: 0 !important;
  }
}
section#quotes .slider-bottom {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  section#quotes .slider-bottom {
    padding: 0 22px;
    width: calc(100% - 44px);
  }
}
@media screen and (max-width: 768px) {
  section#quotes .slider-bottom {
    justify-content: center;
  }
}
section#quotes .slider-bottom .slick-slider-nav {
  display: flex;
  margin-top: 40px;
  align-items: center;
}
section#quotes .slider-bottom .slick-slider-nav .slick-next {
  order: 3;
}
section#quotes .slider-bottom .slick-slider-nav .slick-arrow {
  z-index: 10;
  font-size: 0;
  width: 30px;
  height: 30px;
}
section#quotes .slider-bottom .slick-slider-nav .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
section#quotes .slider-bottom .slick-slider-nav .slick-arrow.slick-next, section#quotes .slider-bottom .slick-slider-nav .slick-arrow.slick-prev {
  transition: 0.5s all cubic-bezier(0.165, 0.84, 0.44, 1);
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23EFECDF'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23E0DED1'/%3E%3Cpath d='M9 15.25L21 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4927 10L20.796 15.3033L15.4927 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#quotes .slider-bottom .slick-slider-nav .slick-arrow.slick-disabled {
  opacity: 0.4;
}
section#quotes .slider-bottom .slick-slider-nav .slick-dots {
  display: flex !important;
  margin: 0 33px;
  align-items: center;
}
section#quotes .slider-bottom .slick-slider-nav .slick-dots li {
  width: 20px;
  text-align: center;
}
section#quotes .slider-bottom .slick-slider-nav .slick-dots li:after {
  position: relative;
  top: -3px;
  content: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='%23EFECDF' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='6' height='6' rx='3' stroke='%23EFECDF' stroke-width='2'/%3E%3C/svg%3E%0A");
}
section#quotes .slider-bottom .slick-slider-nav .slick-dots li {
  list-style: none;
}
section#quotes .slider-bottom .slick-slider-nav .slick-dots li.slick-active:after {
  content: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='%23121518' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='6' height='6' rx='3' stroke='%23121518' stroke-width='2'/%3E%3C/svg%3E%0A");
}
section#quotes .slider-bottom .slick-slider-nav .slick-dots li button {
  display: none;
}
section#quotes .single-quote .quote-card {
  background: #f9f7f1;
  border-radius: 15px;
  padding: 30px;
  margin-right: 0;
  border: 2px solid #efecdf;
  transition: all 0.4s ease-in-out;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
section#quotes .single-quote .quote-card .quote-image {
  width: 21.31%;
}
section#quotes .single-quote .quote-card .quote-image img {
  width: 100%;
  border-radius: 5px;
}
section#quotes .single-quote .quote-card .quote-image .quote-logo {
  max-width: 180px;
  margin-top: 20px;
}
section#quotes .single-quote .quote-card .quote-image .quote-logo img {
  width: 100%;
}
section#quotes .single-quote .quote-card .quote-content {
  width: 78.69%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  row-gap: 25px;
}
section#quotes .single-quote .quote-card .quote-content .quote {
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section#quotes .single-quote .quote-card .quote-content .quote {
    font-size: 18px;
  }
}
section#quotes .single-quote .quote-card .quote-content .byline {
  color: #121518;
}
section#quotes .single-quote .quote-card .quote-content .byline p.lead {
  margin-bottom: 0;
}
@media screen and (max-width: 1155px) {
  section#quotes .single-quote .quote-card {
    flex-flow: column;
    margin-right: 12px;
    row-gap: 40px;
  }
  section#quotes .single-quote .quote-card:last-child {
    margin-right: 0;
  }
  section#quotes .single-quote .quote-card .quote-image {
    width: 100%;
    max-height: 188px;
    display: flex;
  }
  section#quotes .single-quote .quote-card .quote-image img {
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section#quotes .single-quote .quote-card .quote-content {
    width: 100%;
    height: 100%;
  }
  section#quotes .single-quote .quote-card .quote-content #button-container {
    align-items: flex-end;
  }
}
section#quotes .quote-columns .third {
  height: 100%;
}
section#quotes .quote-columns .third .single-quote {
  height: 100%;
}
section#quotes .quote-columns .third .single-quote .quote-slide {
  background-color: #f9f7f1;
  padding: 30px;
  display: flex;
  flex-flow: column;
  row-gap: 40px;
  border: 1px solid #efecdf;
  border-radius: 15px;
  height: calc(100% - 66px);
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-image img {
  width: 100%;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-image .quote-logo {
  margin-top: 20px;
  max-width: 180px;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-image .quote-logo img {
  width: 100%;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-content {
  height: 100%;
  display: flex;
  flex-flow: column;
  row-gap: 25px;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-content .quote {
  font-size: 18px;
  line-height: 150%;
  font-weight: 500;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-content .byline {
  color: #121518;
  margin-top: auto;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-content .byline p.lead {
  margin-bottom: 0;
}
section#quotes .quote-columns .third .single-quote .quote-slide .quote-content #button-container {
  margin-top: 0;
}
@media screen and (max-width: 1155px) {
  section#quotes .quote-columns .third .single-quote {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1155px) {
  section#quotes .quote-columns {
    row-gap: 40px;
  }
}
section#quotes.black .quote-slide,
section#quotes.black .quote-card {
  background-color: #1a2323 !important;
  border-color: #283232 !important;
}
section#quotes.black .slick-slider-nav .slick-next,
section#quotes.black .slick-slider-nav .slick-prev {
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23283232'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23485252'/%3E%3Cpath d='M9 15.25L21 15.25' stroke='white'/%3E%3Cpath d='M15.4927 10L20.796 15.3033L15.4927 20.6066' stroke='white'/%3E%3C/svg%3E%0A") !important;
}
section#quotes.black .slick-slider-nav .slick-dots li:after {
  content: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='%23485252' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='6' height='6' rx='3' stroke='%23485252' stroke-width='2'/%3E%3C/svg%3E%0A") !important;
}
section#quotes.black .slick-slider-nav .slick-dots li.slick-active:after {
  content: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='6' height='6' rx='3' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A") !important;
}
section#quotes.sand .quote-slide,
section#quotes.sand .quote-card {
  background-color: #efecdf !important;
  border-color: #e0ded1 !important;
}
section#title.centered #button-container {
  justify-content: center;
}
section#long-list {
  position: relative;
}
section#long-list .intro-title .title-container {
  margin-bottom: 60px;
}
section#long-list #list-container .title-container {
  border-bottom: 1px solid #e0ded1;
  padding-bottom: 24px;
}
section#long-list #list-container #list-item {
  display: flex;
  flex-direction: row;
  padding: 24px 0;
  border-bottom: 1px solid #e0ded1;
  gap: 28px;
  align-items: center;
}
section#long-list #list-container #list-item:first-child {
  border-top: 1px solid #e0ded1;
}
section#long-list #list-container #list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
section#long-list.black #list-container .title-container,
section#long-list.black #list-container #list-item {
  border-bottom: 1px solid #485252;
}
section#long-list.black #list-container #list-item:last-child {
  border-bottom: none;
}
section#team .title-container {
  margin-bottom: 80px;
}
@media screen and (max-width: 1155px) {
  section#team .title-container {
    margin-bottom: 40px;
  }
}
section#team .image-container {
  margin-bottom: 24px;
}
section#team .bio-container {
  display: none !important;
}
section#team .bio-container.active {
  display: block !important;
}
section#team .show-bio p {
  margin: 0;
}
section#team .bio-container {
  background-color: #f9f7f1;
  background-clip: padding-box;
  border: solid 1px #efecdf;
  position: relative;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
section#team .bio-container .member-details {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
section#team .bio-container .member-details .social {
  display: flex;
  gap: 5px;
}
section#team .bio-container p:not(:last-child) {
  margin-bottom: 20px;
}
section#team .bio-container[data-member="1"],
section#team .bio-container[data-member="2"],
section#team .bio-container[data-member="3"],
section#team .bio-container[data-member="4"] {
  grid-row: 2;
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="3"],
  section#team .bio-container[data-member="4"] {
    grid-row: 3;
  }
}
section#team .bio-container[data-member="5"],
section#team .bio-container[data-member="6"],
section#team .bio-container[data-member="7"],
section#team .bio-container[data-member="8"] {
  grid-row: 3;
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="5"],
  section#team .bio-container[data-member="6"] {
    grid-row: 4;
  }
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="7"],
  section#team .bio-container[data-member="8"] {
    grid-row: 5;
  }
}
section#team .bio-container[data-member="9"],
section#team .bio-container[data-member="10"],
section#team .bio-container[data-member="11"],
section#team .bio-container[data-member="12"] {
  grid-row: 4;
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="9"],
  section#team .bio-container[data-member="10"] {
    grid-row: 6;
  }
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="11"],
  section#team .bio-container[data-member="12"] {
    grid-row: 7;
  }
}
section#team .bio-container[data-member="13"],
section#team .bio-container[data-member="14"],
section#team .bio-container[data-member="15"],
section#team .bio-container[data-member="16"] {
  grid-row: 5;
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="13"],
  section#team .bio-container[data-member="14"] {
    grid-row: 8;
  }
}
@media screen and (max-width: 1155px) {
  section#team .bio-container[data-member="15"],
  section#team .bio-container[data-member="16"] {
    grid-row: 9;
  }
}
@media screen and (max-width: 768px) {
  section#team .bio-container[data-member] {
    grid-row: auto !important;
  }
}
section#team h4 {
  margin-bottom: 8px;
}
section#team .show-bio {
  display: flex;
  gap: 12px;
  color: #121518;
  margin-top: 12px;
}
section#team .show-bio p {
  display: none;
}
section#team .show-bio.collapse .icon {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26' viewBox='0 0 25 26' fill='none'%3E%3Crect x='0.348462' y='0.852368' width='24.3031' height='24.3031' rx='1.74231' fill='white' stroke='white' stroke-width='0.696924'/%3E%3Cpath d='M5 14.262V12.7461H20V14.262H5Z' fill='black'/%3E%3C/svg%3E");
}
section#team .show-bio.collapse p.collapse {
  display: inline-block;
}
section#team .show-bio.expand .icon {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='26' viewBox='0 0 25 26' fill='none'%3E%3Crect x='0.348462' y='0.852368' width='24.3031' height='24.3031' rx='1.74231' fill='white' stroke='white' stroke-width='0.696924'/%3E%3Cpath d='M13.5159 21.0039L12 21.0039L12 6.00391L13.5159 6.00391L13.5159 21.0039Z' fill='black'/%3E%3Cpath d='M5 14.262V12.7461H20V14.262H5Z' fill='black'/%3E%3C/svg%3E");
}
section#team .show-bio.expand p.expand {
  display: inline-block;
}
section#team #biography {
  margin-top: 12px;
  display: none;
}
section#team #biography.show {
  display: block;
}
section#subscribe.black {
  background-color: #ffffff;
}
section#subscribe.black #subscribe-banner {
  background-color: #121518;
  background-image: url("data:image/svg+xml,%3Csvg width='622' height='280' viewBox='0 0 622 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M621.321 0L0 0V280H417.783C515.796 215.242 589.292 116.247 621.321 0Z' fill='%23283232'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 40px 70px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section#subscribe.black #subscribe-banner {
    flex-flow: column;
    padding: 20px;
    background-image: none;
  }
}
section#subscribe.black #subscribe-banner .description {
  max-width: 330px;
}
@media screen and (max-width: 768px) {
  section#subscribe.black #subscribe-banner .description {
    max-width: none;
    width: 100%;
  }
}
section#subscribe.black #subscribe-banner .signup-form {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  section#subscribe.black #subscribe-banner .signup-form {
    width: 100%;
  }
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm {
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  section#subscribe.black #subscribe-banner .signup-form .mktoForm {
    padding: 0;
    margin-top: 20px;
  }
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm label {
  color: #ffffff;
  width: 100% !important;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm label#LblEmail {
  width: 20% !important;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm input#Email {
  width: 80% !important;
  background: #283232;
  border: 1px solid #485252;
  border-radius: 5px;
  color: #ffffff;
  padding: 0 15px;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoButtonRow {
  margin-top: 10px;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoButton {
  background-color: transparent;
  box-shadow: none;
  border: none;
  text-shadow: none;
  font-weight: 500;
  color: black;
  font-size: 14px;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoCaptchaDisclaimer {
  display: none;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoFieldDescriptor.mktoFormCol {
  width: 100%;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoFieldWrap.mktoRequiredField {
  display: flex;
  align-items: center;
  width: 100%;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoLogicalField.mktoCheckboxList.mktoHasWidth {
  order: 1;
  width: -moz-max-content !important;
  width: max-content !important;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoLogicalField.mktoCheckboxList.mktoHasWidth label#LblMarketing_SMS_Opt_In__c,
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoLogicalField.mktoCheckboxList.mktoHasWidth label#LblEmail_Opt_In__c {
  display: none;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm span.mktoButtonWrap {
  margin: 0 !important;
  padding: 8px 8px 8px 8px;
  font-family: "Golos Text", sans-serif;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoAsterix {
  display: none !important;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #283232;
  margin: 0;
  font: inherit;
  color: #ffffff;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 0.15em solid #485252;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm input[type=checkbox]:before {
  content: "";
  display: block;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm input[type=checkbox]:checked::before {
  transform: scale(1);
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoFieldWrap {
  display: flex;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm label#LblMarketing_SMS_Opt_In__c {
  order: 2;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm label#LblEmail_Opt_In__c {
  order: 2;
}
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoGutter.mktoHasWidth,
section#subscribe.black #subscribe-banner .signup-form .mktoForm .mktoOffset {
  display: none;
}
section#subscribe.white {
  background-color: #121518;
}
section#subscribe.white #subscribe-banner {
  background-color: #efecdf;
  background-image: url("data:image/svg+xml,%3Csvg width='622' height='280' viewBox='0 0 622 280' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M621.321 0L0 0V280H417.783C515.796 215.242 589.292 116.247 621.321 0Z' fill='%23A0AF9E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 40px 70px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  section#subscribe.white #subscribe-banner {
    flex-flow: column;
    padding: 20px;
    background-image: none;
  }
}
section#subscribe.white #subscribe-banner .description {
  max-width: 330px;
}
@media screen and (max-width: 768px) {
  section#subscribe.white #subscribe-banner .description {
    max-width: none;
    width: 100%;
  }
}
section#subscribe.white #subscribe-banner .signup-form {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  section#subscribe.white #subscribe-banner .signup-form {
    width: 100%;
  }
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm {
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  section#subscribe.white #subscribe-banner .signup-form .mktoForm {
    padding: 0;
    margin-top: 20px;
  }
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm label {
  color: #121518;
  width: 100% !important;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm label#LblEmail {
  width: 20% !important;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm input#Email {
  width: 80% !important;
  background: #f9f7f1;
  border: 1px solid #e0ded1;
  border-radius: 5px;
  color: #121518;
  padding: 0 15px;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoButtonRow {
  margin-top: 10px;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoButton {
  background-color: transparent;
  box-shadow: none;
  border: none;
  text-shadow: none;
  font-weight: 500;
  color: black;
  font-size: 14px;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoCaptchaDisclaimer {
  display: none;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoFieldDescriptor.mktoFormCol {
  width: 100%;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoFieldWrap.mktoRequiredField {
  display: flex;
  align-items: center;
  width: 100%;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoLogicalField.mktoCheckboxList.mktoHasWidth {
  order: 1;
  width: -moz-max-content !important;
  width: max-content !important;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoLogicalField.mktoCheckboxList.mktoHasWidth label#LblMarketing_SMS_Opt_In__c,
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoLogicalField.mktoCheckboxList.mktoHasWidth label#LblEmail_Opt_In__c {
  display: none;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm span.mktoButtonWrap {
  margin: 0 !important;
  padding: 8px 8px 8px 8px;
  font-family: "Golos Text", sans-serif;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoAsterix {
  display: none !important;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  margin: 0;
  font: inherit;
  color: #ffffff;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  border: 0.15em solid #485252;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm input[type=checkbox]:before {
  content: "";
  display: block;
  background-color: #121518;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm input[type=checkbox]:checked::before {
  transform: scale(1);
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoFieldWrap {
  display: flex;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm label#LblMarketing_SMS_Opt_In__c {
  order: 2;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm label#LblEmail_Opt_In__c {
  order: 2;
}
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoGutter.mktoHasWidth,
section#subscribe.white #subscribe-banner .signup-form .mktoForm .mktoOffset {
  display: none;
}
section aside #promo-image {
  margin-bottom: 40px;
}
section aside #promo-image img {
  border-radius: 10px;
}
section#cta.boxed .grid {
  padding: 0;
  border-radius: 75px 0 75px 0;
  align-items: center;
  background-color: #121518;
}
section#cta.boxed .grid h2,
section#cta.boxed .grid p {
  color: #ffffff;
}
section#cta.boxed .grid .half.title-container {
  padding: 50px 0 50px 70px;
}
section#cta.boxed .grid .half#image-container img {
  border-radius: 0 0 75px 0;
}
@media screen and (max-width: 768px) {
  section#cta.boxed .grid {
    border-radius: 35px 0 35px 0;
  }
  section#cta.boxed .grid .half.title-container {
    padding: 40px 40px 0 40px;
  }
  section#cta.boxed .grid .half#image-container {
    margin-top: 40px;
    width: calc(100% + 1px);
  }
  section#cta.boxed .grid .half#image-container img {
    border-radius: 0 0 35px 0;
  }
}
section#cta.boxed.white #button-container a#button, section#cta.boxed.sand #button-container a#button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 8px 8px 20px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 25px;
  color: #121518;
  text-align: center;
  background-color: #f9cc3d;
  box-sizing: border-box;
  height: 45px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  cursor: pointer;
}
section#cta.boxed.white #button-container a#button:after, section#cta.boxed.sand #button-container a#button:after {
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.white #button-container a#button:hover, section#cta.boxed.sand #button-container a#button:hover {
  background-color: #f9cc3d;
  color: #121518;
}
section#cta.boxed.white #button-container a#button:hover:after, section#cta.boxed.sand #button-container a#button:hover:after {
  transform: rotate(-20deg);
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F9CC3D'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F9CC3D'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.white #button-container a#button:focus, section#cta.boxed.sand #button-container a#button:focus {
  background-color: #f9cc3d;
  color: #121518;
}
section#cta.boxed.white #button-container a#button:focus:after, section#cta.boxed.sand #button-container a#button:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.white #button-container a#button.secondary, section#cta.boxed.sand #button-container a#button.secondary {
  background: transparent;
  border: 1.5px solid #121518;
  color: #121518;
}
section#cta.boxed.white #button-container a#button.secondary:hover, section#cta.boxed.sand #button-container a#button.secondary:hover {
  background: transparent;
  color: #121518;
}
section#cta.boxed.white #button-container a#button.secondary:hover:after, section#cta.boxed.sand #button-container a#button.secondary:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.white #button-container a#button.secondary:focus, section#cta.boxed.sand #button-container a#button.secondary:focus {
  background: transparent;
}
section#cta.boxed.white #button-container a#button.secondary:focus:after, section#cta.boxed.sand #button-container a#button.secondary:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.white #button-container div#text-button,
section#cta.boxed.white #button-container a#text-button,
section#cta.boxed.white #button-container a.text-button, section#cta.boxed.sand #button-container div#text-button,
section#cta.boxed.sand #button-container a#text-button,
section#cta.boxed.sand #button-container a.text-button {
  display: flex;
  position: relative;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #f9cc3d;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  color: #ffffff;
  padding-bottom: 5px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
section#cta.boxed.white #button-container div#text-button:hover,
section#cta.boxed.white #button-container a#text-button:hover,
section#cta.boxed.white #button-container a.text-button:hover, section#cta.boxed.sand #button-container div#text-button:hover,
section#cta.boxed.sand #button-container a#text-button:hover,
section#cta.boxed.sand #button-container a.text-button:hover {
  text-decoration-thickness: 2.5px;
}
section#cta.boxed.black .grid {
  background-color: #f9f7f1;
}
section#cta.boxed.black .grid h2,
section#cta.boxed.black .grid p {
  color: #121518;
}
section#cta.boxed.black #button-container a#button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 8px 8px 20px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 25px;
  color: #121518;
  text-align: center;
  background: #ee1448;
  box-sizing: border-box;
  height: 45px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  cursor: pointer;
}
section#cta.boxed.black #button-container a#button:after {
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.black #button-container a#button:hover:after {
  transform: rotate(-20deg);
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.black #button-container a#button:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.black #button-container a#button.secondary {
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
}
section#cta.boxed.black #button-container a#button.secondary:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='white'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E");
}
section#cta.boxed.black #button-container a#button.secondary:hover {
  background: transparent;
}
section#cta.boxed.black #button-container a#button.secondary:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='white'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='white'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.black #button-container a#button.secondary:focus {
  background: transparent;
}
section#cta.boxed.black #button-container a#button.secondary:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='white'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='white'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.boxed.black #button-container div#text-button,
section#cta.boxed.black #button-container a#text-button,
section#cta.boxed.black #button-container a.text-button {
  display: flex;
  position: relative;
  font-family: "Golos Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: #ee1448;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  color: #121518;
  padding-bottom: 5px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
}
section#cta.boxed.black #button-container div#text-button:hover,
section#cta.boxed.black #button-container a#text-button:hover,
section#cta.boxed.black #button-container a.text-button:hover {
  text-decoration-thickness: 2.5px;
}
section#cta.full-width {
  position: relative;
}
section#cta.full-width .grid {
  z-index: 1;
}
section#cta.full-width .title-container #button-container {
  justify-content: center;
}
section#cta.full-width.white:before, section#cta.full-width.black:before, section#cta.full-width.sand:before {
  position: absolute;
  bottom: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  width: -webkit-fill-available;
  height: 40%;
}
@media screen and (max-width: 768px) {
  section#cta.full-width.white:before, section#cta.full-width.black:before, section#cta.full-width.sand:before {
    display: none;
  }
}
section#cta.full-width.white:after, section#cta.full-width.black:after, section#cta.full-width.sand:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: -webkit-fill-available;
  height: 100%;
  z-index: 0;
}
section#cta.full-width.white:before {
  background-image: url("data:image/svg+xml,%3Csvg width='206' height='146' viewBox='0 0 206 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.499277 -1.80528e-05C113.353 -8.09956e-06 206.001 92.6482 206.001 206.5C206.001 320.352 113.353 413 -0.499313 413C-114.351 413 -207 320.352 -207 206.5C-207 92.6482 -114.351 -2.80061e-05 -0.499277 -1.80528e-05Z' fill='%23F9CC3D'/%3E%3C/svg%3E%0A");
}
section#cta.full-width.white:after {
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='413' viewBox='0 0 560 413' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00012207 413C259.217 403.381 477.512 233.762 559.031 -6.10555e-05L559.264 -6.10352e-05L559.264 413L0.00012207 413Z' fill='%23EFECDF'/%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 768px) {
  section#cta.full-width.white:after {
    opacity: 0.5;
  }
}
section#cta.full-width.black:before {
  background-image: url("data:image/svg+xml,%3Csvg width='206' height='146' viewBox='0 0 206 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.499277 -1.80528e-05C113.353 -8.09956e-06 206.001 92.6482 206.001 206.5C206.001 320.352 113.353 413 -0.499313 413C-114.351 413 -207 320.352 -207 206.5C-207 92.6482 -114.351 -2.80061e-05 -0.499277 -1.80528e-05Z' fill='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.full-width.black:after {
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='413' viewBox='0 0 560 413' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00012207 413C259.217 403.381 477.512 233.762 559.031 -6.10555e-05L559.264 -6.10352e-05L559.264 413L0.00012207 413Z' fill='%231A2323'/%3E%3C/svg%3E%0A");
}
section#cta.full-width.sand:before {
  background-image: url("data:image/svg+xml,%3Csvg width='206' height='146' viewBox='0 0 206 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-0.499277 -1.80528e-05C113.353 -8.09956e-06 206.001 92.6482 206.001 206.5C206.001 320.352 113.353 413 -0.499313 413C-114.351 413 -207 320.352 -207 206.5C-207 92.6482 -114.351 -2.80061e-05 -0.499277 -1.80528e-05Z' fill='%23727D71'/%3E%3C/svg%3E%0A");
}
section#cta.full-width.sand:after {
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='413' viewBox='0 0 560 413' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00012207 413C259.217 403.381 477.512 233.762 559.031 -6.10555e-05L559.264 -6.10352e-05L559.264 413L0.00012207 413Z' fill='%23A0AF9E'/%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 768px) {
  section#cta.full-width.sand:after {
    opacity: 0.25;
  }
}
section#cta.banner .title-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #efecdf;
  border-radius: 20px;
  overflow: hidden;
}
section#cta.banner .title-container .content {
  position: relative;
  padding: 70px 0 70px 70px;
  z-index: 0;
  width: 100%;
}
section#cta.banner .title-container .content h2,
section#cta.banner .title-container .content p {
  max-width: 769px;
}
section#cta.banner .title-container .content:after {
  position: absolute;
  right: -1px;
  bottom: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: -webkit-fill-available;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='413' viewBox='0 0 560 413' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00012207 413C259.217 403.381 477.512 233.762 559.031 -6.10555e-05L559.264 -6.10352e-05L559.264 413L0.00012207 413Z' fill='%23F9F7F1'/%3E%3C/svg%3E%0A");
}
section#cta.banner .title-container #button-container {
  margin: 0;
  position: relative;
  align-items: center;
  background-color: #f9f7f1;
  padding: 0 70px 0 0;
}
section#cta.banner .title-container #button-container .button,
section#cta.banner .title-container #button-container #button {
  z-index: 1;
}
@media screen and (max-width: 1155px) {
  section#cta.banner .title-container #button-container {
    padding: 70px 40px 70px 70px;
  }
}
@media screen and (max-width: 768px) {
  section#cta.banner .title-container {
    flex-flow: column;
  }
  section#cta.banner .title-container .content {
    padding: 40px;
    width: auto;
  }
  section#cta.banner .title-container .content:after {
    bottom: -1px;
  }
  section#cta.banner .title-container #button-container {
    justify-content: center;
    margin-left: 0;
    padding: 40px;
  }
}
section#cta.banner.black .title-container {
  background-color: #e8bc2e;
}
section#cta.banner.black .title-container h2,
section#cta.banner.black .title-container p {
  color: #121518;
}
section#cta.banner.black .title-container .content:after {
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='413' viewBox='0 0 560 413' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00012207 413C259.217 403.381 477.512 233.762 559.031 -6.10555e-05L559.264 -6.10352e-05L559.264 413L0.00012207 413Z' fill='%23F9CC3D'/%3E%3C/svg%3E%0A");
}
section#cta.banner.black #button-container {
  background-color: #f9cc3d;
}
section#cta.banner.black #button-container a#button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 8px 8px 20px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 25px;
  color: #121518;
  text-align: center;
  background-color: #f9cc3d;
  box-sizing: border-box;
  height: 45px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  cursor: pointer;
  border: 1px solid #121518;
}
section#cta.banner.black #button-container a#button:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.banner.black #button-container a#button:hover {
  background-color: #f9cc3d;
  color: #121518;
}
section#cta.banner.black #button-container a#button:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F9CC3D'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F9CC3D'/%3E%3C/svg%3E%0A");
}
section#cta.banner.black #button-container a#button:focus {
  background-color: #f9cc3d;
  color: #121518;
}
section#cta.banner.black #button-container a#button:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.banner.black #button-container a#button.secondary {
  background: transparent;
  border: 1.5px solid #121518;
  color: #121518;
}
section#cta.banner.black #button-container a#button.secondary:hover {
  background: transparent;
  color: #121518;
}
section#cta.banner.black #button-container a#button.secondary:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
section#cta.banner.black #button-container a#button.secondary:focus {
  background: transparent;
}
section#cta.banner.black #button-container a#button.secondary:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E%0A");
}
section#cta.banner.sand .title-container {
  background-color: #1a2323;
}
section#cta.banner.sand .title-container h2,
section#cta.banner.sand .title-container p {
  color: #ffffff;
}
section#cta.banner.sand .title-container .content:after {
  background-image: url("data:image/svg+xml,%3Csvg width='560' height='413' viewBox='0 0 560 413' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00012207 413C259.217 403.381 477.512 233.762 559.031 -6.10555e-05L559.264 -6.10352e-05L559.264 413L0.00012207 413Z' fill='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.banner.sand #button-container {
  background-color: #121518;
}
section#cta.banner.sand #button-container a#button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 8px 8px 20px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 25px;
  color: #121518;
  text-align: center;
  background: #ee1448;
  box-sizing: border-box;
  height: 45px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 0;
  cursor: pointer;
}
section#cta.banner.sand #button-container a#button:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.banner.sand #button-container a#button:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.banner.sand #button-container a#button:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='%23121518'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='%23121518'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23F34249'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23F34249'/%3E%3C/svg%3E%0A");
}
section#cta.banner.sand #button-container a#button.secondary {
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
}
section#cta.banner.sand #button-container a#button.secondary:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='white'/%3E%3Cpath d='M9.00009 15.25L21.0001 15.25' stroke='white'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='white'/%3E%3C/svg%3E");
}
section#cta.banner.sand #button-container a#button.secondary:hover {
  background: transparent;
}
section#cta.banner.sand #button-container a#button.secondary:hover:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='white'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='white'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}
section#cta.banner.sand #button-container a#button.secondary:focus {
  background: transparent;
}
section#cta.banner.sand #button-container a#button.secondary:focus:after {
  content: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' fill='white'/%3E%3Crect x='0.5' y='0.5' width='29' height='29' rx='14.5' stroke='white'/%3E%3Cpath d='M9.00006 15.25L21.0001 15.25' stroke='%23121518'/%3E%3Cpath d='M15.4928 10L20.7961 15.3033L15.4928 20.6066' stroke='%23121518'/%3E%3C/svg%3E%0A");
}

.comparison-table.table-container .title-container {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .comparison-table.table-container .title-container {
    margin-bottom: 40px;
  }
}
.comparison-table.table-container .title-container h2 {
  margin-bottom: 0;
}
.comparison-table.table-container table:not(:last-of-type) {
  margin-bottom: 60px;
}
.comparison-table.table-container table tbody {
  border: none;
}
.comparison-table.table-container table .eyebrow {
  display: none;
  margin: 0 auto 8px;
}
.comparison-table.table-container table:first-of-type .eyebrow {
  display: block;
}
.comparison-table.table-container table tr.grid {
  padding: 0;
  border-bottom: 1px solid #bfc6c6;
}
.comparison-table.table-container table tr.grid.title-row {
  border-bottom: 1px solid black;
}
.comparison-table.table-container table tr.grid.title-row td {
  padding-top: 40px;
}
.comparison-table.table-container table tr.grid.title-row td:first-child p {
  font-size: 18px;
  font-weight: 700;
}
.comparison-table.table-container table tr.grid:nth-child(even) {
  background-color: transparent;
}
.comparison-table.table-container table tr.grid:not(.header) {
  align-items: center;
}
.comparison-table.table-container table tr.grid.header {
  border-bottom: none;
}
.comparison-table.table-container table tr.grid.header h5 {
  margin-bottom: 0;
}
.comparison-table.table-container table tr.grid.header .clodura-column {
  border-radius: 15px 15px 0 0;
}
.comparison-table.table-container table tr.grid.header th {
  padding: 30px 0;
}
.comparison-table.table-container table tr.grid th,
.comparison-table.table-container table tr.grid td {
  padding: 15px 0;
  grid-column: auto/span 2;
  text-align: center;
}
.comparison-table.table-container table tr.grid th:first-child,
.comparison-table.table-container table tr.grid td:first-child {
  grid-column: 1/span 2;
  text-align: left;
  align-self: end;
}
.comparison-table.table-container table tr.grid th.clodura-column,
.comparison-table.table-container table tr.grid td.clodura-column {
  background-color: #e6ebeb;
  box-sizing: border-box;
  height: 100%;
}
.comparison-table.table-container table tr.grid th.clodura-column p,
.comparison-table.table-container table tr.grid td.clodura-column p {
  font-weight: 700;
}
.comparison-table.table-container table tr.grid th.clodura-column span.x-mark,
.comparison-table.table-container table tr.grid td.clodura-column span.x-mark {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.72 15.7512L10.5 11.9712L14.28 15.7512L15.75 14.2812L11.97 10.5012L15.75 6.72116L14.28 5.25116L10.5 9.03116L6.72 5.25116L5.25 6.72116L9.03 10.5012L5.25 14.2812L6.72 15.7512ZM10.5 21.0012C9.0475 21.0012 7.6825 20.7255 6.405 20.1743C5.1275 19.623 4.01625 18.8749 3.07125 17.9299C2.12625 16.9849 1.37812 15.8737 0.826875 14.5962C0.275625 13.3187 0 11.9537 0 10.5012C0 9.04866 0.275625 7.68366 0.826875 6.40616C1.37812 5.12866 2.12625 4.01741 3.07125 3.07241C4.01625 2.12741 5.1275 1.37928 6.405 0.828035C7.6825 0.276785 9.0475 0.00115967 10.5 0.00115967C11.9525 0.00115967 13.3175 0.276785 14.595 0.828035C15.8725 1.37928 16.9837 2.12741 17.9287 3.07241C18.8738 4.01741 19.6219 5.12866 20.1731 6.40616C20.7244 7.68366 21 9.04866 21 10.5012C21 11.9537 20.7244 13.3187 20.1731 14.5962C19.6219 15.8737 18.8738 16.9849 17.9287 17.9299C16.9837 18.8749 15.8725 19.623 14.595 20.1743C13.3175 20.7255 11.9525 21.0012 10.5 21.0012Z' fill='%23FF5500'/%3E%3C/svg%3E%0A");
}
.comparison-table.table-container table tr.grid th.clodura-column span.check-mark,
.comparison-table.table-container table tr.grid td.clodura-column span.check-mark {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.03 15.33L16.4325 7.9275L14.9625 6.4575L9.03 12.39L6.0375 9.3975L4.5675 10.8675L9.03 15.33ZM10.5 21C9.0475 21 7.6825 20.7244 6.405 20.1731C5.1275 19.6219 4.01625 18.8738 3.07125 17.9287C2.12625 16.9837 1.37812 15.8725 0.826875 14.595C0.275625 13.3175 0 11.9525 0 10.5C0 9.0475 0.275625 7.6825 0.826875 6.405C1.37812 5.1275 2.12625 4.01625 3.07125 3.07125C4.01625 2.12625 5.1275 1.37812 6.405 0.826875C7.6825 0.275625 9.0475 0 10.5 0C11.9525 0 13.3175 0.275625 14.595 0.826875C15.8725 1.37812 16.9837 2.12625 17.9287 3.07125C18.8738 4.01625 19.6219 5.1275 20.1731 6.405C20.7244 7.6825 21 9.0475 21 10.5C21 11.9525 20.7244 13.3175 20.1731 14.595C19.6219 15.8725 18.8738 16.9837 17.9287 17.9287C16.9837 18.8738 15.8725 19.6219 14.595 20.1731C13.3175 20.7244 11.9525 21 10.5 21Z' fill='%23FF5500'/%3E%3C/svg%3E%0A");
}
.comparison-table.table-container table tr.grid th span.x-mark,
.comparison-table.table-container table tr.grid th span.check-mark,
.comparison-table.table-container table tr.grid td span.x-mark,
.comparison-table.table-container table tr.grid td span.check-mark {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0 auto;
  background-size: contain;
}
.comparison-table.table-container table tr.grid th span.x-mark,
.comparison-table.table-container table tr.grid td span.x-mark {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.72 15.7512L10.5 11.9712L14.28 15.7512L15.75 14.2812L11.97 10.5012L15.75 6.72116L14.28 5.25116L10.5 9.03116L6.72 5.25116L5.25 6.72116L9.03 10.5012L5.25 14.2812L6.72 15.7512ZM10.5 21.0012C9.0475 21.0012 7.6825 20.7255 6.405 20.1743C5.1275 19.623 4.01625 18.8749 3.07125 17.9299C2.12625 16.9849 1.37812 15.8737 0.826875 14.5962C0.275625 13.3187 0 11.9537 0 10.5012C0 9.04866 0.275625 7.68366 0.826875 6.40616C1.37812 5.12866 2.12625 4.01741 3.07125 3.07241C4.01625 2.12741 5.1275 1.37928 6.405 0.828035C7.6825 0.276785 9.0475 0.00115967 10.5 0.00115967C11.9525 0.00115967 13.3175 0.276785 14.595 0.828035C15.8725 1.37928 16.9837 2.12741 17.9287 3.07241C18.8738 4.01741 19.6219 5.12866 20.1731 6.40616C20.7244 7.68366 21 9.04866 21 10.5012C21 11.9537 20.7244 13.3187 20.1731 14.5962C19.6219 15.8737 18.8738 16.9849 17.9287 17.9299C16.9837 18.8749 15.8725 19.623 14.595 20.1743C13.3175 20.7255 11.9525 21.0012 10.5 21.0012Z' fill='%23C7C7C7'/%3E%3C/svg%3E%0A");
}
.comparison-table.table-container table tr.grid th span.check-mark,
.comparison-table.table-container table tr.grid td span.check-mark {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.03 15.33L16.4325 7.9275L14.9625 6.4575L9.03 12.39L6.0375 9.3975L4.5675 10.8675L9.03 15.33ZM10.5 21C9.0475 21 7.6825 20.7244 6.405 20.1731C5.1275 19.6219 4.01625 18.8738 3.07125 17.9287C2.12625 16.9837 1.37812 15.8725 0.826875 14.595C0.275625 13.3175 0 11.9525 0 10.5C0 9.0475 0.275625 7.6825 0.826875 6.405C1.37812 5.1275 2.12625 4.01625 3.07125 3.07125C4.01625 2.12625 5.1275 1.37812 6.405 0.826875C7.6825 0.275625 9.0475 0 10.5 0C11.9525 0 13.3175 0.275625 14.595 0.826875C15.8725 1.37812 16.9837 2.12625 17.9287 3.07125C18.8738 4.01625 19.6219 5.1275 20.1731 6.405C20.7244 7.6825 21 9.0475 21 10.5C21 11.9525 20.7244 13.3175 20.1731 14.595C19.6219 15.8725 18.8738 16.9837 17.9287 17.9287C16.9837 18.8738 15.8725 19.6219 14.595 20.1731C13.3175 20.7244 11.9525 21 10.5 21Z' fill='%23C7C7C7'/%3E%3C/svg%3E%0A");
}
.comparison-table.table-container table tr.grid th span.info .tooltip,
.comparison-table.table-container table tr.grid td span.info .tooltip {
  top: 3px;
}
.comparison-table.table-container table tr.grid th #button-container,
.comparison-table.table-container table tr.grid td #button-container {
  justify-content: center;
  margin-top: 0;
}
.comparison-table.table-container table tr.grid td p {
  font-size: 14px;
}
@media screen and (max-width: 1155px) {
  .comparison-table.table-container {
    overflow-x: scroll;
    width: 100%;
    padding: 0 22px;
  }
  .comparison-table.table-container table tr.grid {
    width: 1280px;
    max-width: 1280px;
    grid-template-columns: repeat(12, 5.46875%);
    gap: 0 3.125%;
  }
}
.comparison-table.table-container.individual table th,
.comparison-table.table-container.individual table td {
  grid-column: auto/span 4 !important;
}
.comparison-table.table-container.individual table th:first-child,
.comparison-table.table-container.individual table td:first-child {
  grid-column: 1/span 4 !important;
}
@media screen and (max-width: 1155px) {
  .comparison-table.table-container.individual table tr.grid {
    width: 960px;
    max-width: 960px;
    grid-template-columns: repeat(8, 9.01857%);
    gap: 0 3.97878%;
  }
  .comparison-table.table-container.individual table tr.grid th,
  .comparison-table.table-container.individual table tr.grid td {
    grid-column: auto/span 3 !important;
  }
  .comparison-table.table-container.individual table tr.grid th:first-child,
  .comparison-table.table-container.individual table tr.grid td:first-child {
    grid-column: 1/span 2 !important;
  }
}
@media screen and (max-width: 768px) {
  .comparison-table.table-container.individual table tr.grid {
    width: 728px;
    max-width: 728px;
    grid-template-columns: repeat(6, 12.08791%);
    gap: 0 5.4945%;
  }
  .comparison-table.table-container.individual table tr.grid th,
  .comparison-table.table-container.individual table tr.grid td {
    grid-column: auto/span 2 !important;
  }
  .comparison-table.table-container.individual table tr.grid th:first-child,
  .comparison-table.table-container.individual table tr.grid td:first-child {
    grid-column: 1/span 2 !important;
  }
}

/*********************
POST & PAGE TEMPLATE STYLES
*********************/
.page-template-events #events > .grid {
  row-gap: 40px;
}
.page-template-events #events #event {
  padding: 40px;
  display: flex;
  gap: 40px;
  background: #1a2323;
  border-radius: 15px;
  border: 1px solid #283232;
}
.page-template-events #events #event #date-and-location {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-template-events #events #event #date-and-location p {
  display: flex;
  align-content: center;
  gap: 8px;
}
.page-template-events #events #event #divider {
  width: 2px;
  background: #485252;
}
.page-template-events #events #event #event-details h3 {
  margin-bottom: 16px;
}
@media screen and (max-width: 1155px) {
  .page-template-events #events #event {
    flex-direction: column;
  }
  .page-template-events #events #event #divider {
    display: none;
  }
}

.single-event .event .location-date {
  margin-top: 20px;
}
.single-event .event p {
  margin-bottom: 24px;
}
.single-event .event p strong {
  font-weight: 600 !important;
}
.single-event .event .speakers {
  border-top: 1px solid #bfc6c6;
  padding-top: 20px;
  margin-top: 60px;
}
.single-event .event .speakers h6 {
  margin-bottom: 40px;
}
.single-event .event .speakers .speakers-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 40px;
}
.single-event .event .speakers .speakers-wrapper .speaker-container {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: calc(50% - 20px);
}
.single-event .event .speakers .speakers-wrapper .speaker-container img {
  max-width: 180px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.single-event .event .speakers .speakers-wrapper .speaker-container .name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.single-event .event .speakers .speakers-wrapper .speaker-container .company {
  font-size: 14px;
  font-weight: 400;
}
.single-event #form-container {
  background-color: #121518;
  padding: 40px;
  border-radius: 10px;
}
.single-event #form-container img {
  margin-bottom: 35px;
}
.single-event #form-container h6,
.single-event #form-container p {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .single-event #form-container {
    margin-top: 40px;
  }
}

.page-template-page-pricing .price-switcher .annual-eyebrow {
  background-color: #ffc37d;
  border: 1px solid #121518;
  border-radius: 16px;
  padding: 6px 10px;
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}
.page-template-page-pricing .price-switcher #button-container {
  justify-content: center;
  padding: 10px;
  border: 2px solid #121518;
  border-radius: 200px;
  width: -moz-max-content;
  width: max-content;
  margin: 15px auto 75px;
}
@media screen and (max-width: 768px) {
  .page-template-page-pricing .price-switcher #button-container {
    width: calc(100% - 20px);
    margin: 15px auto 40px;
  }
}
.page-template-page-pricing .price-switcher #button-container span.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 15px;
  font-family: "Golos Text", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-decoration: none;
  border-radius: 50px;
  color: #121518;
  text-align: center;
  background: transparent;
  box-sizing: border-box;
  height: 52px;
  transition: 0.2s all cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid #121518;
  margin: 0;
}
.page-template-page-pricing .price-switcher #button-container span.button:hover {
  background: #ffffff;
  color: #121518;
  box-shadow: rgb(0, 0, 0) 4px 4px 0px;
  transform: translate(-4px, -4px);
}
.page-template-page-pricing .price-switcher #button-container span.button:focus {
  background: #121518;
  color: #ffffff;
  transform: translate(0, 0);
  box-shadow: rgb(0, 0, 0) 0 0 0;
}
.page-template-page-pricing .price-switcher #button-container span.button.active {
  background: #121518;
  color: #ffffff;
}
.page-template-page-pricing .price-switcher #button-container span.button.active:hover {
  background: #ffffff;
  color: #121518;
}
.page-template-page-pricing .price-switcher #button-container span.button.active:focus {
  background: #121518;
  color: #ffffff;
  transform: translate(0, 0);
  box-shadow: rgb(0, 0, 0) 0 0 0;
}
.page-template-page-pricing .price.monthly,
.page-template-page-pricing .feature.monthly {
  display: none;
}
.page-template-page-pricing .annual-eyebrow {
  display: block;
}
.page-template-page-pricing span.info {
  position: relative;
  display: inline-block;
  top: 2px;
}
.page-template-page-pricing span.info span.icon {
  position: relative;
  z-index: 3;
  height: 11px;
  width: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='11' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 0.622437C2.23911 0.622437 0 2.86154 0 5.62244C0 8.38333 2.23911 10.6224 5 10.6224C7.76089 10.6224 10 8.38333 10 5.62244C10 2.86154 7.76089 0.622437 5 0.622437ZM5 2.59205C5.33257 2.59205 5.60493 2.86154 5.60493 3.19698C5.60493 3.53241 5.33544 3.80191 5 3.80191C4.66456 3.80191 4.39507 3.53241 4.39507 3.19698C4.39507 2.86154 4.66456 2.59205 5 2.59205ZM6.38761 8.30019H3.61239V7.58345H4.64163V5.04904H3.95929V4.3323H5.35837V7.58345H6.38761V8.30019Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  cursor: pointer;
}
.page-template-page-pricing span.info span.tooltip {
  position: absolute;
  transition: 0.2s;
  background-color: #ffc37d;
  color: #121518;
  padding: 6px 10px;
  top: -8px;
  left: 5px;
  width: 180px;
  max-width: 180px;
  border-radius: 5px;
  font-size: 9px;
  line-height: 150%;
  display: none;
}
.page-template-page-pricing span.info span.icon:hover + span.tooltip {
  z-index: 1;
  display: inline-block;
}
.page-template-page-pricing .pricing-column {
  padding: 32px 0;
  display: flex;
  flex-flow: column;
  height: -webkit-fill-available;
  align-items: center;
  background: #f4f6f5;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1155px) {
  .page-template-page-pricing .pricing-column {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-pricing .pricing-column {
    height: auto !important;
  }
}
.page-template-page-pricing .pricing-column header.package {
  padding: 0 22px;
  text-align: center;
}
.page-template-page-pricing .pricing-column header.package .eyebrow,
.page-template-page-pricing .pricing-column header.package h1 {
  margin-bottom: 14px;
}
.page-template-page-pricing .pricing-column header.package .caption {
  font-weight: 700;
  margin-bottom: 24px;
}
.page-template-page-pricing .pricing-column.popular {
  border: 2px solid #121518;
  background-color: #ff9b9f;
  box-shadow: rgb(0, 0, 0) 4px 4px 0px;
}
.page-template-page-pricing .pricing-column.popular span.popular {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #121518;
  border-radius: 16px;
  padding: 6px 10px;
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
}
.page-template-page-pricing .pricing-column.popular header.package .eyebrow {
  background-color: #ee1448;
}
.page-template-page-pricing .pricing-column > #button {
  margin: 24px auto;
}
.page-template-page-pricing .pricing-column .features {
  width: 100%;
}
.page-template-page-pricing .pricing-column .features ul {
  padding: 0 22px;
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin: 0;
  width: 100%;
}
.page-template-page-pricing .pricing-column .features ul li {
  font-size: 11px;
  width: 100%;
}
.page-template-page-pricing .pricing-column .features.top {
  border-top: 1px solid #bfc6c6;
  border-bottom: 1px solid #bfc6c6;
  padding: 12px 0;
}
.page-template-page-pricing .pricing-column .features.top ul {
  text-align: center;
}
.page-template-page-pricing .pricing-column .features.top ul li {
  list-style: none;
}
.page-template-page-pricing .pricing-column .features.bottom ul {
  list-style: none;
}
.page-template-page-pricing .pricing-column .features.bottom ul li:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  width: 12px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.16 9.38244L9.39 5.15244L8.55 4.31244L5.16 7.70244L3.45 5.99244L2.61 6.83244L5.16 9.38244ZM6 12.6224C5.17 12.6224 4.39 12.4649 3.66 12.1499C2.93 11.8349 2.295 11.4074 1.755 10.8674C1.215 10.3274 0.7875 9.69244 0.4725 8.96244C0.1575 8.23244 0 7.45244 0 6.62244C0 5.79244 0.1575 5.01244 0.4725 4.28244C0.7875 3.55244 1.215 2.91744 1.755 2.37744C2.295 1.83744 2.93 1.40994 3.66 1.09494C4.39 0.779937 5.17 0.622437 6 0.622437C6.83 0.622437 7.61 0.779937 8.34 1.09494C9.07 1.40994 9.705 1.83744 10.245 2.37744C10.785 2.91744 11.2125 3.55244 11.5275 4.28244C11.8425 5.01244 12 5.79244 12 6.62244C12 7.45244 11.8425 8.23244 11.5275 8.96244C11.2125 9.69244 10.785 10.3274 10.245 10.8674C9.705 11.4074 9.07 11.8349 8.34 12.1499C7.61 12.4649 6.83 12.6224 6 12.6224Z' fill='%23FF5500'/%3E%3C/svg%3E%0A");
}
.page-template-page-pricing .table-container .title-container {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .page-template-page-pricing .table-container .title-container {
    margin-bottom: 40px;
  }
}
.page-template-page-pricing .table-container table:not(:last-of-type) {
  margin-bottom: 60px;
}
.page-template-page-pricing .table-container table:not(:last-of-type) .footer {
  display: none;
}
.page-template-page-pricing .table-container table tbody {
  border: none;
}
.page-template-page-pricing .table-container table .eyebrow {
  display: none;
  margin: 0 auto 8px;
}
.page-template-page-pricing .table-container table:first-of-type .eyebrow {
  display: block;
}
.page-template-page-pricing .table-container table tr.grid {
  padding: 0;
  border-bottom: 1px solid #bfc6c6;
}
.page-template-page-pricing .table-container table tr.grid.title-row {
  border-bottom: 1px solid black;
}
.page-template-page-pricing .table-container table tr.grid.title-row td:first-child p {
  font-size: 18px;
  font-weight: 700;
}
.page-template-page-pricing .table-container table tr.grid:nth-child(even) {
  background-color: transparent;
}
.page-template-page-pricing .table-container table tr.grid:not(.header) {
  align-items: center;
}
.page-template-page-pricing .table-container table tr.grid.header {
  border-bottom: 2px solid #121518;
}
.page-template-page-pricing .table-container table tr.grid.header h2 {
  margin-bottom: 0;
}
.page-template-page-pricing .table-container table tr.grid.footer {
  border: none;
}
.page-template-page-pricing .table-container table tr.grid.footer #button-container {
  justify-content: center;
}
.page-template-page-pricing .table-container table tr.grid th,
.page-template-page-pricing .table-container table tr.grid td {
  padding: 15px 0;
  grid-column: auto/span 2;
  text-align: center;
}
.page-template-page-pricing .table-container table tr.grid th:first-child,
.page-template-page-pricing .table-container table tr.grid td:first-child {
  grid-column: 1/span 4;
  text-align: left;
  align-self: end;
}
.page-template-page-pricing .table-container table tr.grid th span.x-mark,
.page-template-page-pricing .table-container table tr.grid th span.check-mark,
.page-template-page-pricing .table-container table tr.grid td span.x-mark,
.page-template-page-pricing .table-container table tr.grid td span.check-mark {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0 auto;
  background-size: contain;
}
.page-template-page-pricing .table-container table tr.grid th span.x-mark,
.page-template-page-pricing .table-container table tr.grid td span.x-mark {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.72 15.7512L10.5 11.9712L14.28 15.7512L15.75 14.2812L11.97 10.5012L15.75 6.72116L14.28 5.25116L10.5 9.03116L6.72 5.25116L5.25 6.72116L9.03 10.5012L5.25 14.2812L6.72 15.7512ZM10.5 21.0012C9.0475 21.0012 7.6825 20.7255 6.405 20.1743C5.1275 19.623 4.01625 18.8749 3.07125 17.9299C2.12625 16.9849 1.37812 15.8737 0.826875 14.5962C0.275625 13.3187 0 11.9537 0 10.5012C0 9.04866 0.275625 7.68366 0.826875 6.40616C1.37812 5.12866 2.12625 4.01741 3.07125 3.07241C4.01625 2.12741 5.1275 1.37928 6.405 0.828035C7.6825 0.276785 9.0475 0.00115967 10.5 0.00115967C11.9525 0.00115967 13.3175 0.276785 14.595 0.828035C15.8725 1.37928 16.9837 2.12741 17.9287 3.07241C18.8738 4.01741 19.6219 5.12866 20.1731 6.40616C20.7244 7.68366 21 9.04866 21 10.5012C21 11.9537 20.7244 13.3187 20.1731 14.5962C19.6219 15.8737 18.8738 16.9849 17.9287 17.9299C16.9837 18.8749 15.8725 19.623 14.595 20.1743C13.3175 20.7255 11.9525 21.0012 10.5 21.0012Z' fill='%23C7C7C7'/%3E%3C/svg%3E%0A");
}
.page-template-page-pricing .table-container table tr.grid th span.check-mark,
.page-template-page-pricing .table-container table tr.grid td span.check-mark {
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.03 15.33L16.4325 7.9275L14.9625 6.4575L9.03 12.39L6.0375 9.3975L4.5675 10.8675L9.03 15.33ZM10.5 21C9.0475 21 7.6825 20.7244 6.405 20.1731C5.1275 19.6219 4.01625 18.8738 3.07125 17.9287C2.12625 16.9837 1.37812 15.8725 0.826875 14.595C0.275625 13.3175 0 11.9525 0 10.5C0 9.0475 0.275625 7.6825 0.826875 6.405C1.37812 5.1275 2.12625 4.01625 3.07125 3.07125C4.01625 2.12625 5.1275 1.37812 6.405 0.826875C7.6825 0.275625 9.0475 0 10.5 0C11.9525 0 13.3175 0.275625 14.595 0.826875C15.8725 1.37812 16.9837 2.12625 17.9287 3.07125C18.8738 4.01625 19.6219 5.1275 20.1731 6.405C20.7244 7.6825 21 9.0475 21 10.5C21 11.9525 20.7244 13.3175 20.1731 14.595C19.6219 15.8725 18.8738 16.9837 17.9287 17.9287C16.9837 18.8738 15.8725 19.6219 14.595 20.1731C13.3175 20.7244 11.9525 21 10.5 21Z' fill='%23FF5500'/%3E%3C/svg%3E%0A");
}
.page-template-page-pricing .table-container table tr.grid th span.info .tooltip,
.page-template-page-pricing .table-container table tr.grid td span.info .tooltip {
  top: 3px;
}
.page-template-page-pricing .table-container table tr.grid td p {
  font-size: 14px;
}
@media screen and (max-width: 1155px) {
  .page-template-page-pricing .table-container {
    overflow-x: scroll;
    width: 100%;
    padding: 0 22px;
  }
  .page-template-page-pricing .table-container table tr.grid {
    width: 1280px;
    max-width: 1280px;
    grid-template-columns: repeat(12, 5.46875%);
    gap: 0 3.125%;
  }
}

/* VIDEO POPUP */
#video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
}
#video-popup #video-popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  border: 2px solid black;
  box-shadow: 4px 4px 0px 0px #000000;
}
@media screen and (max-width: 700px) {
  #video-popup #video-popup-content {
    width: 85%;
  }
}
#video-popup #video-popup-content #video-popup-close {
  position: absolute;
  top: -30px;
  right: -30px;
  font-family: "Golos Text";
  font-size: 24px;
  cursor: pointer;
  background: white;
  padding: 15px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 2px solid black;
}
#video-popup #video-popup-body {
  display: flex;
  justify-content: center;
  align-items: center;
}
#video-popup #video-popup-iframe {
  width: 560px;
  height: 315px;
}

iframe {
  border-radius: 15px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.page-template-blog #featured-resources .half,
.tax-resource_type #featured-resources .half,
.post-type-archive-resources #featured-resources .half,
.page-template-resource-center #featured-resources .half,
.page-template-customer-stories #featured-resources .half,
.post-type-archive-database-center #featured-resources .half,
.post-type-archive-videos #featured-resources .half,
.post-type-archive-salesstreetvideos #featured-resources .half,
.post-type-archive-tutorials #featured-resources .half {
  display: flex;
  flex-flow: column;
  justify-content: start;
  height: 100%;
}
.page-template-blog #featured-resources .half .image-container img,
.tax-resource_type #featured-resources .half .image-container img,
.post-type-archive-resources #featured-resources .half .image-container img,
.page-template-resource-center #featured-resources .half .image-container img,
.page-template-customer-stories #featured-resources .half .image-container img,
.post-type-archive-database-center #featured-resources .half .image-container img,
.post-type-archive-videos #featured-resources .half .image-container img,
.post-type-archive-salesstreetvideos #featured-resources .half .image-container img,
.post-type-archive-tutorials #featured-resources .half .image-container img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .page-template-blog #featured-resources .content.content-container.half,
  .tax-resource_type #featured-resources .content.content-container.half,
  .post-type-archive-resources #featured-resources .content.content-container.half,
  .page-template-resource-center #featured-resources .content.content-container.half,
  .page-template-customer-stories #featured-resources .content.content-container.half,
  .post-type-archive-database-center #featured-resources .content.content-container.half,
  .post-type-archive-videos #featured-resources .content.content-container.half,
  .post-type-archive-salesstreetvideos #featured-resources .content.content-container.half,
  .post-type-archive-tutorials #featured-resources .content.content-container.half {
    order: 2;
    margin-top: 40px;
  }
}
.page-template-blog #featured-resources .resource-type,
.tax-resource_type #featured-resources .resource-type,
.post-type-archive-resources #featured-resources .resource-type,
.page-template-resource-center #featured-resources .resource-type,
.page-template-customer-stories #featured-resources .resource-type,
.post-type-archive-database-center #featured-resources .resource-type,
.post-type-archive-videos #featured-resources .resource-type,
.post-type-archive-salesstreetvideos #featured-resources .resource-type,
.post-type-archive-tutorials #featured-resources .resource-type {
  margin-bottom: 15px;
  color: #bfc6c6;
}
.page-template-blog #featured-resources .title-container,
.tax-resource_type #featured-resources .title-container,
.post-type-archive-resources #featured-resources .title-container,
.page-template-resource-center #featured-resources .title-container,
.page-template-customer-stories #featured-resources .title-container,
.post-type-archive-database-center #featured-resources .title-container,
.post-type-archive-videos #featured-resources .title-container,
.post-type-archive-salesstreetvideos #featured-resources .title-container,
.post-type-archive-tutorials #featured-resources .title-container {
  padding-bottom: 100px;
}
.page-template-blog #featured-resources .excerpt,
.tax-resource_type #featured-resources .excerpt,
.post-type-archive-resources #featured-resources .excerpt,
.page-template-resource-center #featured-resources .excerpt,
.page-template-customer-stories #featured-resources .excerpt,
.post-type-archive-database-center #featured-resources .excerpt,
.post-type-archive-videos #featured-resources .excerpt,
.post-type-archive-salesstreetvideos #featured-resources .excerpt,
.post-type-archive-tutorials #featured-resources .excerpt {
  max-width: 510px;
}
.page-template-blog #featured-resources #button-container,
.tax-resource_type #featured-resources #button-container,
.post-type-archive-resources #featured-resources #button-container,
.page-template-resource-center #featured-resources #button-container,
.page-template-customer-stories #featured-resources #button-container,
.post-type-archive-database-center #featured-resources #button-container,
.post-type-archive-videos #featured-resources #button-container,
.post-type-archive-salesstreetvideos #featured-resources #button-container,
.post-type-archive-tutorials #featured-resources #button-container {
  margin-top: 48px;
  align-items: start;
}
.page-template-blog #featured-resources.black h4 a,
.tax-resource_type #featured-resources.black h4 a,
.post-type-archive-resources #featured-resources.black h4 a,
.page-template-resource-center #featured-resources.black h4 a,
.page-template-customer-stories #featured-resources.black h4 a,
.post-type-archive-database-center #featured-resources.black h4 a,
.post-type-archive-videos #featured-resources.black h4 a,
.post-type-archive-salesstreetvideos #featured-resources.black h4 a,
.post-type-archive-tutorials #featured-resources.black h4 a {
  color: #ffffff;
}
.page-template-blog #archive a#resource-card,
.page-template-blog #archive .resource-card,
.tax-resource_type #archive a#resource-card,
.tax-resource_type #archive .resource-card,
.post-type-archive-resources #archive a#resource-card,
.post-type-archive-resources #archive .resource-card,
.page-template-resource-center #archive a#resource-card,
.page-template-resource-center #archive .resource-card,
.page-template-customer-stories #archive a#resource-card,
.page-template-customer-stories #archive .resource-card,
.post-type-archive-database-center #archive a#resource-card,
.post-type-archive-database-center #archive .resource-card,
.post-type-archive-videos #archive a#resource-card,
.post-type-archive-videos #archive .resource-card,
.post-type-archive-salesstreetvideos #archive a#resource-card,
.post-type-archive-salesstreetvideos #archive .resource-card,
.post-type-archive-tutorials #archive a#resource-card,
.post-type-archive-tutorials #archive .resource-card {
  border-radius: 10px;
  background-color: #f9f7f1;
  border: 1px solid #efecdf;
  color: #121518;
  display: flex;
  flex-flow: column;
}
.page-template-blog #archive a#resource-card #content-container,
.page-template-blog #archive .resource-card #content-container,
.tax-resource_type #archive a#resource-card #content-container,
.tax-resource_type #archive .resource-card #content-container,
.post-type-archive-resources #archive a#resource-card #content-container,
.post-type-archive-resources #archive .resource-card #content-container,
.page-template-resource-center #archive a#resource-card #content-container,
.page-template-resource-center #archive .resource-card #content-container,
.page-template-customer-stories #archive a#resource-card #content-container,
.page-template-customer-stories #archive .resource-card #content-container,
.post-type-archive-database-center #archive a#resource-card #content-container,
.post-type-archive-database-center #archive .resource-card #content-container,
.post-type-archive-videos #archive a#resource-card #content-container,
.post-type-archive-videos #archive .resource-card #content-container,
.post-type-archive-salesstreetvideos #archive a#resource-card #content-container,
.post-type-archive-salesstreetvideos #archive .resource-card #content-container,
.post-type-archive-tutorials #archive a#resource-card #content-container,
.post-type-archive-tutorials #archive .resource-card #content-container {
  padding: 0 20px 25px;
  display: flex;
  flex-flow: column;
  height: 100%;
  box-sizing: content-box;
}
.page-template-blog #archive a#resource-card #content-container #button-container,
.page-template-blog #archive .resource-card #content-container #button-container,
.tax-resource_type #archive a#resource-card #content-container #button-container,
.tax-resource_type #archive .resource-card #content-container #button-container,
.post-type-archive-resources #archive a#resource-card #content-container #button-container,
.post-type-archive-resources #archive .resource-card #content-container #button-container,
.page-template-resource-center #archive a#resource-card #content-container #button-container,
.page-template-resource-center #archive .resource-card #content-container #button-container,
.page-template-customer-stories #archive a#resource-card #content-container #button-container,
.page-template-customer-stories #archive .resource-card #content-container #button-container,
.post-type-archive-database-center #archive a#resource-card #content-container #button-container,
.post-type-archive-database-center #archive .resource-card #content-container #button-container,
.post-type-archive-videos #archive a#resource-card #content-container #button-container,
.post-type-archive-videos #archive .resource-card #content-container #button-container,
.post-type-archive-salesstreetvideos #archive a#resource-card #content-container #button-container,
.post-type-archive-salesstreetvideos #archive .resource-card #content-container #button-container,
.post-type-archive-tutorials #archive a#resource-card #content-container #button-container,
.post-type-archive-tutorials #archive .resource-card #content-container #button-container {
  margin-top: auto;
  align-items: start;
}
.page-template-blog #archive a#resource-card #image-container,
.page-template-blog #archive .resource-card #image-container,
.tax-resource_type #archive a#resource-card #image-container,
.tax-resource_type #archive .resource-card #image-container,
.post-type-archive-resources #archive a#resource-card #image-container,
.post-type-archive-resources #archive .resource-card #image-container,
.page-template-resource-center #archive a#resource-card #image-container,
.page-template-resource-center #archive .resource-card #image-container,
.page-template-customer-stories #archive a#resource-card #image-container,
.page-template-customer-stories #archive .resource-card #image-container,
.post-type-archive-database-center #archive a#resource-card #image-container,
.post-type-archive-database-center #archive .resource-card #image-container,
.post-type-archive-videos #archive a#resource-card #image-container,
.post-type-archive-videos #archive .resource-card #image-container,
.post-type-archive-salesstreetvideos #archive a#resource-card #image-container,
.post-type-archive-salesstreetvideos #archive .resource-card #image-container,
.post-type-archive-tutorials #archive a#resource-card #image-container,
.post-type-archive-tutorials #archive .resource-card #image-container {
  margin-bottom: 30px;
}
.page-template-blog #archive a#resource-card #image-container img,
.page-template-blog #archive .resource-card #image-container img,
.tax-resource_type #archive a#resource-card #image-container img,
.tax-resource_type #archive .resource-card #image-container img,
.post-type-archive-resources #archive a#resource-card #image-container img,
.post-type-archive-resources #archive .resource-card #image-container img,
.page-template-resource-center #archive a#resource-card #image-container img,
.page-template-resource-center #archive .resource-card #image-container img,
.page-template-customer-stories #archive a#resource-card #image-container img,
.page-template-customer-stories #archive .resource-card #image-container img,
.post-type-archive-database-center #archive a#resource-card #image-container img,
.post-type-archive-database-center #archive .resource-card #image-container img,
.post-type-archive-videos #archive a#resource-card #image-container img,
.post-type-archive-videos #archive .resource-card #image-container img,
.post-type-archive-salesstreetvideos #archive a#resource-card #image-container img,
.post-type-archive-salesstreetvideos #archive .resource-card #image-container img,
.post-type-archive-tutorials #archive a#resource-card #image-container img,
.post-type-archive-tutorials #archive .resource-card #image-container img {
  transition: 0.2s all cubic-bezier(0.455, 0.03, 0.515, 0.955);
  border-radius: 10px 10px 0 0;
  width: 100%;
}
.page-template-blog #archive a#resource-card:hover,
.page-template-blog #archive .resource-card:hover,
.tax-resource_type #archive a#resource-card:hover,
.tax-resource_type #archive .resource-card:hover,
.post-type-archive-resources #archive a#resource-card:hover,
.post-type-archive-resources #archive .resource-card:hover,
.page-template-resource-center #archive a#resource-card:hover,
.page-template-resource-center #archive .resource-card:hover,
.page-template-customer-stories #archive a#resource-card:hover,
.page-template-customer-stories #archive .resource-card:hover,
.post-type-archive-database-center #archive a#resource-card:hover,
.post-type-archive-database-center #archive .resource-card:hover,
.post-type-archive-videos #archive a#resource-card:hover,
.post-type-archive-videos #archive .resource-card:hover,
.post-type-archive-salesstreetvideos #archive a#resource-card:hover,
.post-type-archive-salesstreetvideos #archive .resource-card:hover,
.post-type-archive-tutorials #archive a#resource-card:hover,
.post-type-archive-tutorials #archive .resource-card:hover {
  cursor: pointer;
  background-color: #f5f2ea;
  border: 1px solid #e0ded1;
}
.page-template-blog div#pagination,
.tax-resource_type div#pagination,
.post-type-archive-resources div#pagination,
.page-template-resource-center div#pagination,
.page-template-customer-stories div#pagination,
.post-type-archive-database-center div#pagination,
.post-type-archive-videos div#pagination,
.post-type-archive-salesstreetvideos div#pagination,
.post-type-archive-tutorials div#pagination {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.page-template-blog div#pagination .page-numbers:not(.prev, .next),
.tax-resource_type div#pagination .page-numbers:not(.prev, .next),
.post-type-archive-resources div#pagination .page-numbers:not(.prev, .next),
.page-template-resource-center div#pagination .page-numbers:not(.prev, .next),
.page-template-customer-stories div#pagination .page-numbers:not(.prev, .next),
.post-type-archive-database-center div#pagination .page-numbers:not(.prev, .next),
.post-type-archive-videos div#pagination .page-numbers:not(.prev, .next),
.post-type-archive-salesstreetvideos div#pagination .page-numbers:not(.prev, .next),
.post-type-archive-tutorials div#pagination .page-numbers:not(.prev, .next) {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #485252;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  color: #121518;
  font-size: 12px;
  line-height: 130%;
}
.page-template-blog div#pagination .page-numbers:not(.prev, .next).current,
.tax-resource_type div#pagination .page-numbers:not(.prev, .next).current,
.post-type-archive-resources div#pagination .page-numbers:not(.prev, .next).current,
.page-template-resource-center div#pagination .page-numbers:not(.prev, .next).current,
.page-template-customer-stories div#pagination .page-numbers:not(.prev, .next).current,
.post-type-archive-database-center div#pagination .page-numbers:not(.prev, .next).current,
.post-type-archive-videos div#pagination .page-numbers:not(.prev, .next).current,
.post-type-archive-salesstreetvideos div#pagination .page-numbers:not(.prev, .next).current,
.post-type-archive-tutorials div#pagination .page-numbers:not(.prev, .next).current {
  background-color: #f9cc3d;
  border: 1px solid #f9cc3d;
}
.page-template-blog div#pagination .page-numbers.prev, .page-template-blog div#pagination .page-numbers.next,
.tax-resource_type div#pagination .page-numbers.prev,
.tax-resource_type div#pagination .page-numbers.next,
.post-type-archive-resources div#pagination .page-numbers.prev,
.post-type-archive-resources div#pagination .page-numbers.next,
.page-template-resource-center div#pagination .page-numbers.prev,
.page-template-resource-center div#pagination .page-numbers.next,
.page-template-customer-stories div#pagination .page-numbers.prev,
.page-template-customer-stories div#pagination .page-numbers.next,
.post-type-archive-database-center div#pagination .page-numbers.prev,
.post-type-archive-database-center div#pagination .page-numbers.next,
.post-type-archive-videos div#pagination .page-numbers.prev,
.post-type-archive-videos div#pagination .page-numbers.next,
.post-type-archive-salesstreetvideos div#pagination .page-numbers.prev,
.post-type-archive-salesstreetvideos div#pagination .page-numbers.next,
.post-type-archive-tutorials div#pagination .page-numbers.prev,
.post-type-archive-tutorials div#pagination .page-numbers.next {
  display: flex;
}
.page-template-blog div#pagination .page-numbers.prev,
.tax-resource_type div#pagination .page-numbers.prev,
.post-type-archive-resources div#pagination .page-numbers.prev,
.page-template-resource-center div#pagination .page-numbers.prev,
.page-template-customer-stories div#pagination .page-numbers.prev,
.post-type-archive-database-center div#pagination .page-numbers.prev,
.post-type-archive-videos div#pagination .page-numbers.prev,
.post-type-archive-salesstreetvideos div#pagination .page-numbers.prev,
.post-type-archive-tutorials div#pagination .page-numbers.prev {
  margin-right: 15px;
}
.page-template-blog div#pagination .page-numbers.next,
.tax-resource_type div#pagination .page-numbers.next,
.post-type-archive-resources div#pagination .page-numbers.next,
.page-template-resource-center div#pagination .page-numbers.next,
.page-template-customer-stories div#pagination .page-numbers.next,
.post-type-archive-database-center div#pagination .page-numbers.next,
.post-type-archive-videos div#pagination .page-numbers.next,
.post-type-archive-salesstreetvideos div#pagination .page-numbers.next,
.post-type-archive-tutorials div#pagination .page-numbers.next {
  margin-left: 15px;
}

.page-template-resource-center #hero #button-container a {
  background-color: #efecdf;
  border: 1px solid #e0ded1;
  border-radius: 200px;
  padding: 14px 18px;
  color: #121518;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.page-template-resource-center #hero #button-container a:hover {
  background-color: #f9cc3d;
  border: 1px solid #f9cc3d;
}
.page-template-resource-center #archive .intro {
  margin-bottom: 50px;
}
.page-template-resource-center #archive .intro h3 {
  margin-bottom: 0;
}

.single-customer-stories #hero .hero-stats {
  margin-top: 100px;
}
.single-customer-stories #hero .hero-stats .third img {
  max-width: 40px;
  margin-bottom: 10px;
}
.single-customer-stories #hero .hero-stats .third h3 {
  margin-bottom: 10px;
}
.single-customer-stories aside #stats .stat-row {
  margin-bottom: 15px;
}
.single-customer-stories aside #stats .stat-row p {
  font-size: 14px;
}
.single-customer-stories aside #stats .stat-row .title {
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: 1px solid #121518;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .single-post aside,
  .single-customer-stories aside,
  .single-resources aside,
  .single-videos aside,
  .single-salesstreetvideos aside {
    display: none;
  }
}
.single-post #form-container,
.single-customer-stories #form-container,
.single-resources #form-container,
.single-videos #form-container,
.single-salesstreetvideos #form-container {
  background-color: #121518;
  padding: 40px;
  border-radius: 10px;
}
.single-post #form-container img,
.single-customer-stories #form-container img,
.single-resources #form-container img,
.single-videos #form-container img,
.single-salesstreetvideos #form-container img {
  margin-bottom: 35px;
}
.single-post #form-container h6,
.single-post #form-container p,
.single-customer-stories #form-container h6,
.single-customer-stories #form-container p,
.single-resources #form-container h6,
.single-resources #form-container p,
.single-videos #form-container h6,
.single-videos #form-container p,
.single-salesstreetvideos #form-container h6,
.single-salesstreetvideos #form-container p {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .single-post #form-container,
  .single-customer-stories #form-container,
  .single-resources #form-container,
  .single-videos #form-container,
  .single-salesstreetvideos #form-container {
    margin-top: 40px;
  }
}

.wp-block-quote {
  border-left: 3px solid #ee1448;
}

.single-post #breadcrumb,
.single-customer-stories #breadcrumb,
.single-resources #breadcrumb,
.single-videos #breadcrumb,
.single-salesstreetvideos #breadcrumb,
.single-database-center #breadcrumb {
  margin-bottom: 30px;
}
.single-post #breadcrumb .caption,
.single-customer-stories #breadcrumb .caption,
.single-resources #breadcrumb .caption,
.single-videos #breadcrumb .caption,
.single-salesstreetvideos #breadcrumb .caption,
.single-database-center #breadcrumb .caption {
  font-size: 14px;
}
.single-post .off-canvas-content,
.single-customer-stories .off-canvas-content,
.single-resources .off-canvas-content,
.single-videos .off-canvas-content,
.single-salesstreetvideos .off-canvas-content,
.single-database-center .off-canvas-content {
  overflow: visible;
}
.single-post #hero span.body-2,
.single-customer-stories #hero span.body-2,
.single-resources #hero span.body-2,
.single-videos #hero span.body-2,
.single-salesstreetvideos #hero span.body-2,
.single-database-center #hero span.body-2 {
  display: block;
  margin-bottom: 40px;
}
.single-post #hero #social-share,
.single-customer-stories #hero #social-share,
.single-resources #hero #social-share,
.single-videos #hero #social-share,
.single-salesstreetvideos #hero #social-share,
.single-database-center #hero #social-share {
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  border-top: 1px solid #485252;
}
.single-post #hero #social-share p,
.single-customer-stories #hero #social-share p,
.single-resources #hero #social-share p,
.single-videos #hero #social-share p,
.single-salesstreetvideos #hero #social-share p,
.single-database-center #hero #social-share p {
  font-weight: 500;
  margin-right: 10px;
}
.single-post #hero #social-share .caption,
.single-customer-stories #hero #social-share .caption,
.single-resources #hero #social-share .caption,
.single-videos #hero #social-share .caption,
.single-salesstreetvideos #hero #social-share .caption,
.single-database-center #hero #social-share .caption {
  font-family: "Golos Text";
  margin-right: 10px;
}
.single-post #hero .image-container img,
.single-customer-stories #hero .image-container img,
.single-resources #hero .image-container img,
.single-videos #hero .image-container img,
.single-salesstreetvideos #hero .image-container img,
.single-database-center #hero .image-container img {
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .single-post #hero .image-container.half,
  .single-customer-stories #hero .image-container.half,
  .single-resources #hero .image-container.half,
  .single-videos #hero .image-container.half,
  .single-salesstreetvideos #hero .image-container.half,
  .single-database-center #hero .image-container.half {
    order: 1;
    margin-top: 0 !important;
    margin-bottom: 50px;
  }
  .single-post #hero .content-container.half,
  .single-customer-stories #hero .content-container.half,
  .single-resources #hero .content-container.half,
  .single-videos #hero .content-container.half,
  .single-salesstreetvideos #hero .content-container.half,
  .single-database-center #hero .content-container.half {
    order: 2;
  }
}
.single-post #body-copy h1,
.single-post #body-copy h2,
.single-customer-stories #body-copy h1,
.single-customer-stories #body-copy h2,
.single-resources #body-copy h1,
.single-resources #body-copy h2,
.single-videos #body-copy h1,
.single-videos #body-copy h2,
.single-salesstreetvideos #body-copy h1,
.single-salesstreetvideos #body-copy h2,
.single-database-center #body-copy h1,
.single-database-center #body-copy h2 {
  font-size: 40px;
}
.single-post #body-copy h3,
.single-customer-stories #body-copy h3,
.single-resources #body-copy h3,
.single-videos #body-copy h3,
.single-salesstreetvideos #body-copy h3,
.single-database-center #body-copy h3 {
  font-size: 36px;
}
.single-post #body-copy h4,
.single-customer-stories #body-copy h4,
.single-resources #body-copy h4,
.single-videos #body-copy h4,
.single-salesstreetvideos #body-copy h4,
.single-database-center #body-copy h4 {
  font-size: 32px;
}
.single-post #body-copy h5,
.single-customer-stories #body-copy h5,
.single-resources #body-copy h5,
.single-videos #body-copy h5,
.single-salesstreetvideos #body-copy h5,
.single-database-center #body-copy h5 {
  font-size: 28px;
}
.single-post #body-copy h6,
.single-customer-stories #body-copy h6,
.single-resources #body-copy h6,
.single-videos #body-copy h6,
.single-salesstreetvideos #body-copy h6,
.single-database-center #body-copy h6 {
  font-size: 24px;
}
.single-post .border.single,
.single-customer-stories .border.single,
.single-resources .border.single,
.single-videos .border.single,
.single-salesstreetvideos .border.single,
.single-database-center .border.single {
  height: 100%;
  box-sizing: content-box;
  display: flex;
  justify-content: center;
}
.single-post .border.single:after,
.single-customer-stories .border.single:after,
.single-resources .border.single:after,
.single-videos .border.single:after,
.single-salesstreetvideos .border.single:after,
.single-database-center .border.single:after {
  content: "";
  border-left: 1px solid #e6ebeb;
  width: 1px;
  height: 100%;
  box-sizing: content-box;
}
.single-post aside,
.single-customer-stories aside,
.single-resources aside,
.single-videos aside,
.single-salesstreetvideos aside,
.single-database-center aside {
  height: 100%;
}
.single-post aside #sticky,
.single-customer-stories aside #sticky,
.single-resources aside #sticky,
.single-videos aside #sticky,
.single-salesstreetvideos aside #sticky,
.single-database-center aside #sticky {
  position: sticky;
  top: 130px;
}
.single-post aside #sticky #toc h6,
.single-customer-stories aside #sticky #toc h6,
.single-resources aside #sticky #toc h6,
.single-videos aside #sticky #toc h6,
.single-salesstreetvideos aside #sticky #toc h6,
.single-database-center aside #sticky #toc h6 {
  padding-bottom: 20px;
  margin-bottom: 0;
}
.single-post aside #sticky #toc h6.hidden,
.single-customer-stories aside #sticky #toc h6.hidden,
.single-resources aside #sticky #toc h6.hidden,
.single-videos aside #sticky #toc h6.hidden,
.single-salesstreetvideos aside #sticky #toc h6.hidden,
.single-database-center aside #sticky #toc h6.hidden {
  display: none;
}
.single-post aside #sticky #toc ol.hidden,
.single-customer-stories aside #sticky #toc ol.hidden,
.single-resources aside #sticky #toc ol.hidden,
.single-videos aside #sticky #toc ol.hidden,
.single-salesstreetvideos aside #sticky #toc ol.hidden,
.single-database-center aside #sticky #toc ol.hidden {
  display: none;
}
.single-post aside #sticky #toc ol,
.single-customer-stories aside #sticky #toc ol,
.single-resources aside #sticky #toc ol,
.single-videos aside #sticky #toc ol,
.single-salesstreetvideos aside #sticky #toc ol,
.single-database-center aside #sticky #toc ol {
  list-style: none;
  margin: 0 0 40px 0;
}
.single-post aside #sticky #toc ol li,
.single-customer-stories aside #sticky #toc ol li,
.single-resources aside #sticky #toc ol li,
.single-videos aside #sticky #toc ol li,
.single-salesstreetvideos aside #sticky #toc ol li,
.single-database-center aside #sticky #toc ol li {
  line-height: 100%;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 3px solid #e6ebeb;
}
.single-post aside #sticky #toc ol li a,
.single-customer-stories aside #sticky #toc ol li a,
.single-resources aside #sticky #toc ol li a,
.single-videos aside #sticky #toc ol li a,
.single-salesstreetvideos aside #sticky #toc ol li a,
.single-database-center aside #sticky #toc ol li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.single-post aside #sticky #toc ol li:hover, .single-post aside #sticky #toc ol li.active,
.single-customer-stories aside #sticky #toc ol li:hover,
.single-customer-stories aside #sticky #toc ol li.active,
.single-resources aside #sticky #toc ol li:hover,
.single-resources aside #sticky #toc ol li.active,
.single-videos aside #sticky #toc ol li:hover,
.single-videos aside #sticky #toc ol li.active,
.single-salesstreetvideos aside #sticky #toc ol li:hover,
.single-salesstreetvideos aside #sticky #toc ol li.active,
.single-database-center aside #sticky #toc ol li:hover,
.single-database-center aside #sticky #toc ol li.active {
  border-left: 3px solid #ee1448;
}
.single-post aside #sticky #toc ol li:hover a, .single-post aside #sticky #toc ol li.active a,
.single-customer-stories aside #sticky #toc ol li:hover a,
.single-customer-stories aside #sticky #toc ol li.active a,
.single-resources aside #sticky #toc ol li:hover a,
.single-resources aside #sticky #toc ol li.active a,
.single-videos aside #sticky #toc ol li:hover a,
.single-videos aside #sticky #toc ol li.active a,
.single-salesstreetvideos aside #sticky #toc ol li:hover a,
.single-salesstreetvideos aside #sticky #toc ol li.active a,
.single-database-center aside #sticky #toc ol li:hover a,
.single-database-center aside #sticky #toc ol li.active a {
  color: #121518;
}
.single-post #related-posts a#resource-card,
.single-post #related-posts .resource-card,
.single-customer-stories #related-posts a#resource-card,
.single-customer-stories #related-posts .resource-card,
.single-resources #related-posts a#resource-card,
.single-resources #related-posts .resource-card,
.single-videos #related-posts a#resource-card,
.single-videos #related-posts .resource-card,
.single-salesstreetvideos #related-posts a#resource-card,
.single-salesstreetvideos #related-posts .resource-card,
.single-database-center #related-posts a#resource-card,
.single-database-center #related-posts .resource-card {
  border-radius: 10px;
  background-color: #f9f7f1;
  border: 1px solid #efecdf;
  color: #121518;
  display: flex;
  flex-flow: column;
}
.single-post #related-posts a#resource-card #content-container,
.single-post #related-posts .resource-card #content-container,
.single-customer-stories #related-posts a#resource-card #content-container,
.single-customer-stories #related-posts .resource-card #content-container,
.single-resources #related-posts a#resource-card #content-container,
.single-resources #related-posts .resource-card #content-container,
.single-videos #related-posts a#resource-card #content-container,
.single-videos #related-posts .resource-card #content-container,
.single-salesstreetvideos #related-posts a#resource-card #content-container,
.single-salesstreetvideos #related-posts .resource-card #content-container,
.single-database-center #related-posts a#resource-card #content-container,
.single-database-center #related-posts .resource-card #content-container {
  padding: 0 20px 25px;
  display: flex;
  flex-flow: column;
  height: 100%;
  box-sizing: content-box;
}
.single-post #related-posts a#resource-card #content-container #button-container,
.single-post #related-posts .resource-card #content-container #button-container,
.single-customer-stories #related-posts a#resource-card #content-container #button-container,
.single-customer-stories #related-posts .resource-card #content-container #button-container,
.single-resources #related-posts a#resource-card #content-container #button-container,
.single-resources #related-posts .resource-card #content-container #button-container,
.single-videos #related-posts a#resource-card #content-container #button-container,
.single-videos #related-posts .resource-card #content-container #button-container,
.single-salesstreetvideos #related-posts a#resource-card #content-container #button-container,
.single-salesstreetvideos #related-posts .resource-card #content-container #button-container,
.single-database-center #related-posts a#resource-card #content-container #button-container,
.single-database-center #related-posts .resource-card #content-container #button-container {
  margin-top: auto;
}
.single-post #related-posts a#resource-card #image-container,
.single-post #related-posts .resource-card #image-container,
.single-customer-stories #related-posts a#resource-card #image-container,
.single-customer-stories #related-posts .resource-card #image-container,
.single-resources #related-posts a#resource-card #image-container,
.single-resources #related-posts .resource-card #image-container,
.single-videos #related-posts a#resource-card #image-container,
.single-videos #related-posts .resource-card #image-container,
.single-salesstreetvideos #related-posts a#resource-card #image-container,
.single-salesstreetvideos #related-posts .resource-card #image-container,
.single-database-center #related-posts a#resource-card #image-container,
.single-database-center #related-posts .resource-card #image-container {
  margin-bottom: 30px;
}
.single-post #related-posts a#resource-card #image-container img,
.single-post #related-posts .resource-card #image-container img,
.single-customer-stories #related-posts a#resource-card #image-container img,
.single-customer-stories #related-posts .resource-card #image-container img,
.single-resources #related-posts a#resource-card #image-container img,
.single-resources #related-posts .resource-card #image-container img,
.single-videos #related-posts a#resource-card #image-container img,
.single-videos #related-posts .resource-card #image-container img,
.single-salesstreetvideos #related-posts a#resource-card #image-container img,
.single-salesstreetvideos #related-posts .resource-card #image-container img,
.single-database-center #related-posts a#resource-card #image-container img,
.single-database-center #related-posts .resource-card #image-container img {
  transition: 0.2s all cubic-bezier(0.455, 0.03, 0.515, 0.955);
  border-radius: 10px 10px 0 0;
  width: 100%;
}
.single-post #related-posts a#resource-card:hover,
.single-post #related-posts .resource-card:hover,
.single-customer-stories #related-posts a#resource-card:hover,
.single-customer-stories #related-posts .resource-card:hover,
.single-resources #related-posts a#resource-card:hover,
.single-resources #related-posts .resource-card:hover,
.single-videos #related-posts a#resource-card:hover,
.single-videos #related-posts .resource-card:hover,
.single-salesstreetvideos #related-posts a#resource-card:hover,
.single-salesstreetvideos #related-posts .resource-card:hover,
.single-database-center #related-posts a#resource-card:hover,
.single-database-center #related-posts .resource-card:hover {
  cursor: pointer;
  background-color: #f5f2ea;
  border: 1px solid #e0ded1;
}
.single-post #related-posts.black a#resource-card,
.single-post #related-posts.black .resource-card,
.single-customer-stories #related-posts.black a#resource-card,
.single-customer-stories #related-posts.black .resource-card,
.single-resources #related-posts.black a#resource-card,
.single-resources #related-posts.black .resource-card,
.single-videos #related-posts.black a#resource-card,
.single-videos #related-posts.black .resource-card,
.single-salesstreetvideos #related-posts.black a#resource-card,
.single-salesstreetvideos #related-posts.black .resource-card,
.single-database-center #related-posts.black a#resource-card,
.single-database-center #related-posts.black .resource-card {
  background-color: #1a2323;
  border: 1px solid #283232;
}
.single-post #related-posts.black a#resource-card:hover,
.single-post #related-posts.black .resource-card:hover,
.single-customer-stories #related-posts.black a#resource-card:hover,
.single-customer-stories #related-posts.black .resource-card:hover,
.single-resources #related-posts.black a#resource-card:hover,
.single-resources #related-posts.black .resource-card:hover,
.single-videos #related-posts.black a#resource-card:hover,
.single-videos #related-posts.black .resource-card:hover,
.single-salesstreetvideos #related-posts.black a#resource-card:hover,
.single-salesstreetvideos #related-posts.black .resource-card:hover,
.single-database-center #related-posts.black a#resource-card:hover,
.single-database-center #related-posts.black .resource-card:hover {
  background-color: #283232;
  border: 1px solid #485252;
}
.single-post #breadcrumb a,
.single-customer-stories #breadcrumb a,
.single-resources #breadcrumb a,
.single-videos #breadcrumb a,
.single-salesstreetvideos #breadcrumb a,
.single-database-center #breadcrumb a {
  color: #ffffff;
}
.single-post p a,
.single-post li a,
.single-customer-stories p a,
.single-customer-stories li a,
.single-resources p a,
.single-resources li a,
.single-videos p a,
.single-videos li a,
.single-salesstreetvideos p a,
.single-salesstreetvideos li a,
.single-database-center p a,
.single-database-center li a {
  color: #121518;
}
.single-post p a:hover,
.single-post li a:hover,
.single-customer-stories p a:hover,
.single-customer-stories li a:hover,
.single-resources p a:hover,
.single-resources li a:hover,
.single-videos p a:hover,
.single-videos li a:hover,
.single-salesstreetvideos p a:hover,
.single-salesstreetvideos li a:hover,
.single-database-center p a:hover,
.single-database-center li a:hover {
  color: #ad3a00;
}
.single-post .author-byline,
.single-customer-stories .author-byline,
.single-resources .author-byline,
.single-videos .author-byline,
.single-salesstreetvideos .author-byline,
.single-database-center .author-byline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-post .author-byline .author-photo,
.single-customer-stories .author-byline .author-photo,
.single-resources .author-byline .author-photo,
.single-videos .author-byline .author-photo,
.single-salesstreetvideos .author-byline .author-photo,
.single-database-center .author-byline .author-photo {
  max-width: 50px;
}
.single-post .author-byline div#author-social,
.single-post .author-byline div#author-social a,
.single-customer-stories .author-byline div#author-social,
.single-customer-stories .author-byline div#author-social a,
.single-resources .author-byline div#author-social,
.single-resources .author-byline div#author-social a,
.single-videos .author-byline div#author-social,
.single-videos .author-byline div#author-social a,
.single-salesstreetvideos .author-byline div#author-social,
.single-salesstreetvideos .author-byline div#author-social a,
.single-database-center .author-byline div#author-social,
.single-database-center .author-byline div#author-social a {
  display: flex;
  align-items: center;
}
.single-post #author-container,
.single-customer-stories #author-container,
.single-resources #author-container,
.single-videos #author-container,
.single-salesstreetvideos #author-container,
.single-database-center #author-container {
  margin-top: 60px;
  border-top: 1px solid #bfc6c6;
  border-bottom: 1px solid #bfc6c6;
  padding: 50px 0;
}
.single-post #author-container .author-byline,
.single-customer-stories #author-container .author-byline,
.single-resources #author-container .author-byline,
.single-videos #author-container .author-byline,
.single-salesstreetvideos #author-container .author-byline,
.single-database-center #author-container .author-byline {
  margin-bottom: 30px;
}
.single-post #social-share a,
.single-customer-stories #social-share a,
.single-resources #social-share a,
.single-videos #social-share a,
.single-salesstreetvideos #social-share a,
.single-database-center #social-share a {
  margin-right: 10px;
}

.single-post main .content h1,
.single-post main .content h2,
.single-post main .content h3,
.single-post main .content h4,
.single-post main .content h5,
.single-post main .content h6,
.single-post main .content p,
.single-post main .content ul,
.single-post main .content ol,
.single-customer-stories main .content h1,
.single-customer-stories main .content h2,
.single-customer-stories main .content h3,
.single-customer-stories main .content h4,
.single-customer-stories main .content h5,
.single-customer-stories main .content h6,
.single-customer-stories main .content p,
.single-customer-stories main .content ul,
.single-customer-stories main .content ol,
.single-resources main .content h1,
.single-resources main .content h2,
.single-resources main .content h3,
.single-resources main .content h4,
.single-resources main .content h5,
.single-resources main .content h6,
.single-resources main .content p,
.single-resources main .content ul,
.single-resources main .content ol,
.single-videos main .content h1,
.single-videos main .content h2,
.single-videos main .content h3,
.single-videos main .content h4,
.single-videos main .content h5,
.single-videos main .content h6,
.single-videos main .content p,
.single-videos main .content ul,
.single-videos main .content ol,
.single-salesstreetvideos main .content h1,
.single-salesstreetvideos main .content h2,
.single-salesstreetvideos main .content h3,
.single-salesstreetvideos main .content h4,
.single-salesstreetvideos main .content h5,
.single-salesstreetvideos main .content h6,
.single-salesstreetvideos main .content p,
.single-salesstreetvideos main .content ul,
.single-salesstreetvideos main .content ol {
  margin-bottom: 20px;
}
.single-post main .content h1,
.single-post main .content h2,
.single-post main .content h3,
.single-post main .content h4,
.single-post main .content h5,
.single-post main .content h6,
.single-customer-stories main .content h1,
.single-customer-stories main .content h2,
.single-customer-stories main .content h3,
.single-customer-stories main .content h4,
.single-customer-stories main .content h5,
.single-customer-stories main .content h6,
.single-resources main .content h1,
.single-resources main .content h2,
.single-resources main .content h3,
.single-resources main .content h4,
.single-resources main .content h5,
.single-resources main .content h6,
.single-videos main .content h1,
.single-videos main .content h2,
.single-videos main .content h3,
.single-videos main .content h4,
.single-videos main .content h5,
.single-videos main .content h6,
.single-salesstreetvideos main .content h1,
.single-salesstreetvideos main .content h2,
.single-salesstreetvideos main .content h3,
.single-salesstreetvideos main .content h4,
.single-salesstreetvideos main .content h5,
.single-salesstreetvideos main .content h6 {
  padding-top: 40px;
}

.page-template-basic #body h1,
.page-template-basic #body h2,
.page-template-basic #body h3,
.page-template-basic #body h4,
.page-template-basic #body h5,
.page-template-basic #body h6,
.page-template-basic #body p,
.page-template-basic #body ul,
.page-template-basic #body ol {
  margin-bottom: 20px;
}
.page-template-basic #body h1,
.page-template-basic #body h2,
.page-template-basic #body h3,
.page-template-basic #body h4,
.page-template-basic #body h5,
.page-template-basic #body h6 {
  padding-top: 40px;
}

.single-database-center main h1,
.single-database-center main .featured-image {
  margin-bottom: 40px;
}
.single-database-center main .post-content h1,
.single-database-center main .post-content h2,
.single-database-center main .post-content h3,
.single-database-center main .post-content h4,
.single-database-center main .post-content h5,
.single-database-center main .post-content h6,
.single-database-center main .post-content p,
.single-database-center main .post-content ul,
.single-database-center main .post-content ol {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single-database-center aside {
    margin-top: 50px;
  }
}
.single-database-center aside .form {
  background-color: #f4f6f5;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #121518;
  box-shadow: #121518 4px 4px 0px;
}
.single-database-center aside .form h6 {
  margin-bottom: 40px;
}
.single-database-center aside .form fieldset.form-columns-1 {
  max-width: none;
  width: 100%;
}
.single-database-center aside .form fieldset.form-columns-1 .hs-input {
  width: 100% !important;
  height: 50px;
  border-radius: 100px;
  border: 2px solid #121518;
  box-shadow: none;
  padding: 10px 20px;
}
.single-database-center aside .form input.hs-button {
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
}
.single-database-center aside .downloadformwrapper {
  min-height: 0 !important;
  margin: 0 !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.single-database-center aside .downloadformwrapper input#checkbox::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='22' height='22' rx='11' stroke='black' stroke-width='2'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  display: block;
}
.single-database-center aside .downloadformwrapper input#checkbox:checked::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_920_34968)'%3E%3Cpath d='M12 0C5.37303 0 -0.00146484 5.3745 -0.00146484 12.0083C-0.00146484 18.6421 5.37303 24.0097 12 24.0097C18.6269 24.0097 24.0014 18.6353 24.0014 12.0083C24.0014 5.38138 18.6269 0 12 0ZM10.4447 16.7841L5.82033 12.1597L7.03837 10.9417L10.4447 14.348L16.9616 7.83809L18.1796 9.04924L10.4447 16.7841Z' fill='%23AD3A00'/%3E%3C/g%3E%3Crect x='1' y='1' width='22' height='22' rx='11' stroke='%23AD3A00' stroke-width='2'/%3E%3Cdefs%3E%3CclipPath id='clip0_920_34968'%3E%3Crect width='24' height='24' rx='12' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.single-database-center aside .downloadformwrapper input#checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.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;
  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;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  padding: 0.85em 1em;
}
[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: #f34249;
  color: #ffffff;
}
.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
  background-color: rgb(240.2328358209, 22.4171641791, 31.0313432836);
  color: #ffffff;
}

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

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

.gallery::after {
  clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px;
}

#respond ul {
  margin-left: 0px;
}

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px;
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .vcard {
  margin-left: 50px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  position: absolute;
  left: 10px;
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  float: right;
}
/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
}
.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}

#comment-form-title {
  margin: 0 0 1.1em;
}

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

.nocomments {
  margin: 0 20px 1.1em;
}

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

.widget ul {
  margin: 0;
}

/*********************
FOOTER
*********************/
.footer {
  clear: both;
  position: relative;
  margin-top: 0;
  border-top: 1px solid #283232;
  padding: 63px 0 35px;
  background: #121518;
}
@media screen and (max-width: 1155px) {
  .footer {
    padding-top: 35px;
  }
}
.footer .section-footer {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0;
}
.footer .section-footer .top-row {
  grid-column-start: 1;
  grid-column-end: span 12;
}
.footer .section-footer .top-row.logo-social {
  margin-bottom: 60px;
}
.footer .section-footer .top-row .left-column {
  grid-column-end: span 2;
  display: flex;
  align-self: center;
}
.footer .section-footer .top-row .left-column a.logo {
  display: inline-block;
  margin-bottom: 0;
}
.footer .section-footer .top-row .left-column .content-group p {
  font-size: 14px;
}
.footer .section-footer .top-row .left-column .content-group p:first-child {
  margin-bottom: 20px;
}
.footer .section-footer .top-row .left-column .content-group a {
  color: #ffffff;
}
.footer .section-footer .top-row .left-column .content-group.utility {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.footer .section-footer .top-row .left-column .content-group.utility span {
  display: flex;
}
.footer .section-footer .top-row .left-column .content-group.utility a {
  font-size: 14px;
  font-weight: 600;
}
.footer .section-footer .top-row .left-column .link-group {
  margin: 24px 0;
  display: flex;
  gap: 12px;
}
.footer .section-footer .top-row .left-column .link-group a {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  transition: all 0.2s ease;
}
.footer .section-footer .top-row .left-column .link-group a:hover {
  text-shadow: 0 0 1px #ffffff;
}
@media only screen and (max-width: 768px) {
  .footer .section-footer .top-row .left-column {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .section-footer .top-row .column {
  grid-column-end: span 3;
  display: flex;
  flex-flow: column;
}
.footer .section-footer .top-row .column.col-2 {
  grid-column-end: span 2;
}
.footer .section-footer .top-row .column .footer-nav-group {
  display: flex;
  flex-flow: column;
}
.footer .section-footer .top-row .column .footer-nav-group:not(:last-child) {
  margin-bottom: 20px;
}
.footer .section-footer .top-row .column .footer-nav-group .header {
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 130%;
  margin-bottom: 10px;
  color: #ffffff;
}
.footer .section-footer .top-row .column .footer-nav-group .header a {
  color: #ffffff;
  text-decoration: none;
}
.footer .section-footer .top-row .column .footer-nav-group .header a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .column .footer-nav-group .header {
    margin-top: 25px;
  }
}
.footer .section-footer .top-row .column .footer-nav-group p {
  color: #ffffff;
}
.footer .section-footer .top-row .column .footer-nav-group > a {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #ffffff;
  transition: all 0.2s ease;
}
.footer .section-footer .top-row .column .footer-nav-group > a:hover {
  text-decoration: underline;
}
.footer .section-footer .top-row .column .footer-nav-group > a:not(:last-child) {
  margin-bottom: 4px;
}
.footer .section-footer .top-row .column .footer-nav-group > a:last-child {
  margin-bottom: 0;
}
.footer .section-footer .top-row .column.end {
  grid-column: 10/span 3 !important;
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row .column.end {
    width: 100%;
  }
}
.footer .section-footer .top-row .column .social-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.footer .section-footer .top-row .column .social-links a.phone {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.footer .section-footer .top-row .column .social-links a.phone p {
  margin-left: 6px;
  margin-bottom: 0;
}
.footer .section-footer .top-row .column .awards {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.footer .section-footer .top-row .column .awards img {
  max-height: 62px;
}
@media only screen and (max-width: 1155px) {
  .footer .section-footer .top-row .column.logos {
    grid-column-end: span 4;
    border-bottom: 1px solid #283232;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group {
    flex-flow: row wrap;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group a.logo,
  .footer .section-footer .top-row .column.logos .footer-nav-group .social-links {
    width: 50%;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group .social-links {
    margin-top: 0;
    flex-flow: row wrap;
    justify-content: flex-end;
  }
  .footer .section-footer .top-row .column.logos .footer-nav-group .awards {
    width: 100%;
  }
  .footer .section-footer .top-row .column.quarter {
    grid-column-end: span 2;
  }
}
@media screen and (max-width: 768px) {
  .footer .section-footer .top-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .section-footer .top-row:after {
    content: "";
    display: block;
    height: 1px;
    width: calc(100% - 40px);
    background: #283232;
    position: absolute;
    bottom: -1px;
    margin: 0 20px;
  }
  .footer .section-footer .top-row .awards.full.show-for-mobile {
    display: flex !important;
    gap: 30px;
    margin-top: 30px;
  }
  .footer .section-footer .top-row .awards.full.show-for-mobile img {
    max-width: calc(18% - 30px);
  }
}
@media screen and (max-width: 480px) {
  .footer .section-footer .top-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .footer .section-footer .top-row:after {
    content: "";
    display: block;
    height: 1px;
    width: calc(100% - 40px);
    background: #283232;
    position: absolute;
    bottom: -1px;
    margin: 0 20px;
  }
  .footer .section-footer .top-row .awards.full.show-for-mobile {
    display: flex !important;
    gap: 30px;
    margin-top: 30px;
  }
  .footer .section-footer .top-row .awards.full.show-for-mobile img {
    max-width: calc(30% - 30px);
  }
}
.footer .footer-bottom {
  margin-top: 80px;
}
.footer .footer-bottom .copyright {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
}
.footer .footer-bottom .copyright span {
  margin: 0 10px;
}
.footer .footer-bottom .copyright a,
.footer .footer-bottom .copyright p,
.footer .footer-bottom .copyright span {
  color: #8c9696;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
}
.footer .footer-bottom .copyright p {
  margin-left: 15px;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .copyright p {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom .copyright {
    justify-content: center;
    flex-flow: row wrap;
  }
  .footer .footer-bottom .copyright > div {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom {
    margin-top: 0;
  }
}

/*********************
FORM STYLES
*********************/
.single-resources .form-container.half #form-container form.mktoForm {
  width: 100% !important;
  padding: 0;
  margin-top: 25px;
  background-color: transparent;
  border: none;
}
.single-resources .form-container.half #form-container form.mktoForm .mktoAsterix {
  display: none;
}

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

/*********************
SAFARI STYLE OVERRIDES
*********************/
html.safari-browser section#masonry .tile-wrapper {
  row-gap: 100px;
}
html.safari-browser section#masonry .tile-wrapper .tile {
  height: 100%;
}
@media only screen and (max-width: 1155px) {
  html.safari-browser section#masonry .tile-wrapper {
    row-gap: 64px;
  }
}
html.safari-browser section#cta.banner .title-container #button-container:before, html.safari-browser section#cta.banner .title-container #button-container:after {
  height: 100%;
}
html.safari-browser .page-template-page-pricing .pricing-column {
  height: 100%;
}

.header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.has-icon.podcast::before {
  content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17 17"><!-- Generator: Adobe Illustrator 29.1.0, SVG Export Plug-In . SVG Version: 2.1.0 Build 142 --><defs><style> .st0 { fill: none; stroke: %23121518; stroke-linejoin: round; stroke-width: .8px; } </style></defs><path d="M6,6.8c0,2,1.1,3.6,2.5,3.6s2.5-1.6,2.5-3.6c0,0-5,0-5,0Z"/><line class="st0" x1="5.6" y1="15.6" x2="11.4" y2="15.6"/><line class="st0" x1="5.9" y1="3.7" x2="7.7" y2="3.7"/><line class="st0" x1="9.1" y1="3.7" x2="10.9" y2="3.7"/><line class="st0" x1="5.9" y1="5.5" x2="7.7" y2="5.5"/><line class="st0" x1="9.1" y1="5.5" x2="10.9" y2="5.5"/><line class="st0" x1="8.5" y1="12.5" x2="8.5" y2="15.6"/><line class="st0" x1="5.9" y1="7.1" x2="11.1" y2="7.1"/><rect class="st0" x="6.1" y="1.4" width="4.6" height="9.2" rx="2.2" ry="2.2"/><path class="st0" d="M4.2,7.5v.7c0,2.4,1.9,4.3,4.3,4.3h0c2.4,0,4.3-1.9,4.3-4.3v-.7"/></svg>');
}

.header .top-bar .top-bar-right .submenu #main-container .mega_menu_links a.has-icon:hover.podcast::before {
  content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17 17"><!-- Generator: Adobe Illustrator 29.1.0, SVG Export Plug-In . SVG Version: 2.1.0 Build 142 --><defs><style> .st0 { fill: %23f34249; } .st1 { fill: none; stroke: %23121518; stroke-linejoin: round; stroke-width: .8px; } </style></defs><path class="st0" d="M6,6.8c0,2,1.1,3.6,2.5,3.6s2.5-1.6,2.5-3.6c0,0-5,0-5,0Z"/><line class="st1" x1="5.6" y1="15.6" x2="11.4" y2="15.6"/><line class="st1" x1="5.9" y1="3.7" x2="7.7" y2="3.7"/><line class="st1" x1="9.1" y1="3.7" x2="10.9" y2="3.7"/><line class="st1" x1="5.9" y1="5.5" x2="7.7" y2="5.5"/><line class="st1" x1="9.1" y1="5.5" x2="10.9" y2="5.5"/><line class="st1" x1="8.5" y1="12.6" x2="8.5" y2="15.6"/><line class="st1" x1="5.9" y1="7.1" x2="11.1" y2="7.1"/><rect class="st1" x="6.1" y="1.4" width="4.6" height="9.2" rx="2.2" ry="2.2"/><path class="st1" d="M4.2,7.5v.7c0,2.4,1.9,4.3,4.3,4.3h0c2.4,0,4.3-1.9,4.3-4.3v-.7"/></svg>');
}

.page-id-5964 #body,
.page-id-3 #body {
  padding: 0 !important;
}

@media screen and (min-width: 768px) {
  #team .last-row-wrapper {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    gap: 3.125%;
    position: relative;
  }
  #team .last-row-wrapper > .column.quarter {
    width: 47.4375%; /* calculate width minus gaps */
    box-sizing: border-box;
  }
  #team .last-row-wrapper .bio-container.container.full {
    position: absolute;
    left: 0;
    top: 105%;
    z-index: 10;
    display: none;
  }
}
@media screen and (min-width: 1155px) {
  #team .last-row-wrapper > .column.quarter {
    width: 22.36875%;
  }
}
@media screen and (max-width: 1155px) {
  #team .last-row-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 24px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 768px) {
  #team .last-row-wrapper {
    flex-direction: column;
    grid-column: auto/span 4;
  }
}/*# sourceMappingURL=style.css.map */