.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

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

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}


/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}


/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}


/*CSS Animations*/

.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

@charset "UTF-8";
/*
  Project: betaSense
  Author: schrittweiter GmbH
 */
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}
.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: var(--plyr-badge-background, hsl(216deg, 15%, 34%));
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control.plyr__tab-focus {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-menu-radius, 4px);
  bottom: 100%;
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, hsl(216deg, 15%, 34%));
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container::after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(((var(--plyr-control-icon-size, 18px) / 2) + calc(var(--plyr-control-spacing, 10px) * 0.7)) - (var(--plyr-menu-arrow-size, 4px) / 2));
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  align-items: center;
  color: var(--plyr-menu-color, hsl(216deg, 15%, 34%));
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, hsl(216deg, 15%, 52%));
  right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5) - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: calc(100% - (calc(var(--plyr-control-spacing, 10px) * 0.7) * 2));
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, hsl(216deg, 15%, 52%));
  left: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5) - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--back::before {
  background: var(--plyr-menu-back-border-color, hsl(216deg, 15%, 88%));
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  overflow: hidden;
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  display: block;
  height: calc((var(--plyr-range-thumb-active-shadow-width, 3px) * 2) + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  appearance: none;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type=range]:focus {
  outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}

.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, hsl(216deg, 15%, 34%));
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: calc((var(--plyr-control-icon-size, 18px) / 2) + calc(var(--plyr-control-spacing, 10px) * 0.7));
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc((var(--plyr-control-icon-size, 18px) / 2) + calc(var(--plyr-control-spacing, 10px) * 0.7));
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
}

.plyr__progress__buffer {
  -webkit-appearance: none; /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc((var(--plyr-range-track-height, 5px) / 2) * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  align-items: center;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}
.plyr__volume input[type=range] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}

.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, hsl(216deg, 15%, 34%));
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads::after {
  background: hsl(216deg, 15%, 16%);
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty::after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: hsl(216deg, 15%, 79%);
  border-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container::after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__image-container::after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}
.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}
.plyr__preview-thumb__time-container {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  border-bottom-right-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

/* Fonts ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Type
   ========================================================================== */
/* Colors
   ========================================================================== */
/* ==========================================================================
   MIXINS
   ========================================================================== */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

/* ==========================================================================
   #FONT-FACE
   ========================================================================== */
/**
 * Add font-display: swap to font-face blocks here
 * https://www.zachleat.com/web/comprehensive-webfonts/#font-display
 */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../../fonts/bold/Inter-Bold.woff2") format("woff2"), url("../../fonts/bold/Inter-Bold.otf") format("otf"), url("../../fonts/bold/Inter-Bold.woff") format("woff"), url("../../fonts/bold/Inter-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
}
/* roboto-condensed-regular - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../../fonts/semibold/Inter-SemiBold.woff2") format("woff2"), url("../../fonts/semibold/Inter-SemiBold.otf") format("otf"), url("../../fonts/semibold/Inter-SemiBold.woff") format("woff"), url("../../fonts/semibold/Inter-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
}
/* roboto-condensed-regular - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../../fonts/medium/Inter-Medium.woff2") format("woff2"), url("../../fonts/medium/Inter-Medium.otf") format("otf"), url("../../fonts/medium/Inter-Medium.woff") format("woff"), url("../../fonts/medium/Inter-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
}
/* roboto-condensed-regular - latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../../fonts/regular/Inter-Regular.woff2") format("woff2"), url("../../fonts/regular/Inter-Regular.otf") format("otf"), url("../../fonts/regular/Inter-Regular.woff") format("woff"), url("../../fonts/regular/Inter-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
}
/* ==========================================================================
   #NORMALIZE
   ========================================================================== */
@import-normalize;
/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0; /* [1] */
  border: 0;
}

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 1.3rem;
}

/**
 * Consistent indentation for lists.
 */
dd,
ol,
ul {
  margin-left: 1rem;
}

/* ==========================================================================
   #BLOCKQUOTES
   ========================================================================== */
blockquote {
  quotes: "“" "”" "‘" "’";
  font-style: italic;
}
blockquote p:first-child::before {
  content: open-quote;
}
blockquote p:last-child::after {
  content: close-quote;
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -1.68px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  h1 {
    font-weight: 400;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    line-height: 1;
  }
}

h2 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -1.2px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  h2 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    line-height: 1.2;
  }
}

h3 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.9px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  h3 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h3 {
    line-height: 1.33;
  }
}

h4 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.9px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  h4 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  h4 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  h4 {
    line-height: 1.33;
  }
}

h5 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.8px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  h5 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  h5 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  h5 {
    line-height: 1.267;
  }
}

h6 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  h6 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  h6 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  h6 {
    line-height: 1.273;
  }
}

p {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.48px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  p {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  p {
    line-height: 1.5;
  }
}

/* ==========================================================================
   #HR
   ========================================================================== */
hr {
  display: block;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background: #fff;
  color: #1e73a0;
  min-height: 100%; /* [3] */
  overflow-y: scroll; /* [2] */
  overflow-x: hidden;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
}

main#content {
  overflow-x: hidden;
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  font-style: italic; /* [2] */
  max-width: 100%; /* [1] */
  vertical-align: middle; /* [3] */
}

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  color: #1e73a0;
  text-decoration: none;
}

/* ==========================================================================
   #LISTS
   ========================================================================== */
li {
  margin-bottom: 0.5rem;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%; /* [1] */
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/* Simple flexbox layout system */
.o-layout {
  display: block;
}
@media (min-width: 768px) {
  .o-layout {
    display: flex;
  }
}

.o-layout__item {
  flex: 1;
}

.o-layout--guttered {
  justify-content: space-between;
}
.o-layout--guttered > .o-layout__item {
  flex: none;
}

@media (min-width: 768px) {
  .o-layout--2 > .o-layout__item {
    width: 49%;
  }
}

@media (min-width: 768px) {
  .o-layout--3 > .o-layout__item {
    width: 32%;
  }
}

@media (min-width: 768px) {
  .o-layout--4 > .o-layout__item {
    width: 24%;
  }
}

/* ==========================================================================
   #LIST-BARE
   ========================================================================== */
/**
 * Strip list-like appearance from lists by removing their bullets, and any
 * indentation.
 */
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
  list-style: none;
  margin-left: 0;
}

.o-list-inline__item {
  display: inline-block;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.o-media {
  display: block;
}
.o-media::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.o-media__img {
  float: left;
  margin-right: 1rem;
}
.o-media__img > img {
  display: block;
}

.o-media__body {
  display: block;
  overflow: hidden;
}
.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Reversed media objects
   ========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-left: 1rem;
  margin-right: 0;
}

/* Gutterless media objects
   ========================================================================== */
.o-media--flush > .o-media__img {
  margin-left: 0;
  margin-right: 0;
}

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
.o-table {
  width: 100%;
}

/* Equal-width table cells.
   ========================================================================== */
/**
 * `table-layout: fixed` forces all cells within a table to occupy the same
 * width as each other. This also has performance benefits: because the browser
 * does not need to (re)calculate cell dimensions based on content it discovers,
 * the table can be rendered very quickly. Further reading:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
 */
.o-table--fixed {
  table-layout: fixed;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-wrapper {
  margin-right: auto;
  margin-left: auto;
  padding: 0 1.25rem;
  max-width: 1200px;
}
.o-wrapper::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}
@media (min-width: 1024px) {
  .o-wrapper {
    padding: 0;
  }
}

.c-accordion {
  padding: 0 1.25rem;
}
.c-accordion + .c-accordion {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .c-accordion + .c-accordion {
    margin-top: 4rem;
  }
}
@media (min-width: 1024px) {
  .c-accordion {
    padding: 0;
  }
}
.elementor-column-gap-default .elementor-element-populated .c-accordion {
  padding: 0 calc(1.25rem - 10px);
}
@media (min-width: 1024px) {
  .elementor-column-gap-default .elementor-element-populated .c-accordion {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

.c-accordion__item {
  box-sizing: content-box;
  overflow-y: hidden;
  overflow-y: clip;
  color: var(--accordion-color, #1F73A0);
  background-color: var(--accordion-bg-color, #ffffff);
  border-bottom: 1px solid var(--accordion-color, #1F73A0);
}
@media (min-width: 1024px) {
  .c-accordion__item[data-status=contracted] {
    opacity: 0.5;
  }
  .c-accordion__item[data-status=contracted]:hover {
    color: var(--accordion-color-hover, #FC766D);
  }
}

.c-accordion__target {
  cursor: pointer;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.48px;
}
@media (min-width: 1024px) {
  .c-accordion__target {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-accordion__target {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-accordion__target {
    line-height: 1.25;
  }
}

.c-accordion__control {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.c-accordion__button {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.625rem;
  display: block;
}

[data-status=expanded] .c-accordion__btn--contracted {
  display: none;
}

[data-status=expanded] .c-accordion__btn--expanded {
  display: block;
}

[data-status=contracted] .c-accordion__btn--expanded {
  display: none;
}

[data-status=contracted] .c-accordion__btn--contracted {
  display: block;
}

.c-accordion__panel {
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  background-color: var(--accordion-bg-color, #ffffff);
}
.c-accordion__panel[aria-hidden=true], [data-status=disabled] .c-accordion__panel {
  display: none;
}

.c-accordion__panel__inner {
  padding: 1.25rem 0;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.48px;
}
@media (min-width: 1024px) {
  .c-accordion__panel__inner {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-accordion__panel__inner {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-accordion__panel__inner {
    line-height: 1.5;
  }
}

.c-anchor-menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .c-anchor-menu {
    flex-direction: row;
  }
}

.c-anchor-menu__item {
  width: 100%;
  margin-right: 1.25rem;
  padding: 0;
  list-style: none;
  margin-bottom: 1.125rem;
}
@media (min-width: 1024px) {
  .c-anchor-menu__item {
    margin-bottom: 0;
  }
}
.c-anchor-menu__item:last-of-type {
  margin-right: 0;
}

.c-benefit-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.c-benefit-list__headline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.9px;
  color: var(--benefit-left-fg, #ffffff);
  width: 100%;
  padding: 5rem 1.25rem 2.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .c-benefit-list__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-benefit-list__headline {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .c-benefit-list__headline {
    line-height: 1.33;
  }
}
@media (min-width: 1024px) {
  .c-benefit-list__headline {
    padding: 4.5rem 0;
  }
}
@media (min-width: 1024px) {
  .c-benefit-list__headline {
    width: 45.8333333333%;
    margin: 0;
  }
}
.c-benefit-list__headline:after {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--benefit-left-bg, #FC766D);
  width: 100%;
}
@media (min-width: 1024px) {
  .c-benefit-list__headline:after {
    width: 150vw;
  }
}

.c-benefit-list__list {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.65px;
  color: var(--benefit-right-fg, #FC766D);
  list-style: none;
  margin: 0;
  padding: 2.5rem 1.25rem 5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .c-benefit-list__list {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-benefit-list__list {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .c-benefit-list__list {
    line-height: 1.33;
  }
}
@media (min-width: 1024px) {
  .c-benefit-list__list {
    padding: 4.5rem 0 4.5rem 3.5rem;
  }
}
@media (min-width: 1024px) {
  .c-benefit-list__list {
    width: 54.1666666667%;
  }
}
.c-benefit-list__list:after {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--benefit-right-bg, #EDEDED);
}
@media (min-width: 1024px) {
  .c-benefit-list__list:after {
    width: 150vw;
  }
}

.c-benefit-list__list-item {
  display: inline-flex;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.375rem 0 0;
}
@media (min-width: 1024px) {
  .c-benefit-list__list-item {
    margin-bottom: 1.875rem;
    padding: 0.25rem 0 0;
  }
}
.c-benefit-list__list-item svg {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  margin-top: -0.375rem;
  margin-right: 0.875rem;
}
@media (min-width: 1024px) {
  .c-benefit-list__list-item svg {
    margin-top: -0.25rem;
  }
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
  display: inline-block; /* [1] */
  vertical-align: middle; /* [2] */
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.14;
  text-align: center; /* [4] */
  margin: 0; /* [4] */
  cursor: pointer; /* [5] */
  padding: 0.75rem 1.5rem !important;
  transition: all 300ms ease-in-out;
  border-radius: 3px;
}
@media (min-width: 1024px) {
  .c-btn {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-btn {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .c-btn {
    line-height: 1.33;
  }
}

/* Style variants
   ========================================================================== */
.c-btn--primary {
  background-color: #FC766D;
  border: 1px solid #FC766D;
  color: #ffffff !important;
  border-radius: 1.5rem;
  text-decoration: none; /* [4] */
}
.c-btn--primary:hover, .c-btn--primary:focus {
  background-color: transparent;
  border: 1px solid #FC766D;
  color: #FC766D !important;
}

.c-btn--secondary {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #FC766D !important;
  border-radius: 1.5rem;
  text-decoration: none; /* [4] */
}
.c-btn--secondary:hover, .c-btn--secondary:focus {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff !important;
}

/* Size variants
   ========================================================================== */
.c-btn--small {
  padding: 0.25rem 0.5rem;
}

.c-btn--large {
  padding: 0.75rem 1.5rem;
}

.c-btn--is-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 !important;
}
.c-btn--is-icon svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}
.c-btn--is-icon.c-btn--icon-full svg {
  width: 2.25rem;
  height: 2.25rem;
}
.c-btn--is-icon.c-btn--icon-full.c-btn--icon-sm, .c-btn--is-icon.c-btn--icon-full.c-btn--icon-sm svg {
  width: 1.5rem;
  height: 1.5rem;
}

.c-card {
  display: flex;
}
.swiper-slide .c-card {
  display: flex !important;
}

.c-card--publication {
  border-radius: 0.375rem;
  border: 1px solid var(--publication-card-fg, #ffffff);
  min-height: 100%;
  height: auto;
  padding: 1.25rem 1rem;
}
@media (min-width: 1024px) {
  .c-card--publication {
    padding: 1.25rem;
  }
}

.c-card--teaser {
  height: 100%;
  max-height: 1000px;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0px 4px 14px 4px rgba(0, 0, 0, 0.25) !important;
  background: var(--teaser-card-bg, #ffffff);
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
@media (min-width: 1024px) {
  .c-card--teaser {
    flex-direction: row;
  }
}
.is-sticky .c-card--teaser, .was-sticky .c-card--teaser {
  max-height: 8.125rem;
}
@media (min-width: 1024px) {
  li.active .c-card--teaser {
    color: var(--teaser-card-bg, #ffffff);
    background: var(--teaser-card-fg, #1F73A0);
  }
}

.c-card--teaser--right {
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .c-card--teaser--right {
    flex-direction: row-reverse;
  }
}

.c-card--trial,
.c-card--job {
  border-radius: 0.375rem;
  overflow: hidden;
  background: var(--trial-card-bg, #ffffff);
}
.c-card--trial:hover,
.c-card--job:hover {
  background: var(--trial-card-bg-hover, #ffffff);
}

.c-card__content {
  padding: 1rem;
  width: 100%;
  text-align: left;
}
@media (min-width: 1024px) {
  .c-card__content {
    padding: 1.25rem;
  }
}
.c-card--publication .c-card__content {
  padding: 0;
  margin-left: 1.25rem;
  display: flex;
  flex-direction: column;
}
.c-card--trial .c-card__content, .c-card--job .c-card__content {
  width: 60%;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-card--trial .c-card__content, .c-card--job .c-card__content {
    width: 70%;
  }
}
.c-card--team .c-card__content {
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-card--team .c-card__content > * {
  z-index: 3;
  position: relative;
}
.c-card--team .c-card__content:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: var(--team-card-overlay, #1F73A0);
  opacity: 0.75;
  z-index: 2;
}
.c-card--teaser .c-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ffffff;
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__content {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser--large .c-card__content {
    padding: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser--small .c-card__content {
    padding: 2rem;
    width: 60%;
  }
}
.is-sticky .c-card--teaser .c-card__content, .was-sticky .c-card--teaser .c-card__content {
  padding: 1rem;
}

.c-card__image {
  width: 100%;
}
.c-card--publication .c-card__image {
  flex-shrink: 0;
  max-width: 8.5rem;
}
.c-card--trial .c-card__image, .c-card--job .c-card__image {
  width: 40%;
}
@media (min-width: 1024px) {
  .c-card--trial .c-card__image, .c-card--job .c-card__image {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__image {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser--small .c-card__image {
    width: 40%;
  }
}

.c-card--teaser .c-card__image-item {
  height: 100%;
}

.c-card--teaser .c-card__image--middle-middle .c-img--bg .c-img__full {
  background-position: center center;
}
.c-card--teaser .c-card__image--middle-left .c-img--bg .c-img__full {
  background-position: left center;
}
.c-card--teaser .c-card__image--middle-right .c-img--bg .c-img__full {
  background-position: right center;
}
.c-card--teaser .c-card__image--top-middle .c-img--bg .c-img__full {
  background-position: top center;
}
.c-card--teaser .c-card__image--top-left .c-img--bg .c-img__full {
  background-position: top left;
}
.c-card--teaser .c-card__image--top-right .c-img--bg .c-img__full {
  background-position: top right;
}
.c-card--teaser .c-card__image--bottom-middle .c-img--bg .c-img__full {
  background-position: bottom center;
}
.c-card--teaser .c-card__image--bottom-left .c-img--bg .c-img__full {
  background-position: bottom left;
}
.c-card--teaser .c-card__image--bottom-right .c-img--bg .c-img__full {
  background-position: bottom right;
}

.c-card__title {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
}
@media (min-width: 1024px) {
  .c-card__title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-card__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-card__title {
    line-height: 1.273;
  }
}
.c-card--publication .c-card__title {
  color: var(--publication-card-fg, #ffffff);
  margin-bottom: 0.625rem;
  margin-top: -5px;
}
.c-card--trial .c-card__title, .c-card--job .c-card__title {
  color: var(--trial-card-fg, #1F73A0);
  margin-bottom: 0.625rem;
}
.c-card--team .c-card__title {
  color: var(--team-card-fg, #ffffff);
  margin-bottom: 0.25rem;
}
.c-card--teaser .c-card__title {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.067;
  letter-spacing: -0.9px;
  color: var(--teaser-card-fg, #1F73A0);
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--teaser .c-card__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__title {
    line-height: 1.267;
  }
}
@media (min-width: 1024px) {
  li.active .c-card--teaser .c-card__title {
    color: var(--teaser-card-bg, #ffffff);
  }
}
.c-card--teaser--small .c-card__title {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.9px;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .c-card--teaser--small .c-card__title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--teaser--small .c-card__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser--small .c-card__title {
    line-height: 1.33;
  }
}
.c-card--teaser--large .c-card__title {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .c-card--teaser--large .c-card__title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--teaser--large .c-card__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser--large .c-card__title {
    line-height: 1.2;
  }
}

.c-card__flagline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
}
@media (min-width: 1024px) {
  .c-card__flagline {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-card__flagline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-card__flagline {
    line-height: 1.375;
  }
}
.c-card--publication .c-card__flagline {
  color: var(--publication-card-fg, #ffffff);
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .c-card--publication .c-card__flagline {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--publication .c-card__flagline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-card--publication .c-card__flagline {
    line-height: 1.25;
  }
}
.c-card--trial .c-card__flagline, .c-card--job .c-card__flagline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
  color: var(--trial-card-fg, #1F73A0);
}
@media (min-width: 1024px) {
  .c-card--trial .c-card__flagline, .c-card--job .c-card__flagline {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--trial .c-card__flagline, .c-card--job .c-card__flagline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-card--trial .c-card__flagline, .c-card--job .c-card__flagline {
    line-height: 1.25;
  }
}
.c-card--team .c-card__flagline {
  color: var(--team-card-fg, #ffffff);
}
.c-card--teaser .c-card__flagline {
  color: var(--teaser-card-fg, #1F73A0);
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.54px;
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__flagline {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--teaser .c-card__flagline {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__flagline {
    line-height: 1.33;
  }
}
@media (min-width: 1024px) {
  li.active .c-card--teaser .c-card__flagline {
    color: var(--teaser-card-bg, #ffffff);
  }
}

.c-card__btn {
  margin-top: 1rem;
}
.c-card--publication .c-card__btn {
  margin-top: auto;
  color: var(--publication-card-fg, #ffffff);
  width: 100%;
  justify-content: unset;
}
.c-card--publication:hover .c-card__btn {
  color: var(--publication-card-fg-hover, #FC766D);
}
.c-card--trial .c-card__btn, .c-card--job .c-card__btn {
  margin-top: auto;
  color: var(--trial-card-fg, #1F73A0);
}
.c-card--trial:hover .c-card__btn, .c-card--job:hover .c-card__btn {
  color: var(--trial-card-fg-hover, #FC766D);
}
.c-card--team .c-card__btn {
  margin-top: 1.75rem;
  color: var(--team-card-fg, #ffffff);
}
.c-card--team .c-card__btn:hover {
  color: var(--team-card-fg-hover, #EDEDED);
}
.c-card--teaser .c-card__btn {
  width: max-content;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__btn {
    margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser--large .c-card__btn {
    margin-top: 2rem;
  }
}
.c-card--teaser--small .c-card__btn {
  margin-top: 2.375rem;
}
@media (min-width: 1024px) {
  .c-card--teaser--small .c-card__btn {
    margin-top: 2rem;
  }
}

.c-card--teaser .c-card__btn--cta {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  color: var(--teaser-card-button-color, #1F73A0);
}
.c-card--teaser .c-card__btn--cta svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--teaser-card-button-color, #1F73A0);
}
@media (min-width: 1024px) {
  li.active .c-card--teaser .c-card__btn--cta {
    color: var(--teaser-card-bg, #ffffff);
  }
  li.active .c-card--teaser .c-card__btn--cta svg {
    color: var(--teaser-card-bg, #ffffff);
  }
}

.c-card--teaser .c-card__btn-text, .c-card--publication .c-card__btn-text {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
  margin: auto 0 auto 1rem;
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__btn-text, .c-card--publication .c-card__btn-text {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-card--teaser .c-card__btn-text, .c-card--publication .c-card__btn-text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-card--teaser .c-card__btn-text, .c-card--publication .c-card__btn-text {
    line-height: 1.25;
  }
}

[data-widget_type="swe_teaser_card.default"] {
  padding-bottom: 1.25rem;
}

.swe_teaser_card--large,
.swe_teaser_card--large > .elementor-widget-container {
  height: 100%;
}

.c-checkbox {
  position: relative;
}

.c-checkbox__control {
  appearance: none;
  margin: 0;
  font: inherit;
  cursor: pointer;
  background-color: #EDEDED;
  border-radius: 50%;
  border: none !important;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  width: 1.875rem !important;
  height: 1.875rem !important;
}
.c-checkbox__control:before {
  content: "";
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  border: none;
  transform-origin: center center;
  clip-path: polygon(20% 48%, 41% 64%, 81% 15%, 94% 24%, 43% 88%, 9% 60%);
  background: #FC766D;
  width: 1.5rem;
  height: 1.5rem;
}
.c-checkbox__control:checked::before {
  transform: scale(0.75) rotate(10deg);
}

/* ==========================================================================
   #COMMENT FORM
   Here we are using default HTML structure and classes,
   to create custom ones use comment_form_defaults filter
   ========================================================================== */
.c-comment-form {
  margin-top: 2em;
}
.c-comment-form label {
  display: block;
}
.c-comment-form textarea {
  max-width: 100%;
}

.comment-reply-title {
  margin-bottom: 0.25em;
}

/* ==========================================================================
   #COMMENT
   ========================================================================== */
.c-comment {
  margin-bottom: 1em;
}

.c-comment__author {
  font-size: 1rem;
  margin-bottom: 0.25em;
}

.c-comment__moderation {
  font-style: italic;
  margin-bottom: 0.5em;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.c-footer {
  border-top: 1px solid #1F73A0;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.157;
  letter-spacing: -0.36px;
  margin-top: 2em;
  padding-top: 1em;
}
@media (min-width: 1024px) {
  .c-footer {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-footer {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .c-footer {
    line-height: 1.167;
  }
}

.c-footer--legal-nav,
.c-footer--link-nav,
.c-footer--contact-nav,
.c-footer--social-nav {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.157;
  letter-spacing: -0.36px;
  display: flex;
  flex-direction: row;
  margin: 0;
}
@media (min-width: 1024px) {
  .c-footer--legal-nav,
  .c-footer--link-nav,
  .c-footer--contact-nav,
  .c-footer--social-nav {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-footer--legal-nav,
  .c-footer--link-nav,
  .c-footer--contact-nav,
  .c-footer--social-nav {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .c-footer--legal-nav,
  .c-footer--link-nav,
  .c-footer--contact-nav,
  .c-footer--social-nav {
    line-height: 1.167;
  }
}
.c-footer--legal-nav__item,
.c-footer--link-nav__item,
.c-footer--contact-nav__item,
.c-footer--social-nav__item {
  width: 100%;
  list-style: none;
}
.c-footer--legal-nav__link,
.c-footer--link-nav__link,
.c-footer--contact-nav__link,
.c-footer--social-nav__link {
  color: var(--footer-link-color);
}
.c-footer--legal-nav__link.c-btn--is-icon,
.c-footer--link-nav__link.c-btn--is-icon,
.c-footer--contact-nav__link.c-btn--is-icon,
.c-footer--social-nav__link.c-btn--is-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.c-footer--legal-nav__link.c-btn--is-icon svg,
.c-footer--link-nav__link.c-btn--is-icon svg,
.c-footer--contact-nav__link.c-btn--is-icon svg,
.c-footer--social-nav__link.c-btn--is-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.c-footer--legal-nav__link:hover,
.c-footer--link-nav__link:hover,
.c-footer--contact-nav__link:hover,
.c-footer--social-nav__link:hover {
  color: var(--footer-link-color-hover);
}

.c-footer--link-nav,
.c-footer--contact-nav {
  flex-direction: column;
}

/* FORM
   ========================================================================== */
.nf-field-container {
  margin-bottom: 1rem !important;
}

.nf-form-fields-required {
  display: none;
}

.nf-after-field {
  position: absolute;
  bottom: 0;
  transform: translateY(80%);
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
  font-size: 0.625rem !important;
}
@media (min-width: 1024px) {
  .nf-after-field {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .nf-after-field {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .nf-after-field {
    line-height: 1.167;
  }
}
.nf-after-field .nf-error .nf-error-msg {
  color: #FC766D;
}

.c-input__control[aria-invalid=true] {
  border: none !important;
}

.c-input__control.nf-field-selectbox {
  appearance: none;
}
.c-input__control.nf-field-selectbox[data-chosen=""] {
  color: #FC766D;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .c-input__control.nf-field-selectbox[data-chosen=""] {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-input__control.nf-field-selectbox[data-chosen=""] {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .c-input__control.nf-field-selectbox[data-chosen=""] {
    line-height: 1.167;
  }
}
.c-input__control.nf-field-selectbox,
.c-input__control.nf-field-selectbox option {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  color: #1F73A0;
}
@media (min-width: 1024px) {
  .c-input__control.nf-field-selectbox,
  .c-input__control.nf-field-selectbox option {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-input__control.nf-field-selectbox,
  .c-input__control.nf-field-selectbox option {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-input__control.nf-field-selectbox,
  .c-input__control.nf-field-selectbox option {
    line-height: 1.375;
  }
}

.field-wrap input[type=button] {
  width: auto !important;
}

.c-checkbox.nf-field-container {
  margin-bottom: 1.5rem !important;
}
.c-checkbox .nf-field-description {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
}
@media (min-width: 1024px) {
  .c-checkbox .nf-field-description {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-checkbox .nf-field-description {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .c-checkbox .nf-field-description {
    line-height: 1.167;
  }
}
.c-checkbox .checkbox-wrap {
  width: 100%;
  display: flex;
  flex-wrap: nowrap !important;
}
.c-checkbox .checkbox-wrap .nf-field-label {
  display: none;
}
.c-checkbox .checkbox-wrap .nf-field-element {
  width: auto;
  margin-right: 1rem;
  flex-shrink: 0;
}
.c-checkbox .nf-field-description,
.c-checkbox .nf-field-description p {
  color: #FC766D;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
}
@media (min-width: 1024px) {
  .c-checkbox .nf-field-description,
  .c-checkbox .nf-field-description p {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-checkbox .nf-field-description,
  .c-checkbox .nf-field-description p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .c-checkbox .nf-field-description,
  .c-checkbox .nf-field-description p {
    line-height: 1.167;
  }
}
.c-checkbox .nf-after-field {
  display: none !important;
}

.c-form__select-svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1rem;
  height: 1rem;
  color: #FC766D;
}

.nf-form-errors {
  margin-top: 1rem;
}
.nf-form-errors nf-errors nf-section .nf-error-msg {
  padding: 0.5rem;
  background: #FC766D;
  color: #ffffff !important;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
}
@media (min-width: 1024px) {
  .nf-form-errors nf-errors nf-section .nf-error-msg {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .nf-form-errors nf-errors nf-section .nf-error-msg {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .nf-form-errors nf-errors nf-section .nf-error-msg {
    line-height: 1.167;
  }
}

.nf-notice--html p {
  color: #000000;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .nf-notice--html p {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .nf-notice--html p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .nf-notice--html p {
    line-height: 1.167;
  }
}

.list-select-wrap div div {
  display: inherit !important;
}

.ninja-forms-fieldinput[type=submit] {
  width: auto;
}

.c-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) {
  .c-gallery {
    padding: 0;
  }
}
.elementor-column-gap-default .elementor-element-populated .c-gallery {
  padding: 0 calc(1.25rem - 10px);
}
@media (min-width: 1024px) {
  .elementor-column-gap-default .elementor-element-populated .c-gallery {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

.c-gallery__headline {
  width: 100%;
  color: var(--gallery-color, #1F73A0);
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.8px;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .c-gallery__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-gallery__headline {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .c-gallery__headline {
    line-height: 1.267;
  }
}
@media (min-width: 1024px) {
  .c-gallery__headline {
    margin-bottom: 2.5rem;
  }
}

.c-gallery__item {
  width: 100%;
  position: relative;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .c-gallery__item {
    width: calc(33.3333333333% - 0.5rem);
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-gallery__item.c-gallery__item--1 {
    width: calc(66.6666666667% - 0.5rem);
  }
}

.c-gallery__image--middle-middle .c-img--bg .c-img__full {
  background-position: center center;
}
.c-gallery__image--middle-left .c-img--bg .c-img__full {
  background-position: left center;
}
.c-gallery__image--middle-right .c-img--bg .c-img__full {
  background-position: right center;
}
.c-gallery__image--top-middle .c-img--bg .c-img__full {
  background-position: top center;
}
.c-gallery__image--top-left .c-img--bg .c-img__full {
  background-position: top left;
}
.c-gallery__image--top-right .c-img--bg .c-img__full {
  background-position: top right;
}
.c-gallery__image--bottom-middle .c-img--bg .c-img__full {
  background-position: bottom center;
}
.c-gallery__image--bottom-left .c-img--bg .c-img__full {
  background-position: bottom left;
}
.c-gallery__image--bottom-right .c-img--bg .c-img__full {
  background-position: bottom right;
}

.c-gallery__item__overlay {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: all 300ms ease-in-out;
}
@media (min-width: 1024px) {
  .c-gallery__item__overlay {
    padding: 2.5rem;
  }
}
.c-gallery__item__overlay:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gallery-color, #1F73A0);
  opacity: 0.75;
  z-index: 2;
}
.c-gallery__item__overlay:hover {
  opacity: 1;
}

.c-gallery__item__overlay-title,
.c-gallery__item__overlay-caption {
  z-index: 3;
  position: relative;
  margin: 0;
}

.c-gallery__item__overlay-title {
  margin-top: auto;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  color: var(--gallery-hover-color);
  margin-bottom: 0.875rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-gallery__item__overlay-title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-gallery__item__overlay-title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-gallery__item__overlay-title {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-gallery__item__overlay-title {
    margin-bottom: 0.75rem;
  }
}

.c-gallery__item__overlay-caption {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.167;
  letter-spacing: -0.4px;
  color: var(--gallery-hover-color);
  width: 100%;
}
@media (min-width: 1024px) {
  .c-gallery__item__overlay-caption {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-gallery__item__overlay-caption {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .c-gallery__item__overlay-caption {
    line-height: 1.286;
  }
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.c-header {
  width: 100%;
  min-height: 4.5rem;
  justify-content: center;
  position: sticky;
  top: 0;
  display: flex;
  z-index: 100;
  background-color: #ffffff;
  transform: translate(0);
}
@media (min-width: 1024px) {
  .c-header {
    min-height: 5.5rem;
  }
}

.c-header__menu {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  margin: auto 0;
}
.c-header__menu .c-language-switch {
  display: none;
}
@media (min-width: 1024px) {
  .c-header__menu .c-language-switch {
    display: flex;
  }
}

.c-header__logo {
  margin: auto 0;
  color: #1F73A0;
}
.c-header__logo svg {
  width: 8.125rem;
  height: 1.125rem;
  color: #1F73A0;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
@media (min-width: 1024px) {
  .c-header__logo svg {
    width: 11.25rem;
    height: 1.5rem;
  }
}
.c-header__logo svg .icon-logo__drop {
  color: #FC766D;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}

.c-hero {
  height: 100%;
}

.c-hero__image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-height: calc(100vh + 6.375rem);
  width: 100%;
  z-index: -1;
}
.c-hero__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--hero-overlay-color);
}
@media (min-width: 1024px) {
  .c-hero__image {
    min-height: calc(88vh - var(--page-header-height));
  }
}
.c-hero--small .c-hero__image {
  min-height: 35rem;
}
@media (min-width: 1024px) {
  .c-hero--small .c-hero__image {
    min-height: 26.25rem;
  }
}

.c-hero__image--middle-middle .c-img--bg .c-img__full {
  background-position: center center;
}
.c-hero__image--middle-left .c-img--bg .c-img__full {
  background-position: left center;
}
.c-hero__image--middle-right .c-img--bg .c-img__full {
  background-position: right center;
}
.c-hero__image--top-middle .c-img--bg .c-img__full {
  background-position: top center;
}
.c-hero__image--top-left .c-img--bg .c-img__full {
  background-position: top left;
}
.c-hero__image--top-right .c-img--bg .c-img__full {
  background-position: top right;
}
.c-hero__image--bottom-middle .c-img--bg .c-img__full {
  background-position: bottom center;
}
.c-hero__image--bottom-left .c-img--bg .c-img__full {
  background-position: bottom left;
}
.c-hero__image--bottom-right .c-img--bg .c-img__full {
  background-position: bottom right;
}

.c-hero__meta {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 6.375rem - var(--page-header-height));
}
@media (min-width: 1024px) {
  .c-hero__meta {
    flex-direction: row;
    min-height: calc(100vh - 8.25rem - var(--page-header-height));
    padding: 10px;
  }
}
.c-hero--small .c-hero__meta {
  min-height: 35rem;
}
@media (min-width: 1024px) {
  .c-hero--small .c-hero__meta {
    min-height: 26.25rem;
  }
}

.c-hero__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: auto 0;
}
.c-hero--bottom-aligned .c-hero__content {
  margin: auto 0 0;
}
@media (min-width: 1024px) {
  .c-hero--bottom-aligned .c-hero__content {
    margin: auto 0 5rem;
  }
}
.c-hero__content--small {
  width: 90%;
}
@media (min-width: 1024px) {
  .c-hero__content {
    width: 75%;
  }
  .c-hero__content--small {
    width: 50%;
  }
}
.c-hero--small .c-hero__content {
  width: 100%;
}

.c-hero__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  color: var(--hero-text-color);
}

.c-hero__headline {
  margin: 4.375rem 0 0.5rem;
  color: var(--hero-text-color);
}
@media (min-width: 1024px) {
  .c-hero__headline {
    margin: auto 0 0.7rem;
  }
}
.c-hero--bottom-aligned .c-hero__headline {
  margin: 3.25rem 0 0.5rem;
}
@media (min-width: 1024px) {
  .c-hero--bottom-aligned .c-hero__headline {
    margin: auto 0 0.7rem;
  }
}
.c-hero__headline--icon {
  margin-top: 0;
}
.c-hero__headline--icon h2 {
  margin-bottom: 0;
}

.c-hero__subheadline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin-bottom: 2.5rem;
  color: var(--hero-text-color);
}
@media (min-width: 1024px) {
  .c-hero__subheadline {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-hero__subheadline {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .c-hero__subheadline {
    line-height: 1.556;
  }
}

.c-hero__button {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4.5rem;
}
@media (min-width: 1024px) {
  .c-hero__button {
    margin-bottom: auto;
  }
}

.c-hero__logos {
  width: 50%;
  margin-top: auto;
  display: flex;
}
@media (min-width: 1024px) {
  .c-hero__logos {
    height: 100%;
    margin-top: 0;
  }
}

.c-hero__logo {
  width: 8rem;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 1rem 2.25rem 0;
}
@media (min-width: 1024px) {
  .c-hero__logo {
    margin: auto 1rem 4rem 0;
  }
  .c-hero__logo:first-of-type {
    margin-left: auto;
  }
}

.c-hero__anchor {
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  display: block;
}

.c-hero__anchor-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 2rem 0;
  color: var(--hero-font-color, #1F73A0);
}
.c-hero__anchor-content svg {
  margin: auto 0;
  height: 2.25rem;
  width: 2.25rem;
  color: var(--hero-font-color, #1F73A0);
}
@media (min-width: 1024px) {
  .c-hero__anchor-content {
    padding: 3rem 10px;
  }
}

.c-hero__anchor-text {
  margin: auto 0 auto 1rem;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
}
@media (min-width: 1024px) {
  .c-hero__anchor-text {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-hero__anchor-text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-hero__anchor-text {
    line-height: 1.25;
  }
}

.c-image-text {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-image-text__image {
  position: relative;
  width: 100%;
  z-index: 4;
  padding: 10px;
  margin-bottom: -40%;
}
@media (min-width: 1024px) {
  .c-image-text__image {
    width: 33.3333333333%;
    padding: 0;
    margin: 0;
  }
}

.c-image-text__image--middle-middle .c-img--bg .c-img__full {
  background-position: center center;
}
.c-image-text__image--middle-left .c-img--bg .c-img__full {
  background-position: left center;
}
.c-image-text__image--middle-right .c-img--bg .c-img__full {
  background-position: right center;
}
.c-image-text__image--top-middle .c-img--bg .c-img__full {
  background-position: top center;
}
.c-image-text__image--top-left .c-img--bg .c-img__full {
  background-position: top left;
}
.c-image-text__image--top-right .c-img--bg .c-img__full {
  background-position: top right;
}
.c-image-text__image--bottom-middle .c-img--bg .c-img__full {
  background-position: bottom center;
}
.c-image-text__image--bottom-left .c-img--bg .c-img__full {
  background-position: bottom left;
}
.c-image-text__image--bottom-right .c-img--bg .c-img__full {
  background-position: bottom right;
}

.c-image-text__content {
  color: var(--image-text-fg, #ffffff);
  width: 100%;
  position: relative;
  padding: 13.5rem 10px 7.25rem;
}
@media (min-width: 1024px) {
  .c-image-text__content {
    width: 50%;
    padding: 150px 0 115px;
    margin-top: 5rem;
  }
}
.c-image-text__content:after {
  z-index: -1;
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  left: -50vw;
  top: 0;
  background-color: var(--image-text-bg, #1F73A0);
  width: 200vw;
}
@media (min-width: 1024px) {
  .c-image-text__content:after {
    left: -35%;
  }
}

.c-image-text__headline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -1px;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .c-image-text__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-image-text__headline {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .c-image-text__headline {
    line-height: 1.2;
  }
}

.c-image-text__text {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
}
@media (min-width: 1024px) {
  .c-image-text__text {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-image-text__text {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-image-text__text {
    line-height: 1.273;
  }
}

.c-image-text__spacer {
  width: 0;
}
@media (min-width: 1024px) {
  .c-image-text__spacer {
    width: 8.3333333333%;
  }
}

/* ==========================================================================
   IMAGE
   ========================================================================== */
.c-img {
  position: relative;
}
.c-img::before {
  content: "";
  position: relative;
  display: block;
  padding-bottom: var(--image-aspect--mobile);
}
@media (min-width: 1024px) {
  .c-img::before {
    padding-bottom: var(--image-aspect);
  }
}

.c-img__wrap {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #EDEDED;
}
.c-img--loaded .c-img__wrap {
  background: transparent;
}

.c-img__full,
img.c-img__full,
.c-img__placeholder,
img.c-img__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-img--inline .c-img__full,
.c-img--inline img.c-img__full,
.c-img--inline .c-img__placeholder,
.c-img--inline img.c-img__placeholder {
  object-fit: cover;
  object-position: var(--image-focuspoint);
}
.c-img-- .c-img__full,
.c-img-- img.c-img__full,
.c-img-- .c-img__placeholder,
.c-img-- img.c-img__placeholder {
  height: 100%;
  width: 100%;
}
.c-img--bg .c-img__full,
.c-img--bg img.c-img__full,
.c-img--bg .c-img__placeholder,
.c-img--bg img.c-img__placeholder {
  background: transparent no-repeat var(--image-focuspoint)/cover;
}

.c-img__placeholder {
  transition: opacity 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  filter: blur(8px);
  transform: scale(1.125);
}
.c-img--loaded .c-img__placeholder, [data-loaded=true] + .c-img__placeholder {
  opacity: 0;
  display: none;
}

.c-input {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0.375rem;
  background: rgba(237, 237, 237, 0.5);
}

.c-input__icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  display: inline-flex;
}
.c-input__icon svg {
  width: 1rem;
  height: 1rem;
}

.c-input__control {
  z-index: 3;
  position: relative;
  border-width: 0 !important; /* Firefox */ /* Safari and Chrome */
  appearance: none;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  color: #1F73A0;
  background: transparent;
  border-color: transparent;
  height: 3rem;
  width: auto;
  box-sizing: border-box;
  min-height: 3rem;
  padding: 0.75rem 1rem 0.75rem 1rem;
  border-radius: 0.375rem;
}
@media (min-width: 1024px) {
  .c-input__control {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-input__control {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-input__control {
    line-height: 1.375;
  }
}
.c-input__control .c-input--with-icon {
  padding: 0.75rem 2.25rem 0.75rem 1.25rem;
}
.c-input__control:-ms-input-placeholder {
  color: #FC766D;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
}
.c-input__control::placeholder {
  color: #FC766D;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
}
@media (min-width: 1024px) {
  .c-input__control:-ms-input-placeholder {
    font-weight: 500;
  }
  .c-input__control::placeholder {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-input__control:-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .c-input__control::placeholder {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .c-input__control:-ms-input-placeholder {
    line-height: 1.167;
  }
  .c-input__control::placeholder {
    line-height: 1.167;
  }
}
.c-input__control:focus-visible, .c-input__control:focus, .c-input__control:focus-within, .c-input__control.is-focused {
  outline: none;
  box-shadow: -2px -2px 0 0 hsl(13deg, 74%, 70%), 2px 2px 0 0 hsl(13deg, 74%, 70%), -2px 2px 0 0 hsl(13deg, 74%, 70%), 2px -2px 0 0 hsl(13deg, 74%, 70%), 0 1px 2px 0 hsla(0deg, 0%, 0%, 0.06), 0 1px 3px 0 hsla(0deg, 0%, 0%, 0.1) !important;
}

.c-input__control--error, .c-input__control[aria-invalid=true] {
  border-color: transparent !important;
  box-shadow: -2px -2px 0 0 #FC766D, 2px 2px 0 0 #FC766D, -2px 2px 0 0 #FC766D, 2px -2px 0 0 #FC766D, 0 1px 2px 0 rgba(252, 118, 109, 0.06), 0 1px 3px 0 rgba(252, 118, 109, 0.1);
}

.c-language-switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  margin: auto 0;
  background: #EDEDED;
  border-radius: 1.5rem;
  display: inline-block;
}

.c-language-switch__item {
  position: absolute;
  cursor: pointer;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background-color: #EDEDED;
  transition: 0.4s;
  list-style: none;
  margin: 0;
  border-radius: 1.5rem;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: -0.3px;
}
@media (min-width: 1024px) {
  .c-language-switch__item {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-language-switch__item {
    font-size: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .c-language-switch__item {
    line-height: 1.4;
  }
}
.c-language-switch__item:last-of-type {
  right: 0;
  left: unset;
}

.c-language-switch__link {
  position: absolute;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  bottom: 0;
  background-color: #EDEDED;
  color: #1F73A0;
  transition: 0.4s;
  border-radius: 1.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-language-switch__link span {
  position: relative;
  right: -2px;
}
.c-language-switch__item:last-of-type .c-language-switch__link span {
  position: relative;
  right: 2px;
}

.c-language-switch__link--active {
  bottom: 0;
  background-color: #FC766D;
  color: #ffffff;
  z-index: 1;
}
.c-language-switch__link--active span {
  position: relative;
  right: 0;
}
.c-language-switch__item:last-of-type .c-language-switch__link--active span {
  right: 0;
  left: 0;
}

.gbtn {
  border: none !important;
}

@media (max-width: 1023.98px) {
  .glightbox-team.glightbox-container .ginner-container {
    overflow-y: auto;
  }
}

.glightbox-mobile .glightbox-team.glightbox-container .gslide-description {
  background: #ffffff;
  position: relative;
  max-height: unset;
  flex: auto;
}

@media (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gdesc-inner {
    padding: 3.375rem 2.625rem;
  }
}

@media (min-width: 1024px) {
  .glightbox-team .gslide-description.description-left,
  .glightbox-team .gslide-description.description-right {
    max-width: 55%;
  }
}

@media (min-width: 1024px) {
  .glightbox-team.glightbox-container .gslide-inner-content {
    max-width: 80%;
  }
}
@media (min-width: 1600px) {
  .glightbox-team.glightbox-container .gslide-inner-content {
    max-width: 1200px;
  }
}

.glightbox-clean.glightbox-team .gslide-title {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  color: #1F73A0;
}
@media (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gslide-title {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gslide-title {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gslide-title {
    line-height: 1.273;
  }
}

.glightbox-clean.glightbox-team .gslide-desc,
.glightbox-clean.glightbox-team .gslide-desc * {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.48px;
  color: #1F73A0;
}
@media (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gslide-desc,
  .glightbox-clean.glightbox-team .gslide-desc * {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gslide-desc,
  .glightbox-clean.glightbox-team .gslide-desc * {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .glightbox-clean.glightbox-team .gslide-desc,
  .glightbox-clean.glightbox-team .gslide-desc * {
    line-height: 1.5;
  }
}

/* ==========================================================================
   #MAIN NAV
   ========================================================================== */
.c-main-nav {
  margin: auto 0 auto auto;
  display: none;
}
@media (min-width: 1024px) {
  .c-main-nav {
    display: block;
  }
}

.c-main-nav__list {
  display: flex;
  flex-direction: row;
  margin: auto 0;
}

.c-main-nav__item {
  list-style: none;
  margin: auto 2rem auto 0;
  display: block;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.6px;
}
@media (min-width: 1024px) {
  .c-main-nav__item {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-main-nav__item {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-main-nav__item {
    line-height: 1.25;
  }
}
.c-main-nav__item .c-btn {
  font-size: 0.875rem;
  font-weight: 600;
}

.c-main-nav__link {
  text-decoration: none;
  color: #1F73A0;
  padding-bottom: 3.5rem;
}
.c-main-nav__link:hover, .c-main-nav__link.hover {
  color: #FC766D;
}
.c-main-nav__link.current-menu-item {
  font-weight: 800;
}

.current-menu-item .c-main-nav__link {
  color: #FC766D;
}

.c-main-nav__dropdown {
  background: #1F73A0;
  min-height: 3.75rem;
  width: 60vw;
  display: none;
  flex-direction: row;
  margin: 3.5rem 0 0;
  position: absolute;
  top: 2rem;
}
.c-main-nav__item:hover .c-main-nav__dropdown {
  display: flex;
}
.c-main-nav__dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  overflow-x: hidden;
  background: #1F73A0;
  left: -50vw;
}

.c-main-nav__subitem {
  list-style: none;
  margin: auto 0 auto 2.25rem;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.45px;
}
@media (min-width: 1024px) {
  .c-main-nav__subitem {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-main-nav__subitem {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .c-main-nav__subitem {
    line-height: 1.214;
  }
}
.c-main-nav__subitem:first-of-type {
  margin: auto 0;
}

.c-main-nav__sublink {
  background: #1F73A0;
  color: #ffffff;
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.c-main-nav__sublink:hover {
  color: #FC766D;
}

.current-menu-item .c-main-nav__sublink {
  border-bottom-color: #1F73A0;
}

/* ==========================================================================
   #MAIN NAV
   ========================================================================== */
.c-mobile-nav {
  position: fixed;
  width: 100%;
  height: calc(100vh - var(--page-header-height));
  top: var(--page-header-height);
  z-index: 97;
  left: 0;
  background-color: #1F73A0;
  padding: 5rem 1.25rem 0;
  flex-direction: column;
  transform: translatex(-120vw);
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
.c-mobile-nav .c-language-switch {
  display: flex;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .c-mobile-nav .c-language-switch {
    display: none;
  }
}

.c-mobile-nav.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .c-mobile-nav.open {
    display: none;
  }
}

/* nav-burger-icon */
.c-mobile-nav__icon {
  width: 20px;
  height: 6px;
  margin: auto 10px auto auto;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
@media (min-width: 1024px) {
  .c-mobile-nav__icon {
    display: none;
  }
}

.c-mobile-nav__icon span {
  background-color: #1F73A0;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 1.4px;
  transition-duration: all 300ms ease-in-out;
}

.c-mobile-nav__icon span:nth-child(1) {
  top: 0;
  left: 0px;
}

.c-mobile-nav__icon span:nth-child(2) {
  bottom: 0;
  left: 0px;
}

.c-mobile-nav__icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 2.4px;
}

.c-mobile-nav__icon.open span:nth-child(2) {
  transform: rotate(-45deg);
  bottom: 2.4px;
}

/* nav content */
.c-mobile-nav__list {
  margin: 0;
}

.c-mobile-nav__item {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.6px;
  border-bottom: 1px solid #ffffff;
  padding: 1.25rem 0.5rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .c-mobile-nav__item {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-mobile-nav__item {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-mobile-nav__item {
    line-height: 1.25;
  }
}
.c-mobile-nav__item:nth-last-of-type(2) {
  border: none;
}
.c-mobile-nav__item:last-of-type {
  background-color: #FC766D;
  border: none;
  width: 100vw;
  margin-left: -1.25rem;
  padding-right: 1.75rem;
}

.c-mobile-nav__row {
  display: flex;
  flex-direction: row;
}

.c-mobile-nav__link {
  color: #ffffff;
}
.c-mobile-nav__link.c-btn {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.6px;
}
@media (min-width: 1024px) {
  .c-mobile-nav__link.c-btn {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-mobile-nav__link.c-btn {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-mobile-nav__link.c-btn {
    line-height: 1.25;
  }
}
.c-mobile-nav__link.c-btn--primary {
  border: none;
  border-radius: unset;
  padding: 0 1.25rem !important;
}
.c-mobile-nav__link.c-btn--primary:hover {
  color: #ffffff !important;
}

.c-mobile-nav__button {
  margin-left: auto;
  position: relative;
}
.c-mobile-nav__button svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center;
  height: 1.75rem;
  width: 1.75rem;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
.c-mobile-nav__button.open svg {
  transform: rotate(180deg) translateY(50%);
}

.c-mobile-nav__dropdown {
  margin: 0.625rem 0 0;
  width: 100%;
  display: none;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
.c-mobile-nav__dropdown.open {
  display: block;
}

.c-mobile-nav__subitem {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.45px;
  margin: 0.625rem 0 0;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
@media (min-width: 1024px) {
  .c-mobile-nav__subitem {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-mobile-nav__subitem {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .c-mobile-nav__subitem {
    line-height: 1.214;
  }
}

.c-mobile-nav__sublink {
  color: #ffffff;
}

.c-mobile-nav__divider {
  border-bottom: 1px solid #ffffff;
  width: 100%;
  margin-top: auto;
}

.c-mobile-nav__socials {
  display: flex;
  flex-direction: row;
  color: #ffffff;
  padding: 1.125rem 0;
}

.c-mobile-nav__socials__link {
  color: #ffffff;
  margin-right: 0.625rem;
}
.c-mobile-nav__socials__link:hover {
  color: #FC766D;
}

/* ==========================================================================
   #POST
   Includes styles for default WP images classes
   ========================================================================== */
.c-post {
  margin-bottom: 2em;
}
.c-post::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.alignnone {
  margin: 1em 1em 1em 0;
}

.aligncenter {
  margin: 1em auto;
}

.alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

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

.wp-caption-text {
  font-style: italic;
  margin-top: 0.5em;
}

.c-process-card {
  background-color: #ffffff;
  width: 100%;
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--process-card-color, #1F73A0);
  border-radius: 6px;
  color: var(--process-card-font-color, #1F73A0);
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .c-process-card {
    flex-direction: row;
  }
}

.c-process-card__image {
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}
.c-process-card__image .c-img__wrap {
  border-top-right-radius: 0.375rem;
  border-top-left-radius: 0.375rem;
}
@media (min-width: 1024px) {
  .c-process-card__image {
    width: 50%;
    height: 100%;
  }
  .c-process-card__image .c-img__wrap {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
  }
}
@media (min-width: 1024px) {
  .c-process-card--small .c-process-card__image {
    width: 40%;
  }
}

.c-process-card__content {
  display: flex;
  flex-direction: column;
  margin: 1.5rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .c-process-card__content {
    width: 50%;
    margin: 2.375rem;
  }
}
@media (min-width: 1024px) {
  .c-process-card--small .c-process-card__content {
    width: 60%;
  }
}

.c-process-card__flagline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  color: #FC766D;
  margin: auto 0 auto 0.5rem;
}
@media (min-width: 1024px) {
  .c-process-card__flagline {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-process-card__flagline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-process-card__flagline {
    line-height: 1.375;
  }
}

.c-process-card__button {
  color: #FC766D;
  display: flex;
  flex-direction: row;
  height: 1.5rem;
  margin: 0 0 1.375rem;
}
.c-process-card__button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.c-process-card__headline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .c-process-card__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-process-card__headline {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-process-card__headline {
    line-height: 1.273;
  }
}

.c-process-card__text {
  margin-bottom: 0.75rem;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.48px;
}
@media (min-width: 1024px) {
  .c-process-card__text {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-process-card__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-process-card__text {
    line-height: 1.5;
  }
}

.elementor-widget-swe_process_card {
  padding: 10px;
}

.c-publication-card {
  background-color: #1F73A0;
  width: 100%;
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
}

.c-publication-card__image {
  width: 40%;
  flex-shrink: 0;
  margin: 0 0 auto;
}

.c-publication-card__content {
  display: flex;
  flex-direction: column;
  margin-left: 5%;
  width: 55%;
  text-align: left;
}

.c-publication-card__headline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .c-publication-card__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-publication-card__headline {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-publication-card__headline {
    line-height: 1.273;
  }
}

.c-publication-card__subheadline {
  margin-bottom: 0.75rem;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
}
@media (min-width: 1024px) {
  .c-publication-card__subheadline {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-publication-card__subheadline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-publication-card__subheadline {
    line-height: 1.25;
  }
}

.c-publication-card__button {
  height: 2.25rem;
  margin-top: auto;
}
.c-publication-card__button svg {
  width: 2.25rem;
  height: 2.25rem;
}

.elementor-widget-swe_publication_card {
  overflow-x: hidden;
  padding: 10px;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */
/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.c-slider__headline {
  color: var(--slider-headline-color, #1F73A0);
  width: 100%;
  margin-bottom: 1.25rem;
}
.c-slider__headline.c-slider__headline--has-desc {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .c-slider__headline {
    margin-bottom: 2.5rem;
  }
  .c-slider__headline.c-slider__headline--has-desc {
    margin-bottom: 1.25rem;
  }
}
.c-slider--trial .c-slider__headline, .c-slider--publication .c-slider__headline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -1px;
  color: var(--slider-headline-color, #ffffff);
}
@media (min-width: 1024px) {
  .c-slider--trial .c-slider__headline, .c-slider--publication .c-slider__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-slider--trial .c-slider__headline, .c-slider--publication .c-slider__headline {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .c-slider--trial .c-slider__headline, .c-slider--publication .c-slider__headline {
    line-height: 1.2;
  }
}
.c-slider--trial .c-slider__headline.c-slider__headline--has-desc, .c-slider--publication .c-slider__headline.c-slider__headline--has-desc {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .c-slider--trial .c-slider__headline, .c-slider--publication .c-slider__headline {
    margin-bottom: 2.25rem;
  }
  .c-slider--trial .c-slider__headline.c-slider__headline--has-desc, .c-slider--publication .c-slider__headline.c-slider__headline--has-desc {
    margin-bottom: 1.25rem;
  }
}

.c-slider__description {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.54px;
  color: var(--slider-headline-color, #1F73A0);
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .c-slider__description {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-slider__description {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .c-slider__description {
    line-height: 1.3;
  }
}
@media (min-width: 1024px) {
  .c-slider__description {
    margin-bottom: 2.5rem;
  }
}
.c-slider--trial .c-slider__description, .c-slider--publication .c-slider__description {
  color: var(--slider-headline-color, #ffffff);
}
@media (min-width: 1024px) {
  .c-slider--trial .c-slider__description, .c-slider--publication .c-slider__description {
    margin-bottom: 3.75rem;
  }
}

.elementor-widget.elementor-widget-swe_slider {
  overflow: hidden;
}

.c-slider--offgrid {
  position: relative;
}
.c-slider--offgrid .c-slider__container {
  overflow: initial;
}

.c-slider {
  display: flex;
  flex-wrap: wrap;
}

.c-slider--has-bg {
  padding: 2rem 0;
}
.c-slider--has-bg::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #FC766D;
}
@media (min-width: 1024px) {
  .c-slider--has-bg.c-slider--anonymous {
    padding: 0;
  }
  .c-slider--has-bg.c-slider--anonymous:before {
    display: none;
  }
}

.c-slider__wrapper {
  box-sizing: inherit;
}

.c-slider__item {
  /*height: 400px !important;
  width: auto !important;*/
  margin-right: 1rem;
}

.c-slider__container {
  width: 100%;
  padding-right: 0.1rem;
}

.swiper-slide {
  text-align: center;
  height: inherit !important;
}

.swiper-wrapper {
  width: 50%;
}

.swiper-autoheight .swiper-wrapper {
  height: 100% !important;
}

.c-slider__item--offgrid {
  transition: opacity 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  width: 100%;
  height: initial;
}
@media (min-width: 1024px) {
  .c-slider__item--offgrid {
    width: 100%;
    /*&:last-of-type {
      margin-right: calc(2 / 12 * 100%);
    }*/
  }
}
.c-slider__item--offgrid.c-slider__item--current, .c-slider__item--offgrid.swiper-slide-active {
  opacity: 1;
}

@media (min-width: 1024px) {
  .c-slider--offgrid-nextonly .c-slider__item--viewed {
    opacity: 0;
    z-index: -2;
    transition-duration: 0.2s;
  }
}

.c-slider__button {
  display: none;
}

.c-slider__controls {
  display: flex;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-slider--mobile .c-slider__controls {
    display: none;
  }
}
.c-slider__controls .c-slider__button {
  position: absolute;
  left: 0;
  display: none;
  width: 2.25rem;
  padding: 0;
  height: 2.25rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .c-slider__controls .c-slider__button {
    display: block;
    bottom: 0;
    transform: translateY(calc(50% - 8px));
  }
}
.c-slider__controls .c-slider__button, .c-slider__controls .c-slider__button:hover, .c-slider__controls .c-slider__button:focus {
  border: none;
}
.c-slider__controls .c-slider__button:hover {
  opacity: 0.75;
}
.c-slider__controls .c-slider__button.c-slider__button--next {
  left: auto;
  right: 0;
}
.c-slider__controls .c-slider__button.swiper-button-disabled {
  display: none;
}
.c-slider__controls .c-slider__button svg {
  display: block;
  width: 100%;
  color: var(--slider-button-color, #1F73A0);
  height: 100%;
}

.c-slider__pagination {
  position: relative;
  display: flex;
  margin-top: 1.125rem;
}
@media (min-width: 1024px) {
  .c-slider__pagination {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-slider__pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--slider-bullet-color, #FC766D);
  z-index: 6;
  opacity: 1;
  min-width: 8px;
  min-height: 8px;
  margin-right: 0.625rem;
}
.c-slider__pagination .swiper-pagination-bullet-active {
  background: var(--slider-bullet-color, #FC766D);
}
.c-slider--offgrid-nextonly .c-slider__pagination {
  width: 100% !important;
  left: 0 !important;
  transform: none !important;
}

.swiper-pagination-lock {
  display: none;
}

/*
 * Elementor overwrite widget padding
 */
.elementor-column-gap-default .elementor-element-populated .c-slider--trial,
.elementor-column-gap-default .elementor-element-populated .c-slider--publication,
.elementor-column-gap-default .elementor-element-populated .c-slider--team {
  padding: 0 calc(1.25rem - 10px);
  width: calc(100% + 20px);
}
@media (min-width: 1024px) {
  .elementor-column-gap-default .elementor-element-populated .c-slider--trial,
  .elementor-column-gap-default .elementor-element-populated .c-slider--publication,
  .elementor-column-gap-default .elementor-element-populated .c-slider--team {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}

[data-widget_type="swe_process_card.default"] .c-slider--offgrid:before,
[data-widget_type="swe_process_card.default"] .c-slider--offgrid:after {
  content: "";
  display: block;
  height: 100%;
  width: 40px;
  position: absolute;
  top: -10px;
  z-index: 10;
  background: linear-gradient(270deg, var(--slider-overlay-color-trans, rgba(255, 255, 255, 0)) 0%, var(--slider-overlay-color-fill, rgb(255, 255, 255)) 50%, var(--slider-overlay-color-fill, rgb(255, 255, 255)) 100%);
  left: -30px;
}
@media (min-width: 1280px) {
  [data-widget_type="swe_process_card.default"] .c-slider--offgrid:before,
  [data-widget_type="swe_process_card.default"] .c-slider--offgrid:after {
    width: 100px;
    top: -30px;
    left: calc(-50vw + 495px);
  }
}
[data-widget_type="swe_process_card.default"] .c-slider--offgrid:before {
  display: none;
}
[data-widget_type="swe_process_card.default"] .c-slider--offgrid:after {
  background: linear-gradient(90deg, var(--slider-overlay-color-trans, rgba(255, 255, 255, 0)) 0%, var(--slider-overlay-color-fill, rgb(255, 255, 255)) 50%, var(--slider-overlay-color-fill, rgb(255, 255, 255)) 100%);
  left: auto;
  right: -30px;
}
@media (min-width: 1280px) {
  [data-widget_type="swe_process_card.default"] .c-slider--offgrid:after {
    left: calc(50vw + 495px);
  }
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.elementor-section.c-sticky-section {
  background-color: #ffffff;
  transform: translate(0);
  width: 100%;
}
.elementor-section.c-sticky-section.is-sticky, .elementor-section.c-sticky-section.was-sticky {
  background: transparent;
}
@media (min-width: 1024px) {
  .elementor-section.c-sticky-section {
    z-index: 99;
  }
}

.elementor-column > .elementor-widget-wrap > span:has(.c-sticky-section) {
  width: 100%;
}

/*.c-header {
  width: 100%;
  min-height: 4.5rem;
  justify-content: center;
  position: sticky;
  top: 0;
  display: flex;
  z-index: 99;
  background-color: map-get($brand-colors, 'functional','100');
  transform: translate(0);

  @include bp($large-bp) {
    min-height: 5.5rem;
  }
}

.c-header__menu {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  margin: auto 0;

  & .c-language-switch {
    display: none;

    @include bp($large-bp) {
      display: flex;
    }
  }
}

.c-header__logo {
  margin: auto 0;
  color: map-get($brand-colors, 'blue','500');

  svg {
    width: 8.125rem;
    height: 1.125rem;
    color: map-get($brand-colors, 'blue','500');
    @include anim();

    @include bp($large-bp) {
      width: 11.25rem;
      height: 1.5rem;
    }

    & .icon-logo__drop {
      color: map-get($brand-colors, 'orange','500');
      @include anim();
    }
  }

  &--sticky {
    margin-left: 2.5px;

    & .icon-logo__drop {
      opacity: 0;
    }

    svg {
      transform: scale(0.9);
      transform-origin: left center;

      @include bp($large-bp) {
        transform: scale(0.7);
      }
    }
  }
*/
.c-team-card {
  background-color: #ffffff;
  width: 100%;
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #1F73A0;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .c-team-card {
    flex-direction: row;
  }
}

.c-team-card__image {
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  /*.c-img__wrap {
    border-top-right-radius: 0.375rem;
    border-top-left-radius: 0.375rem;
  }*/
}

.c-team-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(31, 115, 160, 0.6);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-align: left;
  /*@include bp($large-bp) {
    width: 55%;
  }*/
}

.c-team-card__name {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .c-team-card__name {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-team-card__name {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-team-card__name {
    line-height: 1.273;
  }
}

.c-team-card__position {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .c-team-card__position {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-team-card__position {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-team-card__position {
    line-height: 1.375;
  }
}

.c-team-card__button {
  height: 2.25rem;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  width: auto;
  justify-content: flex-start;
}
.c-team-card__button svg {
  width: 2.25rem;
  margin-right: 0.75rem;
  height: 2.25rem;
}
.c-team-card__button:hover {
  opacity: 0.7;
}

/*
.c-team-card__button {
  color: map-get($brand-colors, 'functional', '100');
  display: flex;
  flex-direction: row;
  height: 2.25rem;
  margin: 0;

  svg {
    width: 2.25rem;
    height: 2.25rem;
  }
}
*/
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated, .c-timeline__desc, .c-timeline__drop, .c-timeline__item:after {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite, .animate__infinite.c-timeline__desc, .animate__infinite.c-timeline__drop, .animate__infinite.c-timeline__item:after {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1, .animate__repeat-1.c-timeline__desc, .animate__repeat-1.c-timeline__drop, .animate__repeat-1.c-timeline__item:after {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2, .animate__repeat-2.c-timeline__desc, .animate__repeat-2.c-timeline__drop, .animate__repeat-2.c-timeline__item:after {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3, .animate__repeat-3.c-timeline__desc, .animate__repeat-3.c-timeline__drop, .animate__repeat-3.c-timeline__item:after {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s, .animate__delay-1s.c-timeline__desc, .animate__delay-1s.c-timeline__drop, .animate__delay-1s.c-timeline__item:after {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s, .animate__delay-2s.c-timeline__desc, .animate__delay-2s.c-timeline__drop, .animate__delay-2s.c-timeline__item:after {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s, .animate__delay-3s.c-timeline__desc, .animate__delay-3s.c-timeline__drop, .animate__delay-3s.c-timeline__item:after {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s, .animate__delay-4s.c-timeline__desc, .animate__delay-4s.c-timeline__drop, .animate__delay-4s.c-timeline__item:after {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s, .animate__delay-5s.c-timeline__desc, .animate__delay-5s.c-timeline__drop, .animate__delay-5s.c-timeline__item:after {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster, .animate__faster.c-timeline__desc, .animate__faster.c-timeline__drop, .animate__faster.c-timeline__item:after {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast, .animate__fast.c-timeline__desc, .animate__fast.c-timeline__drop, .animate__fast.c-timeline__item:after {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow, .animate__slow.c-timeline__desc, .animate__slow.c-timeline__drop, .animate__slow.c-timeline__item:after {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower, .animate__slower.c-timeline__desc, .animate__slower.c-timeline__drop, .animate__slower.c-timeline__item:after {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated, .c-timeline__desc, .c-timeline__drop, .c-timeline__item:after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out], [class*=Out].c-timeline__desc, [class*=Out].c-timeline__drop, [class*=Out].c-timeline__item:after {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp, .c-timeline--animate .c-timeline__desc, .c-timeline--animate .c-timeline__drop {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip, .animate__flip.c-timeline__desc, .animate__flip.c-timeline__drop, .animate__flip.c-timeline__item:after {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}

/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}

/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

.c-timeline__item {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  margin-bottom: 2.75rem;
}
@media (min-width: 1024px) {
  .c-timeline__item {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .c-timeline__item:nth-of-type(odd) {
    margin-left: auto;
  }
}
.c-timeline__item:nth-of-type(odd) .c-timeline__drop svg,
.c-timeline__item:nth-of-type(odd) .c-timeline__desc {
  color: #FC766D;
}
@media (min-width: 1024px) {
  .c-timeline__item:nth-of-type(odd) .c-timeline__drop {
    left: -2px;
  }
}
@media (min-width: 1024px) {
  .c-timeline__item:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-right: auto;
  }
}
.c-timeline__item:nth-of-type(even) .c-timeline__drop svg,
.c-timeline__item:nth-of-type(even) .c-timeline__desc {
  color: #1F73A0;
}
@media (min-width: 1024px) {
  .c-timeline__item:nth-of-type(even) .c-timeline__drop svg {
    transform: scaleX(-1);
  }
}
@media (min-width: 1024px) {
  .c-timeline__item:nth-of-type(even) .c-timeline__drop {
    right: -2px;
  }
}
.c-timeline--animate .c-timeline__item:after {
  transform: scaleY(1);
}
.c-timeline__item:after {
  content: "";
  width: 4px;
  height: calc(100% - 60px);
  position: absolute;
  bottom: -30px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7' viewBox='0 0 7 7'%3E%3Ccircle id='Ellipse_21' data-name='Ellipse 21' cx='3.5' cy='3.5' r='3.5' fill='%23fc766d'/%3E%3C/svg%3E%0A");
  background-position: right;
  background-size: 4px 10px;
  background-repeat: repeat-y;
  background-repeat: space;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  transition-duration: 0.5s;
  transform: scaleY(0);
  transform-origin: top center;
  transition-timing-function: ease;
}
@media (min-width: 1024px) {
  .c-timeline__item:after {
    height: calc(100% - 120px);
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .c-timeline__item:nth-of-type(even):after {
    right: 0;
    left: auto;
  }
}
.c-timeline__item:last-of-type:after {
  display: none;
}

.c-timeline__drop {
  height: 105px;
  width: 93px;
  position: relative;
}
.c-timeline__drop svg {
  height: 105px;
  width: 93px;
}
@media (min-width: 1024px) {
  .c-timeline__drop {
    height: 150px;
    width: 130px;
  }
  .c-timeline__drop svg {
    height: 150px;
    width: 130px;
  }
}

.c-timeline__year {
  position: absolute;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.6px;
  top: 45%;
  left: 50%;
  text-align: center;
  transform: translate(-50%);
  color: #fff;
}
@media (min-width: 1024px) {
  .c-timeline__year {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-timeline__year {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-timeline__year {
    line-height: 1.273;
  }
}
.c-timeline__item:last-of-type .c-timeline__year {
  top: 32%;
}

.c-timeline__desc {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  margin: auto 0 auto 1rem;
}
@media (min-width: 1024px) {
  .c-timeline__desc {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-timeline__desc {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-timeline__desc {
    line-height: 1.375;
  }
}
@media (min-width: 1024px) {
  .c-timeline__desc {
    margin: auto 0 auto 2.25rem;
  }
  .c-timeline__item:nth-of-type(even) .c-timeline__desc {
    margin: auto 2.25rem auto 0;
  }
}

.animate__fadeInUp, .c-timeline--animate .c-timeline__drop, .c-timeline--animate .c-timeline__desc {
  animation-duration: 3s;
}

.c-timeline__item:nth-child(1n) .c-timeline__drop {
  animation-delay: 0.5s;
}

.c-timeline__item:nth-child(1n) .c-timeline__desc {
  animation-delay: 0.5s;
}

.c-timeline__item:nth-child(1n):after {
  transition-delay: 2.6s;
}

.c-timeline__item:nth-child(2n) .c-timeline__drop {
  animation-delay: 1s;
}

.c-timeline__item:nth-child(2n) .c-timeline__desc {
  animation-delay: 1s;
}

.c-timeline__item:nth-child(2n):after {
  transition-delay: 3.1s;
}

.c-timeline__item:nth-child(3n) .c-timeline__drop {
  animation-delay: 1.5s;
}

.c-timeline__item:nth-child(3n) .c-timeline__desc {
  animation-delay: 1.5s;
}

.c-timeline__item:nth-child(3n):after {
  transition-delay: 3.6s;
}

.c-timeline__item:nth-child(4n) .c-timeline__drop {
  animation-delay: 2s;
}

.c-timeline__item:nth-child(4n) .c-timeline__desc {
  animation-delay: 2s;
}

.c-timeline__item:nth-child(4n):after {
  transition-delay: 4.1s;
}

.c-timeline__item:nth-child(5n) .c-timeline__drop {
  animation-delay: 2.5s;
}

.c-timeline__item:nth-child(5n) .c-timeline__desc {
  animation-delay: 2.5s;
}

.c-timeline__item:nth-child(5n):after {
  transition-delay: 4.6s;
}

.c-timeline__item:nth-child(6n) .c-timeline__drop {
  animation-delay: 3s;
}

.c-timeline__item:nth-child(6n) .c-timeline__desc {
  animation-delay: 3s;
}

.c-timeline__item:nth-child(6n):after {
  transition-delay: 5.1s;
}

.c-timeline__item:nth-child(7n) .c-timeline__drop {
  animation-delay: 3.5s;
}

.c-timeline__item:nth-child(7n) .c-timeline__desc {
  animation-delay: 3.5s;
}

.c-timeline__item:nth-child(7n):after {
  transition-delay: 5.6s;
}

.c-timeline__item:nth-child(8n) .c-timeline__drop {
  animation-delay: 4s;
}

.c-timeline__item:nth-child(8n) .c-timeline__desc {
  animation-delay: 4s;
}

.c-timeline__item:nth-child(8n):after {
  transition-delay: 6.1s;
}

.c-timeline__item:nth-child(9n) .c-timeline__drop {
  animation-delay: 4.5s;
}

.c-timeline__item:nth-child(9n) .c-timeline__desc {
  animation-delay: 4.5s;
}

.c-timeline__item:nth-child(9n):after {
  transition-delay: 6.6s;
}

.c-timeline__item:nth-child(10n) .c-timeline__drop {
  animation-delay: 5s;
}

.c-timeline__item:nth-child(10n) .c-timeline__desc {
  animation-delay: 5s;
}

.c-timeline__item:nth-child(10n):after {
  transition-delay: 7.1s;
}

.c-timeline__item:nth-child(11n) .c-timeline__drop {
  animation-delay: 5.5s;
}

.c-timeline__item:nth-child(11n) .c-timeline__desc {
  animation-delay: 5.5s;
}

.c-timeline__item:nth-child(11n):after {
  transition-delay: 7.6s;
}

.c-timeline__item:nth-child(12n) .c-timeline__drop {
  animation-delay: 6s;
}

.c-timeline__item:nth-child(12n) .c-timeline__desc {
  animation-delay: 6s;
}

.c-timeline__item:nth-child(12n):after {
  transition-delay: 8.1s;
}

.c-timeline__item:nth-child(13n) .c-timeline__drop {
  animation-delay: 6.5s;
}

.c-timeline__item:nth-child(13n) .c-timeline__desc {
  animation-delay: 6.5s;
}

.c-timeline__item:nth-child(13n):after {
  transition-delay: 8.6s;
}

.c-timeline__item:nth-child(14n) .c-timeline__drop {
  animation-delay: 7s;
}

.c-timeline__item:nth-child(14n) .c-timeline__desc {
  animation-delay: 7s;
}

.c-timeline__item:nth-child(14n):after {
  transition-delay: 9.1s;
}

.c-timeline__item:nth-child(15n) .c-timeline__drop {
  animation-delay: 7.5s;
}

.c-timeline__item:nth-child(15n) .c-timeline__desc {
  animation-delay: 7.5s;
}

.c-timeline__item:nth-child(15n):after {
  transition-delay: 9.6s;
}

.c-timeline__item:nth-child(16n) .c-timeline__drop {
  animation-delay: 8s;
}

.c-timeline__item:nth-child(16n) .c-timeline__desc {
  animation-delay: 8s;
}

.c-timeline__item:nth-child(16n):after {
  transition-delay: 10.1s;
}

.c-timeline__item:nth-child(17n) .c-timeline__drop {
  animation-delay: 8.5s;
}

.c-timeline__item:nth-child(17n) .c-timeline__desc {
  animation-delay: 8.5s;
}

.c-timeline__item:nth-child(17n):after {
  transition-delay: 10.6s;
}

.c-timeline__item:nth-child(18n) .c-timeline__drop {
  animation-delay: 9s;
}

.c-timeline__item:nth-child(18n) .c-timeline__desc {
  animation-delay: 9s;
}

.c-timeline__item:nth-child(18n):after {
  transition-delay: 11.1s;
}

.c-timeline__item:nth-child(19n) .c-timeline__drop {
  animation-delay: 9.5s;
}

.c-timeline__item:nth-child(19n) .c-timeline__desc {
  animation-delay: 9.5s;
}

.c-timeline__item:nth-child(19n):after {
  transition-delay: 11.6s;
}

.c-timeline__item:nth-child(20n) .c-timeline__drop {
  animation-delay: 10s;
}

.c-timeline__item:nth-child(20n) .c-timeline__desc {
  animation-delay: 10s;
}

.c-timeline__item:nth-child(20n):after {
  transition-delay: 12.1s;
}

.c-timeline__item:nth-child(21n) .c-timeline__drop {
  animation-delay: 10.5s;
}

.c-timeline__item:nth-child(21n) .c-timeline__desc {
  animation-delay: 10.5s;
}

.c-timeline__item:nth-child(21n):after {
  transition-delay: 12.6s;
}

.c-timeline__item:nth-child(22n) .c-timeline__drop {
  animation-delay: 11s;
}

.c-timeline__item:nth-child(22n) .c-timeline__desc {
  animation-delay: 11s;
}

.c-timeline__item:nth-child(22n):after {
  transition-delay: 13.1s;
}

.c-timeline__item:nth-child(23n) .c-timeline__drop {
  animation-delay: 11.5s;
}

.c-timeline__item:nth-child(23n) .c-timeline__desc {
  animation-delay: 11.5s;
}

.c-timeline__item:nth-child(23n):after {
  transition-delay: 13.6s;
}

.c-timeline__item:nth-child(24n) .c-timeline__drop {
  animation-delay: 12s;
}

.c-timeline__item:nth-child(24n) .c-timeline__desc {
  animation-delay: 12s;
}

.c-timeline__item:nth-child(24n):after {
  transition-delay: 14.1s;
}

.c-timeline__item:nth-child(25n) .c-timeline__drop {
  animation-delay: 12.5s;
}

.c-timeline__item:nth-child(25n) .c-timeline__desc {
  animation-delay: 12.5s;
}

.c-timeline__item:nth-child(25n):after {
  transition-delay: 14.6s;
}

.c-timeline__item:nth-child(26n) .c-timeline__drop {
  animation-delay: 13s;
}

.c-timeline__item:nth-child(26n) .c-timeline__desc {
  animation-delay: 13s;
}

.c-timeline__item:nth-child(26n):after {
  transition-delay: 15.1s;
}

.c-timeline__item:nth-child(27n) .c-timeline__drop {
  animation-delay: 13.5s;
}

.c-timeline__item:nth-child(27n) .c-timeline__desc {
  animation-delay: 13.5s;
}

.c-timeline__item:nth-child(27n):after {
  transition-delay: 15.6s;
}

.c-timeline__item:nth-child(28n) .c-timeline__drop {
  animation-delay: 14s;
}

.c-timeline__item:nth-child(28n) .c-timeline__desc {
  animation-delay: 14s;
}

.c-timeline__item:nth-child(28n):after {
  transition-delay: 16.1s;
}

.c-timeline__item:nth-child(29n) .c-timeline__drop {
  animation-delay: 14.5s;
}

.c-timeline__item:nth-child(29n) .c-timeline__desc {
  animation-delay: 14.5s;
}

.c-timeline__item:nth-child(29n):after {
  transition-delay: 16.6s;
}

.c-timeline__item:nth-child(30n) .c-timeline__drop {
  animation-delay: 15s;
}

.c-timeline__item:nth-child(30n) .c-timeline__desc {
  animation-delay: 15s;
}

.c-timeline__item:nth-child(30n):after {
  transition-delay: 17.1s;
}

.c-trial-card {
  background-color: #ffffff;
  width: 100%;
  min-height: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  border-radius: 6px;
  color: #1F73A0;
  flex-shrink: 0;
}

.c-trial-card__image {
  width: 40%;
  flex-shrink: 0;
  margin: 0 0 auto;
}
.c-trial-card__image .c-img__wrap {
  border-bottom-left-radius: 0.375rem;
  border-top-left-radius: 0.375rem;
}

.c-trial-card__content {
  display: flex;
  flex-direction: column;
  margin: 1rem;
  width: 55%;
  text-align: left;
}

.c-trial-card__headline {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .c-trial-card__headline {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .c-trial-card__headline {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .c-trial-card__headline {
    line-height: 1.273;
  }
}

.c-trial-card__subheadline {
  margin-bottom: 0.75rem;
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
}
@media (min-width: 1024px) {
  .c-trial-card__subheadline {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-trial-card__subheadline {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-trial-card__subheadline {
    line-height: 1.25;
  }
}

.c-trial-card__button {
  height: 2.25rem;
  margin-top: auto;
}
.c-trial-card__button svg {
  width: 2.25rem;
  height: 2.25rem;
}

html {
  --plyr-color-main: #000000;
  --plyr-badge-background: #000000;
  --plyr-video-control-background-hover: #ffffff;
  --plyr-video-control-color-hover: #000000;
}

.c-video:hover .plyr__controls {
  visibility: visible;
}

.c-video--with-consent {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 0;
}
.c-video--with-consent.has-started {
  background-color: transparent;
}
.c-video--with-consent.has-started::before {
  display: none;
}

.c-video__thumbnail {
  width: 100%;
  height: 100%;
}
.has-started .c-video__thumbnail {
  display: none;
}

.c-video__consent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.has-started .c-video__consent {
  display: none;
}

.c-video__consent-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  padding: 0 !important;
  cursor: pointer;
  background-color: #ffffff !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-video__consent-trigger:hover {
  background-color: #FC766D !important;
}
.c-video__consent-trigger:hover svg {
  color: #ffffff !important;
}
.c-video__consent-trigger svg {
  width: 40%;
  height: 40%;
  color: #FC766D;
}
.c-video--with-consent .c-video__consent-trigger svg {
  position: relative;
  left: 2px;
}
.c-video__consent-trigger svg:hover {
  color: #ffffff !important;
}

.c-video__text {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  color: #FC766D;
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .c-video__text {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .c-video__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-video__text {
    line-height: 1.375;
  }
}
.c-video__text svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #FC766D;
  margin-right: 0.5rem;
}

.plyr__controls__item {
  font-family: "Inter Regular", sans-serif;
}
.plyr__controls__item.plyr__control, .plyr__controls__item .plyr__control {
  background: #ffffff;
  padding: 0.35rem;
  border-color: #ffffff;
}
.plyr__controls__item.plyr__control svg, .plyr__controls__item .plyr__control svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: #FC766D;
}
.plyr__controls__item.plyr__control:hover, .plyr__controls__item .plyr__control:hover {
  background: #FC766D;
  border-color: #FC766D;
}
.plyr__controls__item.plyr__control:hover svg, .plyr__controls__item .plyr__control:hover svg {
  stroke: #ffffff;
}

.plyr__control.plyr__control--overlaid {
  background: #ffffff;
  border-color: #ffffff;
  padding: 1rem;
  border-radius: 50%;
}
.plyr__control.plyr__control--overlaid svg {
  fill: none;
  stroke: #FC766D;
}
.plyr__control.plyr__control--overlaid:hover {
  background: #FC766D;
  border-color: #FC766D;
}
.plyr__control.plyr__control--overlaid:hover svg {
  stroke: #ffffff;
}

.plyr__controls__item.plyr__volume input,
.plyr__controls__item .plyr__progress input {
  color: #FC766D;
}

/* ==========================================================================
   #ALIGN
   ========================================================================== */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clear {
  clear: both;
}

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

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

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

/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
.u-clearfix::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.u-colors__blue,
.u-colors__blue a {
  color: #1F73A0;
}

.u-colors__blue a:hover {
  color: #FC766D;
}

.u-colors__white,
.u-colors__white a {
  color: #ffffff;
}

.u-colors__white a:hover {
  color: #FC766D;
}

.u-colors__orange,
.u-colors__orange a {
  color: #FC766D;
}

.u-colors__orange a:hover {
  color: #1F73A0;
}

.u-fonts__headline-56-36 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -1.68px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-56-36 {
    font-weight: 400;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-56-36 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-56-36 {
    line-height: 1;
  }
}

.u-fonts__headline-40-36 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -1.2px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-40-36 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-40-36 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-40-36 {
    line-height: 1.2;
  }
}

.u-fonts__headline-40-26 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -1px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-40-26 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-40-26 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-40-26 {
    line-height: 1.2;
  }
}

.u-fonts__headline-36-26 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.9px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-36-26 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-36-26 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-36-26 {
    line-height: 1.33;
  }
}

.u-fonts__headline-30-30 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.067;
  letter-spacing: -0.9px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-30-30 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-30-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-30-30 {
    line-height: 1.267;
  }
}

.u-fonts__headline-30-20 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.8px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-30-20 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-30-20 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-30-20 {
    line-height: 1.267;
  }
}

.u-fonts__headline-22-20-bd {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-22-20-bd {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-22-20-bd {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-22-20-bd {
    line-height: 1.273;
  }
}

.u-fonts__headline-22-20-sb {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__headline-22-20-sb {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__headline-22-20-sb {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__headline-22-20-sb {
    line-height: 1.273;
  }
}

.u-fonts__caption-20-20 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.6px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__caption-20-20 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__caption-20-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__caption-20-20 {
    line-height: 1.3;
  }
}

.u-fonts__caption-18-18 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.54px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__caption-18-18 {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__caption-18-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__caption-18-18 {
    line-height: 1.3;
  }
}

.u-fonts__caption-16-16 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__caption-16-16 {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__caption-16-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__caption-16-16 {
    line-height: 1.375;
  }
}

.u-fonts__caption-16-14 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: -0.45px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__caption-16-14 {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__caption-16-14 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__caption-16-14 {
    line-height: 1.25;
  }
}

.u-fonts__copy-30-18 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.7px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__copy-30-18 {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__copy-30-18 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__copy-30-18 {
    line-height: 1.267;
  }
}

.u-fonts__copy-18-18-sb {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.54px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__copy-18-18-sb {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__copy-18-18-sb {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__copy-18-18-sb {
    line-height: 1.33;
  }
}

.u-fonts__copy-18-18-md {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.54px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__copy-18-18-md {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__copy-18-18-md {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__copy-18-18-md {
    line-height: 1.556;
  }
}

.u-fonts__copy-18-16 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__copy-18-16 {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__copy-18-16 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__copy-18-16 {
    line-height: 1.556;
  }
}

.u-fonts__copy-16-16 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.48px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__copy-16-16 {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__copy-16-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__copy-16-16 {
    line-height: 1.5;
  }
}

.u-fonts__special-22-18 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.44;
  letter-spacing: -0.6px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__special-22-18 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__special-22-18 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__special-22-18 {
    line-height: 1.273;
  }
}

.u-fonts__special-16-16 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.48px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__special-16-16 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__special-16-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__special-16-16 {
    line-height: 1.25;
  }
}

.u-fonts__special-24-20 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.65px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__special-24-20 {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__special-24-20 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__special-24-20 {
    line-height: 1.33;
  }
}

.u-fonts__special-24-20 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.48px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__special-24-20 {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__special-24-20 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__special-24-20 {
    line-height: 1.5;
  }
}

.u-fonts__special-24-20 {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.286;
  letter-spacing: -0.4px;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
@media (min-width: 1024px) {
  .u-fonts__special-24-20 {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__special-24-20 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__special-24-20 {
    line-height: 1.167;
  }
}

.u-fonts__button {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.14;
}
@media (min-width: 1024px) {
  .u-fonts__button {
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__button {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__button {
    line-height: 1.33;
  }
}

.u-fonts__button-toggle {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: -0.3px;
}
@media (min-width: 1024px) {
  .u-fonts__button-toggle {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__button-toggle {
    font-size: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__button-toggle {
    line-height: 1.4;
  }
}

.u-fonts__global-nav-tl {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.308;
  letter-spacing: -0.6px;
}
@media (min-width: 1024px) {
  .u-fonts__global-nav-tl {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__global-nav-tl {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__global-nav-tl {
    line-height: 1.25;
  }
}

.u-fonts__global-nav-sl {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: -0.45px;
}
@media (min-width: 1024px) {
  .u-fonts__global-nav-sl {
    font-weight: 600;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__global-nav-sl {
    font-size: 0.875rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__global-nav-sl {
    line-height: 1.214;
  }
}

.u-fonts__global-footer {
  font-family: "Inter", helvetica, arial, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.157;
  letter-spacing: -0.36px;
}
@media (min-width: 1024px) {
  .u-fonts__global-footer {
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .u-fonts__global-footer {
    font-size: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .u-fonts__global-footer {
    line-height: 1.167;
  }
}

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
  display: none !important;
}

.u-hidden\@small {
  display: none;
}
@media (min-width: 768px) {
  .u-hidden\@small {
    display: block;
  }
}

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