.carousel {
  position: relative;
  box-sizing: border-box;
}

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

.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

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

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

:root {
  --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-font-size:16px;
  --cc-bg:#fff;
  --cc-z-index:2147483647;
  --cc-text:#2d4156;
  --cc-border-radius:.45rem;
  --cc-btn-primary-bg:#2d4156;
  --cc-btn-primary-text:var(--cc-bg);
  --cc-btn-primary-hover-bg:#1d2e38;
  --cc-btn-primary-hover-text:var(--cc-btn-primary-text);
  --cc-btn-secondary-bg:#eaeff2;
  --cc-btn-secondary-text:var(--cc-text);
  --cc-btn-secondary-hover-bg:#d8e0e6;
  --cc-btn-secondary-hover-text:var(--cc-btn-secondary-text);
  --cc-btn-border-radius:0.375rem;
  --cc-toggle-bg-off:#919ea6;
  --cc-toggle-bg-on:var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly:#d5dee2;
  --cc-toggle-knob-bg:#fff;
  --cc-toggle-knob-icon-color:#ecf2fa;
  --cc-block-text:var(--cc-text);
  --cc-cookie-category-block-bg:#f0f4f7;
  --cc-cookie-category-block-bg-hover:#e9eff4;
  --cc-section-border:#f1f3f5;
  --cc-cookie-table-border:#e9edf2;
  --cc-overlay-bg:#040608;
  --cc-overlay-opacity:.85;
  --cc-consent-modal-box-shadow:0 0.625rem 1.875rem rgba(2,2,3,.28);
  --cc-webkit-scrollbar-bg:#cfd5db;
  --cc-webkit-scrollbar-bg-hover:#9199a0;
}

.c_darkmode {
  --cc-bg:#181b1d;
  --cc-text:#d8e5ea;
  --cc-btn-primary-bg:#a6c4dd;
  --cc-btn-primary-text:#000;
  --cc-btn-primary-hover-bg:#c2dff7;
  --cc-btn-primary-hover-text:var(--cc-btn-primary-text);
  --cc-btn-secondary-bg:#33383c;
  --cc-btn-secondary-text:var(--cc-text);
  --cc-btn-secondary-hover-bg:#3e454a;
  --cc-btn-secondary-hover-text:var(--cc-btn-secondary-text);
  --cc-toggle-bg-off:#667481;
  --cc-toggle-bg-on:var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly:#454c54;
  --cc-toggle-knob-bg:var(--cc-cookie-category-block-bg);
  --cc-toggle-knob-icon-color:var(--cc-bg);
  --cc-block-text:#b3bfc5;
  --cc-cookie-category-block-bg:#23272a;
  --cc-cookie-category-block-bg-hover:#2b3035;
  --cc-section-border:#292d31;
  --cc-cookie-table-border:#2b3035;
  --cc-webkit-scrollbar-bg:#667481;
  --cc-webkit-scrollbar-bg-hover:#9199a0;
}

#cc--main {
  z-index: 2147483647;
  z-index: var(--cc-z-index);
}

.cc_div *, .cc_div :after, .cc_div :before, .cc_div :hover {
  animation: none;
  background: none;
  border: none;
  border-radius: unset;
  box-shadow: none;
  box-sizing: border-box;
  color: inherit;
  float: none;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: normal;
  font-weight: inherit;
  height: auto;
  letter-spacing: unset;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  transition: none;
  vertical-align: baseline;
  visibility: unset;
}

.cc_div {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2d4156;
  color: var(--cc-text);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-size: var(--cc-font-size);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

#c-ttl, #s-bl td:before, #s-ttl, .cc_div .b-tl, .cc_div .c-bn {
  font-weight: 600;
}

#cm, #s-bl .act .b-acc, #s-inr, .cc_div .b-tl, .cc_div .c-bl {
  border-radius: 0.45rem;
  border-radius: var(--cc-border-radius);
}

#s-bl .act .b-acc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cc_div a, .cc_div button, .cc_div input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
}

.cc_div a {
  border-bottom: 1px solid;
}

.cc_div a:hover {
  border-color: transparent;
  text-decoration: none;
}

.cc_div .c-bn > span {
  pointer-events: none;
}

#cm-ov, #cs-ov, .c--anim #cm, .c--anim #s-cnt, .c--anim #s-inr {
  transition: visibility 0.25s linear, opacity 0.25s ease, transform 0.25s ease !important;
}

.c--anim .c-bn {
  transition: background-color 0.25s ease !important;
}

.c--anim #cm.bar.slide, .c--anim #cm.bar.slide + #cm-ov, .c--anim .bar.slide #s-inr, .c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

#cm.bar.slide, .cc_div .bar.slide #s-inr {
  opacity: 1;
  transform: translateX(100%);
}

#cm.bar.top.slide, .cc_div .bar.left.slide #s-inr {
  opacity: 1;
  transform: translateX(-100%);
}

#cm.slide, .cc_div .slide #s-inr {
  transform: translateY(1.6em);
}

#cm.top.slide {
  transform: translateY(-1.6em);
}

#cm.bar.slide {
  transform: translateY(100%);
}

#cm.bar.top.slide {
  transform: translateY(-100%);
}

.show--consent .c--anim #cm, .show--consent .c--anim #cm.bar, .show--settings .c--anim #s-inr, .show--settings .c--anim .bar.slide #s-inr {
  opacity: 1;
  transform: scale(1);
  visibility: visible !important;
}

.show--consent .c--anim #cm.box.middle, .show--consent .c--anim #cm.cloud.middle {
  transform: scale(1) translateY(-50%);
}

.show--settings .c--anim #s-cnt {
  visibility: visible !important;
}

.force--consent.show--consent .c--anim #cm-ov, .show--settings .c--anim #cs-ov {
  opacity: 0.85 !important;
  opacity: var(--cc-overlay-opacity) !important;
  visibility: visible !important;
}

#cm {
  background: #fff;
  background: var(--cc-bg);
  bottom: 1.25em;
  box-shadow: 0 0.625em 1.875em #000;
  box-shadow: 0 0.625rem 1.875rem rgba(2, 2, 3, 0.28);
  box-shadow: var(--cc-consent-modal-box-shadow);
  font-family: inherit;
  line-height: normal;
  max-width: 24.2em;
  opacity: 0;
  padding: 1em 1.4em 1.3em;
  position: fixed;
  right: 1.25em;
  transform: scale(0.95);
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

#cc_div #cm {
  display: block !important;
}

#c-ttl {
  font-size: 1.05em;
  margin-bottom: 0.7em;
}

.cloud #c-ttl {
  margin-top: -0.15em;
}

#c-txt {
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div #c-bns {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4em;
}

.cc_div .c-bn {
  background: #eaeff2;
  background: var(--cc-btn-secondary-bg);
  border-radius: 0.375rem;
  border-radius: var(--cc-btn-border-radius);
  color: #2d4156;
  color: var(--cc-btn-secondary-text);
  cursor: pointer;
  display: inline-block;
  flex: 1;
  font-size: 0.82em;
  padding: 1em 1.7em;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#c-bns button + button, #s-c-bn, #s-cnt button + button {
  float: right;
  margin-left: 0.5rem;
}

#s-cnt #s-rall-bn {
  float: none;
}

#cm .c_link:active, #cm .c_link:hover, #s-c-bn:active, #s-c-bn:hover, #s-cnt button + button:active, #s-cnt button + button:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-hover-text);
}

#s-cnt {
  display: table;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 101;
}

#s-bl {
  outline: none;
  scrollbar-width: thin;
}

#s-bl .title {
  margin-top: 1.4em;
}

#s-bl .b-bn, #s-bl .title:first-child {
  margin-top: 0;
}

#s-bl .b-acc .p {
  margin-top: 0;
  padding: 1em;
}

#s-cnt .b-bn .b-tl {
  background: none;
  display: block;
  font-family: inherit;
  font-size: 0.95em;
  padding: 1.3em 6.4em 1.3em 2.7em;
  position: relative;
  transition: background-color 0.25s ease;
  width: 100%;
}

#s-cnt .b-bn .b-tl.exp {
  cursor: pointer;
}

#s-cnt .act .b-bn .b-tl {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#s-cnt .b-bn .b-tl:active, #s-cnt .b-bn .b-tl:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn {
  position: relative;
}

#s-bl .c-bl {
  border: 1px solid #f1f3f5;
  border: 1px solid var(--cc-section-border);
  margin-bottom: 0.4rem;
  padding: 1em;
  transition: background-color 0.25s ease;
}

#s-bl .c-bl:hover {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
}

#s-bl .c-bl:last-child {
  margin-bottom: 0.5em;
}

#s-bl .c-bl:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}

#s-bl .c-bl:not(.b-ex):first-child:hover {
  background: transparent;
  background: unset;
}

#s-bl .c-bl.b-ex {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
  border: none;
  padding: 0;
  transition: none;
}

#s-bl .c-bl.b-ex + .c-bl {
  margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex {
  margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 1em;
  margin-bottom: 0.5em;
}

#s-bl .b-acc {
  display: none;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
}

#s-bl .act .b-acc {
  display: block;
  max-height: 100%;
  overflow: hidden;
}

#s-cnt .p {
  color: #2d4156;
  color: var(--cc-block-text);
  font-size: 0.9em;
  line-height: 1.5em;
  margin-top: 0.85em;
}

.cc_div .b-tg .c-tgl:disabled {
  cursor: not-allowed;
}

#c-vln {
  display: table-cell;
  position: relative;
  vertical-align: middle;
}

#cs {
  bottom: 0;
  left: 0;
  padding: 0 1.7em;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

#cs, #s-inr {
  height: 100%;
}

#s-inr {
  box-shadow: 0 13px 27px -5px rgba(3, 6, 9, 0.26);
  margin: 0 auto;
  max-width: 45em;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 4.75em;
  padding-top: 4.75em;
  position: relative;
  transform: scale(0.96);
  visibility: hidden;
}

#s-bns, #s-hdr, #s-inr {
  background: #fff;
  background: var(--cc-bg);
}

#s-bl {
  display: block;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay;
  padding: 1.3em 1.6em;
  width: 100%;
}

#s-bns {
  border-top: 1px solid #f1f3f5;
  border-top: 1px solid var(--cc-section-border);
  bottom: 0;
  height: 4.75em;
  left: 0;
  padding: 1em 1.8em;
  position: absolute;
  right: 0;
}

.cc_div .cc-link {
  border-bottom: 1px solid #2d4156;
  border-bottom: 1px solid var(--cc-btn-primary-bg);
  color: #2d4156;
  color: var(--cc-btn-primary-bg);
  cursor: pointer;
  display: inline;
  font-weight: 600;
  padding-bottom: 0;
  text-decoration: none;
}

.cc_div .cc-link:active, .cc_div .cc-link:hover {
  border-color: transparent;
}

#c-bns button:first-child, #s-bns button:first-child {
  background: #2d4156;
  background: var(--cc-btn-primary-bg);
  color: #fff;
  color: var(--cc-btn-primary-text);
}

#c-bns.swap button:first-child {
  background: #eaeff2;
  background: var(--cc-btn-secondary-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-text);
}

#c-bns.swap button:last-child {
  background: #2d4156;
  background: var(--cc-btn-primary-bg);
  color: #fff;
  color: var(--cc-btn-primary-text);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #2d4156;
  background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active, #c-bns button:first-child:hover, #c-bns.swap button:last-child:active, #c-bns.swap button:last-child:hover, #s-bns button:first-child:active, #s-bns button:first-child:hover {
  background: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
  color: #fff;
  color: var(--cc-btn-primary-hover-text);
}

#c-bns.swap button:first-child:active, #c-bns.swap button:first-child:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-hover-text);
}

#s-hdr {
  border-bottom: 1px solid #f1f3f5;
  border-bottom: 1px solid var(--cc-section-border);
  display: table;
  height: 4.75em;
  padding: 0 1.8em;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

#s-hdr, #s-ttl {
  vertical-align: middle;
}

#s-ttl {
  display: table-cell;
  font-size: 1em;
}

#s-c-bn {
  font-size: 1.45em;
  font-weight: 400;
  height: 1.7em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1.7em;
}

#s-c-bnc {
  display: table-cell;
  vertical-align: middle;
}

.cc_div span.t-lb {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

#c_policy__text {
  height: 31.25em;
  margin-top: 1.25em;
  overflow-y: auto;
}

#c-s-in {
  height: 100%;
  height: calc(100% - 2.5em);
  max-height: 37.5em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 688px) {
  #s-bl::-webkit-scrollbar {
    background: transparent;
    border-radius: 0 0.25em 0.25em 0;
    height: 100%;
    width: 0.8em;
  }
  #s-bl::-webkit-scrollbar-thumb {
    background: #cfd5db;
    background: var(--cc-webkit-scrollbar-bg);
    border: 0.25em solid #fff;
    border: 0.25em solid var(--cc-bg);
    border-radius: 100em;
  }
  #s-bl::-webkit-scrollbar-thumb:hover {
    background: #9199a0;
    background: var(--cc-webkit-scrollbar-bg-hover);
  }
  #s-bl::-webkit-scrollbar-button {
    height: 5px;
    width: 10px;
  }
}
.cc_div .b-tg {
  bottom: 0;
  display: inline-block;
  margin: auto;
  right: 0;
  right: 1.2em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
}

.cc_div .b-tg, .cc_div .b-tg .c-tgl {
  cursor: pointer;
  position: absolute;
  top: 0;
}

.cc_div .b-tg .c-tgl {
  border: 0;
  display: block;
  left: 0;
  margin: 0;
}

.cc_div .b-tg .c-tg {
  background: #919ea6;
  background: var(--cc-toggle-bg-off);
  pointer-events: none;
  position: absolute;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.cc_div .b-tg, .cc_div .b-tg .c-tg, .cc_div .b-tg .c-tgl, .cc_div span.t-lb {
  border-radius: 4em;
  height: 1.5em;
  width: 3.4em;
}

.cc_div .b-tg .c-tg.c-ro {
  cursor: not-allowed;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  background: #d5dee2;
  background: var(--cc-toggle-bg-readonly);
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro:after {
  box-shadow: none;
}

.cc_div .b-tg .c-tg:after {
  background: #fff;
  background: var(--cc-toggle-knob-bg);
  border: none;
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  box-sizing: content-box;
  content: "";
  display: block;
  height: 1.25em;
  left: 0.125em;
  position: relative;
  top: 0.125em;
  transition: transform 0.25s ease;
  width: 1.25em;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg:after {
  transform: translateX(1.9em);
}

#s-bl table, #s-bl td, #s-bl th {
  border: none;
}

#s-bl tbody tr {
  transition: background-color 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
  border-collapse: collapse;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

#s-bl caption {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

#s-bl td, #s-bl th {
  font-size: 0.8em;
  padding: 0.8em 0.625em 0.8em 1.2em;
  text-align: left;
  vertical-align: top;
}

#s-bl th {
  font-family: inherit;
  font-weight: 600;
  padding: 1em 1rem;
}

#s-bl thead tr:first-child {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
}

.force--consent #cs, .force--consent #s-cnt {
  width: 100vw;
}

#cm-ov, #cs-ov {
  background: #070707;
  background: #040608;
  background: var(--cc-overlay-bg);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: none;
  visibility: hidden;
}

.c--anim #cs-ov, .force--consent .c--anim #cm-ov, .force--consent.show--consent #cm-ov, .show--settings #cs-ov {
  display: block;
}

#cs-ov {
  z-index: 2;
}

.force--consent .cc_div {
  bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.25s linear;
  visibility: hidden;
  width: 100%;
  width: 100vw;
}

.force--consent.show--consent .c--anim .cc_div, .force--consent.show--settings .c--anim .cc_div {
  visibility: visible;
}

.force--consent #cm {
  position: absolute;
}

.force--consent #cm.bar {
  max-width: 100vw;
  width: 100vw;
}

html.force--consent.show--consent {
  overflow-y: hidden !important;
}

html.force--consent.show--consent, html.force--consent.show--consent body {
  height: auto !important;
  overflow-x: hidden !important;
}

.cc_div .act .b-bn .exp:before, .cc_div .b-bn .exp:before {
  border: solid #2d4156;
  border: solid var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  left: 1.2em;
  margin-right: 15px;
  padding: 0.2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.cc_div .act .b-bn .b-tl:before {
  transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i:before {
  border: solid #ecf2fa;
  border: solid var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  left: 0.75em;
  padding: 0.1em 0.1em 0.45em;
  top: 0.37em;
}

#s-c-bn:after, #s-c-bn:before, .cc_div .on-i:before {
  content: "";
  margin: 0 auto;
  position: absolute;
  transform: rotate(45deg);
}

#s-c-bn:after, #s-c-bn:before {
  background: #2d4156;
  background: var(--cc-btn-secondary-text);
  border-radius: 1em;
  height: 0.6em;
  left: 0.82em;
  top: 0.58em;
  width: 1.5px;
}

#s-c-bn:after {
  transform: rotate(-45deg);
}

.cc_div .off-i, .cc_div .on-i {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  transition: opacity 0.15s ease;
  width: 50%;
}

.cc_div .on-i {
  left: 0;
  opacity: 0;
}

.cc_div .off-i:after, .cc_div .off-i:before {
  background: #ecf2fa;
  background: var(--cc-toggle-knob-icon-color);
  content: " ";
  display: block;
  height: 0.7em;
  margin: 0 auto;
  position: absolute;
  right: 0.8em;
  top: 0.42em;
  transform-origin: center;
  width: 0.09375em;
}

.cc_div .off-i:before {
  transform: rotate(45deg);
}

.cc_div .off-i:after {
  transform: rotate(-45deg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .on-i {
  opacity: 1;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .off-i {
  opacity: 0;
}

#cm.box.middle, #cm.cloud.middle {
  bottom: auto;
  top: 50%;
  transform: translateY(-37%);
}

#cm.box.middle.zoom, #cm.cloud.middle.zoom {
  transform: scale(0.95) translateY(-50%);
}

#cm.box.center, #cm.cloud {
  left: 1em;
  margin: 0 auto;
  right: 1em;
}

#cm.cloud {
  max-width: 50em;
  overflow: hidden;
  padding: 1.2em 1.7em;
  text-align: center;
  width: unset;
}

.cc_div .cloud #c-inr {
  display: table;
  width: 100%;
}

.cc_div .cloud #c-inr-i {
  display: table-cell;
  padding-right: 2.4em;
  vertical-align: top;
  width: 70%;
}

.cc_div .cloud #c-txt {
  font-size: 0.85em;
}

.cc_div .cloud #c-bns {
  display: table-cell;
  min-width: 170px;
  vertical-align: middle;
}

#cm.cloud .c-bn {
  margin: 0.5rem 0 0;
  width: 100%;
}

#cm.cloud .c-bn:first-child {
  margin: 0;
}

#cm.cloud.left {
  margin-right: 1.25em;
}

#cm.cloud.right {
  margin-left: 1.25em;
}

#cm.bar {
  border-radius: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  padding: 2em;
  position: fixed;
  right: 0;
  width: 100%;
}

#cm.bar #c-inr {
  margin: 0 auto;
  max-width: 32em;
}

#cm.bar #c-bns {
  max-width: 33.75em;
}

#cm.bar #cs {
  padding: 0;
}

.cc_div .bar #c-s-in {
  height: 100%;
  max-height: 100%;
  top: 0;
  transform: none;
}

.cc_div .bar #s-bl, .cc_div .bar #s-bns, .cc_div .bar #s-hdr {
  padding-left: 1.4em;
  padding-right: 1.4em;
}

.cc_div .bar #cs {
  padding: 0;
}

.cc_div .bar #s-inr {
  border-radius: 0;
  margin: 0 0 0 auto;
  max-width: 32em;
}

.cc_div .bar.left #s-inr {
  margin-left: 0;
  margin-right: auto;
}

.cc_div .bar #s-bl table, .cc_div .bar #s-bl tbody, .cc_div .bar #s-bl td, .cc_div .bar #s-bl th, .cc_div .bar #s-bl thead, .cc_div .bar #s-bl tr, .cc_div .bar #s-cnt {
  display: block;
}

.cc_div .bar #s-bl caption {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
  border-top: 0;
  display: block;
}

.cc_div .bar #s-bl thead tr {
  left: -9999px;
  position: absolute;
  top: -9999px;
}

.cc_div .bar #s-bl tr {
  border-top: 1px solid #e9edf2;
  border-top: 1px solid var(--cc-cookie-table-border);
}

.cc_div .bar #s-bl td {
  border: none;
  padding-left: 35%;
  position: relative;
}

.cc_div .bar #s-bl td:before {
  color: #2d4156;
  color: var(--cc-text);
  content: attr(data-column);
  left: 1rem;
  overflow: hidden;
  padding-right: 0.625em;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#cm.top {
  bottom: auto;
  top: 1.25em;
}

#cm.left {
  left: 1.25em;
  right: auto;
}

#cm.right {
  left: auto;
  right: 1.25em;
}

#cm.bar.left, #cm.bar.right {
  left: 0;
  right: 0;
}

#cm.bar.top {
  top: 0;
}

@media (prefers-reduced-motion) {
  #cc--main #cm, #cc--main #s-cnt, #cc--main #s-inr {
    transition: none !important;
  }
}
@media screen and (max-width: 688px) {
  #cm, #cm.cloud, #cm.left, #cm.right {
    bottom: 1em;
    display: block;
    left: 1em;
    margin: 0;
    max-width: 100%;
    padding: 1.2em !important;
    right: 1em;
    width: auto;
  }
  .force--consent #cm, .force--consent #cm.cloud {
    max-width: 100vw;
    width: auto;
  }
  #cm.top {
    bottom: auto;
    top: 1em;
  }
  #cm.bottom {
    bottom: 1em;
    top: auto;
  }
  #cm.bar.bottom {
    bottom: 0;
  }
  #cm.cloud .c-bn {
    font-size: 0.85em;
  }
  #s-bns, .cc_div .bar #s-bns {
    padding: 1em 1.3em;
  }
  .cc_div .bar #s-inr {
    max-width: 100%;
    width: 100%;
  }
  .cc_div .cloud #c-inr-i {
    padding-right: 0;
  }
  #cs {
    border-radius: 0;
    padding: 0;
  }
  #c-s-in {
    height: 100%;
    max-height: 100%;
    top: 0;
    transform: none;
  }
  .cc_div .b-tg {
    right: 1.1em;
    transform: scale(1.1);
  }
  #s-inr {
    border-radius: 0;
    margin: 0;
    padding-bottom: 7.9em;
  }
  #s-bns {
    height: 7.9em;
  }
  #s-bl, .cc_div .bar #s-bl {
    padding: 1.2em;
  }
  #s-hdr, .cc_div .bar #s-hdr {
    padding: 0 1.2em;
  }
  #s-bl table {
    width: 100%;
  }
  #s-inr.bns-t {
    padding-bottom: 10.5em;
  }
  .bns-t #s-bns {
    height: 10.5em;
  }
  .cc_div .bns-t .c-bn {
    font-size: 0.83em;
    padding: 0.9em 1.6em;
  }
  #s-cnt .b-bn .b-tl {
    padding-bottom: 1.2em;
    padding-top: 1.2em;
  }
  #s-bl table, #s-bl tbody, #s-bl td, #s-bl th, #s-bl thead, #s-bl tr, #s-cnt {
    display: block;
  }
  #s-bl caption {
    border-bottom: 0;
    display: block;
  }
  #s-bl thead tr {
    left: -9999px;
    position: absolute;
    top: -9999px;
  }
  #s-bl tr {
    border-top: 1px solid #e9edf2;
    border-top: 1px solid var(--cc-cookie-table-border);
  }
  #s-bl td {
    border: none;
    padding-left: 35%;
    position: relative;
  }
  #s-bl td:before {
    color: #2d4156;
    color: var(--cc-text);
    content: attr(data-column);
    left: 1rem;
    overflow: hidden;
    padding-right: 0.625em;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #cm .c-bn, .cc_div .c-bn {
    margin-right: 0;
    width: 100%;
  }
  #s-cnt #s-rall-bn {
    margin-left: 0;
  }
  .cc_div #c-bns {
    flex-direction: column;
  }
  #c-bns button + button, #s-cnt button + button {
    float: unset;
    margin-left: 0;
    margin-top: 0.625em;
  }
  #cm.box, #cm.cloud {
    left: 1em;
    right: 1em;
    width: auto;
  }
  #cm.cloud.left, #cm.cloud.right {
    margin: 0;
  }
  .cc_div .cloud #c-bns, .cc_div .cloud #c-inr, .cc_div .cloud #c-inr-i {
    display: block;
    min-width: unset;
    width: auto;
  }
  .cc_div .cloud #c-txt {
    font-size: 0.9em;
  }
  .cc_div .cloud #c-bns {
    margin-top: 1.625em;
  }
}
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

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

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

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

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

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

.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 {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      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-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

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

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}

body,
.wp-block {
  font-family: "Stack Sans Text", sans-serif;
  color: rgba(25, 24, 24, 0.88);
}

.text--left {
  text-align: left;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--strong {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.form-popup__close,
.h5,
.h6,
.gform_submission_error,
.preheading,
.subheading,
.heading {
  margin: 0;
  font-family: "Stack Sans Headline", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #191818;
}

.gfield_description, .preheading {
  font-family: "Stack Sans Headline", sans-serif;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield_description, .preheading {
  font-size: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gfield_description, .preheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gfield_description, .preheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gfield_description, .preheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 14px;
  }
}
.gfield_description, .preheading {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield_description, .preheading {
  letter-spacing: 0.6px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gfield_description, .preheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.6px + 0.0001142857 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gfield_description, .preheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.72px + 0.0001071429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gfield_description, .preheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: 0.84px;
  }
}

.subheading {
  font-family: "Stack Sans Text", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.subheading {
  font-size: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .subheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .subheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .subheading {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 24px;
  }
}

.display-1 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.display-1 {
  font-size: 64px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .display-1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(64px + 0.0304761905 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .display-1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(96px + 0.0178571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .display-1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 116px;
  }
}

.display-2 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.display-2 {
  font-size: 52px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .display-2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(52px + 0.0266666667 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .display-2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(80px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .display-2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 96px;
  }
}

h1,
.h1 {
  line-height: 1.1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h1,
.h1 {
  font-size: 44px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h1,
  .h1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(44px + 0.019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h1,
  .h1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(64px + 0.0107142857 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h1,
  .h1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 76px;
  }
}
h1,
.h1 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h1,
.h1 {
  letter-spacing: -1.76px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h1,
  .h1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-1.76px + -0.0007619048 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h1,
  .h1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-2.56px + -0.0004285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h1,
  .h1 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: -3.04px;
  }
}

h2,
.h2 {
  line-height: 1.1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h2,
.h2 {
  font-size: 36px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h2,
  .h2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(36px + 0.0114285714 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h2,
  .h2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(48px + 0.0089285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h2,
  .h2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 58px;
  }
}
h2,
.h2 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h2,
.h2 {
  letter-spacing: -1.44px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h2,
  .h2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-1.44px + -0.0004571429 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h2,
  .h2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-1.92px + -0.0003571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h2,
  .h2 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: -2.32px;
  }
}

h3,
.h3 {
  line-height: 1.15;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h3,
.h3 {
  font-size: 32px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h3,
  .h3 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(32px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h3,
  .h3 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(40px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h3,
  .h3 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 48px;
  }
}
h3,
.h3 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h3,
.h3 {
  letter-spacing: -0.8px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h3,
  .h3 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.8px + -0.0001904762 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h3,
  .h3 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-1px + -0.0001785714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h3,
  .h3 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: -1.2px;
  }
}

h4,
.h4,
.form-popup__close {
  line-height: 1.15;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h4,
.h4,
.form-popup__close {
  font-size: 24px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h4,
  .h4,
  .form-popup__close {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h4,
  .h4,
  .form-popup__close {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(32px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h4,
  .h4,
  .form-popup__close {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 38px;
  }
}
h4,
.h4,
.form-popup__close {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h4,
.h4,
.form-popup__close {
  letter-spacing: -0.72px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h4,
  .h4,
  .form-popup__close {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.72px + -0.0002285714 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h4,
  .h4,
  .form-popup__close {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.96px + -0.0001607143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h4,
  .h4,
  .form-popup__close {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: -1.14px;
  }
}

h5,
.h5 {
  line-height: 1.15;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h5,
.h5 {
  font-size: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h5,
  .h5 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(20px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h5,
  .h5 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(28px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h5,
  .h5 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 34px;
  }
}
h5,
.h5 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h5,
.h5 {
  letter-spacing: -0.35px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h5,
  .h5 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.35px + -0.0001333333 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h5,
  .h5 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.49px + -0.00009375 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h5,
  .h5 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: -0.595px;
  }
}

h6,
.h6,
.gform_submission_error {
  line-height: 1.2;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h6,
.h6,
.gform_submission_error {
  font-size: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h6,
  .h6,
  .gform_submission_error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h6,
  .h6,
  .gform_submission_error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(24px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h6,
  .h6,
  .gform_submission_error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 28px;
  }
}
h6,
.h6,
.gform_submission_error {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
h6,
.h6,
.gform_submission_error {
  letter-spacing: -0.4px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  h6,
  .h6,
  .gform_submission_error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.4px + -0.0000761905 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  h6,
  .h6,
  .gform_submission_error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(-0.48px + -0.0000714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  h6,
  .h6,
  .gform_submission_error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: -0.56px;
  }
}

blockquote,
.blockquote {
  line-height: 1.25;
  font-family: "Stack Sans Text", sans-serif;
  font-weight: 300;
  color: #191818;
  margin: 0;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
blockquote,
.blockquote {
  font-size: 24px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  blockquote,
  .blockquote {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(24px + 0.0114285714 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  blockquote,
  .blockquote {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(36px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  blockquote,
  .blockquote {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 44px;
  }
}
blockquote strong,
.blockquote strong {
  font-weight: 700;
}

a {
  color: rgba(25, 24, 24, 0.88);
  transition: all 0.3s ease-in-out;
}

.search-page__none, .gform_confirmation_wrapper, .content, .content--tiny, .breadcrumbs__link, .gfield--type-choice label, .gfield--type-choice .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-choice .gfield_label, .content--small, .bottom-footer__link, .top-footer__heading, .content--large {
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (max-width: 390px) {
  .search-page__none p, .gform_confirmation_wrapper p, .content p, .content--tiny p, .breadcrumbs__link p, .gfield--type-choice label p, .gfield--type-choice .gfield + fieldset .gfield_label p, .gfield + fieldset .gfield--type-choice .gfield_label p, .content--small p, .bottom-footer__link p, .top-footer__heading p, .content--large p,
  .search-page__none ul,
  .gform_confirmation_wrapper ul,
  .content ul,
  .content--tiny ul,
  .breadcrumbs__link ul,
  .gfield--type-choice label ul,
  .gfield--type-choice .gfield + fieldset .gfield_label ul,
  .gfield + fieldset .gfield--type-choice .gfield_label ul,
  .content--small ul,
  .bottom-footer__link ul,
  .top-footer__heading ul,
  .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol,
  .search-page__none iframe,
  .gform_confirmation_wrapper iframe,
  .content iframe,
  .content--tiny iframe,
  .breadcrumbs__link iframe,
  .gfield--type-choice label iframe,
  .gfield--type-choice .gfield + fieldset .gfield_label iframe,
  .gfield + fieldset .gfield--type-choice .gfield_label iframe,
  .content--small iframe,
  .bottom-footer__link iframe,
  .top-footer__heading iframe,
  .content--large iframe {
    margin-top: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__none p, .gform_confirmation_wrapper p, .content p, .content--tiny p, .breadcrumbs__link p, .gfield--type-choice label p, .gfield--type-choice .gfield + fieldset .gfield_label p, .gfield + fieldset .gfield--type-choice .gfield_label p, .content--small p, .bottom-footer__link p, .top-footer__heading p, .content--large p,
  .search-page__none ul,
  .gform_confirmation_wrapper ul,
  .content ul,
  .content--tiny ul,
  .breadcrumbs__link ul,
  .gfield--type-choice label ul,
  .gfield--type-choice .gfield + fieldset .gfield_label ul,
  .gfield + fieldset .gfield--type-choice .gfield_label ul,
  .content--small ul,
  .bottom-footer__link ul,
  .top-footer__heading ul,
  .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol,
  .search-page__none iframe,
  .gform_confirmation_wrapper iframe,
  .content iframe,
  .content--tiny iframe,
  .breadcrumbs__link iframe,
  .gfield--type-choice label iframe,
  .gfield--type-choice .gfield + fieldset .gfield_label iframe,
  .gfield + fieldset .gfield--type-choice .gfield_label iframe,
  .content--small iframe,
  .bottom-footer__link iframe,
  .top-footer__heading iframe,
  .content--large iframe {
    margin-top: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__none p, .gform_confirmation_wrapper p, .content p, .content--tiny p, .breadcrumbs__link p, .gfield--type-choice label p, .gfield--type-choice .gfield + fieldset .gfield_label p, .gfield + fieldset .gfield--type-choice .gfield_label p, .content--small p, .bottom-footer__link p, .top-footer__heading p, .content--large p,
  .search-page__none ul,
  .gform_confirmation_wrapper ul,
  .content ul,
  .content--tiny ul,
  .breadcrumbs__link ul,
  .gfield--type-choice label ul,
  .gfield--type-choice .gfield + fieldset .gfield_label ul,
  .gfield + fieldset .gfield--type-choice .gfield_label ul,
  .content--small ul,
  .bottom-footer__link ul,
  .top-footer__heading ul,
  .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol,
  .search-page__none iframe,
  .gform_confirmation_wrapper iframe,
  .content iframe,
  .content--tiny iframe,
  .breadcrumbs__link iframe,
  .gfield--type-choice label iframe,
  .gfield--type-choice .gfield + fieldset .gfield_label iframe,
  .gfield + fieldset .gfield--type-choice .gfield_label iframe,
  .content--small iframe,
  .bottom-footer__link iframe,
  .top-footer__heading iframe,
  .content--large iframe {
    margin-top: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__none p, .gform_confirmation_wrapper p, .content p, .content--tiny p, .breadcrumbs__link p, .gfield--type-choice label p, .gfield--type-choice .gfield + fieldset .gfield_label p, .gfield + fieldset .gfield--type-choice .gfield_label p, .content--small p, .bottom-footer__link p, .top-footer__heading p, .content--large p,
  .search-page__none ul,
  .gform_confirmation_wrapper ul,
  .content ul,
  .content--tiny ul,
  .breadcrumbs__link ul,
  .gfield--type-choice label ul,
  .gfield--type-choice .gfield + fieldset .gfield_label ul,
  .gfield + fieldset .gfield--type-choice .gfield_label ul,
  .content--small ul,
  .bottom-footer__link ul,
  .top-footer__heading ul,
  .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol,
  .search-page__none iframe,
  .gform_confirmation_wrapper iframe,
  .content iframe,
  .content--tiny iframe,
  .breadcrumbs__link iframe,
  .gfield--type-choice label iframe,
  .gfield--type-choice .gfield + fieldset .gfield_label iframe,
  .gfield + fieldset .gfield--type-choice .gfield_label iframe,
  .content--small iframe,
  .bottom-footer__link iframe,
  .top-footer__heading iframe,
  .content--large iframe {
    margin-top: 16px;
  }
}
.search-page__none div.wp-caption, .gform_confirmation_wrapper div.wp-caption, .content div.wp-caption, .content--tiny div.wp-caption, .breadcrumbs__link div.wp-caption, .gfield--type-choice label div.wp-caption, .gfield--type-choice .gfield + fieldset .gfield_label div.wp-caption, .gfield + fieldset .gfield--type-choice .gfield_label div.wp-caption, .content--small div.wp-caption, .bottom-footer__link div.wp-caption, .top-footer__heading div.wp-caption, .content--large div.wp-caption, .search-page__none div.alignone, .gform_confirmation_wrapper div.alignone, .content div.alignone, .content--tiny div.alignone, .breadcrumbs__link div.alignone, .gfield--type-choice label div.alignone, .gfield--type-choice .gfield + fieldset .gfield_label div.alignone, .gfield + fieldset .gfield--type-choice .gfield_label div.alignone, .content--small div.alignone, .bottom-footer__link div.alignone, .top-footer__heading div.alignone, .content--large div.alignone {
  max-width: 100%;
}
.search-page__none h1, .gform_confirmation_wrapper h1, .content h1, .content--tiny h1, .breadcrumbs__link h1, .gfield--type-choice label h1, .gfield--type-choice .gfield + fieldset .gfield_label h1, .gfield + fieldset .gfield--type-choice .gfield_label h1, .content--small h1, .bottom-footer__link h1, .top-footer__heading h1, .content--large h1,
.search-page__none h2,
.gform_confirmation_wrapper h2,
.content h2,
.content--tiny h2,
.breadcrumbs__link h2,
.gfield--type-choice label h2,
.gfield--type-choice .gfield + fieldset .gfield_label h2,
.gfield + fieldset .gfield--type-choice .gfield_label h2,
.content--small h2,
.bottom-footer__link h2,
.top-footer__heading h2,
.content--large h2,
.search-page__none h3,
.gform_confirmation_wrapper h3,
.content h3,
.content--tiny h3,
.breadcrumbs__link h3,
.gfield--type-choice label h3,
.gfield--type-choice .gfield + fieldset .gfield_label h3,
.gfield + fieldset .gfield--type-choice .gfield_label h3,
.content--small h3,
.bottom-footer__link h3,
.top-footer__heading h3,
.content--large h3,
.search-page__none h4,
.gform_confirmation_wrapper h4,
.content h4,
.content--tiny h4,
.breadcrumbs__link h4,
.gfield--type-choice label h4,
.gfield--type-choice .gfield + fieldset .gfield_label h4,
.gfield + fieldset .gfield--type-choice .gfield_label h4,
.content--small h4,
.bottom-footer__link h4,
.top-footer__heading h4,
.content--large h4,
.search-page__none h5,
.gform_confirmation_wrapper h5,
.content h5,
.content--tiny h5,
.breadcrumbs__link h5,
.gfield--type-choice label h5,
.gfield--type-choice .gfield + fieldset .gfield_label h5,
.gfield + fieldset .gfield--type-choice .gfield_label h5,
.content--small h5,
.bottom-footer__link h5,
.top-footer__heading h5,
.content--large h5,
.search-page__none h6,
.gform_confirmation_wrapper h6,
.content h6,
.content--tiny h6,
.breadcrumbs__link h6,
.gfield--type-choice label h6,
.gfield--type-choice .gfield + fieldset .gfield_label h6,
.gfield + fieldset .gfield--type-choice .gfield_label h6,
.content--small h6,
.bottom-footer__link h6,
.top-footer__heading h6,
.content--large h6 {
  font-weight: 400;
}
@media screen and (max-width: 390px) {
  .search-page__none h1, .gform_confirmation_wrapper h1, .content h1, .content--tiny h1, .breadcrumbs__link h1, .gfield--type-choice label h1, .gfield--type-choice .gfield + fieldset .gfield_label h1, .gfield + fieldset .gfield--type-choice .gfield_label h1, .content--small h1, .bottom-footer__link h1, .top-footer__heading h1, .content--large h1,
  .search-page__none h2,
  .gform_confirmation_wrapper h2,
  .content h2,
  .content--tiny h2,
  .breadcrumbs__link h2,
  .gfield--type-choice label h2,
  .gfield--type-choice .gfield + fieldset .gfield_label h2,
  .gfield + fieldset .gfield--type-choice .gfield_label h2,
  .content--small h2,
  .bottom-footer__link h2,
  .top-footer__heading h2,
  .content--large h2,
  .search-page__none h3,
  .gform_confirmation_wrapper h3,
  .content h3,
  .content--tiny h3,
  .breadcrumbs__link h3,
  .gfield--type-choice label h3,
  .gfield--type-choice .gfield + fieldset .gfield_label h3,
  .gfield + fieldset .gfield--type-choice .gfield_label h3,
  .content--small h3,
  .bottom-footer__link h3,
  .top-footer__heading h3,
  .content--large h3,
  .search-page__none h4,
  .gform_confirmation_wrapper h4,
  .content h4,
  .content--tiny h4,
  .breadcrumbs__link h4,
  .gfield--type-choice label h4,
  .gfield--type-choice .gfield + fieldset .gfield_label h4,
  .gfield + fieldset .gfield--type-choice .gfield_label h4,
  .content--small h4,
  .bottom-footer__link h4,
  .top-footer__heading h4,
  .content--large h4,
  .search-page__none h5,
  .gform_confirmation_wrapper h5,
  .content h5,
  .content--tiny h5,
  .breadcrumbs__link h5,
  .gfield--type-choice label h5,
  .gfield--type-choice .gfield + fieldset .gfield_label h5,
  .gfield + fieldset .gfield--type-choice .gfield_label h5,
  .content--small h5,
  .bottom-footer__link h5,
  .top-footer__heading h5,
  .content--large h5,
  .search-page__none h6,
  .gform_confirmation_wrapper h6,
  .content h6,
  .content--tiny h6,
  .breadcrumbs__link h6,
  .gfield--type-choice label h6,
  .gfield--type-choice .gfield + fieldset .gfield_label h6,
  .gfield + fieldset .gfield--type-choice .gfield_label h6,
  .content--small h6,
  .bottom-footer__link h6,
  .top-footer__heading h6,
  .content--large h6 {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__none h1, .gform_confirmation_wrapper h1, .content h1, .content--tiny h1, .breadcrumbs__link h1, .gfield--type-choice label h1, .gfield--type-choice .gfield + fieldset .gfield_label h1, .gfield + fieldset .gfield--type-choice .gfield_label h1, .content--small h1, .bottom-footer__link h1, .top-footer__heading h1, .content--large h1,
  .search-page__none h2,
  .gform_confirmation_wrapper h2,
  .content h2,
  .content--tiny h2,
  .breadcrumbs__link h2,
  .gfield--type-choice label h2,
  .gfield--type-choice .gfield + fieldset .gfield_label h2,
  .gfield + fieldset .gfield--type-choice .gfield_label h2,
  .content--small h2,
  .bottom-footer__link h2,
  .top-footer__heading h2,
  .content--large h2,
  .search-page__none h3,
  .gform_confirmation_wrapper h3,
  .content h3,
  .content--tiny h3,
  .breadcrumbs__link h3,
  .gfield--type-choice label h3,
  .gfield--type-choice .gfield + fieldset .gfield_label h3,
  .gfield + fieldset .gfield--type-choice .gfield_label h3,
  .content--small h3,
  .bottom-footer__link h3,
  .top-footer__heading h3,
  .content--large h3,
  .search-page__none h4,
  .gform_confirmation_wrapper h4,
  .content h4,
  .content--tiny h4,
  .breadcrumbs__link h4,
  .gfield--type-choice label h4,
  .gfield--type-choice .gfield + fieldset .gfield_label h4,
  .gfield + fieldset .gfield--type-choice .gfield_label h4,
  .content--small h4,
  .bottom-footer__link h4,
  .top-footer__heading h4,
  .content--large h4,
  .search-page__none h5,
  .gform_confirmation_wrapper h5,
  .content h5,
  .content--tiny h5,
  .breadcrumbs__link h5,
  .gfield--type-choice label h5,
  .gfield--type-choice .gfield + fieldset .gfield_label h5,
  .gfield + fieldset .gfield--type-choice .gfield_label h5,
  .content--small h5,
  .bottom-footer__link h5,
  .top-footer__heading h5,
  .content--large h5,
  .search-page__none h6,
  .gform_confirmation_wrapper h6,
  .content h6,
  .content--tiny h6,
  .breadcrumbs__link h6,
  .gfield--type-choice label h6,
  .gfield--type-choice .gfield + fieldset .gfield_label h6,
  .gfield + fieldset .gfield--type-choice .gfield_label h6,
  .content--small h6,
  .bottom-footer__link h6,
  .top-footer__heading h6,
  .content--large h6 {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__none h1, .gform_confirmation_wrapper h1, .content h1, .content--tiny h1, .breadcrumbs__link h1, .gfield--type-choice label h1, .gfield--type-choice .gfield + fieldset .gfield_label h1, .gfield + fieldset .gfield--type-choice .gfield_label h1, .content--small h1, .bottom-footer__link h1, .top-footer__heading h1, .content--large h1,
  .search-page__none h2,
  .gform_confirmation_wrapper h2,
  .content h2,
  .content--tiny h2,
  .breadcrumbs__link h2,
  .gfield--type-choice label h2,
  .gfield--type-choice .gfield + fieldset .gfield_label h2,
  .gfield + fieldset .gfield--type-choice .gfield_label h2,
  .content--small h2,
  .bottom-footer__link h2,
  .top-footer__heading h2,
  .content--large h2,
  .search-page__none h3,
  .gform_confirmation_wrapper h3,
  .content h3,
  .content--tiny h3,
  .breadcrumbs__link h3,
  .gfield--type-choice label h3,
  .gfield--type-choice .gfield + fieldset .gfield_label h3,
  .gfield + fieldset .gfield--type-choice .gfield_label h3,
  .content--small h3,
  .bottom-footer__link h3,
  .top-footer__heading h3,
  .content--large h3,
  .search-page__none h4,
  .gform_confirmation_wrapper h4,
  .content h4,
  .content--tiny h4,
  .breadcrumbs__link h4,
  .gfield--type-choice label h4,
  .gfield--type-choice .gfield + fieldset .gfield_label h4,
  .gfield + fieldset .gfield--type-choice .gfield_label h4,
  .content--small h4,
  .bottom-footer__link h4,
  .top-footer__heading h4,
  .content--large h4,
  .search-page__none h5,
  .gform_confirmation_wrapper h5,
  .content h5,
  .content--tiny h5,
  .breadcrumbs__link h5,
  .gfield--type-choice label h5,
  .gfield--type-choice .gfield + fieldset .gfield_label h5,
  .gfield + fieldset .gfield--type-choice .gfield_label h5,
  .content--small h5,
  .bottom-footer__link h5,
  .top-footer__heading h5,
  .content--large h5,
  .search-page__none h6,
  .gform_confirmation_wrapper h6,
  .content h6,
  .content--tiny h6,
  .breadcrumbs__link h6,
  .gfield--type-choice label h6,
  .gfield--type-choice .gfield + fieldset .gfield_label h6,
  .gfield + fieldset .gfield--type-choice .gfield_label h6,
  .content--small h6,
  .bottom-footer__link h6,
  .top-footer__heading h6,
  .content--large h6 {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__none h1, .gform_confirmation_wrapper h1, .content h1, .content--tiny h1, .breadcrumbs__link h1, .gfield--type-choice label h1, .gfield--type-choice .gfield + fieldset .gfield_label h1, .gfield + fieldset .gfield--type-choice .gfield_label h1, .content--small h1, .bottom-footer__link h1, .top-footer__heading h1, .content--large h1,
  .search-page__none h2,
  .gform_confirmation_wrapper h2,
  .content h2,
  .content--tiny h2,
  .breadcrumbs__link h2,
  .gfield--type-choice label h2,
  .gfield--type-choice .gfield + fieldset .gfield_label h2,
  .gfield + fieldset .gfield--type-choice .gfield_label h2,
  .content--small h2,
  .bottom-footer__link h2,
  .top-footer__heading h2,
  .content--large h2,
  .search-page__none h3,
  .gform_confirmation_wrapper h3,
  .content h3,
  .content--tiny h3,
  .breadcrumbs__link h3,
  .gfield--type-choice label h3,
  .gfield--type-choice .gfield + fieldset .gfield_label h3,
  .gfield + fieldset .gfield--type-choice .gfield_label h3,
  .content--small h3,
  .bottom-footer__link h3,
  .top-footer__heading h3,
  .content--large h3,
  .search-page__none h4,
  .gform_confirmation_wrapper h4,
  .content h4,
  .content--tiny h4,
  .breadcrumbs__link h4,
  .gfield--type-choice label h4,
  .gfield--type-choice .gfield + fieldset .gfield_label h4,
  .gfield + fieldset .gfield--type-choice .gfield_label h4,
  .content--small h4,
  .bottom-footer__link h4,
  .top-footer__heading h4,
  .content--large h4,
  .search-page__none h5,
  .gform_confirmation_wrapper h5,
  .content h5,
  .content--tiny h5,
  .breadcrumbs__link h5,
  .gfield--type-choice label h5,
  .gfield--type-choice .gfield + fieldset .gfield_label h5,
  .gfield + fieldset .gfield--type-choice .gfield_label h5,
  .content--small h5,
  .bottom-footer__link h5,
  .top-footer__heading h5,
  .content--large h5,
  .search-page__none h6,
  .gform_confirmation_wrapper h6,
  .content h6,
  .content--tiny h6,
  .breadcrumbs__link h6,
  .gfield--type-choice label h6,
  .gfield--type-choice .gfield + fieldset .gfield_label h6,
  .gfield + fieldset .gfield--type-choice .gfield_label h6,
  .content--small h6,
  .bottom-footer__link h6,
  .top-footer__heading h6,
  .content--large h6 {
    margin-top: 20px;
  }
}
.search-page__none > :first-child, .gform_confirmation_wrapper > :first-child, .content > :first-child, .content--tiny > :first-child, .breadcrumbs__link > :first-child, .gfield--type-choice label > :first-child, .gfield--type-choice .gfield + fieldset .gfield_label > :first-child, .gfield + fieldset .gfield--type-choice .gfield_label > :first-child, .content--small > :first-child, .bottom-footer__link > :first-child, .top-footer__heading > :first-child, .content--large > :first-child {
  margin-top: 0;
}
.search-page__none > :last-child, .gform_confirmation_wrapper > :last-child, .content > :last-child, .content--tiny > :last-child, .breadcrumbs__link > :last-child, .gfield--type-choice label > :last-child, .gfield--type-choice .gfield + fieldset .gfield_label > :last-child, .gfield + fieldset .gfield--type-choice .gfield_label > :last-child, .content--small > :last-child, .bottom-footer__link > :last-child, .top-footer__heading > :last-child, .content--large > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 390px) {
  .search-page__none ul, .gform_confirmation_wrapper ul, .content ul, .content--tiny ul, .breadcrumbs__link ul, .gfield--type-choice label ul, .gfield--type-choice .gfield + fieldset .gfield_label ul, .gfield + fieldset .gfield--type-choice .gfield_label ul, .content--small ul, .bottom-footer__link ul, .top-footer__heading ul, .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol {
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__none ul, .gform_confirmation_wrapper ul, .content ul, .content--tiny ul, .breadcrumbs__link ul, .gfield--type-choice label ul, .gfield--type-choice .gfield + fieldset .gfield_label ul, .gfield + fieldset .gfield--type-choice .gfield_label ul, .content--small ul, .bottom-footer__link ul, .top-footer__heading ul, .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol {
    padding-left: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__none ul, .gform_confirmation_wrapper ul, .content ul, .content--tiny ul, .breadcrumbs__link ul, .gfield--type-choice label ul, .gfield--type-choice .gfield + fieldset .gfield_label ul, .gfield + fieldset .gfield--type-choice .gfield_label ul, .content--small ul, .bottom-footer__link ul, .top-footer__heading ul, .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol {
    padding-left: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__none ul, .gform_confirmation_wrapper ul, .content ul, .content--tiny ul, .breadcrumbs__link ul, .gfield--type-choice label ul, .gfield--type-choice .gfield + fieldset .gfield_label ul, .gfield + fieldset .gfield--type-choice .gfield_label ul, .content--small ul, .bottom-footer__link ul, .top-footer__heading ul, .content--large ul,
  .search-page__none ol,
  .gform_confirmation_wrapper ol,
  .content ol,
  .content--tiny ol,
  .breadcrumbs__link ol,
  .gfield--type-choice label ol,
  .gfield--type-choice .gfield + fieldset .gfield_label ol,
  .gfield + fieldset .gfield--type-choice .gfield_label ol,
  .content--small ol,
  .bottom-footer__link ol,
  .top-footer__heading ol,
  .content--large ol {
    padding-left: 26px;
  }
}
@media screen and (max-width: 390px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    padding-left: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    padding-left: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    padding-left: 26px;
  }
}
@media screen and (max-width: 390px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    margin-top: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    margin-top: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__none li, .gform_confirmation_wrapper li, .content li, .content--tiny li, .breadcrumbs__link li, .gfield--type-choice label li, .gfield--type-choice .gfield + fieldset .gfield_label li, .gfield + fieldset .gfield--type-choice .gfield_label li, .content--small li, .bottom-footer__link li, .top-footer__heading li, .content--large li {
    margin-top: 26px;
  }
}
.search-page__none li:first-child, .gform_confirmation_wrapper li:first-child, .content li:first-child, .content--tiny li:first-child, .breadcrumbs__link li:first-child, .gfield--type-choice label li:first-child, .gfield--type-choice .gfield + fieldset .gfield_label li:first-child, .gfield + fieldset .gfield--type-choice .gfield_label li:first-child, .content--small li:first-child, .bottom-footer__link li:first-child, .top-footer__heading li:first-child, .content--large li:first-child {
  margin-top: 0;
}
.search-page__none li ul, .gform_confirmation_wrapper li ul, .content li ul, .content--tiny li ul, .breadcrumbs__link li ul, .gfield--type-choice label li ul, .gfield--type-choice .gfield + fieldset .gfield_label li ul, .gfield + fieldset .gfield--type-choice .gfield_label li ul, .content--small li ul, .bottom-footer__link li ul, .top-footer__heading li ul, .content--large li ul {
  padding-left: 40px;
  list-style-type: disc;
}
@media screen and (max-width: 390px) {
  .search-page__none li ul, .gform_confirmation_wrapper li ul, .content li ul, .content--tiny li ul, .breadcrumbs__link li ul, .gfield--type-choice label li ul, .gfield--type-choice .gfield + fieldset .gfield_label li ul, .gfield + fieldset .gfield--type-choice .gfield_label li ul, .content--small li ul, .bottom-footer__link li ul, .top-footer__heading li ul, .content--large li ul {
    padding-left: 18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__none li ul, .gform_confirmation_wrapper li ul, .content li ul, .content--tiny li ul, .breadcrumbs__link li ul, .gfield--type-choice label li ul, .gfield--type-choice .gfield + fieldset .gfield_label li ul, .gfield + fieldset .gfield--type-choice .gfield_label li ul, .content--small li ul, .bottom-footer__link li ul, .top-footer__heading li ul, .content--large li ul {
    padding-left: calc(18px + 0.0133333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__none li ul, .gform_confirmation_wrapper li ul, .content li ul, .content--tiny li ul, .breadcrumbs__link li ul, .gfield--type-choice label li ul, .gfield--type-choice .gfield + fieldset .gfield_label li ul, .gfield + fieldset .gfield--type-choice .gfield_label li ul, .content--small li ul, .bottom-footer__link li ul, .top-footer__heading li ul, .content--large li ul {
    padding-left: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__none li ul, .gform_confirmation_wrapper li ul, .content li ul, .content--tiny li ul, .breadcrumbs__link li ul, .gfield--type-choice label li ul, .gfield--type-choice .gfield + fieldset .gfield_label li ul, .gfield + fieldset .gfield--type-choice .gfield_label li ul, .content--small li ul, .bottom-footer__link li ul, .top-footer__heading li ul, .content--large li ul {
    padding-left: 40px;
  }
}
.search-page__none strong, .gform_confirmation_wrapper strong, .content strong, .content--tiny strong, .breadcrumbs__link strong, .gfield--type-choice label strong, .gfield--type-choice .gfield + fieldset .gfield_label strong, .gfield + fieldset .gfield--type-choice .gfield_label strong, .content--small strong, .bottom-footer__link strong, .top-footer__heading strong, .content--large strong,
.search-page__none b,
.gform_confirmation_wrapper b,
.content b,
.content--tiny b,
.breadcrumbs__link b,
.gfield--type-choice label b,
.gfield--type-choice .gfield + fieldset .gfield_label b,
.gfield + fieldset .gfield--type-choice .gfield_label b,
.content--small b,
.bottom-footer__link b,
.top-footer__heading b,
.content--large b {
  font-weight: 700;
}
.search-page__none, .gform_confirmation_wrapper, .content, .content--tiny, .breadcrumbs__link, .gfield--type-choice label, .gfield--type-choice .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-choice .gfield_label, .content--small, .bottom-footer__link, .top-footer__heading, .content--large {
  /* stylelint-disable-next-line scss/percent-placeholder-pattern */
}
.top-footer__heading, .content--large {
  line-height: 1.5;
}
.search-page__none, .gform_confirmation_wrapper, .content, .content--tiny, .breadcrumbs__link, .gfield--type-choice label, .gfield--type-choice .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-choice .gfield_label, .content--small, .bottom-footer__link, .top-footer__heading, .content--large {
  /* stylelint-disable-next-line scss/percent-placeholder-pattern */
}
.breadcrumbs__link, .gfield--type-choice label, .gfield--type-choice .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-choice .gfield_label, .content--small, .bottom-footer__link {
  line-height: 1.4;
}
.search-page__none, .gform_confirmation_wrapper, .content, .content--tiny, .breadcrumbs__link, .gfield--type-choice label, .gfield--type-choice .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-choice .gfield_label, .content--small, .bottom-footer__link, .top-footer__heading, .content--large {
  /* stylelint-disable-next-line scss/percent-placeholder-pattern */
}
.content--tiny {
  line-height: 1.5;
}

.content {
  -webkit-font-smoothing: antialiased;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.content {
  font-size: 14px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .content {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .content {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 18px;
  }
}
.content--large {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.content--large {
  font-size: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .content--large {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .content--large {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(18px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content--large {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 22px;
  }
}
.content--small, .bottom-footer__link {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.content--small, .bottom-footer__link {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .content--small, .bottom-footer__link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .content--small, .bottom-footer__link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content--small, .bottom-footer__link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}
.content--tiny {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.content--tiny {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .content--tiny {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .content--tiny {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content--tiny {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}

.menu-link-font, .header__link, .header__sub-menu-link {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.menu-link-font, .header__link, .header__sub-menu-link {
  font-size: 14px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .menu-link-font, .header__link, .header__sub-menu-link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .menu-link-font, .header__link, .header__sub-menu-link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .menu-link-font, .header__link, .header__sub-menu-link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 18px;
  }
}
.menu-link-font--small {
  line-height: 1.3;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.menu-link-font--small {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .menu-link-font--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .menu-link-font--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .menu-link-font--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}

.error {
  font-weight: 300;
  line-height: 1.3;
  color: #cf2543;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.error {
  font-size: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .error {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 14px;
  }
}

.btn-font, .search-page__link, .mobile-menu__link, .mobile-menu__sub-menu-link, .gform_wrapper .gform_button_select_files, .btn__label,
.btn--alt__label,
.gform_button__label {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn-font, .search-page__link, .mobile-menu__link, .mobile-menu__sub-menu-link, .gform_wrapper .gform_button_select_files, .btn__label,
.btn--alt__label,
.gform_button__label {
  font-size: 14px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .btn-font, .search-page__link, .mobile-menu__link, .mobile-menu__sub-menu-link, .gform_wrapper .gform_button_select_files, .btn__label,
  .btn--alt__label,
  .gform_button__label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .btn-font, .search-page__link, .mobile-menu__link, .mobile-menu__sub-menu-link, .gform_wrapper .gform_button_select_files, .btn__label,
  .btn--alt__label,
  .gform_button__label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .btn-font, .search-page__link, .mobile-menu__link, .mobile-menu__sub-menu-link, .gform_wrapper .gform_button_select_files, .btn__label,
  .btn--alt__label,
  .gform_button__label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 18px;
  }
}
.btn-font--small, .btn--small .btn__label,
.btn--alt--small .btn__label,
.gform_button--small .btn__label {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn-font--small, .btn--small .btn__label,
.btn--alt--small .btn__label,
.gform_button--small .btn__label {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .btn-font--small, .btn--small .btn__label,
  .btn--alt--small .btn__label,
  .gform_button--small .btn__label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .btn-font--small, .btn--small .btn__label,
  .btn--alt--small .btn__label,
  .gform_button--small .btn__label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .btn-font--small, .btn--small .btn__label,
  .btn--alt--small .btn__label,
  .gform_button--small .btn__label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}

.search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
.label, .gfield + fieldset .gfield_label,
.gfield--type-name .gfield_label,
.gfield--type-consent label {
  font-family: "Geist Mono", sans-serif;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
.label, .gfield + fieldset .gfield_label,
.gfield--type-name .gfield_label,
.gfield--type-consent label {
  font-size: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
  .label, .gfield + fieldset .gfield_label,
  .gfield--type-name .gfield_label,
  .gfield--type-consent label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
  .label, .gfield + fieldset .gfield_label,
  .gfield--type-name .gfield_label,
  .gfield--type-consent label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
  .label, .gfield + fieldset .gfield_label,
  .gfield--type-name .gfield_label,
  .gfield--type-consent label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 14px;
  }
}
.search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
.label, .gfield + fieldset .gfield_label,
.gfield--type-name .gfield_label,
.gfield--type-consent label {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
.label, .gfield + fieldset .gfield_label,
.gfield--type-name .gfield_label,
.gfield--type-consent label {
  letter-spacing: 0.6px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
  .label, .gfield + fieldset .gfield_label,
  .gfield--type-name .gfield_label,
  .gfield--type-consent label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.6px + 0.0001142857 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
  .label, .gfield + fieldset .gfield_label,
  .gfield--type-name .gfield_label,
  .gfield--type-consent label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.72px + 0.0001071429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
  .label, .gfield + fieldset .gfield_label,
  .gfield--type-name .gfield_label,
  .gfield--type-consent label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: 0.84px;
  }
}
.search-form__field, .label-font, .gfield--type-choice .gfield_label_before_complex, label,
.label, .gfield + fieldset .gfield_label,
.gfield--type-name .gfield_label,
.gfield--type-consent label {
  /* stylelint-disable-next-line scss/percent-placeholder-pattern */
}
.label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
.label--small {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
.label--small {
  font-size: 8px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
  .label--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(8px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
  .label--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(10px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
  .label--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 12px;
  }
}
.label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
.label--small {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
.label--small {
  letter-spacing: 0.6px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
  .label--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.6px + 0.0001428571 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
  .label--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.75px + 0.0001339286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .label-font--small, .header__sub-menu--1 .header__item--parent > .header__sub-menu-link, label--small,
  .label--small {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: 0.9px;
  }
}

.input-font-size {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.input-font-size {
  font-size: 14px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .input-font-size {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .input-font-size {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .input-font-size {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 18px;
  }
}

.checkbox-font-size {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.checkbox-font-size {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .checkbox-font-size {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .checkbox-font-size {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .checkbox-font-size {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}

.cite {
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.3;
  font-weight: 400;
  text-transform: uppercase;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.cite {
  font-size: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .cite {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .cite {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cite {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 14px;
  }
}
.cite {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.cite {
  letter-spacing: 0.6px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .cite {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.6px + 0.0001142857 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .cite {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: calc(0.72px + 0.0001071429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cite {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    letter-spacing: 0.84px;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:not(.video):hover {
    color: #4c4b49;
  }
}
.btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
.btn--alt,
.gform_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #f7f7f2;
  outline: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 390px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-top: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-bottom: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-top: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 390px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-right: calc(12px + 0.0038095238 * (100vw - 390px));
    padding-left: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-right: calc(16px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
.btn--alt,
.gform_button {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
.btn--alt,
.gform_button {
  gap: 8px;
}
@media (min-width: 390px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 8px;
  }
}
.btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
.btn--alt,
.gform_button {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
.btn--alt,
.gform_button {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .btn, .cc_div #cm #c-bns .c-bn, .cc_div .bns-t #s-bns .c-bn,
  .btn--alt,
  .gform_button {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.btn__label,
.btn--alt__label,
.gform_button__label {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.btn__svg,
.btn--alt__svg,
.gform_button__svg {
  width: auto;
  height: 11px;
}
.btn__wrap,
.btn--alt__wrap,
.gform_button__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
}
.btn--primary, .cc_div #cm #c-bns #c-p-bn, .browser-fallback__button,
.btn--alt--primary,
.gform_button--primary {
  background-color: #4c4b49;
}
.btn--secondary, .cc_div #cm #c-bns #c-s-bn,
.btn--alt--secondary,
.gform_button--secondary {
  background-color: #7f7e7c;
}
.btn--tertiary,
.btn--alt--tertiary,
.gform_button--tertiary {
  background-color: #e2e0dd;
  color: #191818;
}
.btn--monotone, .cc_div .bns-t #s-bns #s-all-bn.c-bn,
.btn--alt--monotone,
.gform_button--monotone {
  background-color: #191818;
  color: #f7f7f2;
}
.btn--outline, .cc_div .bns-t #s-bns #s-rall-bn.c-bn, .cc_div .bns-t #s-bns #s-sv-bn.c-bn,
.btn--alt--outline,
.gform_button--outline {
  background: transparent;
  color: #191818;
  border: 1px solid rgba(25, 24, 24, 0.16);
}
.btn--link,
.btn--alt--link,
.gform_button--link {
  background-color: transparent;
  color: #191818;
  padding-left: 0;
  padding-right: 0;
}
.btn--link.btn--no-icon .btn__label,
.btn--alt--link.btn--no-icon .btn__label,
.gform_button--link.btn--no-icon .btn__label {
  text-decoration: underline;
}
.btn--circle-primary, .btn--circle-secondary,
.btn--alt--circle-primary,
.btn--alt--circle-secondary,
.gform_button--circle-primary,
.gform_button--circle-secondary {
  background-color: #191818;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn--circle-primary, .btn--circle-secondary,
.btn--alt--circle-primary,
.btn--alt--circle-secondary,
.gform_button--circle-primary,
.gform_button--circle-secondary {
  border-radius: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .btn--circle-primary, .btn--circle-secondary,
  .btn--alt--circle-primary,
  .btn--alt--circle-secondary,
  .gform_button--circle-primary,
  .gform_button--circle-secondary {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .btn--circle-primary, .btn--circle-secondary,
  .btn--alt--circle-primary,
  .btn--alt--circle-secondary,
  .gform_button--circle-primary,
  .gform_button--circle-secondary {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 24px;
  }
}
.btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
.btn--alt--circle-primary .btn__wrap,
.btn--alt--circle-secondary .btn__wrap,
.gform_button--circle-primary .btn__wrap,
.gform_button--circle-secondary .btn__wrap {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
.btn--alt--circle-primary .btn__wrap,
.btn--alt--circle-secondary .btn__wrap,
.gform_button--circle-primary .btn__wrap,
.gform_button--circle-secondary .btn__wrap {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
  .btn--alt--circle-primary .btn__wrap,
  .btn--alt--circle-secondary .btn__wrap,
  .gform_button--circle-primary .btn__wrap,
  .gform_button--circle-secondary .btn__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
  .btn--alt--circle-primary .btn__wrap,
  .btn--alt--circle-secondary .btn__wrap,
  .gform_button--circle-primary .btn__wrap,
  .gform_button--circle-secondary .btn__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
.btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
.btn--alt--circle-primary .btn__wrap,
.btn--alt--circle-secondary .btn__wrap,
.gform_button--circle-primary .btn__wrap,
.gform_button--circle-secondary .btn__wrap {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
.btn--alt--circle-primary .btn__wrap,
.btn--alt--circle-secondary .btn__wrap,
.gform_button--circle-primary .btn__wrap,
.gform_button--circle-secondary .btn__wrap {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
  .btn--alt--circle-primary .btn__wrap,
  .btn--alt--circle-secondary .btn__wrap,
  .gform_button--circle-primary .btn__wrap,
  .gform_button--circle-secondary .btn__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .btn--circle-primary .btn__wrap, .btn--circle-secondary .btn__wrap,
  .btn--alt--circle-primary .btn__wrap,
  .btn--alt--circle-secondary .btn__wrap,
  .gform_button--circle-primary .btn__wrap,
  .gform_button--circle-secondary .btn__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.btn--circle-primary .btn__svg, .btn--circle-secondary .btn__svg,
.btn--alt--circle-primary .btn__svg,
.btn--alt--circle-secondary .btn__svg,
.gform_button--circle-primary .btn__svg,
.gform_button--circle-secondary .btn__svg {
  width: 14px;
  height: 14px;
}
.btn--circle-secondary,
.btn--alt--circle-secondary,
.gform_button--circle-secondary {
  background-color: transparent;
  border: 1px solid rgba(25, 24, 24, 0.16);
}
.btn--circle-secondary .btn__svg,
.btn--alt--circle-secondary .btn__svg,
.gform_button--circle-secondary .btn__svg {
  color: #191818;
}
@media screen and (min-width: 390px) {
  .btn--small,
  .btn--alt--small,
  .gform_button--small {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .btn--small,
  .btn--alt--small,
  .gform_button--small {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .btn--small,
  .btn--alt--small,
  .gform_button--small {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .btn--small,
  .btn--alt--small,
  .gform_button--small {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .btn--small,
  .btn--alt--small,
  .gform_button--small {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.btn--small.btn--link,
.btn--alt--small.btn--link,
.gform_button--small.btn--link {
  padding-left: 0;
  padding-right: 0;
}
.btn--icon-left .btn__wrap,
.btn--alt--icon-left .btn__wrap,
.gform_button--icon-left .btn__wrap {
  order: -1;
}
.btn:disabled, .cc_div #cm #c-bns .c-bn:disabled, .cc_div .bns-t #s-bns .c-bn:disabled, .btn.disabled, .cc_div #cm #c-bns .disabled.c-bn, .cc_div .bns-t #s-bns .disabled.c-bn, .btn--disabled,
.btn--alt:disabled,
.btn--alt.disabled,
.btn--alt--disabled,
.gform_button:disabled,
.gform_button.disabled,
.gform_button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover, .cc_div #cm #c-bns #c-p-bn:hover, .browser-fallback__button:hover {
    background-color: #1f1e1c;
    color: #f7f7f2;
  }
  .btn--secondary:hover, .cc_div #cm #c-bns #c-s-bn:hover {
    background-color: #4c4c4a;
    color: #f7f7f2;
  }
  .btn--tertiary:hover {
    background-color: #cac7c2;
    color: #191818;
  }
  .btn--monotone:hover, .cc_div .bns-t #s-bns #s-all-bn.c-bn:hover {
    background-color: rgba(25, 24, 24, 0.88);
    color: #f7f7f2;
  }
  .btn--outline:hover, .cc_div .bns-t #s-bns #s-rall-bn.c-bn:hover, .cc_div .bns-t #s-bns #s-sv-bn.c-bn:hover {
    background-color: rgba(25, 24, 24, 0.88);
    border: 1px solid rgba(247, 247, 242, 0.08);
    color: #f7f7f2;
  }
  .btn--circle-primary:hover {
    background-color: rgba(25, 24, 24, 0.88);
    color: #f7f7f2;
  }
  .btn--circle-secondary:hover {
    background-color: rgba(25, 24, 24, 0.88);
    border-color: rgba(247, 247, 242, 0.08);
  }
  .btn--circle-secondary:hover .btn__svg {
    color: #f7f7f2;
  }
}
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

.progress {
  animation-name: progress;
}

.zoom {
  animation: zoom 40s infinite;
}

.image-wipe {
  position: relative;
  overflow: hidden;
}
.image-wipe::before, .image-wipe::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #191818;
  z-index: 1;
  pointer-events: none;
}
.image-wipe--white::before, .image-wipe--white::after {
  background-color: #f7f7f2;
}
.image-wipe--black::before, .image-wipe--black::after {
  background-color: #191818;
}
.image-wipe::before {
  left: -40px;
  right: calc(50% - 40px);
  opacity: 0;
}
.image-wipe::after {
  right: 0;
  left: calc(50% + 40px);
  opacity: 0;
}
.image-wipe--active {
  animation-name: fade;
  animation-duration: 2200ms;
  animation-iteration-count: 1;
}
.image-wipe--active::before {
  animation-name: wipe-left;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
}
.image-wipe--active::after {
  animation-name: wipe-right;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
}

.bg--primary-1 {
  background-color: #4c4b49;
}

.bg--primary-1-light {
  background-color: #797877;
}

.bg--primary-1-dark {
  background-color: #1f1e1c;
}

.bg--primary-2 {
  background-color: #7f7e7c;
}

.bg--primary-2-light {
  background-color: #b1b1b0;
}

.bg--primary-2-dark {
  background-color: #4c4c4a;
}

.bg--primary-3 {
  background-color: #e2e0dd;
}

.bg--primary-3-light {
  background-color: #eeeceb;
}

.bg--primary-3-dark {
  background-color: #cac7c2;
}

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

.bg--secondary-2 {
  background-color: #b7dae1;
}

.bg--secondary-3 {
  background-color: #f7dcb1;
}

.bg--secondary-4 {
  background-color: #e1dcd1;
}

.bg--secondary-5 {
  background-color: #c7e5cb;
}

.bg--secondary-6 {
  background-color: #d4caff;
}

.bg--light-100 {
  background-color: #f7f7f2;
}

.bg--light-88 {
  background-color: rgba(247, 247, 242, 0.88);
}

.bg--light-64 {
  background-color: rgba(247, 247, 242, 0.64);
}

.bg--light-48 {
  background-color: rgba(247, 247, 242, 0.48);
}

.bg--light-32 {
  background-color: rgba(247, 247, 242, 0.32);
}

.bg--light-16 {
  background-color: rgba(247, 247, 242, 0.16);
}

.bg--light-8 {
  background-color: rgba(247, 247, 242, 0.08);
}

.bg--light-4 {
  background-color: rgba(247, 247, 242, 0.04);
}

.bg--dark-100 {
  background-color: #191818;
}

.bg--dark-88 {
  background-color: rgba(25, 24, 24, 0.88);
}

.bg--dark-64 {
  background-color: rgba(25, 24, 24, 0.64);
}

.bg--dark-48 {
  background-color: rgba(25, 24, 24, 0.48);
}

.bg--dark-32 {
  background-color: rgba(25, 24, 24, 0.32);
}

.bg--dark-16 {
  background-color: rgba(25, 24, 24, 0.16);
}

.bg--dark-8 {
  background-color: rgba(25, 24, 24, 0.08);
}

.bg--dark-4 {
  background-color: rgba(25, 24, 24, 0.04);
}

.bg--success {
  background-color: #23b567;
}

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

.bg--error {
  background-color: #cf2543;
}

.text--primary-1 {
  color: #4c4b49;
}

.text--primary-1-light {
  color: #797877;
}

.text--primary-1-dark {
  color: #1f1e1c;
}

.text--primary-2 {
  color: #7f7e7c;
}

.text--primary-2-light {
  color: #b1b1b0;
}

.text--primary-2-dark {
  color: #4c4c4a;
}

.text--primary-3 {
  color: #e2e0dd;
}

.text--primary-3-light {
  color: #eeeceb;
}

.text--primary-3-dark {
  color: #cac7c2;
}

.text--secondary-1 {
  color: #eecac1;
}

.text--secondary-2 {
  color: #b7dae1;
}

.text--secondary-3 {
  color: #f7dcb1;
}

.text--secondary-4 {
  color: #e1dcd1;
}

.text--secondary-5 {
  color: #c7e5cb;
}

.text--secondary-6 {
  color: #d4caff;
}

.text--light-100 {
  color: #f7f7f2;
}

.text--light-88 {
  color: rgba(247, 247, 242, 0.88);
}

.text--light-64 {
  color: rgba(247, 247, 242, 0.64);
}

.text--light-48 {
  color: rgba(247, 247, 242, 0.48);
}

.text--light-32 {
  color: rgba(247, 247, 242, 0.32);
}

.text--light-16 {
  color: rgba(247, 247, 242, 0.16);
}

.text--light-8 {
  color: rgba(247, 247, 242, 0.08);
}

.text--light-4 {
  color: rgba(247, 247, 242, 0.04);
}

.text--dark-100 {
  color: #191818;
}

.text--dark-88 {
  color: rgba(25, 24, 24, 0.88);
}

.text--dark-64 {
  color: rgba(25, 24, 24, 0.64);
}

.text--dark-48 {
  color: rgba(25, 24, 24, 0.48);
}

.text--dark-32 {
  color: rgba(25, 24, 24, 0.32);
}

.text--dark-16 {
  color: rgba(25, 24, 24, 0.16);
}

.text--dark-8 {
  color: rgba(25, 24, 24, 0.08);
}

.text--dark-4 {
  color: rgba(25, 24, 24, 0.04);
}

.text--success {
  color: #23b567;
}

.text--warning {
  color: #d6825a;
}

.text--error {
  color: #cf2543;
}

.blur {
  background: rgba(30, 28, 27, 0.32);
  backdrop-filter: blur(8px);
}
.blur--200 {
  backdrop-filter: blur(16px);
}
.blur--300 {
  backdrop-filter: blur(24px);
}
.blur--400 {
  backdrop-filter: blur(40px);
}

.border-radius--100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.border-radius--100 {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .border-radius--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
.border-radius--200 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.border-radius--200 {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .border-radius--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .border-radius--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
.border-radius--300 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.border-radius--300 {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .border-radius--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .border-radius--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.border-radius--400 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.border-radius--400 {
  border-radius: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .border-radius--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .border-radius--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 24px;
  }
}
.border-radius--1000 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.border-radius--1000 {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .border-radius--1000 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}

.shadow {
  box-shadow: 0 4px 16px 0 rgba(25, 24, 24, 0.04);
}
.shadow--200 {
  box-shadow: 0 8px 24px 0 rgba(25, 24, 24, 0.04);
}
.shadow--300 {
  box-shadow: 0 12px 32px 0 rgba(25, 24, 24, 0.08);
}
.shadow--400 {
  box-shadow: 0 20px 48px 0 rgba(25, 24, 24, 0.08);
}

.border {
  border: 0.5px solid rgba(25, 24, 24, 0.48);
}
.border--200 {
  border: 1px solid rgba(25, 24, 24, 0.48);
}
.border--300 {
  border: 1.5px solid rgba(25, 24, 24, 0.48);
}
.border--400 {
  border: 2px solid rgba(25, 24, 24, 0.48);
}

.overlay, .hero__overlay, .cc_div #cm-ov,
.cc_div #cs-ov {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(25, 24, 24, 0.16);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.overlay--200 {
  background-color: rgba(25, 24, 24, 0.32);
}
.overlay--300 {
  background-color: rgba(25, 24, 24, 0.48);
}
.overlay--400 {
  background-color: rgba(25, 24, 24, 0.64);
}

.gradient-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 24, 24, 0) 0%, rgba(25, 24, 24, 0.64) 100%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.gradient-overlay--200 {
  background: linear-gradient(180deg, #191818 0%, rgba(25, 24, 24, 0) 100%);
}

.wrap--next-prev {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.wrap--next-prev {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .wrap--next-prev {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .wrap--next-prev {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.wrap--next-prev {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.wrap--next-prev {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .wrap--next-prev {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .wrap--next-prev {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
.wrap--center {
  display: flex;
  justify-content: center;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.5s ease-in-out;
}

body.show {
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure img {
  height: auto;
  width: 100%;
}
figure + .heading {
  margin-top: 15px;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes progress {
  0% {
    width: 0%;
  }
  75% {
    width: 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale3d(1, 1, 1);
    animation-timing-function: linear;
  }
  100% {
    transform: scale3d(1.15, 1.15, 1.15);
  }
}
@keyframes slide-in-up {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes wipe-left {
  from {
    left: -40px;
    right: calc(50% - 40px);
    opacity: 1;
  }
  to {
    left: -40px;
    right: calc(100% + 40px);
    opacity: 1;
  }
}
@keyframes wipe-right {
  from {
    right: 0;
    left: calc(50% + 40px);
    opacity: 1;
  }
  to {
    right: 0;
    left: 100%;
    opacity: 1;
  }
}
.link {
  position: relative;
}
.link__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
}

@media (hover: hover) and (pointer: fine) {
  .link {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
  }
  .link:hover {
    transform: translateY(-12px);
  }
  .link--left {
    transform: translateX(0);
  }
  .link--left:hover {
    transform: translateX(-20px);
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: auto;
          appearance: auto; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*,
*::before,
*::after,
body {
  box-sizing: border-box;
}

figure {
  margin: 0;
  font-size: 0;
}

p {
  margin: 0;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  border-right: 1px;
  border-bottom: 1px;
  border-left: 1px;
  border-style: solid;
  border-color: rgba(25, 24, 24, 0.16);
  overflow-x: auto;
  vertical-align: top;
  white-space: normal;
}
.table table th,
.table table td,
.table table tfoot {
  padding: 8px 10px;
  border-top: 1px solid rgba(25, 24, 24, 0.16);
  line-height: 1.3;
  text-align: left;
  color: rgba(25, 24, 24, 0.88);
}
.table table th {
  background-color: #4c4b49;
  color: #f7f7f2;
  font-weight: 700;
}
.table table tr:nth-child(even) td {
  background-color: rgba(247, 247, 242, 0.88);
}
.table table h1,
.table table h2,
.table table h3,
.table table h4,
.table table h5,
.table table h6 {
  margin: 0;
}

textarea {
  min-height: 161px;
}

select,
input,
textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: rgba(25, 24, 24, 0.08);
  border: 1px solid rgba(25, 24, 24, 0.08);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
select,
input,
textarea {
  border-radius: 8px;
}
@media (min-width: 390px) {
  select,
  input,
  textarea {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
@media screen and (max-width: 390px) {
  select,
  input,
  textarea {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  select,
  input,
  textarea {
    padding-top: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-bottom: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  select,
  input,
  textarea {
    padding-top: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  select,
  input,
  textarea {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 390px) {
  select,
  input,
  textarea {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  select,
  input,
  textarea {
    padding-right: calc(12px + 0.0038095238 * (100vw - 390px));
    padding-left: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  select,
  input,
  textarea {
    padding-right: calc(16px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  select,
  input,
  textarea {
    padding-right: 20px;
    padding-left: 20px;
  }
}
select::-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(25, 24, 24, 0.16);
  opacity: 1;
}
select::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(25, 24, 24, 0.16);
  opacity: 1;
}
select,
input,
textarea {
  /* stylelint-disable-next-line selector-no-vendor-prefix */
}
select::-ms-input-placeholder,
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: rgba(25, 24, 24, 0.16);
  opacity: 1;
}
select:focus,
input:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(25, 24, 24, 0.88);
}

input[type=checkbox] {
  display: inline-block;
  top: 0;
  margin-top: 0;
  padding: 0;
  aspect-ratio: 1;
  background: rgba(25, 24, 24, 0.08);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
input[type=checkbox] {
  border-radius: 8px;
}
@media (min-width: 390px) {
  input[type=checkbox] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
input[type=checkbox] {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
input[type=checkbox] {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  input[type=checkbox] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  input[type=checkbox] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
input[type=checkbox] {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
input[type=checkbox] {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  input[type=checkbox] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  input[type=checkbox] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
input[type=checkbox]:checked {
  background-image: url("/app/themes/adaptable/assets/dist/vectors/check.svg");
  background-color: rgba(25, 24, 24, 0.88);
  border-color: rgba(25, 24, 24, 0.88);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
input[type=radio] {
  display: inline-block;
  top: 0;
  margin-top: 0;
  aspect-ratio: 1;
  background: rgba(25, 24, 24, 0.08);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
input[type=radio] {
  border-radius: 999px;
}
@media (min-width: 390px) {
  input[type=radio] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
input[type=radio] {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
input[type=radio] {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  input[type=radio] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  input[type=radio] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
input[type=radio] {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
input[type=radio] {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  input[type=radio] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  input[type=radio] {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  display: block;
  background-color: #4c4b49;
}
input[type=submit] {
  background-color: #4c4b49;
}

label, .gfield + fieldset .gfield_label,
.label,
.gfield--type-name .gfield_label,
.gfield--type-consent label {
  display: block;
  color: rgba(25, 24, 24, 0.64);
  z-index: 2;
  text-align: left;
}
label--alt,
.label--alt,
.gfield--type-choice label,
.gfield--type-choice .gfield + fieldset .gfield_label,
.gfield + fieldset .gfield--type-choice .gfield_label {
  color: #191818;
}

.form--light select,
.form--light input,
.form--light textarea {
  background-color: rgba(247, 247, 242, 0.08);
}
.form--light select::-moz-placeholder, .form--light input::-moz-placeholder, .form--light textarea::-moz-placeholder {
  color: rgba(247, 247, 242, 0.16);
  opacity: 1;
}
.form--light select::placeholder,
.form--light input::placeholder,
.form--light textarea::placeholder {
  color: rgba(247, 247, 242, 0.16);
  opacity: 1;
}
.form--light select,
.form--light input,
.form--light textarea {
  /* stylelint-disable-next-line selector-no-vendor-prefix */
}
.form--light select::-ms-input-placeholder,
.form--light input::-ms-input-placeholder,
.form--light textarea::-ms-input-placeholder {
  color: rgba(247, 247, 242, 0.16);
  opacity: 1;
}
.form--light select:focus,
.form--light input:focus,
.form--light textarea:focus {
  outline: 0;
  border-color: rgba(247, 247, 242, 0.88);
}
.form--light label, .form--light .gfield + fieldset .gfield_label, .gfield + fieldset .form--light .gfield_label,
.form--light .label,
.form--light .gfield--type-name .gfield_label,
.gfield--type-name .form--light .gfield_label {
  color: rgba(247, 247, 242, 0.64);
}
.form--light label--alt,
.form--light .label--alt,
.form--light .gfield--type-choice label,
.gfield--type-choice .form--light label,
.form--light .gfield--type-choice .gfield + fieldset .gfield_label,
.gfield--type-choice .gfield + fieldset .form--light .gfield_label,
.form--light .gfield + fieldset .gfield--type-choice .gfield_label,
.gfield + fieldset .gfield--type-choice .form--light .gfield_label {
  color: #f7f7f2;
}

@media screen and (min-width: 1024px) {
  select,
  input,
  textarea {
    height: 61px;
    padding: 18px 30px;
  }
}
/* stylelint-disable selector-class-pattern */
.gform_fields {
  display: flex;
  flex-wrap: wrap;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gform_fields {
  gap: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gform_fields {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gform_fields {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_fields {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 24px;
  }
}
.gform_required_legend {
  color: #cf2543;
}

.gfield {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  max-width: 100%;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield {
  gap: 8px;
}
@media (min-width: 390px) {
  .gfield {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 8px;
  }
}
.gfield + fieldset {
  border: 0;
  padding: 0;
}
.gfield + fieldset .gfield_label {
  margin-bottom: 8px;
}
.gfield_select.is-placeholder {
  color: rgba(25, 24, 24, 0.16);
}
.gfield--type-name .ginput_container {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield--type-name .ginput_container {
  gap: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gfield--type-name .ginput_container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gfield--type-name .ginput_container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gfield--type-name .ginput_container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 24px;
  }
}
.gfield--type-name .gform-grid-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gfield--type-name .gform-grid-col label, .gfield--type-name .gform-grid-col .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-name .gform-grid-col .gfield_label {
  order: -1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield--type-name .gform-grid-col label, .gfield--type-name .gform-grid-col .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-name .gform-grid-col .gfield_label {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gfield--type-name .gform-grid-col label, .gfield--type-name .gform-grid-col .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-name .gform-grid-col .gfield_label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gfield--type-name .gform-grid-col label, .gfield--type-name .gform-grid-col .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-name .gform-grid-col .gfield_label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gfield--type-name .gform-grid-col label, .gfield--type-name .gform-grid-col .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-name .gform-grid-col .gfield_label {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}
.gfield--type-consent label, .gfield--type-consent .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-consent .gfield_label {
  font-weight: 300;
}
.gfield--type-choice .gfield_label_before_complex {
  color: rgba(25, 24, 24, 0.64);
}
.gfield--type-choice label, .gfield--type-choice .gfield + fieldset .gfield_label, .gfield + fieldset .gfield--type-choice .gfield_label {
  font-family: "Stack Sans Text", sans-serif;
  text-transform: none;
  letter-spacing: 0;
}
.gfield--type-multi_choice .gfield_radio {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield--type-multi_choice .gfield_radio {
  gap: 8px;
}
@media (min-width: 390px) {
  .gfield--type-multi_choice .gfield_radio {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 8px;
  }
}
.gfield--type-honeypot {
  opacity: 0;
  display: none;
  visibility: none;
  height: 0;
  width: 0;
}
.gfield--type-date {
  position: relative;
}
.gfield--type-date img {
  position: absolute;
  z-index: 2;
  right: 20px;
}
.gfield_radio {
  display: flex;
  flex-direction: column;
}
.gfield_required {
  color: #cf2543;
}

.gchoice {
  display: flex;
  align-items: center;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gchoice {
  gap: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gchoice {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gchoice {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gchoice {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 16px;
  }
}

.gfield_checkbox {
  display: flex;
  flex-direction: column;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gfield_checkbox {
  gap: 8px;
}
@media (min-width: 390px) {
  .gfield_checkbox {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 8px;
  }
}

.ginput_container {
  display: flex;
  align-items: center;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.ginput_container {
  gap: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .ginput_container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .ginput_container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .ginput_container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 16px;
  }
}

.gform_submission_error {
  color: #cf2543;
}
@media screen and (max-width: 390px) {
  .gform_submission_error {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .gform_submission_error {
    margin-bottom: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .gform_submission_error {
    margin-bottom: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_submission_error {
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .gfield--width-half {
    flex: 1; /* each takes half of the remaining space */
    min-width: 0;
  }
}
.gform_wrapper select::-ms-expand {
  display: none;
}
.gform_wrapper .ginput_container_select {
  position: relative;
}
.gform_wrapper .ginput_container_select::after {
  content: "";
  position: absolute;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  margin-top: -4px;
  border-right: 1px solid #191818;
  border-bottom: 1px solid #191818;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  pointer-events: none;
}
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error .gform_fileupload_multifile .gform_drop_area {
  border-color: #cf2543;
  border-style: solid;
}
.gform_wrapper .validation_message {
  display: none;
  padding: 10px 16px 0 0;
  color: #cf2543;
}
.gform_wrapper .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  margin-bottom: 0;
  border: 1px dashed rgba(25, 24, 24, 0.08);
  padding: 50px 30px 90px;
  background-color: rgba(25, 24, 24, 0.08);
  color: #191818;
  text-align: center;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gform_wrapper .gform_fileupload_multifile .gform_drop_area {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .gform_fileupload_multifile .gform_drop_area {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .gform_wrapper .gform_fileupload_multifile .gform_drop_area {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.gform_wrapper .gform_fileupload_rules,
.gform_wrapper .ginput_preview {
  color: rgba(25, 24, 24, 0.32);
}
.gform_wrapper .gform_drop_instructions {
  display: block;
  margin: 0 auto 12px;
  font-size: 16px;
  font-weight: 400;
}
.gform_wrapper .gform_button_select_files {
  display: inline-block;
  border: 2px solid #191818;
  padding: 16px 37px 18px;
  background-color: #191818;
  cursor: pointer;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 13px;
  outline: 0;
  text-align: center;
  text-decoration: none;
  color: #f7f7f2;
  transition: all 0.3s ease-in-out;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gform_wrapper .gform_button_select_files {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .gform_button_select_files {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .gform_wrapper .gform_button_select_files {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.gform_wrapper .gform_button_select_files:hover {
  background-color: #f7f7f2;
  color: #191818;
}
.gform_wrapper .ginput_preview {
  position: relative;
  margin-top: 0;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 100;
  color: rgba(25, 24, 24, 0.32);
}
@media screen and (max-width: 390px) {
  .gform_wrapper .ginput_preview + .ginput_preview {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .ginput_preview + .ginput_preview {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .gform_wrapper .ginput_preview + .ginput_preview {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_wrapper .ginput_preview + .ginput_preview {
    margin-top: 20px;
  }
}
@media screen and (max-width: 390px) {
  .gform_wrapper .ginput_preview:last-child {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .ginput_preview:last-child {
    margin-bottom: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .gform_wrapper .ginput_preview:last-child {
    margin-bottom: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_wrapper .ginput_preview:last-child {
    margin-bottom: 24px;
  }
}
.gform_wrapper .ginput_preview svg {
  position: absolute;
  top: 8px;
  left: 0;
  max-width: 14px;
  height: 10px;
  vertical-align: middle;
}
.gform_wrapper .gform_file_label,
.gform_wrapper .gform_file_name,
.gform_wrapper .gform_file_delete {
  display: inline-block;
  vertical-align: middle;
}
.gform_wrapper .gform_file_name {
  display: inline;
}
@media screen and (max-width: 390px) {
  .gform_wrapper .gform_file_name {
    margin-right: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .gform_file_name {
    margin-right: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .gform_wrapper .gform_file_name {
    margin-right: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_wrapper .gform_file_name {
    margin-right: 20px;
  }
}
@media screen and (min-width: 390px) {
  .gform_wrapper .gform_file_label {
    margin-right: 4px;
  }
}
.gform_wrapper .gform_file_delete {
  cursor: pointer;
  text-decoration: underline;
  color: rgba(25, 24, 24, 0.32);
  transition: all 0.3s ease-in-out;
}
.gform_wrapper .gform_file_delete:hover {
  color: #cf2543;
}
.gform_wrapper .ginput_container_fileupload {
  position: relative;
}
.gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
  position: relative;
  z-index: 1;
  display: none;
  transform: translateY(-62px);
  font-weight: 100;
  text-align: center;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
  font-size: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(16px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(18px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 22px;
  }
}
@media screen and (max-width: 390px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    padding-top: calc(12px + 0.0038095238 * (100vw - 390px));
    padding-bottom: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    padding-top: calc(16px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .gform_wrapper .ginput_container_fileupload .gform_fileupload_rules {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.gform_wrapper .gform_hidden,
.gform_wrapper .gf_hidden {
  display: none !important;
  max-height: 1px !important;
  overflow: hidden;
}
.gform_wrapper .screen-reader-text,
.gform_wrapper .hidden_label .gfield_label,
.gform_wrapper .hidden_sub_label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  overflow-wrap: normal !important;
  overflow: hidden;
}

.gform_confirmation_wrapper {
  line-height: 24px;
  font-weight: 100;
}

#ui-datepicker-div {
  position: absolute;
  background: #f7f7f2;
  border: 1px solid rgba(25, 24, 24, 0.16);
  box-shadow: 0 2px 8px rgba(25, 24, 24, 0.1);
  border-radius: 10px;
  width: 365px;
}
#ui-datepicker-div .ui-datepicker-header {
  background: rgba(25, 24, 24, 0.08);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(25, 24, 24, 0.16);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  order: 1;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  order: 3;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover {
  background: #4c4b49;
  color: rgba(25, 24, 24, 0.88);
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #4c4b49;
  order: 2;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title select {
  border: none;
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0;
  padding: 8px 0;
  border-radius: 3px;
  text-align: center;
  transition: box-shadow 0.2s;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(25, 24, 24, 0.2);
}
#ui-datepicker-div .ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
}
#ui-datepicker-div .ui-datepicker-calendar th {
  padding: 8px;
  text-align: center;
  background: #4c4b49;
  border-bottom: 1px solid rgba(25, 24, 24, 0.16);
  font-weight: 300;
}
#ui-datepicker-div .ui-datepicker-calendar td {
  width: 14.28%;
  text-align: center;
  padding: 8px;
  border: 1px solid transparent;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-default {
  display: block;
  padding: 6px;
  border-radius: 4px;
  color: #4c4b49;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-default:hover, #ui-datepicker-div .ui-datepicker-calendar td a.ui-state-default.ui-state-hover {
  background: #4c4b49;
  color: rgba(25, 24, 24, 0.88);
}
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-default.ui-state-highlight, #ui-datepicker-div .ui-datepicker-calendar td a.ui-state-default.ui-state-active {
  background: #4c4b49;
  color: #f7f7f2;
}
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-unselectable, #ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.block {
  background-color: transparent;
}
@media screen and (max-width: 390px) {
  .block {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block {
    margin-top: calc(64px + 0.0533333333 * (100vw - 390px));
    margin-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block {
    margin-top: calc(120px + 0.05 * (100vw - 1440px));
    margin-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block {
    margin-top: 176px;
    margin-bottom: 176px;
  }
}
.block--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.block:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 390px) {
  .block:last-of-type {
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block:last-of-type {
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block:last-of-type {
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block:last-of-type {
    padding-bottom: 176px;
  }
}

.block--primary-1 {
  background-color: #4c4b49;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-1 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-1 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-1 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-1 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-1 + .block--primary-1 {
  padding-top: 0;
}

.block--primary-1-light {
  background-color: #797877;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-1-light {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-1-light {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-1-light {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-1-light {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-1-light + .block--primary-1-light {
  padding-top: 0;
}

.block--primary-1-dark {
  background-color: #1f1e1c;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-1-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-1-dark {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-1-dark {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-1-dark {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-1-dark + .block--primary-1-dark {
  padding-top: 0;
}

.block--primary-2 {
  background-color: #7f7e7c;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-2 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-2 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-2 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-2 + .block--primary-2 {
  padding-top: 0;
}

.block--primary-2-light {
  background-color: #b1b1b0;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-2-light {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-2-light {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-2-light {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-2-light {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-2-light + .block--primary-2-light {
  padding-top: 0;
}

.block--primary-2-dark {
  background-color: #4c4c4a;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-2-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-2-dark {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-2-dark {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-2-dark {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-2-dark + .block--primary-2-dark {
  padding-top: 0;
}

.block--primary-3 {
  background-color: #e2e0dd;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-3 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-3 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-3 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-3 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-3 + .block--primary-3 {
  padding-top: 0;
}

.block--primary-3-light {
  background-color: #eeeceb;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-3-light {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-3-light {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-3-light {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-3-light {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-3-light + .block--primary-3-light {
  padding-top: 0;
}

.block--primary-3-dark {
  background-color: #cac7c2;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--primary-3-dark {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--primary-3-dark {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--primary-3-dark {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--primary-3-dark {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--primary-3-dark + .block--primary-3-dark {
  padding-top: 0;
}

.block--secondary-1 {
  background-color: #eecac1;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--secondary-1 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--secondary-1 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--secondary-1 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--secondary-1 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--secondary-1 + .block--secondary-1 {
  padding-top: 0;
}

.block--secondary-2 {
  background-color: #b7dae1;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--secondary-2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--secondary-2 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--secondary-2 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--secondary-2 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--secondary-2 + .block--secondary-2 {
  padding-top: 0;
}

.block--secondary-3 {
  background-color: #f7dcb1;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--secondary-3 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--secondary-3 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--secondary-3 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--secondary-3 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--secondary-3 + .block--secondary-3 {
  padding-top: 0;
}

.block--secondary-4 {
  background-color: #e1dcd1;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--secondary-4 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--secondary-4 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--secondary-4 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--secondary-4 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--secondary-4 + .block--secondary-4 {
  padding-top: 0;
}

.block--secondary-5 {
  background-color: #c7e5cb;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--secondary-5 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--secondary-5 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--secondary-5 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--secondary-5 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--secondary-5 + .block--secondary-5 {
  padding-top: 0;
}

.block--secondary-6 {
  background-color: #d4caff;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--secondary-6 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--secondary-6 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--secondary-6 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--secondary-6 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--secondary-6 + .block--secondary-6 {
  padding-top: 0;
}

.block--light-100 {
  background-color: #f7f7f2;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-100 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-100 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-100 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-100 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-100 + .block--light-100 {
  padding-top: 0;
}

.block--light-88 {
  background-color: rgba(247, 247, 242, 0.88);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-88 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-88 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-88 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-88 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-88 + .block--light-88 {
  padding-top: 0;
}

.block--light-64 {
  background-color: rgba(247, 247, 242, 0.64);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-64 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-64 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-64 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-64 + .block--light-64 {
  padding-top: 0;
}

.block--light-48 {
  background-color: rgba(247, 247, 242, 0.48);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-48 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-48 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-48 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-48 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-48 + .block--light-48 {
  padding-top: 0;
}

.block--light-32 {
  background-color: rgba(247, 247, 242, 0.32);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-32 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-32 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-32 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-32 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-32 + .block--light-32 {
  padding-top: 0;
}

.block--light-16 {
  background-color: rgba(247, 247, 242, 0.16);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-16 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-16 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-16 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-16 + .block--light-16 {
  padding-top: 0;
}

.block--light-8 {
  background-color: rgba(247, 247, 242, 0.08);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-8 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-8 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-8 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-8 + .block--light-8 {
  padding-top: 0;
}

.block--light-4 {
  background-color: rgba(247, 247, 242, 0.04);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--light-4 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--light-4 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--light-4 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--light-4 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--light-4 + .block--light-4 {
  padding-top: 0;
}

.block--dark-100 {
  background-color: #191818;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-100 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-100 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-100 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-100 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-100 + .block--dark-100 {
  padding-top: 0;
}

.block--dark-88 {
  background-color: rgba(25, 24, 24, 0.88);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-88 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-88 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-88 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-88 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-88 + .block--dark-88 {
  padding-top: 0;
}

.block--dark-64 {
  background-color: rgba(25, 24, 24, 0.64);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-64 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-64 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-64 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-64 + .block--dark-64 {
  padding-top: 0;
}

.block--dark-48 {
  background-color: rgba(25, 24, 24, 0.48);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-48 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-48 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-48 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-48 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-48 + .block--dark-48 {
  padding-top: 0;
}

.block--dark-32 {
  background-color: rgba(25, 24, 24, 0.32);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-32 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-32 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-32 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-32 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-32 + .block--dark-32 {
  padding-top: 0;
}

.block--dark-16 {
  background-color: rgba(25, 24, 24, 0.16);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-16 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-16 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-16 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-16 + .block--dark-16 {
  padding-top: 0;
}

.block--dark-8 {
  background-color: rgba(25, 24, 24, 0.08);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-8 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-8 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-8 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-8 + .block--dark-8 {
  padding-top: 0;
}

.block--dark-4 {
  background-color: rgba(25, 24, 24, 0.04);
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--dark-4 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--dark-4 {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--dark-4 {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--dark-4 {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--dark-4 + .block--dark-4 {
  padding-top: 0;
}

.block--success {
  background-color: #23b567;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--success {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--success {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--success {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--success {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--success + .block--success {
  padding-top: 0;
}

.block--warning {
  background-color: #d6825a;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--warning {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--warning {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--warning {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--warning {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--warning + .block--warning {
  padding-top: 0;
}

.block--error {
  background-color: #cf2543;
  margin: 0;
}
@media screen and (max-width: 390px) {
  .block--error {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .block--error {
    padding-top: calc(64px + 0.0533333333 * (100vw - 390px));
    padding-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .block--error {
    padding-top: calc(120px + 0.05 * (100vw - 1440px));
    padding-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .block--error {
    padding-top: 176px;
    padding-bottom: 176px;
  }
}
.block--error + .block--error {
  padding-top: 0;
}

.bottom-footer {
  color: #f7f7f2;
}
@media screen and (max-width: 390px) {
  .bottom-footer {
    padding-top: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .bottom-footer {
    padding-top: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .bottom-footer {
    padding-top: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .bottom-footer {
    padding-top: 56px;
  }
}
.bottom-footer__row {
  position: relative;
  align-items: center;
  z-index: 1;
}
.bottom-footer__col--left {
  margin-top: 0;
}
@media screen and (max-width: 390px) {
  .bottom-footer__col--left {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .bottom-footer__col--left {
    margin-bottom: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .bottom-footer__col--left {
    margin-bottom: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .bottom-footer__col--left {
    margin-bottom: 24px;
  }
}
.bottom-footer__backlink {
  display: inline-block;
  color: #f7f7f2;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.bottom-footer__backlink:hover {
  color: #f7f7f2;
  opacity: 0.8;
}
.bottom-footer__backlink svg {
  max-width: 94px;
  height: 12px;
}
.bottom-footer__text {
  font-family: "Geist Mono", sans-serif;
  color: rgba(247, 247, 242, 0.64);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.bottom-footer__text {
  font-size: 8px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .bottom-footer__text {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(8px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .bottom-footer__text {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(10px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .bottom-footer__text {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 12px;
  }
}
.bottom-footer__cookies {
  all: unset;
  transition: all 0.3s ease-in-out;
}
.bottom-footer__menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.bottom-footer__menu {
  gap: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .bottom-footer__menu {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .bottom-footer__menu {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .bottom-footer__menu {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 20px;
  }
}
@media screen and (max-width: 390px) {
  .bottom-footer__menu {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .bottom-footer__menu {
    padding-bottom: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .bottom-footer__menu {
    padding-bottom: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .bottom-footer__menu {
    padding-bottom: 32px;
  }
}
.bottom-footer__link {
  text-decoration: none;
  color: rgba(247, 247, 242, 0.88);
}

@media screen and (min-width: 768px) {
  .bottom-footer__col--left,
  .bottom-footer__col--right {
    margin-top: 0;
  }
  .bottom-footer__col--right {
    text-align: right;
    transition: all 0.3s ease-in-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bottom-footer__cookies:hover {
    color: #4c4b49;
    cursor: pointer;
  }
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.9276190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(1324px + 0.9178571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 2352px;
  }
}
.container--100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--100 {
  width: 316px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(316px + 0 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(316px + 0.21875 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 561px;
  }
}
.container--200 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--200 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.0742857143 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(428px + 0.2964285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 760px;
  }
}
.container--300 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--300 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.180952381 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(540px + 0.3741071429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 959px;
  }
}
.container--400 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--400 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.2876190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(652px + 0.4517857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 1158px;
  }
}
.container--500 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--500 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.3942857143 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(764px + 0.5294642857 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 1357px;
  }
}
.container--600 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--600 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.500952381 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(876px + 0.6071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 1556px;
  }
}
.container--700 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--700 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--700 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.6076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--700 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(988px + 0.7026785714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--700 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 1775px;
  }
}
.container--800 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--800 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--800 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.7142857143 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--800 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(1100px + 0.7625 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--800 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 1954px;
  }
}
.container--900 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.container--900 {
  width: 350px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .container--900 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(350px + 0.820952381 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .container--900 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(1212px + 0.8401785714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container--900 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 2153px;
  }
}

.main-footer {
  max-width: 100%;
  background-color: #191818;
  overflow: hidden;
}
@media screen and (max-width: 390px) {
  .main-footer {
    padding-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .main-footer {
    padding-top: calc(48px + 0.0304761905 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .main-footer {
    padding-top: calc(80px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .main-footer {
    padding-top: 112px;
  }
}
@media screen and (max-width: 390px) {
  .main-footer {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .main-footer {
    padding-bottom: calc(24px + 0.0342857143 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .main-footer {
    padding-bottom: calc(60px + 0.0160714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .main-footer {
    padding-bottom: 78px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 390px) {
  .row {
    margin-right: -10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row {
    margin-right: calc(-10px + -0.0046082949 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row {
    margin-right: -20px;
  }
}
@media screen and (max-width: 390px) {
  .row {
    margin-left: -10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row {
    margin-left: calc(-10px + -0.0046082949 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row {
    margin-left: -20px;
  }
}
@media screen and (max-width: 390px) {
  .row > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row > [class*=col-] {
    padding-right: calc(10px + 0.0089285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row > [class*=col-] {
    padding-right: 20px;
  }
}
@media screen and (max-width: 390px) {
  .row > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row > [class*=col-] {
    padding-left: calc(10px + 0.0089285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row > [class*=col-] {
    padding-left: 20px;
  }
}

.row-0 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 390px) {
  .row-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 390px) {
  .row-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 390px) {
  .row-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 390px) {
  .row-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 390px) {
  .row-0 .col {
    padding-right: 0px;
  }
}
@media screen and (min-width: 390px) {
  .row-0 .col {
    padding-left: 0px;
  }
}

.row-1 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 390px) {
  .row-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row-1 {
    margin-right: -18px;
  }
}
@media screen and (max-width: 390px) {
  .row-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row-1 {
    margin-left: -18px;
  }
}
@media screen and (max-width: 390px) {
  .row-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (max-width: 390px) {
  .row-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (max-width: 390px) {
  .row-1 .col {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row-1 .col {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row-1 .col {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row-1 .col {
    padding-right: 18px;
  }
}
@media screen and (max-width: 390px) {
  .row-1 .col {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row-1 .col {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row-1 .col {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row-1 .col {
    padding-left: 18px;
  }
}

.row-2 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 390px) {
  .row-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row-2 {
    margin-right: -6px;
  }
}
@media screen and (max-width: 390px) {
  .row-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row-2 {
    margin-left: -6px;
  }
}
@media screen and (max-width: 390px) {
  .row-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (max-width: 390px) {
  .row-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row-2 > [class*=col-] {
    padding-left: 6px;
  }
}
@media screen and (max-width: 390px) {
  .row-2 .col {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row-2 .col {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row-2 .col {
    padding-right: 6px;
  }
}
@media screen and (max-width: 390px) {
  .row-2 .col {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (max-width: 2560px) {
  .row-2 .col {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media (min-width: 2560px) {
  .row-2 .col {
    padding-left: 6px;
  }
}

@media screen and (min-width: 390px) and (min-width: 390px) {
  .row-xs-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) {
  .row-xs-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) {
  .row-xs-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) {
  .row-xs-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) {
  .row-sm-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) {
  .row-sm-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) {
  .row-sm-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) {
  .row-sm-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) {
  .row-md-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) {
  .row-md-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) {
  .row-md-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) {
  .row-md-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) {
  .row-lg-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) {
  .row-lg-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) {
  .row-lg-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) {
  .row-lg-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) {
  .row-xl-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) {
  .row-xl-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) {
  .row-xl-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) {
  .row-xl-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) {
  .row-xxl-0 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) {
  .row-xxl-0 {
    margin-left: 0px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) {
  .row-xxl-0 > [class*=col-] {
    padding-right: 0px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) {
  .row-xxl-0 > [class*=col-] {
    padding-left: 0px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xs-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xs-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-1 {
    margin-right: -18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xs-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xs-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-1 {
    margin-left: -18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xs-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xs-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xs-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xs-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 1440px) {
  .row-sm-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-sm-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-1 {
    margin-right: -18px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 1440px) {
  .row-sm-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-sm-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-1 {
    margin-left: -18px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 1440px) {
  .row-sm-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-sm-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 1440px) {
  .row-sm-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-sm-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 1440px) {
  .row-md-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-md-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-1 {
    margin-right: -18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 1440px) {
  .row-md-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-md-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-1 {
    margin-left: -18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 1440px) {
  .row-md-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-md-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 1440px) {
  .row-md-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-md-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .row-lg-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-lg-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-1 {
    margin-right: -18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .row-lg-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-lg-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-1 {
    margin-left: -18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .row-lg-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-lg-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .row-lg-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-lg-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xl-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xl-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-1 {
    margin-right: -18px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xl-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xl-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-1 {
    margin-left: -18px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xl-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xl-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xl-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xl-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-1 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xxl-1 {
    margin-right: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xxl-1 {
    margin-right: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-1 {
    margin-right: -18px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-1 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xxl-1 {
    margin-left: calc(-5px + -0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xxl-1 {
    margin-left: calc(-10px + -0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-1 {
    margin-left: -18px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-1 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xxl-1 > [class*=col-] {
    padding-right: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xxl-1 > [class*=col-] {
    padding-right: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-1 > [class*=col-] {
    padding-right: 18px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-1 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 1440px) {
  .row-xxl-1 > [class*=col-] {
    padding-left: calc(5px + 0.0047619048 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 1440px) and (max-width: 2560px) {
  .row-xxl-1 > [class*=col-] {
    padding-left: calc(10px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-1 > [class*=col-] {
    padding-left: 18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xs-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-2 {
    margin-right: -6px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xs-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-2 {
    margin-left: -6px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xs-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (min-width: 390px) and (max-width: 390px) {
  .row-xs-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 390px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xs-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 390px) and (min-width: 2560px) {
  .row-xs-2 > [class*=col-] {
    padding-left: 6px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 2560px) {
  .row-sm-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-2 {
    margin-right: -6px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 2560px) {
  .row-sm-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-2 {
    margin-left: -6px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 2560px) {
  .row-sm-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (min-width: 568px) and (max-width: 390px) {
  .row-sm-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 568px) and (min-width: 390px) and (max-width: 2560px) {
  .row-sm-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 568px) and (min-width: 2560px) {
  .row-sm-2 > [class*=col-] {
    padding-left: 6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 2560px) {
  .row-md-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-2 {
    margin-right: -6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 2560px) {
  .row-md-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-2 {
    margin-left: -6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 2560px) {
  .row-md-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .row-md-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 2560px) {
  .row-md-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .row-md-2 > [class*=col-] {
    padding-left: 6px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 2560px) {
  .row-lg-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-2 {
    margin-right: -6px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 2560px) {
  .row-lg-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-2 {
    margin-left: -6px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 2560px) {
  .row-lg-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .row-lg-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 2560px) {
  .row-lg-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .row-lg-2 > [class*=col-] {
    padding-left: 6px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xl-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-2 {
    margin-right: -6px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xl-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-2 {
    margin-left: -6px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xl-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 390px) {
  .row-xl-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 1440px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xl-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (min-width: 2560px) {
  .row-xl-2 > [class*=col-] {
    padding-left: 6px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-2 {
    margin-right: -5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xxl-2 {
    margin-right: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-2 {
    margin-right: -6px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-2 {
    margin-left: -5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xxl-2 {
    margin-left: calc(-5px + -0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-2 {
    margin-left: -6px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-2 > [class*=col-] {
    padding-right: 5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xxl-2 > [class*=col-] {
    padding-right: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-2 > [class*=col-] {
    padding-right: 6px;
  }
}
@media screen and (min-width: 2560px) and (max-width: 390px) {
  .row-xxl-2 > [class*=col-] {
    padding-left: 5px;
  }
}
@media screen and (min-width: 2560px) and (min-width: 390px) and (max-width: 2560px) {
  .row-xxl-2 > [class*=col-] {
    padding-left: calc(5px + 0.0004608295 * (100vw - 390px));
  }
}
@media screen and (min-width: 2560px) and (min-width: 2560px) {
  .row-xxl-2 > [class*=col-] {
    padding-left: 6px;
  }
}
.col-1 {
  flex: 0 0 8.3333%;
  min-width: 0;
  max-width: 8.3333%;
}

.col-2 {
  flex: 0 0 16.6667%;
  min-width: 0;
  max-width: 16.6667%;
}

.col-3 {
  flex: 0 0 25%;
  min-width: 0;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333%;
  min-width: 0;
  max-width: 33.3333%;
}

.col-5 {
  flex: 0 0 41.6667%;
  min-width: 0;
  max-width: 41.6667%;
}

.col-6 {
  flex: 0 0 50%;
  min-width: 0;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333%;
  min-width: 0;
  max-width: 58.3333%;
}

.col-8 {
  flex: 0 0 66.6667%;
  min-width: 0;
  max-width: 66.6667%;
}

.col-9 {
  flex: 0 0 75%;
  min-width: 0;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333%;
  min-width: 0;
  max-width: 83.3333%;
}

.col-11 {
  flex: 0 0 91.6667%;
  min-width: 0;
  max-width: 91.6667%;
}

.col-12 {
  flex: 0 0 100%;
  min-width: 0;
  max-width: 100%;
}

@media screen and (min-width: 390px) {
  .col-xs-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}
@media screen and (min-width: 390px) {
  .col-xs-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}
@media screen and (min-width: 568px) {
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}
@media screen and (min-width: 768px) {
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-1 {
    flex-basis: 8.3333%;
    max-width: 8.3333%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-2 {
    flex-basis: 16.6667%;
    max-width: 16.6667%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-5 {
    flex-basis: 41.6667%;
    max-width: 41.6667%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-7 {
    flex-basis: 58.3333%;
    max-width: 58.3333%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-8 {
    flex-basis: 66.6667%;
    max-width: 66.6667%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-10 {
    flex-basis: 83.3333%;
    max-width: 83.3333%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-11 {
    flex-basis: 91.6667%;
    max-width: 91.6667%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

@media screen and (min-width: 568px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media screen and (min-width: 2560px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
}
.header {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.header.headroom--pinned {
  transform: translateY(0);
}
.header.headroom--unpinned {
  transform: translateY(-100%);
}
.header:has(.header__item--parent:hover) + .header-overlay, .header__mobile.active + .header-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__container {
  height: 100%;
}
@media screen and (max-width: 390px) {
  .header__container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .header__container {
    padding-top: calc(16px + 0.0038095238 * (100vw - 390px));
    padding-bottom: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .header__container {
    padding-top: calc(20px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.header__row {
  align-items: center;
  height: 100%;
}
.header__row .header__col {
  padding: 0;
}
.header__col--middle {
  display: none;
  text-align: center;
}
.header__col--right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__logo-link {
  display: inline-block;
  font-size: 0;
  transition: all 0.3s ease-in-out;
}
.header__logo-link:hover {
  opacity: 0.8;
}
.header__logo {
  max-width: 60px;
  width: 100%;
  height: 20px;
}
.header__button {
  display: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.header__button {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .header__button {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
@media screen and (min-width: 390px) {
  .header__button {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .header__button {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .header__button {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .header__button {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__button {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.header__search {
  display: none;
}
.header__search svg {
  width: 14px;
  height: 14px;
}
.header__search, .header__mobile {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgba(25, 24, 24, 0.16);
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0);
  color: #191818;
  cursor: pointer;
  width: 32px;
  height: 28px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 390px) {
  .header__search, .header__mobile {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .header__search, .header__mobile {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .header__search, .header__mobile {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .header__search, .header__mobile {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__search, .header__mobile {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.header__search, .header__mobile {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.header__search, .header__mobile {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .header__search, .header__mobile {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
.header__search:hover, .header__mobile:hover {
  color: #4c4b49;
}
.header__search svg, .header__mobile svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header__icon {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.header__icon {
  width: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .header__icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .header__icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 16px;
  }
}
.header__icon {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.header__icon {
  height: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .header__icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .header__icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 16px;
  }
}
.header__icon {
  transition: all 0.3s ease-in-out;
}
.header__icon--close {
  opacity: 0;
}
.header__mobile, .header__button {
  margin-left: 8px;
}
.header__mobile.active .header__icon--open {
  opacity: 0;
}
.header__mobile.active .header__icon--close {
  opacity: 1;
}
.header__menu {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
  vertical-align: middle;
}
@media screen and (max-width: 390px) {
  .header__menu > .header__item {
    margin-right: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .header__menu > .header__item {
    margin-right: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .header__menu > .header__item {
    margin-right: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__menu > .header__item {
    margin-right: 32px;
  }
}
.header__menu > .header__item > .header__link {
  border-bottom: 1px solid transparent;
}
@media screen and (min-width: 390px) {
  .header__menu > .header__item > .header__link {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
.header__menu > .header__item:last-child {
  margin-right: 0;
}
.header__item--parent {
  cursor: pointer;
}
.header__item--parent:hover > .header__link {
  border-color: rgba(25, 24, 24, 0.16);
}
.header__item--parent:hover > .header__arrow-wrap .header__arrow {
  transform: rotate(0);
}
.header__item {
  display: inline-block;
}
.header__item--current > .header__link, .header__item--current > .header__sub-menu-link {
  color: #4c4b49;
}
.header__item > .header__sub-menu {
  background-color: #fff;
}
@media screen and (max-width: 390px) {
  .header__item > .header__sub-menu {
    padding: 80px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .header__item > .header__sub-menu {
    padding: calc(80px + 0.0380952381 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .header__item > .header__sub-menu {
    padding: calc(120px + 0.0214285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__item > .header__sub-menu {
    padding: 144px;
  }
}
.header__item:hover > .header__sub-menu {
  display: inline-block;
  opacity: 1;
  z-index: 2;
}
.header__item:hover > .header__sub-menu:has(.header__wrap--mega-menu-card) {
  display: flex;
}
.header__arrow-wrap {
  display: inline-block;
  margin-left: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  font-size: 0;
  vertical-align: middle;
}
.header__arrow {
  display: inline-block;
  max-width: 13px;
  height: 8px;
  transform: rotate(180deg);
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.header__sub-menu {
  width: 100%;
  padding-left: 0;
  list-style-type: none;
  text-align: left;
  cursor: default;
}
.header__sub-menu:has(.header__wrap--mega-menu-card) {
  gap: 20px;
  -moz-column-count: 2;
       column-count: 2;
}
.header__sub-menu--1 {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  -moz-column-count: 3;
       column-count: 3;
}
.header__sub-menu--1 .header__arrow {
  display: none;
}
.header__sub-menu--1 .header__item--parent {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.header__sub-menu--1 .header__item--parent {
  width: 316px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .header__sub-menu--1 .header__item--parent {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(316px + 0 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .header__sub-menu--1 .header__item--parent {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(316px + 0.21875 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__sub-menu--1 .header__item--parent {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 561px;
  }
}
.header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
  display: inline-block;
  line-height: 1.2;
  text-transform: uppercase;
  background-color: #f5f3f1;
}
@media screen and (max-width: 390px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    margin-bottom: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    margin-bottom: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 390px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
@media screen and (min-width: 390px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    padding-right: 8px;
    padding-left: 8px;
  }
}
.header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
  border-radius: 16px;
}
@media (min-width: 390px) {
  .header__sub-menu--1 .header__item--parent > .header__sub-menu-link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.header__sub-menu::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  height: 40px;
}
.header__sub-menu .header__item--parent:hover .header__sub-menu--2 {
  display: block;
  opacity: 1;
}
.header__sub-menu .header__item--parent:hover .header__arrow {
  transform: rotate(-90deg);
}
.header__sub-menu .header__arrow-wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.header__sub-menu .header__arrow {
  transform: rotate(90deg);
}
.header__link, .header__sub-menu-link {
  display: inline-block;
  text-decoration: none;
  color: #191818;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.header__link:hover, .header__sub-menu-link:hover {
  color: #4c4b49;
}
.header__sub-menu-link {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.header .header__sub-menu--2 {
  top: 0;
  left: 100%;
  transform: none;
}
.header .header__sub-menu--2 .header__sub-menu-link {
  padding: 0;
}
@media screen and (min-width: 390px) {
  .header .header__sub-menu--2 .header__sub-menu-link {
    padding-bottom: 4px;
  }
}
.header__wrap--links {
  display: flex;
}
.header__wrap--mega-menu-card {
  max-width: 448px;
  width: 100%;
  margin-left: auto;
}

.nav-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 448/333;
}
@media screen and (max-width: 390px) {
  .nav-card {
    padding: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .nav-card {
    padding: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .nav-card {
    padding: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .nav-card {
    padding: 20px;
  }
}
.nav-card__link {
  position: absolute;
  inset: 0;
  height: 100%;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}
.nav-card__image-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  aspect-ratio: 448/333;
}
.nav-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 24, 24, 0) 0%, rgba(25, 24, 24, 0.64) 100%);
  pointer-events: none;
}
.nav-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
}
.nav-card__heading {
  color: #f7f7f2;
}
.nav-card__button {
  z-index: 3;
  margin-top: 0 !important;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.nav-card__button {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .nav-card__button {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}

.header-overlay {
  position: fixed;
  inset: 0;
  top: -15px;
  background: rgba(25, 24, 24, 0.32);
  backdrop-filter: blur(calc(var(--200, 16px) / 2));
  width: 100vw;
  height: 120vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

.admin-bar .header {
  top: 46px;
}

body {
  padding-top: 74px;
}
body.no-scroll {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  body {
    padding-top: 122px;
  }
  .header {
    min-height: 74px;
  }
  .header__logo {
    max-width: 70px;
    height: 24px;
  }
  .header__button,
  .header__search {
    display: inline-block;
  }
  .header__search,
  .header__mobile {
    width: 40px;
    height: 34px;
  }
}
@media screen and (width >= 782px) {
  .admin-bar .header {
    top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .header__col--middle {
    display: inline-block;
  }
  .header__button {
    margin-left: 30px;
  }
  .header__mobile {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .header__button {
    margin-left: 40px;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 5;
  top: 50px;
  right: -101%;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.mobile-menu--active {
  right: 0;
}
.mobile-menu__body {
  position: relative;
  height: 100%;
  max-height: 100%;
  width: 100%;
  padding: 20px;
  font-size: 0;
  overflow: scroll;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: none;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__body::-webkit-scrollbar {
  display: none;
}
.mobile-menu__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
  background-color: #fff;
}
.mobile-menu__button {
  width: 100%;
}
.mobile-menu__sub-menu {
  height: 0;
  margin-right: -56px;
  opacity: 0;
}
.mobile-menu__menu, .mobile-menu__sub-menu {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.mobile-menu__arrow {
  position: absolute;
  top: 50%;
  right: 50%;
  max-width: 11px;
  height: 7px;
  color: #191818;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.mobile-menu__item, .mobile-menu__sub-menu-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.mobile-menu__item--parent, .mobile-menu__sub-menu-item--parent {
  cursor: pointer;
  padding-right: 56px;
}
.mobile-menu__item--active, .mobile-menu__sub-menu-item--active {
  border-bottom: 1px solid rgba(25, 24, 24, 0.16);
}
.mobile-menu__item--active > .mobile-menu__arrow-wrap .mobile-menu__arrow, .mobile-menu__sub-menu-item--active > .mobile-menu__arrow-wrap .mobile-menu__arrow {
  transform: rotate(0);
}
.mobile-menu__item--active > .mobile-menu__sub-menu, .mobile-menu__sub-menu-item--active > .mobile-menu__sub-menu {
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 390px) {
  .mobile-menu__item--active > .mobile-menu__sub-menu, .mobile-menu__sub-menu-item--active > .mobile-menu__sub-menu {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .mobile-menu__item--active > .mobile-menu__sub-menu, .mobile-menu__sub-menu-item--active > .mobile-menu__sub-menu {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .mobile-menu__item--active > .mobile-menu__sub-menu, .mobile-menu__sub-menu-item--active > .mobile-menu__sub-menu {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .mobile-menu__item--active > .mobile-menu__sub-menu, .mobile-menu__sub-menu-item--active > .mobile-menu__sub-menu {
    margin-top: 32px;
  }
}
.mobile-menu__menu {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mobile-menu__menu > .mobile-menu__item {
  padding-bottom: 20px;
  font-weight: 500;
}
.mobile-menu__menu > .mobile-menu__item--active {
  margin-bottom: 20px;
}
@media screen and (min-width: 390px) {
  .mobile-menu__sub-menu-item:not(:last-child) {
    margin-bottom: 4px;
  }
}
.mobile-menu__arrow-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}
.mobile-menu__link, .mobile-menu__sub-menu-link {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
  color: #191818;
  transition: all 0.3s ease-in-out;
}
.mobile-menu__link:hover, .mobile-menu__sub-menu-link:hover {
  color: #4c4b49;
}
.mobile-menu__wrap--mega-menu-card {
  margin-top: auto;
}

.admin-bar .mobile-menu {
  top: 106px;
}

@media screen and (min-width: 568px) {
  .mobile-menu {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .mobile-menu {
    top: 74px;
  }
}
@media screen and (max-width: 390px) {
  .container + .container {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .container + .container {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .container + .container {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container + .container {
    margin-top: 96px;
  }
}
@media screen and (max-width: 390px) {
  .container + .row {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .container + .row {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .container + .row {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .container + .row {
    margin-top: 40px;
  }
}

@media screen and (max-width: 390px) {
  .row + .row {
    margin-top: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row + .row {
    margin-top: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row + .row {
    margin-top: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row + .row {
    margin-top: 72px;
  }
}
@media screen and (max-width: 390px) {
  .row + .swiper {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .row + .swiper {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .row + .swiper {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .row + .swiper {
    margin-top: 96px;
  }
}

@media screen and (max-width: 390px) {
  .heading + .content {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .heading + .content {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .heading + .content {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .heading + .content {
    margin-top: 24px;
  }
}
@media screen and (max-width: 390px) {
  .heading + .btn {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .heading + .btn {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .heading + .btn {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .heading + .btn {
    margin-top: 32px;
  }
}
@media screen and (max-width: 390px) {
  .heading + .tags {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .heading + .tags {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .heading + .tags {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .heading + .tags {
    margin-top: 32px;
  }
}
@media screen and (max-width: 390px) {
  .heading + .wrap {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .heading + .wrap {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .heading + .wrap {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .heading + .wrap {
    margin-top: 32px;
  }
}

@media screen and (max-width: 390px) {
  .preheading + .heading {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .preheading + .heading {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .preheading + .heading {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .preheading + .heading {
    margin-top: 32px;
  }
}
@media screen and (max-width: 390px) {
  .preheading + .content {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .preheading + .content {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .preheading + .content {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .preheading + .content {
    margin-top: 24px;
  }
}

@media screen and (min-width: 390px) {
  .content + .content {
    margin-top: 8px;
  }
}
@media screen and (max-width: 390px) {
  .content + .wrap {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .content + .wrap {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .content + .wrap {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content + .wrap {
    margin-top: 32px;
  }
}
@media screen and (max-width: 390px) {
  .content + .swiper {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .content + .swiper {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .content + .swiper {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content + .swiper {
    margin-top: 96px;
  }
}
@media screen and (max-width: 390px) {
  .content + .tags {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .content + .tags {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .content + .tags {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .content + .tags {
    margin-top: 32px;
  }
}

@media screen and (max-width: 390px) {
  figure + .heading {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  figure + .heading {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  figure + .heading {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  figure + .heading {
    margin-top: 24px;
  }
}

@media screen and (max-width: 390px) {
  .wrap + .wrap {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .wrap + .wrap {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .wrap + .wrap {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .wrap + .wrap {
    margin-top: 96px;
  }
}
@media screen and (max-width: 390px) {
  .wrap + .heading {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .wrap + .heading {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .wrap + .heading {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .wrap + .heading {
    margin-top: 20px;
  }
}

.top-footer {
  color: #f7f7f2;
}
.top-footer__row {
  border-bottom: 1px solid rgba(247, 247, 242, 0.16);
}
@media screen and (max-width: 390px) {
  .top-footer__row {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .top-footer__row {
    padding-bottom: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .top-footer__row {
    padding-bottom: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .top-footer__row {
    padding-bottom: 166px;
  }
}
@media screen and (max-width: 390px) {
  .top-footer__col--top {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .top-footer__col--top {
    margin-bottom: calc(48px + 0.1866666667 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .top-footer__col--top {
    margin-bottom: calc(244px + 0.0553571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .top-footer__col--top {
    margin-bottom: 306px;
  }
}
.top-footer__wrap--active .top-footer__arrow-wrap svg {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 390px) {
  .top-footer__wrap--active + .top-footer__items {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .top-footer__wrap--active + .top-footer__items {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .top-footer__wrap--active + .top-footer__items {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .top-footer__wrap--active + .top-footer__items {
    margin-top: 24px;
  }
}
.top-footer__wrap--nav {
  position: relative;
  border-bottom: 0;
  cursor: pointer;
}
.top-footer__arrow-wrap {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.top-footer__arrow-wrap svg {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  color: rgba(247, 247, 242, 0.64);
  transition: all 0.3s ease-in-out;
}
.top-footer__logo-link {
  display: inline-block;
  font-size: 0;
  transition: all 0.3s ease-in-out;
}
.top-footer__logo-link:hover {
  opacity: 0.8;
}
.top-footer__logo {
  max-width: 60px;
  width: 100%;
  height: 20px;
  color: #fff;
}
.top-footer__heading {
  color: rgba(247, 247, 242, 0.64);
  text-align: left;
  font-weight: 500;
  background: none;
  border: 0;
  outline: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.top-footer__items {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.top-footer__menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.top-footer__menu {
  gap: 4px;
}
@media (min-width: 390px) {
  .top-footer__menu {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 4px;
  }
}
.top-footer__item {
  display: block;
  border-top: 1px solid rgba(25, 24, 24, 0.88);
}
.top-footer__link {
  display: inline-block;
  font-weight: 300;
  text-decoration: none;
  color: #f7f7f2;
  transition: all 0.3s ease-in-out;
}
.top-footer__link:hover {
  color: #e2e0dd;
}
.top-footer__socials svg {
  color: rgba(247, 247, 242, 0.64);
}
.top-footer .gfield_description {
  color: rgba(247, 247, 242, 0.64);
}
@media screen and (max-width: 390px) {
  .top-footer__col--nav + .top-footer__col--nav, .top-footer__content, .top-footer__socials, .top-footer__wrap--form, .top-footer__heading + .top-footer__content, .top-footer__heading + .top-footer__wrap, .top-footer__content + .top-footer__wrap, .top-footer__wrap + .top-footer__socials {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .top-footer__col--nav + .top-footer__col--nav, .top-footer__content, .top-footer__socials, .top-footer__wrap--form, .top-footer__heading + .top-footer__content, .top-footer__heading + .top-footer__wrap, .top-footer__content + .top-footer__wrap, .top-footer__wrap + .top-footer__socials {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .top-footer__col--nav + .top-footer__col--nav, .top-footer__content, .top-footer__socials, .top-footer__wrap--form, .top-footer__heading + .top-footer__content, .top-footer__heading + .top-footer__wrap, .top-footer__content + .top-footer__wrap, .top-footer__wrap + .top-footer__socials {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .top-footer__col--nav + .top-footer__col--nav, .top-footer__content, .top-footer__socials, .top-footer__wrap--form, .top-footer__heading + .top-footer__content, .top-footer__heading + .top-footer__wrap, .top-footer__content + .top-footer__wrap, .top-footer__wrap + .top-footer__socials {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .top-footer__logo {
    max-width: 70px;
    height: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .top-footer {
    text-align: left;
  }
  .top-footer__container {
    border-bottom: none;
  }
  .top-footer__col {
    margin-top: 0;
    margin-bottom: 0;
  }
  .top-footer__col--nav + .top-footer__col--nav {
    margin-top: 0;
  }
  .top-footer__wrap--nav {
    border: 0;
    pointer-events: none;
  }
  .top-footer__wrap--nav::after {
    content: none;
  }
  .top-footer__wrap--nav svg {
    display: none;
  }
  .top-footer__wrap--top {
    max-width: 70%;
  }
  .top-footer__heading {
    padding: 0;
  }
  .top-footer__items {
    height: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .top-footer__items {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .top-footer__items {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .top-footer__items {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .top-footer__items {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .top-footer__item {
    padding: 0;
    border: 0;
  }
  .top-footer__item:first-child {
    margin-top: 0;
  }
}
.tags {
  display: flex;
  flex-wrap: wrap;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.tags {
  gap: 8px;
}
@media (min-width: 390px) {
  .tags {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 8px;
  }
}
.tags__tag {
  position: relative;
  background-color: #f5f3f1;
  color: rgba(25, 24, 24, 0.88);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.tags__tag {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .tags__tag {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
@media screen and (min-width: 390px) {
  .tags__tag {
    padding: 8px;
  }
}

.archive-layout {
  margin-bottom: 50px;
  max-width: 100%;
  overflow: hidden;
}
.archive-layout__col {
  display: inherit;
}
.archive-layout__pagination {
  margin-top: 20px;
  text-align: center;
}
.archive-layout__links {
  align-items: center;
}
.archive-layout__link--prev {
  text-align: left;
}
.archive-layout__link--numbers {
  display: none;
}
.archive-layout__link--next {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .archive-layout {
    margin-bottom: 150px;
  }
  .archive-layout__pagination {
    margin-top: 40px;
  }
  .archive-layout__link--numbers {
    display: block;
  }
  .archive-layout__link--numbers-text {
    display: none;
  }
}
.author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.author {
  gap: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .author {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .author {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .author {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 20px;
  }
}
.author__card {
  display: flex;
  width: 100%;
  background-color: #f5f3f1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.author__card {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .author__card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .author__card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
.author__card {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.author__card {
  gap: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .author__card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .author__card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .author__card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 20px;
  }
}
@media screen and (max-width: 390px) {
  .author__card {
    padding: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .author__card {
    padding: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .author__card {
    padding: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .author__card {
    padding: 20px;
  }
}
.author__image {
  width: 48px;
  height: 48px;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.author__image {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .author__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
.author__content--author-name span {
  color: #4c4b49;
}

@media screen and (min-width: 1024px) {
  .author__card {
    width: 50%;
  }
}
.browser-fallback {
  position: fixed;
  z-index: 11;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 478px;
  min-height: 400px;
  margin-left: -239px;
  margin-top: -200px;
  padding: 20px;
  background-color: #f7f7f2;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  pointer-events: auto;
  will-change: transform;
  transition: opacity 0.3s;
}
.browser-fallback__overlay {
  position: fixed;
  z-index: 10;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 0;
  opacity: 1;
  text-align: center;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.browser-fallback__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 20px auto;
  padding: 0px;
  border-width: 4px;
  border-style: solid;
  border-color: #4c4b49;
  border-radius: 50%;
  box-sizing: content-box;
}
.browser-fallback__body, .browser-fallback__dot {
  position: absolute;
  left: 50%;
  background-color: #4c4b49;
}
.browser-fallback__body {
  top: 10px;
  width: 5px;
  height: 47px;
  margin-left: -2px;
  border-radius: 2px;
}
.browser-fallback__dot {
  bottom: -11px;
  width: 7px;
  height: 7px;
  margin-left: -4px;
  border-radius: 50%;
}

/* stylelint-disable-next-line selector-class-pattern */
.cc_div {
  font-family: "Stack Sans Text", sans-serif !important;
  color: #191818 !important;
}
@media screen and (max-width: 390px) {
  .cc_div #s-hdr {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .cc_div #s-hdr {
    padding-right: calc(16px + 0.0076190476 * (100vw - 390px));
    padding-left: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .cc_div #s-hdr {
    padding-right: calc(24px + 0.0071428571 * (100vw - 1440px));
    padding-left: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cc_div #s-hdr {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media screen and (max-width: 390px) {
  .cc_div #s-bl,
  .cc_div #s-bns {
    padding: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .cc_div #s-bl,
  .cc_div #s-bns {
    padding: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .cc_div #s-bl,
  .cc_div #s-bns {
    padding: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cc_div #s-bl,
  .cc_div #s-bns {
    padding: 32px;
  }
}
.cc_div button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cc_div button::before {
  z-index: -1;
}
.cc_div #cm,
.cc_div #s-inr {
  border-radius: 0;
}
.cc_div input[type=checkbox]:checked {
  background-size: 14px;
}
.cc_div #cm #c-bns #c-p-bn {
  border-radius: 0;
}
.cc_div #cm #c-bns #c-s-bn {
  border-radius: 0;
}
.cc_div .bns-t #s-bns {
  display: inline-flex;
  height: auto !important;
}
.cc_div .bns-t #s-bns .c-bn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: none !important;
  flex: unset;
  margin-top: 0 !important;
}
@media screen and (min-width: 390px) {
  .cc_div .bns-t #s-bns #s-rall-bn.c-bn {
    margin-left: 8px;
  }
}
.cc_div .bns-t #s-bns #s-sv-bn.c-bn {
  margin-left: auto;
}
.cc_div .bns-t .b-tg .c-tg {
  background: rgba(25, 24, 24, 0.88);
}
.cc_div .bns-t .b-tg .c-tgl:checked ~ .c-tg {
  background-color: #4c4b49;
}
.cc_div .bns-t .b-tl.exp,
.cc_div .bns-t .b-bn .b-tl:active,
.cc_div .bns-t .b-bn .b-tl:hover {
  background: rgba(247, 247, 242, 0.88) !important;
  font-family: "Stack Sans Headline", sans-serif !important;
}
.cc_div .bns-t #s-bl .c-bl {
  border: 0;
}
.cc_div .bns-t #s-bl .c-bl:hover {
  background: transparent;
}
.cc_div .bns-t #s-c-bn {
  background: transparent;
  border: 1px solid #191818;
  background-color: #f7f7f2;
}
.cc_div .bns-t #s-c-bn:hover {
  background-color: rgba(247, 247, 242, 0.88);
}
.cc_div .bns-t #s-c-bn::after,
.cc_div .bns-t #s-c-bn::before {
  top: 12px;
  left: 17px;
  z-index: 1;
}
.cc_div #cm-ov,
.cc_div #cs-ov {
  background: rgba(24, 24, 27, 0.92);
}
.cc_div [role=heading] {
  font-family: "Stack Sans Headline", sans-serif !important;
  font-size: 20px !important;
}

.download-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #f5f3f1;
}
@media screen and (max-width: 390px) {
  .download-card {
    padding: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .download-card {
    padding: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .download-card {
    padding: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .download-card {
    padding: 32px;
  }
}
.download-card {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.download-card {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .download-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
.download-card__content {
  font-weight: 500;
}

.fancybox__backdrop {
  background-color: rgba(25, 24, 24, 0.85);
}
.fancybox__slide {
  padding: 40px 30px;
}
.fancybox__carousel, .fancybox__content, .fancybox__slide {
  cursor: initial !important;
}
.fancybox__content select:focus,
.fancybox__content input:focus,
.fancybox__content textarea:focus {
  outline: none !important;
}
.fancybox__slide::before, .fancybox__slide::after {
  height: 9;
}

.carousel__button {
  background-color: #4c4b49;
  top: -20px !important;
  right: -15px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.carousel__button svg {
  width: 20px;
  height: 20px;
  color: #f7f7f2;
  filter: none;
}
.carousel__button:hover {
  background-color: #f7f7f2;
}
.carousel__button:hover svg {
  color: #191818;
}

.faq-card {
  position: relative;
  background-color: #f5f3f1;
  text-align: left;
}
@media screen and (max-width: 390px) {
  .faq-card {
    padding: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .faq-card {
    padding: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .faq-card {
    padding: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .faq-card {
    padding: 32px;
  }
}
.faq-card {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.faq-card {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .faq-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .faq-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
.faq-card__wrap--answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  will-change: height, opacity;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq-card__wrap--icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 24, 24, 0.16);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.faq-card__wrap--icon {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .faq-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
.faq-card__wrap--icon {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.faq-card__wrap--icon {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .faq-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .faq-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.faq-card__wrap--icon {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.faq-card__wrap--icon {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .faq-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .faq-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
.faq-card__wrap.open {
  opacity: 1;
}
.faq-card__svg {
  max-width: 12px;
  height: 8px;
  color: #4c4b49;
  transition: all 0.3s ease-in-out;
}
.faq-card__svg--plus {
  opacity: 1;
  display: block;
}
.faq-card__svg--minus {
  opacity: 0;
  display: none;
}
.faq-card__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: left;
  cursor: pointer;
}
.faq-card__title.open {
  padding: 0;
}
.faq-card__title.open + .faq-card__wrap {
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 390px) {
  .faq-card__title.open + .faq-card__wrap {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .faq-card__title.open + .faq-card__wrap {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .faq-card__title.open + .faq-card__wrap {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .faq-card__title.open + .faq-card__wrap {
    margin-top: 20px;
  }
}
.faq-card__title.open .faq-card__svg--plus {
  opacity: 0;
  display: none;
}
.faq-card__title.open .faq-card__svg--minus {
  opacity: 1;
  display: block;
}

.featured-card {
  position: relative;
  display: flex;
  background-color: #f5f3f1;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.featured-card {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .featured-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .featured-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
@media screen and (max-width: 390px) {
  .featured-card {
    padding: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-card {
    padding: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-card {
    padding: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-card {
    padding: 20px;
  }
}
.featured-card {
  transition: all 0.3s ease-in-out;
}
.featured-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.featured-card__figure {
  overflow: hidden;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.featured-card__figure {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .featured-card__figure {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .featured-card__figure {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.featured-card__image {
  overflow: hidden;
  height: 100%;
  aspect-ratio: 326/200;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.featured-card__wrap {
  display: flex;
  flex-direction: column;
}
.featured-card__wrap--main {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 390px) {
  .featured-card__wrap--main {
    padding: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-card__wrap--main {
    padding: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-card__wrap--main {
    padding: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-card__wrap--main {
    padding: 20px;
  }
}
.featured-card__wrap--more {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(25, 24, 24, 0.16);
}
@media screen and (max-width: 390px) {
  .featured-card__wrap--more {
    padding-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-card__wrap--more {
    padding-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-card__wrap--more {
    padding-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-card__wrap--more {
    padding-top: 32px;
  }
}
@media screen and (max-width: 390px) {
  .featured-card__wrap--more {
    margin-top: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-card__wrap--more {
    margin-top: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-card__wrap--more {
    margin-top: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-card__wrap--more {
    margin-top: 56px;
  }
}
.featured-card__wrap--labels {
  display: flex;
  flex-direction: row;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.featured-card__wrap--labels {
  gap: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .featured-card__wrap--labels {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .featured-card__wrap--labels {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-card__wrap--labels {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 32px;
  }
}
.featured-card__content--date {
  color: rgba(25, 24, 24, 0.64);
}
.featured-card__content + .featured-card__content {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .featured-card__col--image {
    order: 2;
  }
  .featured-card__image {
    aspect-ratio: 636/413;
  }
}
@media (hover: hover) and (pointer: fine) {
  .featured-card:hover .featured-card__image {
    transform: scale(1.2);
  }
}
.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: none;
  overflow-y: scroll;
  margin: 0 auto;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 935px;
  max-height: 100vh;
  box-shadow: 0 2px 4px 0 rgba(48, 49, 51, 0.1);
  background-color: #f7f7f2;
  transform: translate(-50%, -50%);
}
.form-popup--active {
  display: block;
}
.form-popup__background {
  position: fixed;
  z-index: 10;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.form-popup__background--active {
  display: block;
}
.form-popup .carousel__button {
  top: 10px !important;
  right: 10px !important;
  width: 20px;
  height: 20px;
  border-radius: 0;
  filter: none;
  background-color: rgba(0, 0, 0, 0);
}
.form-popup .carousel__button svg {
  width: 12px;
  height: 12px;
  color: #191818;
  filter: none;
  transition: all 0.3s ease-in-out;
}
.form-popup .carousel__button:hover svg {
  color: #4c4b49;
}
.form-popup__col--right {
  margin-top: 30px;
}
.form-popup__close {
  position: absolute;
  top: 10px;
  right: 30px;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  color: #191818;
  transition: all 0.3s ease-in-out;
}
.form-popup__close:hover {
  color: rgba(25, 24, 24, 0.88);
}
@media screen and (min-width: 768px) {
  .form-popup {
    position: fixed;
    z-index: 10;
    box-shadow: 0 2px 4px 0 rgba(48, 49, 51, 0.1);
    border-radius: 20px;
    margin: 0 auto;
    width: 90%;
    max-height: 100vh;
  }
  .form-popup .carousel__button {
    top: 15px !important;
    right: 15px !important;
  }
  .form-popup .carousel__button svg {
    width: 20px;
    height: 20px;
  }
  .form-popup {
    /* stylelint-disable-next-line selector-class-pattern */
  }
  .form-popup .gform_wrapper .gfield {
    margin-bottom: 10px;
  }
  .form-popup .gform_wrapper .gfield input,
  .form-popup .gform_wrapper .gfield textarea,
  .form-popup .gform_wrapper .gfield select {
    color: #191818;
  }
  .form-popup__col--right {
    margin-top: 8px;
  }
  .form-popup__content {
    max-width: 420px;
  }
}
@media screen and (min-width: 1024px) {
  .form-popup {
    padding: 40px;
  }
  .form-popup__col {
    max-width: 53%;
    flex-basis: 53%;
  }
  .form-popup__col--right {
    max-width: 47%;
    flex-basis: 47%;
  }
  .form-popup__col--full {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.hero {
  display: flex;
}
@media screen and (max-width: 390px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .hero {
    padding-top: calc(24px + 0.0342857143 * (100vw - 390px));
    padding-bottom: calc(24px + 0.0342857143 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .hero {
    padding-top: calc(60px + 0.0160714286 * (100vw - 1440px));
    padding-bottom: calc(60px + 0.0160714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .hero {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}
@media screen and (max-width: 390px) {
  .hero__col--media {
    margin-top: 40px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .hero__col--media {
    margin-top: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .hero__col--media {
    margin-top: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .hero__col--media {
    margin-top: 166px;
  }
}
.hero__wrap--buttons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 350/260;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.hero__image {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .hero__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .hero__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
.hero__wrap + .hero__wrap {
  margin-top: 32px;
}
.hero--alt {
  position: relative;
  min-height: 450px;
}
.hero--alt .hero__container {
  display: flex;
  z-index: 1;
  align-items: flex-end;
}
.hero--alt .hero__figure {
  position: absolute;
  inset: 0;
}
.hero--alt .hero__image,
.hero--alt .hero__video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0;
}
.hero--alt .hero__heading,
.hero--alt .hero__preheading {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .hero--alt {
    min-height: 530px;
  }
}
@media screen and (min-width: 1024px) {
  .hero--alt {
    min-height: 666px;
  }
  .hero__col--content {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .hero__col--media {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .hero__wrap--main {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .hero__wrap--main {
    padding-right: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .hero__wrap--main {
    padding-right: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .hero__wrap--main {
    padding-right: 166px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__figure {
    height: 100%;
  }
  .hero__image {
    aspect-ratio: 652/540;
  }
}
.image-mask {
  -webkit-mask-image: url("../dist/vectors/image-mask.svg");
          mask-image: url("../dist/vectors/image-mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.image-mask--default {
  -webkit-mask-image: url("../dist/vectors/image-mask.svg");
          mask-image: url("../dist/vectors/image-mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.image-mask--one {
  -webkit-mask-image: url("../dist/vectors/image-mask--one.svg");
          mask-image: url("../dist/vectors/image-mask--one.svg");
}
.image-mask--two {
  -webkit-mask-image: url("../dist/vectors/image-mask--two.svg");
          mask-image: url("../dist/vectors/image-mask--two.svg");
}

.media-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
}
.media-card__link {
  position: absolute;
  inset: 0;
  font-size: 0;
  z-index: 2;
}
.media-card__body {
  flex: 1 1 auto;
}
@media screen and (max-width: 390px) {
  .media-card__body {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-card__body {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-card__body {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-card__body {
    margin-top: 32px;
  }
}
.media-card__figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 315/260;
}
.media-card__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.media-card__image {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .media-card__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
.media-card__wrap {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.media-card__heading {
  color: #191818;
}
@media screen and (max-width: 390px) {
  .media-card__content {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-card__content {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-card__content {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-card__content {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .media-card--4 .media-card__figure {
    aspect-ratio: 316/300;
  }
  .media-card--3 .media-card__figure {
    aspect-ratio: 428/400;
  }
  .media-card--2 .media-card__figure {
    aspect-ratio: 652/480;
  }
}
.news-card {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.news-card__row {
  align-items: flex-start;
}
.news-card__link {
  position: absolute;
  inset: 0;
  font-size: 0;
  z-index: 2;
}
.news-card__link + .link__link--focus {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  opacity: 1;
  pointer-events: none;
  z-index: 4;
  border-radius: inherit;
}
.news-card__link:focus + .link__link--focus {
  border: 2px dashed rgba(25, 24, 24, 0.88);
}
.news-card__figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1.2;
}
.news-card__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transform: scale(1);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-card__image {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .news-card__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .news-card__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.news-card__image {
  transition: all 0.3s ease-in-out;
}
.news-card__wrap {
  display: flex;
}
.news-card__wrap--category {
  position: relative;
  justify-content: space-between;
}
.news-card__wrap--content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 390px) {
  .news-card__wrap--content {
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-card__wrap--content {
    padding-left: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-card__wrap--content {
    padding-left: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-card__wrap--content {
    padding-left: 20px;
  }
}
.news-card__heading {
  color: rgba(25, 24, 24, 0.88);
}
@media screen and (max-width: 390px) {
  .news-card__heading {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-card__heading {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-card__heading {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-card__heading {
    margin-top: 24px;
  }
}
.news-card__content--date, .news-card__content--category {
  color: rgba(25, 24, 24, 0.88);
}
.news-card__content--excerpt {
  color: rgba(25, 24, 24, 0.64);
}
@media screen and (max-width: 390px) {
  .news-card__heading + .news-card__content {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-card__heading + .news-card__content {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-card__heading + .news-card__content {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-card__heading + .news-card__content {
    margin-top: 20px;
  }
}
.news-card__content + .news-card__content {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .news-card__figure {
    max-width: 100%;
    aspect-ratio: 652/510;
    flex: 0 0 auto;
  }
  .news-card__body {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    padding: 0;
  }
  .news-card__wrap--content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .news-card__wrap--content {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .news-card__wrap--content {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .news-card__wrap--content {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .news-card__wrap--content {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .news-card__row {
    display: flex;
    flex-direction: column;
  }
  .news-card__content + .news-card__tags {
    margin-top: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .news-card__content + .news-card__tags {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .news-card__content + .news-card__tags {
    padding-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .news-card__content + .news-card__tags {
    padding-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .news-card__content + .news-card__tags {
    padding-top: 32px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-card {
    transform: translateY(0);
  }
  .news-card:hover {
    transform: translateY(-10px);
  }
}
.page-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 10px;
  text-align: left;
  overflow: hidden;
  background-color: #f5f3f1;
  text-decoration: none;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}
.page-card__figure {
  position: relative;
  display: none;
}
.page-card__image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 390px) {
  .page-card__body {
    padding: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .page-card__body {
    padding: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .page-card__body {
    padding: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .page-card__body {
    padding: 40px;
  }
}
.page-card__heading {
  color: #191818;
}
.page-card__wrap {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.page-card__wrap--icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(25, 24, 24, 0.16);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.page-card__wrap--icon {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .page-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
@media screen and (min-width: 390px) {
  .page-card__wrap--icon {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .page-card__wrap--icon {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .page-card__wrap--icon {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .page-card__wrap--icon {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .page-card__wrap--icon {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.page-card__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.page-card__svg {
  width: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .page-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .page-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 16px;
  }
}
.page-card__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.page-card__svg {
  height: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .page-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .page-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 16px;
  }
}
.page-card__content {
  display: none;
  color: rgba(25, 24, 24, 0.88);
}

@media screen and (min-width: 1024px) {
  .page-card__figure {
    display: block;
    aspect-ratio: 428/260;
  }
  .page-card__body {
    align-items: flex-start;
    flex-direction: column;
    /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
  }
  .page-card__body {
    gap: 16px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .page-card__body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .page-card__body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .page-card__body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .page-card__content {
    display: block;
  }
}
ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}
ul.page-numbers li {
  display: inline-block;
  border: 1px solid rgba(25, 24, 24, 0.16);
  background-color: transparent;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
ul.page-numbers li {
  border-radius: 999px;
}
@media (min-width: 390px) {
  ul.page-numbers li {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
ul.page-numbers li {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
ul.page-numbers li {
  font-size: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  ul.page-numbers li {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(12px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  ul.page-numbers li {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: calc(14px + 0.0017857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  ul.page-numbers li {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-size: 16px;
  }
}
@media screen and (max-width: 390px) {
  ul.page-numbers li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  ul.page-numbers li {
    padding-top: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-bottom: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  ul.page-numbers li {
    padding-top: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  ul.page-numbers li {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 390px) {
  ul.page-numbers li {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  ul.page-numbers li {
    padding-right: calc(12px + 0.0038095238 * (100vw - 390px));
    padding-left: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  ul.page-numbers li {
    padding-right: calc(16px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  ul.page-numbers li {
    padding-right: 20px;
    padding-left: 20px;
  }
}
ul.page-numbers li {
  transition: all 0.3s ease-in-out;
}
ul.page-numbers li:has(.current) {
  border: 1px solid #191818;
  background-color: #191818;
  color: #f7f7f2;
}
ul.page-numbers .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #191818;
  border-radius: 100%;
  height: 53px;
  width: 53px;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
ul.page-numbers .page-numbers:hover {
  border: 2px solid #4c4b49;
  color: #4c4b49;
}
ul.page-numbers .page-numbers.current {
  border: 2px solid #4c4b49;
  background-color: #4c4b49;
  color: #f7f7f2;
}
ul.page-numbers .page-numbers.dots {
  border: 0;
}

@media screen and (max-width: 390px) {
  .pagination {
    margin-top: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .pagination {
    margin-top: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .pagination {
    margin-top: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .pagination {
    margin-top: 72px;
  }
}
.pagination__col--numbers {
  display: none;
}
.pagination__col--numbers-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #191818;
  border-radius: 100%;
  height: 53px;
  width: 53px;
  transition: all 0.3s ease-in-out;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.pagination__button {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .pagination__button {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
@media screen and (max-width: 390px) {
  .pagination__button {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .pagination__button {
    padding-top: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-bottom: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .pagination__button {
    padding-top: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .pagination__button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 390px) {
  .pagination__button {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .pagination__button {
    padding-right: calc(12px + 0.0038095238 * (100vw - 390px));
    padding-left: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .pagination__button {
    padding-right: calc(16px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .pagination__button {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.pagination__button {
  transition: all 0.3s ease-in-out;
}
.pagination__button--next {
  margin-left: auto;
}
.pagination__button--next svg {
  width: 16px;
  transform: rotate(-90deg) translateY(2px);
}
.pagination__button--prev svg {
  width: 16px;
  transform: rotate(90deg) translateY(2px);
}
.pagination__button.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.2;
}

@media screen and (min-width: 1024px) {
  .pagination {
    padding: 100px 0;
  }
}
.popup-search {
  position: absolute;
  z-index: -1;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  padding: 20px 0;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  background-color: #f7f7f2;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.popup-search__container {
  max-width: 508px;
  margin: 0 auto;
  padding: 0 70px 0 30px;
}
.popup-search__heading {
  display: none;
  margin-bottom: 30px;
  text-align: center;
}
.popup-search--active {
  z-index: 1;
  opacity: 1;
  pointer-events: initial;
}
.popup-search__form {
  position: relative;
}
.popup-search__close {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  color: #191818;
  transform: translate(40px, -50%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.popup-search__close:hover {
  color: #4c4b49;
}
.popup-search__close svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .popup-search {
    padding: 40px 0;
  }
  .popup-search__heading {
    display: block;
  }
  .popup-search__container {
    padding: 0 54px;
  }
  .popup-search__close {
    transform: translate(34px, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .popup-search {
    padding: 40px 0 50px;
  }
}
.search-card {
  position: relative;
  display: flex;
  background-color: #f5f3f1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.search-card {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .search-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .search-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
@media screen and (max-width: 390px) {
  .search-card {
    padding: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-card {
    padding: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-card {
    padding: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-card {
    padding: 32px;
  }
}
.search-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.search-card__content--excerpt {
  color: rgba(25, 24, 24, 0.64);
}
.search-card__tag {
  background-color: #e8e4df;
}
@media screen and (max-width: 390px) {
  .search-card__content + .search-card__content {
    margin-top: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-card__content + .search-card__content {
    margin-top: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-card__content + .search-card__content {
    margin-top: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-card__content + .search-card__content {
    margin-top: 16px;
  }
}

.search-form {
  position: relative;
}
.search-form__container {
  display: block;
}
.search-form__label {
  display: none;
}
.search-form__submit {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 55px;
  font-size: 0;
  border: 0;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: rgba(25, 24, 24, 0.88);
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.search-form__submit:focus {
  outline: 0;
}
.search-form__submit:hover {
  color: #4c4b49;
}
.search-form__submit svg {
  position: absolute;
  top: 50%;
  right: 50%;
  max-width: 11px;
  height: 11px;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 390px) {
  .sitemap {
    margin-top: 26px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .sitemap {
    margin-top: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .sitemap {
    margin-top: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .sitemap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 390px) {
  .sitemap__col {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .sitemap__col {
    margin-bottom: calc(18px + 0.0133333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .sitemap__col {
    margin-bottom: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .sitemap__col {
    margin-bottom: 40px;
  }
}
.sitemap__heading--main {
  margin-top: 0;
}
@media screen and (max-width: 390px) {
  .sitemap__heading--main {
    margin-bottom: 26px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .sitemap__heading--main {
    margin-bottom: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .sitemap__heading--main {
    margin-bottom: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .sitemap__heading--main {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 390px) {
  .sitemap__ul {
    padding-left: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .sitemap__ul {
    padding-left: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .sitemap__ul {
    padding-left: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .sitemap__ul {
    padding-left: 24px;
  }
}
.sitemap__link {
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.social-links {
  gap: 24px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .social-links {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .social-links {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .social-links {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 40px;
  }
}
.social-links__social {
  display: inline-block;
  font-size: 0;
  color: #f7f7f2;
  transition: all 0.3s ease-in-out;
}
.social-links__social:hover {
  color: #e2e0dd;
}
.social-links__social svg {
  display: inline-block;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.social-links__social svg {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .social-links__social svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .social-links__social svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.social-links__social svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.social-links__social svg {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .social-links__social svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .social-links__social svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}

.tab-card__col--content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 390px) {
  .tab-card__col--content {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .tab-card__col--content {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .tab-card__col--content {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .tab-card__col--content {
    margin-top: 40px;
  }
}
.tab-card__col--media {
  order: -1;
}
.tab-card__image {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.tab-card__image {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .tab-card__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .tab-card__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .tab-card__col--content {
    margin-top: 0;
  }
  .tab-card__col--media {
    order: 2;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .tab-card__content {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .tab-card__content {
    padding-right: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .tab-card__content {
    padding-right: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .tab-card__content {
    padding-right: 166px;
  }
}
.team-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid;
  border-color: rgba(247, 247, 242, 0.88);
  background-color: #f7f7f2;
  color: #f7f7f2;
  text-align: left;
  overflow: hidden;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.team-card {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .team-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .team-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.team-card {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(25, 24, 24, 0.3);
}
.team-card__image {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-card__link {
  position: absolute;
  inset: 0;
  font-size: 0;
  z-index: 3;
}
.team-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex: 1 1 auto;
}
@media screen and (max-width: 390px) {
  .team-card__body {
    padding: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .team-card__body {
    padding: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .team-card__body {
    padding: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .team-card__body {
    padding: 40px;
  }
}
.team-card__content {
  font-weight: 300;
}
@media screen and (min-width: 390px) {
  .team-card__content + .team-card__content {
    margin-top: 4px;
  }
}
.team-card__wrap {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 390px) {
  .team-card__socials {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .team-card__socials {
    margin-top: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .team-card__socials {
    margin-top: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .team-card__socials {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .team-card--4 {
    aspect-ratio: 316/300;
  }
  .team-card--3 {
    aspect-ratio: 428/400;
  }
  .team-card--2 {
    aspect-ratio: 652/600;
  }
}
@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  .team-card:hover .team-card__overlay {
    opacity: 0.8;
  }
  .team-card:hover .team-card__wrap {
    color: #f7f7f2;
  }
  .team-card:hover .team-card__label {
    padding-right: 20px;
  }
}
.text-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
  background-color: #f5f3f1;
  text-decoration: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.text-card {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .text-card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
.text-card {
  transition: all 0.3s ease-in-out;
}
.text-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 390px) {
  .text-card__body {
    padding: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .text-card__body {
    padding: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .text-card__body {
    padding: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .text-card__body {
    padding: 40px;
  }
}
.text-card__heading {
  color: #191818;
}
.text-card__content {
  font-weight: 500;
  color: rgba(25, 24, 24, 0.88);
}
.text-card__wrap {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.text-card__wrap--icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(25, 24, 24, 0.16);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.text-card__wrap--icon {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .text-card__wrap--icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
@media screen and (min-width: 390px) {
  .text-card__wrap--icon {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .text-card__wrap--icon {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .text-card__wrap--icon {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .text-card__wrap--icon {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .text-card__wrap--icon {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.text-card__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.text-card__svg {
  width: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .text-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .text-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 16px;
  }
}
.text-card__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.text-card__svg {
  height: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .text-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .text-card__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .text-card__body {
    /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
  }
  .text-card__body {
    gap: 16px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .text-card__body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .text-card__body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .text-card__body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 32px;
  }
}
.not-found {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 390px) {
  .not-found {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .not-found {
    padding-top: calc(120px + 0.0761904762 * (100vw - 390px));
    padding-bottom: calc(120px + 0.0761904762 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .not-found {
    padding-top: calc(200px + 0.0714285714 * (100vw - 1440px));
    padding-bottom: calc(200px + 0.0714285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .not-found {
    padding-top: 280px;
    padding-bottom: 280px;
  }
}
.not-found__button {
  margin: 0 auto;
}

@media screen and (max-width: 390px) {
  .news-archive__col--card {
    margin-top: 26px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-archive__col--card {
    margin-top: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-archive__col--card {
    margin-top: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-archive__col--card {
    margin-top: 80px;
  }
}
.news-archive__col--card:nth-of-type(1) {
  margin-top: 0;
}
.news-archive__select {
  background-color: #f7f7f2;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-archive__select {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .news-archive__select {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
.news-archive__select {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-archive__select {
  width: 316px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .news-archive__select {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(316px + 0 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .news-archive__select {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(316px + 0.21875 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-archive__select {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 561px;
  }
}
@media screen and (min-width: 390px) {
  .news-archive__select {
    margin-top: 8px;
  }
}
.news-archive__wrap--select {
  flex: 1;
}
.news-archive__wrap--filters {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 390px) {
  .news-archive__wrap--filters {
    margin-top: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-archive__wrap--filters {
    margin-top: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-archive__wrap--filters {
    margin-top: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-archive__wrap--filters {
    margin-top: 72px;
  }
}
@media screen and (max-width: 390px) {
  .news-archive__wrap--filters {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-archive__wrap--filters {
    margin-bottom: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-archive__wrap--filters {
    margin-bottom: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-archive__wrap--filters {
    margin-bottom: 96px;
  }
}
@media screen and (max-width: 390px) {
  .news-archive__heading {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-archive__heading {
    margin-bottom: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-archive__heading {
    margin-bottom: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-archive__heading {
    margin-bottom: 96px;
  }
}

@media screen and (min-width: 1024px) {
  .news-archive__row--cards .news-archive__col--card:nth-of-type(1), .news-archive__row--cards .news-archive__col--card:nth-of-type(2), .news-archive__row--cards .news-archive__col--card:nth-of-type(3) {
    margin-top: 0;
  }
  .news-archive__row--cards .news-archive__wrap--select {
    flex: 1;
  }
}
@media screen and (max-width: 390px) {
  .page-template-page-search,
  .search-results {
    padding-top: 96px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .page-template-page-search,
  .search-results {
    padding-top: calc(96px + 0.060952381 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .page-template-page-search,
  .search-results {
    padding-top: calc(160px + 0.0571428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .page-template-page-search,
  .search-results {
    padding-top: 224px;
  }
}

.search-page {
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 100px;
}
.search-page__list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style-type: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.search-page__list {
  gap: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .search-page__list {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .search-page__list {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__list {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 20px;
  }
}
@media screen and (max-width: 390px) {
  .search-page__list {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__list {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__list {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__list {
    margin-top: 96px;
  }
}
.search-page__item {
  display: block;
}
.search-page__link {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  /* stylelint-disable-next-line scss/at-extend-no-missing-placeholder */
}
.search-page__none {
  color: #191818;
}
.search-page__term {
  font-weight: 700;
}
.search-page__pagination {
  text-align: center;
}
.search-page__links {
  align-items: center;
}
.search-page__page-link--prev {
  text-align: left;
}
.search-page__page-link--numbers {
  display: none;
}
.search-page__page-link--next {
  text-align: right;
}
@media screen and (max-width: 390px) {
  .search-page__form {
    margin-top: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .search-page__form {
    margin-top: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .search-page__form {
    margin-top: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .search-page__form {
    margin-top: 56px;
  }
}

@media screen and (min-width: 768px) {
  .search-page__page-link--numbers {
    display: block;
  }
}
.page-template-page-styleguide {
  background-color: #e8e4df;
}
.page-template-page-styleguide header {
  display: none;
}

@media screen and (max-width: 390px) {
  .all-faqs {
    margin-top: 96px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .all-faqs {
    margin-top: calc(96px + 0.060952381 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .all-faqs {
    margin-top: calc(160px + 0.0571428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .all-faqs {
    margin-top: 224px;
  }
}
@media screen and (max-width: 390px) {
  .all-faqs {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .all-faqs {
    margin-bottom: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .all-faqs {
    margin-bottom: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .all-faqs {
    margin-bottom: 176px;
  }
}
.all-faqs__wrap {
  margin-top: 0;
}
@media screen and (max-width: 390px) {
  .all-faqs__heading--main {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .all-faqs__heading--main {
    margin-bottom: calc(24px + 0.0342857143 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .all-faqs__heading--main {
    margin-bottom: calc(60px + 0.0160714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .all-faqs__heading--main {
    margin-bottom: 78px;
  }
}
@media screen and (max-width: 390px) {
  .all-faqs__heading--category {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .all-faqs__heading--category {
    margin-bottom: calc(18px + 0.0133333333 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .all-faqs__heading--category {
    margin-bottom: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .all-faqs__heading--category {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 390px) {
  .all-faqs__category {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .all-faqs__category {
    padding-top: calc(24px + 0.0342857143 * (100vw - 390px));
    padding-bottom: calc(24px + 0.0342857143 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .all-faqs__category {
    padding-top: calc(60px + 0.0160714286 * (100vw - 1440px));
    padding-bottom: calc(60px + 0.0160714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .all-faqs__category {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}
.all-faqs__category:last-of-type {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .all-faqs__heading {
    text-align: center;
  }
}
.breadcrumbs {
  max-width: 1230px;
  margin: 20px auto;
  padding: 0 30px;
  font-size: 0;
}
.breadcrumbs__link {
  color: #191818;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.breadcrumbs__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.breadcrumbs__item {
  display: inline-block;
  margin: 0 10px;
}
.breadcrumbs__item:first-child {
  margin-left: 0;
}
.breadcrumbs__item:last-child .breadcrumbs__link {
  font-weight: 700;
  color: #191818;
}
.breadcrumbs svg {
  display: inline-block;
  margin: 0 10px;
  max-width: 7px;
  height: 12px;
}

@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin: 40px auto;
  }
}
.cta {
  max-width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 390px) {
  .cta__col--content {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .cta__col--content {
    padding-bottom: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .cta__col--content {
    padding-bottom: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cta__col--content {
    padding-bottom: 20px;
  }
}
.cta__card {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.cta__card {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .cta__card {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
@media screen and (max-width: 390px) {
  .cta__card {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .cta__card {
    padding-top: calc(16px + 0.0076190476 * (100vw - 390px));
    padding-bottom: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .cta__card {
    padding-top: calc(24px + 0.0071428571 * (100vw - 1440px));
    padding-bottom: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cta__card {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 390px) {
  .cta__card {
    padding-left: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .cta__card {
    padding-left: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .cta__card {
    padding-left: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cta__card {
    padding-left: 24px;
  }
}
@media screen and (max-width: 390px) {
  .cta__card {
    padding-right: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .cta__card {
    padding-right: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .cta__card {
    padding-right: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .cta__card {
    padding-right: 32px;
  }
}
.cta__figure {
  min-height: 100%;
  max-width: 100%;
  aspect-ratio: 616/600;
}
.cta__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.cta__image {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .cta__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}

@media screen and (min-width: 768px) {
  .cta__col--content {
    display: flex;
    align-items: center;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .cta__card {
    padding-left: 48px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 1440px) {
  .cta__card {
    padding-left: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) and (max-width: 2560px) {
  .cta__card {
    padding-left: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .cta__card {
    padding-left: 96px;
  }
}
@media screen and (min-width: 768px) and (max-width: 390px) {
  .cta__outer {
    margin-right: 34px;
  }
}
@media screen and (min-width: 768px) and (min-width: 390px) and (max-width: 1440px) {
  .cta__outer {
    margin-right: calc(34px + 0.0438095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) and (max-width: 2560px) {
  .cta__outer {
    margin-right: calc(80px + 0.0178571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 768px) and (min-width: 2560px) {
  .cta__outer {
    margin-right: 100px;
  }
}
.download-links__row {
  padding-left: 0;
  list-style-type: none;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.download-links__row {
  gap: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .download-links__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(10px + 0.0095238095 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .download-links__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .download-links__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 36px;
  }
}
.download-links__col--card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .download-links__row {
    gap: 0;
  }
  .download-links--4 .download-links__col--card {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .download-links--4 .download-links__col--card {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .download-links--4 .download-links__col--card {
    margin-top: calc(10px + 0.0095238095 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .download-links--4 .download-links__col--card {
    margin-top: calc(20px + 0.0142857143 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .download-links--4 .download-links__col--card {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .download-links--4 .download-links__col--card:nth-child(1), .download-links--4 .download-links__col--card:nth-child(2), .download-links--4 .download-links__col--card:nth-child(3), .download-links--4 .download-links__col--card:nth-child(4) {
    margin-top: 0;
  }
}
.faqs,
.all-faqs {
  text-align: center;
}
.faqs__items,
.all-faqs__items {
  position: relative;
  display: flex;
  flex-direction: column;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.faqs__items,
.all-faqs__items {
  gap: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .faqs__items,
  .all-faqs__items {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .faqs__items,
  .all-faqs__items {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .faqs__items,
  .all-faqs__items {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 20px;
  }
}
.faqs__wrap--button,
.all-faqs__wrap--button {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 390px) {
  .featured-news__row--cards {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-news__row--cards {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-news__row--cards {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-news__row--cards {
    margin-top: 96px;
  }
}
@media screen and (max-width: 390px) {
  .featured-news__col--card {
    margin-top: 26px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-news__col--card {
    margin-top: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-news__col--card {
    margin-top: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-news__col--card {
    margin-top: 80px;
  }
}
.featured-news__col--card:first-child {
  margin-top: 0;
}
@media screen and (max-width: 390px) {
  .featured-news__col--button {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .featured-news__col--button {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .featured-news__col--button {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .featured-news__col--button {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .featured-news__col--card {
    margin-top: 0;
  }
  .featured-news__col--button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 0;
  }
}
.form {
  max-width: 100%;
  overflow: hidden;
}
.form__row {
  background-color: #f5f3f1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.form__row {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .form__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .form__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
@media screen and (max-width: 390px) {
  .form__row {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .form__row {
    padding-top: calc(48px + 0.0152380952 * (100vw - 390px));
    padding-bottom: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .form__row {
    padding-top: calc(64px + 0.0285714286 * (100vw - 1440px));
    padding-bottom: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .form__row {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media screen and (max-width: 390px) {
  .form__row {
    padding-right: 26px;
    padding-left: 26px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .form__row {
    padding-right: calc(26px + 0.0361904762 * (100vw - 390px));
    padding-left: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .form__row {
    padding-right: calc(64px + 0.0142857143 * (100vw - 1440px));
    padding-left: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .form__row {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 390px) {
  .form__col + .form__col {
    margin-top: 40px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .form__col + .form__col {
    margin-top: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .form__col + .form__col {
    margin-top: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .form__col + .form__col {
    margin-top: 166px;
  }
}

@media screen and (min-width: 1024px) {
  .form__col + .form__col {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .form__content {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .form__content {
    padding-right: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .form__content {
    padding-right: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .form__content {
    padding-right: 166px;
  }
}
@media screen and (max-width: 390px) {
  .icon-columns__col + .icon-columns__col--button {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__col + .icon-columns__col--button {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .icon-columns__col + .icon-columns__col--button {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .icon-columns__col + .icon-columns__col--button {
    margin-top: 40px;
  }
}
.icon-columns__swiper {
  overflow: visible;
}
@media screen and (max-width: 390px) {
  .icon-columns__swiper-slide {
    margin-right: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__swiper-slide {
    margin-right: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .icon-columns__swiper-slide {
    margin-right: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .icon-columns__swiper-slide {
    margin-right: 26px;
  }
}
.icon-columns__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8e4df;
  width: -moz-fit-content;
  width: fit-content;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.icon-columns__figure {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__figure {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .icon-columns__figure {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
@media screen and (max-width: 390px) {
  .icon-columns__figure {
    padding: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__figure {
    padding: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .icon-columns__figure {
    padding: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .icon-columns__figure {
    padding: 16px;
  }
}
.icon-columns__image {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.icon-columns__image {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .icon-columns__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.icon-columns__image {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.icon-columns__image {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .icon-columns__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
.icon-columns__heading {
  color: #191818;
}
.icon-columns__content {
  color: rgba(25, 24, 24, 0.88);
}
.icon-columns__content--card {
  color: rgba(25, 24, 24, 0.64);
}

@media screen and (min-width: 1024px) {
  .icon-columns__col--button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .icon-columns__swiper-wrapper {
    display: grid;
    grid-auto-flow: column; /* lay items out left-to-right */
    grid-auto-columns: 1fr;
    /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
  }
  .icon-columns__swiper-wrapper {
    gap: 12px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .icon-columns__swiper-wrapper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .icon-columns__swiper-wrapper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .icon-columns__swiper-wrapper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .icon-columns__swiper-slide {
    margin: 0;
  }
  .icon-columns--1 .icon-columns__swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-columns--4 .icon-columns__swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
  }
}
.image-gallery-video {
  position: relative;
  max-width: 100%;
  text-align: center;
}
.image-gallery-video__content {
  color: rgba(25, 24, 24, 0.88);
}
.image-gallery-video__video {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  font-size: 0;
}
.image-gallery-video__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.image-gallery-video__svg {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .image-gallery-video__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .image-gallery-video__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.image-gallery-video__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.image-gallery-video__svg {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .image-gallery-video__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .image-gallery-video__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
.image-gallery-video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%) scale(1);
  background-color: rgba(247, 247, 242, 0.04);
  border: 1px solid rgba(247, 247, 242, 0.08);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.image-gallery-video__icon {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .image-gallery-video__icon {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
@media screen and (max-width: 390px) {
  .image-gallery-video__icon {
    padding: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .image-gallery-video__icon {
    padding: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .image-gallery-video__icon {
    padding: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .image-gallery-video__icon {
    padding: 56px;
  }
}
.image-gallery-video__icon {
  transition: all 0.3s ease-in-out;
}
.image-gallery-video__image {
  width: 100%;
  aspect-ratio: 3.5/2.2;
  -o-object-fit: cover;
     object-fit: cover;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.image-gallery-video__image {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .image-gallery-video__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .image-gallery-video__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  .image-gallery-video__icon {
    top: 50%;
  }
  .image-gallery-video__image {
    aspect-ratio: 12/6.8;
  }
}
@media (hover: hover) and (pointer: fine) {
  .image-gallery-video:has(.image-gallery-video__video):hover {
    cursor: pointer;
  }
  .image-gallery-video:has(.image-gallery-video__video):hover .image-gallery-video__icon {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.logo-grid__row {
  align-items: center;
}
.logo-grid__row--carousel {
  position: relative;
}
.logo-grid__row--carousel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  background: linear-gradient(180deg, #f7f7f2 0%, rgba(247, 247, 242, 0) 100%);
  filter: blur(10px);
}
@media screen and (max-width: 390px) {
  .logo-grid__row--carousel::before {
    padding-right: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .logo-grid__row--carousel::before {
    padding-right: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .logo-grid__row--carousel::before {
    padding-right: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .logo-grid__row--carousel::before {
    padding-right: 72px;
  }
}
.logo-grid__row--carousel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(180deg, #f7f7f2 0%, rgba(247, 247, 242, 0) 100%);
  filter: blur(10px);
}
@media screen and (max-width: 390px) {
  .logo-grid__row--carousel::after {
    padding-left: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .logo-grid__row--carousel::after {
    padding-left: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .logo-grid__row--carousel::after {
    padding-left: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .logo-grid__row--carousel::after {
    padding-left: 72px;
  }
}
.logo-grid__col--logo {
  flex: 0 0 auto;
  width: auto;
}
@media screen and (max-width: 390px) {
  .logo-grid__col--logo {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .logo-grid__col--logo {
    padding-top: calc(16px + 0.0076190476 * (100vw - 390px));
    padding-bottom: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .logo-grid__col--logo {
    padding-top: calc(24px + 0.0071428571 * (100vw - 1440px));
    padding-bottom: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .logo-grid__col--logo {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.logo-grid__carousel {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  animation: logo-marquee 30s linear infinite;
  will-change: transform;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.logo-grid__carousel {
  gap: 56px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .logo-grid__carousel {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .logo-grid__carousel {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .logo-grid__carousel {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 72px;
  }
}
.logo-grid__figure {
  position: relative;
  margin: 0 auto;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .logo-grid__carousel:hover {
    animation-play-state: paused;
  }
  .logog-grid__figure--logo:hover {
    opacity: 0.7;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-grid__row {
    animation: none;
    transform: none;
  }
}
@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.media-columns__swiper {
  overflow: visible;
}
.media-columns__col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
}
.media-columns__col--button {
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 390px) {
  .media-columns__col--button {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-columns__col--button {
    margin-top: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-columns__col--button {
    margin-top: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-columns__col--button {
    margin-top: 32px;
  }
}
@media screen and (max-width: 390px) {
  .media-columns__swiper-slide {
    margin-right: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-columns__swiper-slide {
    margin-right: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-columns__swiper-slide {
    margin-right: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-columns__swiper-slide {
    margin-right: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .media-columns__col--button {
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 0;
  }
  .media-columns__swiper-wrapper {
    display: grid;
    grid-auto-flow: column; /* lay items out left-to-right */
    grid-auto-columns: 1fr;
    /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
  }
  .media-columns__swiper-wrapper {
    gap: 12px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .media-columns__swiper-wrapper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .media-columns__swiper-wrapper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .media-columns__swiper-wrapper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 26px;
  }
}
@media screen and (min-width: 1024px) {
  .media-columns__swiper-slide {
    margin: 0;
  }
  .media-columns--1 .media-columns__swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .media-columns--4 .media-columns__swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
  }
}
.media-textarea__swiper {
  overflow: hidden;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.media-textarea__swiper {
  border-radius: 8px;
}
@media (min-width: 390px) {
  .media-textarea__swiper {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 8px;
  }
}
.media-textarea__col--content {
  order: -1;
}
@media screen and (max-width: 390px) {
  .media-textarea__col--content {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-textarea__col--content {
    padding-bottom: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-textarea__col--content {
    padding-bottom: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-textarea__col--content {
    padding-bottom: 166px;
  }
}
.media-textarea__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: rgba(247, 247, 242, 0.04);
  border: 1px solid rgba(247, 247, 242, 0.08);
}
@media screen and (max-width: 390px) {
  .media-textarea__icon {
    padding: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-textarea__icon {
    padding: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-textarea__icon {
    padding: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-textarea__icon {
    padding: 56px;
  }
}
.media-textarea__icon {
  transition: all 0.3s ease-in-out;
}
.media-textarea__video {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  font-size: 0;
}
.media-textarea__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.media-textarea__wrap--faqs {
  display: flex;
  flex-direction: column;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.media-textarea__wrap--faqs {
  gap: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .media-textarea__wrap--faqs {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .media-textarea__wrap--faqs {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-textarea__wrap--faqs {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 16px;
  }
}
.media-textarea__svg {
  color: #f7f7f2;
}
@media screen and (max-width: 390px) {
  .media-textarea__content + .media-textarea__wrap {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .media-textarea__content + .media-textarea__wrap {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .media-textarea__content + .media-textarea__wrap {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .media-textarea__content + .media-textarea__wrap {
    margin-top: 96px;
  }
}

@media screen and (min-width: 1024px) {
  .media-textarea__col--content {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .media-textarea--right .media-textarea__col--content {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .media-textarea--right .media-textarea__col--content {
    padding-right: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .media-textarea--right .media-textarea__col--content {
    padding-right: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .media-textarea--right .media-textarea__col--content {
    padding-right: 166px;
  }
}
@media screen and (min-width: 1024px) {
  .media-textarea--left .media-textarea__col--content {
    order: 2;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .media-textarea--left .media-textarea__col--content {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .media-textarea--left .media-textarea__col--content {
    padding-left: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .media-textarea--left .media-textarea__col--content {
    padding-left: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .media-textarea--left .media-textarea__col--content {
    padding-left: 166px;
  }
}
@media screen and (min-width: 1024px) {
  .media-textarea__figure,
  .media-textarea__video {
    aspect-ratio: 600/652;
  }
}
@media (hover: hover) and (pointer: fine) {
  .media-textarea__figure:has(.media-textarea__video):hover {
    cursor: pointer;
  }
  .media-textarea__figure:has(.media-textarea__video):hover .media-textarea__icon {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.news-content {
  margin-right: auto;
  margin-left: auto;
}
.news-content p {
  color: rgba(25, 24, 24, 0.64);
}
.news-content p img {
  width: 100%;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-content p img {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .news-content p img {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .news-content p img {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
@media screen and (max-width: 390px) {
  .news-content h1 + h1,
  .news-content h1 + h2,
  .news-content h1 + h3,
  .news-content h1 + h4,
  .news-content h1 + h5,
  .news-content h1 + h6,
  .news-content h1 + p,
  .news-content h1 + img,
  .news-content h1 + blockquote,
  .news-content h2 + h1,
  .news-content h2 + h2,
  .news-content h2 + h3,
  .news-content h2 + h4,
  .news-content h2 + h5,
  .news-content h2 + h6,
  .news-content h2 + p,
  .news-content h2 + img,
  .news-content h2 + blockquote,
  .news-content h3 + h1,
  .news-content h3 + h2,
  .news-content h3 + h3,
  .news-content h3 + h4,
  .news-content h3 + h5,
  .news-content h3 + h6,
  .news-content h3 + p,
  .news-content h3 + img,
  .news-content h3 + blockquote,
  .news-content h4 + h1,
  .news-content h4 + h2,
  .news-content h4 + h3,
  .news-content h4 + h4,
  .news-content h4 + h5,
  .news-content h4 + h6,
  .news-content h4 + p,
  .news-content h4 + img,
  .news-content h4 + blockquote,
  .news-content h5 + h1,
  .news-content h5 + h2,
  .news-content h5 + h3,
  .news-content h5 + h4,
  .news-content h5 + h5,
  .news-content h5 + h6,
  .news-content h5 + p,
  .news-content h5 + img,
  .news-content h5 + blockquote,
  .news-content h6 + h1,
  .news-content h6 + h2,
  .news-content h6 + h3,
  .news-content h6 + h4,
  .news-content h6 + h5,
  .news-content h6 + h6,
  .news-content h6 + p,
  .news-content h6 + img,
  .news-content h6 + blockquote,
  .news-content p + h1,
  .news-content p + h2,
  .news-content p + h3,
  .news-content p + h4,
  .news-content p + h5,
  .news-content p + h6,
  .news-content p + p,
  .news-content p + img,
  .news-content p + blockquote,
  .news-content img + h1,
  .news-content img + h2,
  .news-content img + h3,
  .news-content img + h4,
  .news-content img + h5,
  .news-content img + h6,
  .news-content img + p,
  .news-content img + img,
  .news-content img + blockquote,
  .news-content blockquote + h1,
  .news-content blockquote + h2,
  .news-content blockquote + h3,
  .news-content blockquote + h4,
  .news-content blockquote + h5,
  .news-content blockquote + h6,
  .news-content blockquote + p,
  .news-content blockquote + img,
  .news-content blockquote + blockquote {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-content h1 + h1,
  .news-content h1 + h2,
  .news-content h1 + h3,
  .news-content h1 + h4,
  .news-content h1 + h5,
  .news-content h1 + h6,
  .news-content h1 + p,
  .news-content h1 + img,
  .news-content h1 + blockquote,
  .news-content h2 + h1,
  .news-content h2 + h2,
  .news-content h2 + h3,
  .news-content h2 + h4,
  .news-content h2 + h5,
  .news-content h2 + h6,
  .news-content h2 + p,
  .news-content h2 + img,
  .news-content h2 + blockquote,
  .news-content h3 + h1,
  .news-content h3 + h2,
  .news-content h3 + h3,
  .news-content h3 + h4,
  .news-content h3 + h5,
  .news-content h3 + h6,
  .news-content h3 + p,
  .news-content h3 + img,
  .news-content h3 + blockquote,
  .news-content h4 + h1,
  .news-content h4 + h2,
  .news-content h4 + h3,
  .news-content h4 + h4,
  .news-content h4 + h5,
  .news-content h4 + h6,
  .news-content h4 + p,
  .news-content h4 + img,
  .news-content h4 + blockquote,
  .news-content h5 + h1,
  .news-content h5 + h2,
  .news-content h5 + h3,
  .news-content h5 + h4,
  .news-content h5 + h5,
  .news-content h5 + h6,
  .news-content h5 + p,
  .news-content h5 + img,
  .news-content h5 + blockquote,
  .news-content h6 + h1,
  .news-content h6 + h2,
  .news-content h6 + h3,
  .news-content h6 + h4,
  .news-content h6 + h5,
  .news-content h6 + h6,
  .news-content h6 + p,
  .news-content h6 + img,
  .news-content h6 + blockquote,
  .news-content p + h1,
  .news-content p + h2,
  .news-content p + h3,
  .news-content p + h4,
  .news-content p + h5,
  .news-content p + h6,
  .news-content p + p,
  .news-content p + img,
  .news-content p + blockquote,
  .news-content img + h1,
  .news-content img + h2,
  .news-content img + h3,
  .news-content img + h4,
  .news-content img + h5,
  .news-content img + h6,
  .news-content img + p,
  .news-content img + img,
  .news-content img + blockquote,
  .news-content blockquote + h1,
  .news-content blockquote + h2,
  .news-content blockquote + h3,
  .news-content blockquote + h4,
  .news-content blockquote + h5,
  .news-content blockquote + h6,
  .news-content blockquote + p,
  .news-content blockquote + img,
  .news-content blockquote + blockquote {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-content h1 + h1,
  .news-content h1 + h2,
  .news-content h1 + h3,
  .news-content h1 + h4,
  .news-content h1 + h5,
  .news-content h1 + h6,
  .news-content h1 + p,
  .news-content h1 + img,
  .news-content h1 + blockquote,
  .news-content h2 + h1,
  .news-content h2 + h2,
  .news-content h2 + h3,
  .news-content h2 + h4,
  .news-content h2 + h5,
  .news-content h2 + h6,
  .news-content h2 + p,
  .news-content h2 + img,
  .news-content h2 + blockquote,
  .news-content h3 + h1,
  .news-content h3 + h2,
  .news-content h3 + h3,
  .news-content h3 + h4,
  .news-content h3 + h5,
  .news-content h3 + h6,
  .news-content h3 + p,
  .news-content h3 + img,
  .news-content h3 + blockquote,
  .news-content h4 + h1,
  .news-content h4 + h2,
  .news-content h4 + h3,
  .news-content h4 + h4,
  .news-content h4 + h5,
  .news-content h4 + h6,
  .news-content h4 + p,
  .news-content h4 + img,
  .news-content h4 + blockquote,
  .news-content h5 + h1,
  .news-content h5 + h2,
  .news-content h5 + h3,
  .news-content h5 + h4,
  .news-content h5 + h5,
  .news-content h5 + h6,
  .news-content h5 + p,
  .news-content h5 + img,
  .news-content h5 + blockquote,
  .news-content h6 + h1,
  .news-content h6 + h2,
  .news-content h6 + h3,
  .news-content h6 + h4,
  .news-content h6 + h5,
  .news-content h6 + h6,
  .news-content h6 + p,
  .news-content h6 + img,
  .news-content h6 + blockquote,
  .news-content p + h1,
  .news-content p + h2,
  .news-content p + h3,
  .news-content p + h4,
  .news-content p + h5,
  .news-content p + h6,
  .news-content p + p,
  .news-content p + img,
  .news-content p + blockquote,
  .news-content img + h1,
  .news-content img + h2,
  .news-content img + h3,
  .news-content img + h4,
  .news-content img + h5,
  .news-content img + h6,
  .news-content img + p,
  .news-content img + img,
  .news-content img + blockquote,
  .news-content blockquote + h1,
  .news-content blockquote + h2,
  .news-content blockquote + h3,
  .news-content blockquote + h4,
  .news-content blockquote + h5,
  .news-content blockquote + h6,
  .news-content blockquote + p,
  .news-content blockquote + img,
  .news-content blockquote + blockquote {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-content h1 + h1,
  .news-content h1 + h2,
  .news-content h1 + h3,
  .news-content h1 + h4,
  .news-content h1 + h5,
  .news-content h1 + h6,
  .news-content h1 + p,
  .news-content h1 + img,
  .news-content h1 + blockquote,
  .news-content h2 + h1,
  .news-content h2 + h2,
  .news-content h2 + h3,
  .news-content h2 + h4,
  .news-content h2 + h5,
  .news-content h2 + h6,
  .news-content h2 + p,
  .news-content h2 + img,
  .news-content h2 + blockquote,
  .news-content h3 + h1,
  .news-content h3 + h2,
  .news-content h3 + h3,
  .news-content h3 + h4,
  .news-content h3 + h5,
  .news-content h3 + h6,
  .news-content h3 + p,
  .news-content h3 + img,
  .news-content h3 + blockquote,
  .news-content h4 + h1,
  .news-content h4 + h2,
  .news-content h4 + h3,
  .news-content h4 + h4,
  .news-content h4 + h5,
  .news-content h4 + h6,
  .news-content h4 + p,
  .news-content h4 + img,
  .news-content h4 + blockquote,
  .news-content h5 + h1,
  .news-content h5 + h2,
  .news-content h5 + h3,
  .news-content h5 + h4,
  .news-content h5 + h5,
  .news-content h5 + h6,
  .news-content h5 + p,
  .news-content h5 + img,
  .news-content h5 + blockquote,
  .news-content h6 + h1,
  .news-content h6 + h2,
  .news-content h6 + h3,
  .news-content h6 + h4,
  .news-content h6 + h5,
  .news-content h6 + h6,
  .news-content h6 + p,
  .news-content h6 + img,
  .news-content h6 + blockquote,
  .news-content p + h1,
  .news-content p + h2,
  .news-content p + h3,
  .news-content p + h4,
  .news-content p + h5,
  .news-content p + h6,
  .news-content p + p,
  .news-content p + img,
  .news-content p + blockquote,
  .news-content img + h1,
  .news-content img + h2,
  .news-content img + h3,
  .news-content img + h4,
  .news-content img + h5,
  .news-content img + h6,
  .news-content img + p,
  .news-content img + img,
  .news-content img + blockquote,
  .news-content blockquote + h1,
  .news-content blockquote + h2,
  .news-content blockquote + h3,
  .news-content blockquote + h4,
  .news-content blockquote + h5,
  .news-content blockquote + h6,
  .news-content blockquote + p,
  .news-content blockquote + img,
  .news-content blockquote + blockquote {
    margin-top: 96px;
  }
}
.news-content__share {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 390px) {
  .news-content__share {
    margin-top: 56px;
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-content__share {
    margin-top: calc(56px + 0.0228571429 * (100vw - 390px));
    margin-bottom: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-content__share {
    margin-top: calc(80px + -0.0071428571 * (100vw - 1440px));
    margin-bottom: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-content__share {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.news-content__socials {
  display: flex;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-content__socials {
  gap: 24px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .news-content__socials {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .news-content__socials {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-content__socials {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 40px;
  }
}
.news-content__social {
  display: flex;
  width: 18px;
  height: auto;
}

.news-hero {
  position: relative;
  max-width: 100%;
  margin-top: 0;
}
.news-hero__container {
  position: relative;
  z-index: 1;
}
.news-hero__row + .news-hero__button {
  margin-top: 40px;
}
.news-hero__figure {
  inset: 0;
  aspect-ratio: 1100/612;
}
.news-hero__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-hero__image {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .news-hero__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .news-hero__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
.news-hero__wrap {
  position: relative;
  z-index: 2;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.news-hero__wrap {
  gap: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .news-hero__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .news-hero__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-hero__wrap {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 32px;
  }
}
.news-hero__wrap--tags {
  display: flex;
}
.news-hero__content {
  text-transform: uppercase;
}
.news-hero__content--category {
  color: rgba(25, 24, 24, 0.88);
}
.news-hero__content--date {
  color: rgba(25, 24, 24, 0.64);
}
.news-hero__content + .news-hero__content {
  margin-top: 0;
}
@media screen and (max-width: 390px) {
  .news-hero__container + .news-hero__container {
    margin-top: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .news-hero__container + .news-hero__container {
    margin-top: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .news-hero__container + .news-hero__container {
    margin-top: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .news-hero__container + .news-hero__container {
    margin-top: 72px;
  }
}

.text-page-cards__row {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.text-page-cards__row {
  gap: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .text-page-cards__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .text-page-cards__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .text-page-cards__row {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .text-page-cards__row {
    gap: 0;
  }
  .text-page-cards--4 .text-page-cards__col--card {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .text-page-cards--4 .text-page-cards__col--card {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .text-page-cards--4 .text-page-cards__col--card {
    margin-top: calc(10px + 0.0095238095 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .text-page-cards--4 .text-page-cards__col--card {
    margin-top: calc(20px + 0.0142857143 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .text-page-cards--4 .text-page-cards__col--card {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .text-page-cards--4 .text-page-cards__col--card:nth-child(1), .text-page-cards--4 .text-page-cards__col--card:nth-child(2), .text-page-cards--4 .text-page-cards__col--card:nth-child(3), .text-page-cards--4 .text-page-cards__col--card:nth-child(4) {
    margin-top: 0;
  }
}
.page-cards__col {
  display: inherit;
}
@media screen and (max-width: 390px) {
  .page-cards__col {
    margin-top: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .page-cards__col {
    margin-top: calc(10px + 0.0095238095 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .page-cards__col {
    margin-top: calc(20px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .page-cards__col {
    margin-top: 36px;
  }
}
.page-cards__col--content {
  flex-direction: column;
}
@media screen and (max-width: 390px) {
  .page-cards__col--button {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .page-cards__col--button {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .page-cards__col--button {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .page-cards__col--button {
    margin-top: 40px;
  }
}
.page-cards__col:first-child {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .page-cards__col {
    margin-top: 0;
  }
  .page-cards__col--button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .page-cards--1 .page-cards__col--card {
    flex-basis: 50%;
    max-width: 50%;
  }
  .page-cards--4 .page-cards__col--card {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .page-cards--4 .page-cards__col--card {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .page-cards--4 .page-cards__col--card {
    margin-top: calc(10px + 0.0095238095 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .page-cards--4 .page-cards__col--card {
    margin-top: calc(20px + 0.0142857143 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .page-cards--4 .page-cards__col--card {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .page-cards--4 .page-cards__col--card:nth-child(1), .page-cards--4 .page-cards__col--card:nth-child(2), .page-cards--4 .page-cards__col--card:nth-child(3), .page-cards--4 .page-cards__col--card:nth-child(4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 390px) {
  .stats-columns__row--stats {
    margin-top: 56px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .stats-columns__row--stats {
    margin-top: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .stats-columns__row--stats {
    margin-top: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .stats-columns__row--stats {
    margin-top: 72px;
  }
}
@media screen and (max-width: 390px) {
  .stats-columns__col {
    margin-top: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .stats-columns__col {
    margin-top: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .stats-columns__col {
    margin-top: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .stats-columns__col {
    margin-top: 56px;
  }
}
.stats-columns__col:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 390px) {
  .stats-columns__heading + .stats-columns__content {
    margin-top: 16px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .stats-columns__heading + .stats-columns__content {
    margin-top: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .stats-columns__heading + .stats-columns__content {
    margin-top: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .stats-columns__heading + .stats-columns__content {
    margin-top: 24px;
  }
}
.stats-columns__content {
  color: rgba(25, 24, 24, 0.88);
}

@media screen and (min-width: 1024px) {
  .stats-columns__col {
    margin-top: 0;
  }
  .stats-columns--1 .stats-columns__col--card {
    flex-basis: 50%;
    max-width: 50%;
  }
  .stats-columns--4 .stats-columns__col--card {
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 390px) {
  .stats-columns--4 .stats-columns__col--card {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 390px) and (max-width: 1440px) {
  .stats-columns--4 .stats-columns__col--card {
    margin-top: calc(10px + 0.0095238095 * (100vw - 390px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) and (max-width: 2560px) {
  .stats-columns--4 .stats-columns__col--card {
    margin-top: calc(20px + 0.0142857143 * (100vw - 1440px));
  }
}
@media screen and (min-width: 1024px) and (min-width: 2560px) {
  .stats-columns--4 .stats-columns__col--card {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .stats-columns--4 .stats-columns__col--card:nth-child(1), .stats-columns--4 .stats-columns__col--card:nth-child(2), .stats-columns--4 .stats-columns__col--card:nth-child(3), .stats-columns--4 .stats-columns__col--card:nth-child(4) {
    margin-top: 0;
  }
}
.styleguide__swatch--primary-1 .styleguide__label--hex:before {
  content: "#4c4b49";
}
.styleguide__swatch--primary-1-light .styleguide__label--hex:before {
  content: "#797877";
}
.styleguide__swatch--primary-1-dark .styleguide__label--hex:before {
  content: "#1f1e1c";
}
.styleguide__swatch--primary-2 .styleguide__label--hex:before {
  content: "#7f7e7c";
}
.styleguide__swatch--primary-2-light .styleguide__label--hex:before {
  content: "#b1b1b0";
}
.styleguide__swatch--primary-2-dark .styleguide__label--hex:before {
  content: "#4c4c4a";
}
.styleguide__swatch--primary-3 .styleguide__label--hex:before {
  content: "#e2e0dd";
}
.styleguide__swatch--primary-3-light .styleguide__label--hex:before {
  content: "#eeeceb";
}
.styleguide__swatch--primary-3-dark .styleguide__label--hex:before {
  content: "#cac7c2";
}
.styleguide__swatch--secondary-1 .styleguide__label--hex:before {
  content: "#eecac1";
}
.styleguide__swatch--secondary-2 .styleguide__label--hex:before {
  content: "#b7dae1";
}
.styleguide__swatch--secondary-3 .styleguide__label--hex:before {
  content: "#f7dcb1";
}
.styleguide__swatch--secondary-4 .styleguide__label--hex:before {
  content: "#e1dcd1";
}
.styleguide__swatch--secondary-5 .styleguide__label--hex:before {
  content: "#c7e5cb";
}
.styleguide__swatch--secondary-6 .styleguide__label--hex:before {
  content: "#d4caff";
}
.styleguide__swatch--light-100 .styleguide__label--hex:before {
  content: "#f7f7f2";
}
.styleguide__swatch--light-88 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.88)";
}
.styleguide__swatch--light-64 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.64)";
}
.styleguide__swatch--light-48 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.48)";
}
.styleguide__swatch--light-32 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.32)";
}
.styleguide__swatch--light-16 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.16)";
}
.styleguide__swatch--light-8 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.08)";
}
.styleguide__swatch--light-4 .styleguide__label--hex:before {
  content: "rgba(247, 247, 242, 0.04)";
}
.styleguide__swatch--dark-100 .styleguide__label--hex:before {
  content: "#191818";
}
.styleguide__swatch--dark-88 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.88)";
}
.styleguide__swatch--dark-64 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.64)";
}
.styleguide__swatch--dark-48 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.48)";
}
.styleguide__swatch--dark-32 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.32)";
}
.styleguide__swatch--dark-16 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.16)";
}
.styleguide__swatch--dark-8 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.08)";
}
.styleguide__swatch--dark-4 .styleguide__label--hex:before {
  content: "rgba(25, 24, 24, 0.04)";
}
.styleguide__swatch--success .styleguide__label--hex:before {
  content: "#23b567";
}
.styleguide__swatch--warning .styleguide__label--hex:before {
  content: "#d6825a";
}
.styleguide__swatch--error .styleguide__label--hex:before {
  content: "#cf2543";
}
.styleguide__container--example {
  background-color: #f5f3f1;
  padding: 32px;
  margin-bottom: 20px;
  border-radius: 12px;
  text-align: center;
}
.styleguide__row {
  margin-top: 40px;
  align-items: center;
}
.styleguide__row--black {
  position: relative;
  background-color: #191818;
  color: #f7f7f2;
}
.styleguide__row--black::after {
  content: "";
  position: absolute;
  z-index: -2;
  height: 100%;
  left: -2000px;
  width: 5000px;
  background-color: #191818;
}
.styleguide__row--button {
  align-items: center;
  margin-top: 60px;
}
.styleguide__row--padding {
  align-items: flex-end;
}
.styleguide__col {
  padding: 0 20px;
}
.styleguide__col--subheading {
  margin-bottom: 30px;
}
.styleguide__col--colour {
  margin-top: 20px;
}
.styleguide__col--button {
  text-align: center;
}
.styleguide__col--description {
  margin-top: 60px;
  margin-bottom: 10px;
}
.styleguide__col--description:first-of-type {
  margin-top: 0;
}
.styleguide__padding {
  margin-bottom: 32px;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px dashed rgba(25, 24, 24, 0.88);
  background-color: #f5f3f1;
}
.styleguide__padding--50 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--50 {
  height: 2px;
}
@media (min-width: 390px) {
  .styleguide__padding--50 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 2px;
  }
}
.styleguide__padding--100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--100 {
  height: 4px;
}
@media (min-width: 390px) {
  .styleguide__padding--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 4px;
  }
}
.styleguide__padding--200 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--200 {
  height: 8px;
}
@media (min-width: 390px) {
  .styleguide__padding--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 8px;
  }
}
.styleguide__padding--300 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--300 {
  height: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 16px;
  }
}
.styleguide__padding--400 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--400 {
  height: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 20px;
  }
}
.styleguide__padding--500 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--500 {
  height: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}
.styleguide__padding--600 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--600 {
  height: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 32px;
  }
}
.styleguide__padding--700 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--700 {
  height: 24px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--700 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--700 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--700 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 40px;
  }
}
.styleguide__padding--800 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--800 {
  height: 32px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--800 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--800 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--800 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 56px;
  }
}
.styleguide__padding--900 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--900 {
  height: 48px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--900 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--900 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--900 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 96px;
  }
}
.styleguide__padding--1000 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--1000 {
  height: 56px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--1000 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(56px + 0.0228571429 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--1000 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(80px + -0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--1000 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 72px;
  }
}
.styleguide__padding--1100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__padding--1100 {
  height: 80px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__padding--1100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(80px + 0.0380952381 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__padding--1100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(120px + 0.0214285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__padding--1100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 144px;
  }
}
.styleguide__block-spacing {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px dashed rgba(25, 24, 24, 0.88);
  background-color: #f5f3f1;
}
.styleguide__block-spacing--100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__block-spacing--100 {
  height: 24px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__block-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(24px + 0.0342857143 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__block-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(60px + 0.0160714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__block-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 78px;
  }
}
.styleguide__block-spacing--200 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__block-spacing--200 {
  height: 48px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__block-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(48px + 0.0304761905 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__block-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(80px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__block-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 112px;
  }
}
.styleguide__block-spacing--300 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__block-spacing--300 {
  height: 64px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__block-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(64px + 0.0533333333 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__block-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(120px + 0.05 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__block-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 176px;
  }
}
.styleguide__block-spacing--400 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__block-spacing--400 {
  height: 96px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__block-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(96px + 0.060952381 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__block-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(160px + 0.0571428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__block-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 224px;
  }
}
.styleguide__block-spacing--500 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__block-spacing--500 {
  height: 120px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__block-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(120px + 0.0761904762 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__block-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(200px + 0.0714285714 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__block-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 280px;
  }
}
.styleguide__content-spacing {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  margin-top: 10px;
  border: 1px dashed rgba(25, 24, 24, 0.88);
  background-color: #f5f3f1;
}
.styleguide__content-spacing--100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--100 {
  height: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 26px;
  }
}
.styleguide__content-spacing--100 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--100 {
  width: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(12px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0053571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--100 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 26px;
  }
}
.styleguide__content-spacing--200 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--200 {
  height: 18px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(18px + 0.0133333333 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 40px;
  }
}
.styleguide__content-spacing--200 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--200 {
  width: 18px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(18px + 0.0133333333 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--200 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 40px;
  }
}
.styleguide__content-spacing--300 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--300 {
  height: 26px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 80px;
  }
}
.styleguide__content-spacing--300 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--300 {
  width: 26px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(26px + 0.0361904762 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(64px + 0.0142857143 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--300 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 80px;
  }
}
.styleguide__content-spacing--400 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--400 {
  height: 34px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(34px + 0.0438095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(80px + 0.0178571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 100px;
  }
}
.styleguide__content-spacing--400 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--400 {
  width: 34px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(34px + 0.0438095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(80px + 0.0178571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--400 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 100px;
  }
}
.styleguide__content-spacing--500 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--500 {
  height: 40px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 166px;
  }
}
.styleguide__content-spacing--500 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--500 {
  width: 40px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(40px + 0.0876190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(132px + 0.0303571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--500 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 166px;
  }
}
.styleguide__content-spacing--600 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--600 {
  height: 48px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(48px + 0.1866666667 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(244px + 0.0553571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 306px;
  }
}
.styleguide__content-spacing--600 {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__content-spacing--600 {
  width: 48px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__content-spacing--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(48px + 0.1866666667 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .styleguide__content-spacing--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(244px + 0.0553571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .styleguide__content-spacing--600 {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 306px;
  }
}
.styleguide__blur-wrap {
  position: relative;
  height: 200px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 10px;
}
.styleguide__blur-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__blur-image {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__blur-image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .styleguide__blur-image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.styleguide__blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
  height: 136px;
}
.styleguide__overlay-wrap {
  position: relative;
  height: 200px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 10px;
}
.styleguide__overlay-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__overlay-image {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__overlay-image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .styleguide__overlay-image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.styleguide__overlay {
  position: absolute;
  inset: 1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__overlay {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__overlay {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .styleguide__overlay {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.styleguide__shadow {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f3f1;
  height: 136px;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__shadow {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__shadow {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .styleguide__shadow {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.styleguide__border {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f3f1;
  height: 136px;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__border {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__border {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .styleguide__border {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.styleguide__intro-col--right {
  text-align: right;
}
.styleguide__logo {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.styleguide__logo:hover {
  opacity: 0.8;
}
.styleguide__image {
  max-width: 150px;
  height: auto;
}
.styleguide__title {
  font-size: 20px;
  font-weight: 700;
}
.styleguide__subheading {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(25, 24, 24, 0.16);
}
.styleguide__swatch {
  position: relative;
  width: 200px;
  aspect-ratio: 1;
  background-color: #4c4b49;
  overflow: hidden;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.styleguide__swatch {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .styleguide__swatch {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .styleguide__swatch {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
.styleguide__swatch--primary-1 {
  background-color: #4c4b49;
}
.styleguide__swatch--primary-1-light {
  background-color: #797877;
}
.styleguide__swatch--primary-1-dark {
  background-color: #1f1e1c;
}
.styleguide__swatch--primary-2 {
  background-color: #7f7e7c;
}
.styleguide__swatch--primary-2-light {
  background-color: #b1b1b0;
}
.styleguide__swatch--primary-2-dark {
  background-color: #4c4c4a;
}
.styleguide__swatch--primary-3 {
  background-color: #e2e0dd;
}
.styleguide__swatch--primary-3-light {
  background-color: #eeeceb;
}
.styleguide__swatch--primary-3-dark {
  background-color: #cac7c2;
}
.styleguide__swatch--secondary-1 {
  background-color: #eecac1;
}
.styleguide__swatch--secondary-2 {
  background-color: #b7dae1;
}
.styleguide__swatch--secondary-3 {
  background-color: #f7dcb1;
}
.styleguide__swatch--secondary-4 {
  background-color: #e1dcd1;
}
.styleguide__swatch--secondary-5 {
  background-color: #c7e5cb;
}
.styleguide__swatch--secondary-6 {
  background-color: #d4caff;
}
.styleguide__swatch--light-100 {
  background-color: #f7f7f2;
}
.styleguide__swatch--light-88 {
  background-color: rgba(247, 247, 242, 0.88);
}
.styleguide__swatch--light-64 {
  background-color: rgba(247, 247, 242, 0.64);
}
.styleguide__swatch--light-48 {
  background-color: rgba(247, 247, 242, 0.48);
}
.styleguide__swatch--light-32 {
  background-color: rgba(247, 247, 242, 0.32);
}
.styleguide__swatch--light-16 {
  background-color: rgba(247, 247, 242, 0.16);
}
.styleguide__swatch--light-8 {
  background-color: rgba(247, 247, 242, 0.08);
}
.styleguide__swatch--light-4 {
  background-color: rgba(247, 247, 242, 0.04);
}
.styleguide__swatch--dark-100 {
  background-color: #191818;
}
.styleguide__swatch--dark-88 {
  background-color: rgba(25, 24, 24, 0.88);
}
.styleguide__swatch--dark-64 {
  background-color: rgba(25, 24, 24, 0.64);
}
.styleguide__swatch--dark-48 {
  background-color: rgba(25, 24, 24, 0.48);
}
.styleguide__swatch--dark-32 {
  background-color: rgba(25, 24, 24, 0.32);
}
.styleguide__swatch--dark-16 {
  background-color: rgba(25, 24, 24, 0.16);
}
.styleguide__swatch--dark-8 {
  background-color: rgba(25, 24, 24, 0.08);
}
.styleguide__swatch--dark-4 {
  background-color: rgba(25, 24, 24, 0.04);
}
.styleguide__swatch--success {
  background-color: #23b567;
}
.styleguide__swatch--warning {
  background-color: #d6825a;
}
.styleguide__swatch--error {
  background-color: #cf2543;
}
.styleguide__label {
  font-family: "Geist Mono", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: rgba(25, 24, 24, 0.64);
  text-transform: uppercase;
}
.styleguide__label--name {
  margin-top: 8px;
}
.styleguide__description {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(25, 24, 24, 0.88);
}
.styleguide__description--padding, .styleguide__description--border-radius, .styleguide__description--margin {
  margin-top: 45px;
}
.styleguide__description--heading {
  padding: 30px 0 0;
  font-size: 16px;
  color: #4c4b49;
}
.styleguide__description--subheading {
  padding: 0 0 30px;
  font-size: 12px;
  text-transform: lowercase;
}
.styleguide__description--center {
  text-align: center;
}
.styleguide__col--typography {
  margin: 20px 0 60px;
}
.styleguide__col--typography:last-child {
  margin-bottom: 0;
}
.styleguide__border-radius {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 136px;
  background-color: #f5f3f1;
  margin-bottom: 20px;
}
.styleguide .btn--no-icon .btn__svg,
.styleguide .btn--no-icon .btn__wrap {
  display: none;
}
.styleguide .btn--icon-left .btn__wrap {
  order: -1;
}

@media screen and (min-width: 768px) {
  .styleguide__row {
    margin-top: 60px;
  }
  .styleguide__col--typography {
    margin: 26px 0 100px;
  }
  .styleguide__col--subheading {
    margin-bottom: 20px;
  }
  .styleguide__subheading {
    padding-bottom: 30px;
  }
  .styleguide__col--description + .styleguide__col--typography {
    margin: 26px 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .styleguide__title {
    font-size: 22px;
  }
  .styleguide__row {
    margin-top: 80px;
  }
  .styleguide__col--subheading {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .styleguide__title {
    font-size: 24px;
  }
  .styleguide__row {
    margin-top: 100px;
  }
  .styleguide__col--subheading {
    margin-bottom: 30px;
  }
  .styleguide__col--colour {
    margin-top: 30px;
  }
}
.tabbed-content__tabs {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #f5f3f1;
  margin: 0 auto;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.tabbed-content__tabs {
  border-radius: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .tabbed-content__tabs {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .tabbed-content__tabs {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 24px;
  }
}
.tabbed-content__tabs {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.tabbed-content__tabs {
  gap: 4px;
}
@media (min-width: 390px) {
  .tabbed-content__tabs {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 4px;
  }
}
@media screen and (min-width: 390px) {
  .tabbed-content__tabs {
    padding: 8px;
  }
}
.tabbed-content__tab-link {
  text-decoration: none;
  outline: 1px solid transparent;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.tabbed-content__tab-link {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .tabbed-content__tab-link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .tabbed-content__tab-link {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
@media screen and (min-width: 390px) {
  .tabbed-content__tab-link {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .tabbed-content__tab-link {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .tabbed-content__tab-link {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .tabbed-content__tab-link {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .tabbed-content__tab-link {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.tabbed-content__tab-link.is-active {
  outline: 1px solid rgba(247, 247, 242, 0.08);
  background-color: rgba(25, 24, 24, 0.88);
  color: #f7f7f2;
}
@media screen and (max-width: 390px) {
  .tabbed-content__row + .tabbed-content__tabs {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .tabbed-content__row + .tabbed-content__tabs {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .tabbed-content__row + .tabbed-content__tabs {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .tabbed-content__row + .tabbed-content__tabs {
    margin-top: 40px;
  }
}
@media screen and (max-width: 390px) {
  .tabbed-content__tabs + .tabbed-content__row {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .tabbed-content__tabs + .tabbed-content__row {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .tabbed-content__tabs + .tabbed-content__row {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .tabbed-content__tabs + .tabbed-content__row {
    margin-top: 96px;
  }
}

@media screen and (max-width: 390px) {
  .team-cards__row {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .team-cards__row {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .team-cards__row {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .team-cards__row {
    margin-top: 96px;
  }
}
@media screen and (max-width: 390px) {
  .team-cards__col--button {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .team-cards__col--button {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .team-cards__col--button {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .team-cards__col--button {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .team-cards__col--button {
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
.testimonials {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.testimonials__swiper {
  overflow: hidden;
}
@media screen and (max-width: 390px) {
  .testimonials__swiper {
    margin-top: 48px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__swiper {
    margin-top: calc(48px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__swiper {
    margin-top: calc(64px + 0.0285714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__swiper {
    margin-top: 96px;
  }
}
.testimonials__col--testimonial {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 390px) {
  .testimonials__col--image {
    margin-top: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__col--image {
    margin-top: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__col--image {
    margin-top: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__col--image {
    margin-top: 16px;
  }
}
.testimonials__col--controls {
  display: none;
  position: relative;
}
.testimonials__wrap--slider {
  background: #f5f3f1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.testimonials__wrap--slider {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .testimonials__wrap--slider {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .testimonials__wrap--slider {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
@media screen and (max-width: 390px) {
  .testimonials__wrap--slider {
    padding: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__wrap--slider {
    padding: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__wrap--slider {
    padding: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__wrap--slider {
    padding: 56px;
  }
}
.testimonials__wrap--quote {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e8e4df;
  aspect-ratio: 1;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.testimonials__wrap--quote {
  border-radius: 10px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .testimonials__wrap--quote {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .testimonials__wrap--quote {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 12px;
  }
}
@media screen and (max-width: 390px) {
  .testimonials__wrap--quote {
    padding: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__wrap--quote {
    padding: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__wrap--quote {
    padding: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__wrap--quote {
    padding: 16px;
  }
}
@media screen and (max-width: 390px) {
  .testimonials__quote {
    margin-top: 32px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__quote {
    margin-top: calc(32px + 0.0152380952 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__quote {
    margin-top: calc(48px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__quote {
    margin-top: 56px;
  }
}
@media screen and (max-width: 390px) {
  .testimonials__author {
    margin-top: 24px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__author {
    margin-top: calc(24px + 0.0076190476 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__author {
    margin-top: calc(32px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__author {
    margin-top: 40px;
  }
}
.testimonials__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.testimonials__image {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .testimonials__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .testimonials__image {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
@media screen and (max-width: 390px) {
  .testimonials__button {
    margin-top: 34px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .testimonials__button {
    margin-top: calc(34px + 0.0438095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .testimonials__button {
    margin-top: calc(80px + 0.0178571429 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .testimonials__button {
    margin-top: 100px;
  }
}
.testimonials__nav {
  bottom: 0;
  border-color: rgba(25, 24, 24, 0.16);
  color: #191818;
}
.testimonials__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.testimonials__svg {
  height: 15px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .testimonials__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(15px + 0.0028571429 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .testimonials__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 18px;
  }
}
.testimonials__svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.testimonials__svg {
  width: 15px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .testimonials__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(15px + 0.0028571429 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .testimonials__svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .testimonials__col--image {
    margin-top: 0;
  }
  .testimonials__col--controls {
    display: flex;
  }
  .testimonials__featured {
    height: 100%;
  }
  .testimonials__pagination {
    display: none;
  }
}
.swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(30, 28, 27, 0.32);
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    bottom: calc(16px + 0.0076190476 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    bottom: calc(24px + 0.0071428571 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    bottom: 32px;
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  border-radius: 12px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 16px;
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  gap: 16px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(16px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) and (max-width: 2560px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: calc(20px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    gap: 24px;
  }
}
@media screen and (min-width: 390px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 390px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    padding-right: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-left: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    padding-right: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet,
.swiper-pagination-custom .swiper-pagination-bullet,
.swiper-pagination-fraction .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background: rgba(247, 247, 242, 0.64);
  opacity: 0.2;
}

.swiper-pagination-bullet-active {
  background: rgba(247, 247, 242, 0.64);
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  width: unset;
  height: unset;
  border: 1px solid rgba(247, 247, 242, 0.08);
  color: #f7f7f2;
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.swiper-button-next,
.swiper-button-prev {
  border-radius: 999px;
}
@media (min-width: 390px) {
  .swiper-button-next,
  .swiper-button-prev {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    border-radius: 999px;
  }
}
@media screen and (max-width: 390px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-top: calc(10px + 0.0019047619 * (100vw - 390px));
    padding-bottom: calc(10px + 0.0019047619 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-top: calc(12px + 0.0035714286 * (100vw - 1440px));
    padding-bottom: calc(12px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 390px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 390px) and (max-width: 1440px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-right: calc(12px + 0.0038095238 * (100vw - 390px));
    padding-left: calc(12px + 0.0038095238 * (100vw - 390px));
  }
}
@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-right: calc(16px + 0.0035714286 * (100vw - 1440px));
    padding-left: calc(16px + 0.0035714286 * (100vw - 1440px));
  }
}
@media (min-width: 2560px) {
  .swiper-button-next,
  .swiper-button-prev {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.swiper-button-next svg,
.swiper-button-prev svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    width: 24px;
  }
}
.swiper-button-next svg,
.swiper-button-prev svg {
  /* stylelint-disable-next-line block-no-redundant-nested-style-rules */
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 20px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: calc(20px + 0.0038095238 * (100vw - 390px));
  }
}
@media (min-width: 1440px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    height: 24px;
  }
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}
