:root {
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Bounded", sans-serif;
  --body-bg: #f8f8f8;
  --body-color: #0b0d0e;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in-up {
  animation: fadeInUp 0.3s ease-out;
}

.fade-in-down {
  animation: fadeInDown 0.3s ease-out;
}

.row-gutter-10 {
  margin: 0 -0.5rem -1rem;
}
.row-gutter-10 > [class^=col] {
  padding: 0 0.5rem 1rem;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

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

.text-green {
  color: #82b900 !important;
}

.text-yellow {
  color: #f2d872 !important;
}

.text-blue {
  color: #6fa5d6 !important;
}

.text-red {
  color: #db0031 !important;
}

.text-grey {
  color: #949dab;
}

.text-dark {
  color: #000 !important;
}

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

.is-visually-hidden {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.row-gutter-120 {
  margin: 0 -6rem;
}
.row-gutter-120 > [class^=col-] {
  padding: 0 6rem;
}

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

@media (max-width: 767px) {
  .is-md-visible {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-lg-visible {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-xl-visible {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-md-hidden {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-lg-hidden {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-xl-hidden {
    display: none !important;
  }
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-32 {
  margin-bottom: 3.2rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

@keyframes slowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3rem, -5rem) scale(1.2);
  }
  66% {
    transform: translate(-2rem, 2rem) scale(0.8);
  }
  100% {
    transform: translate(1rem, -1rem) scale(1);
  }
}
/**
 * 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;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height;
}

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 120rem;
}

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

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

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-order: 9999;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 0.1rem;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 0.1rem;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2.1rem;
  margin-top: -2.1rem;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 0.4rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.2rem;
}

.swiper-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

.swiper-pagination-bullet {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  transform: rotate(45deg);
}
.swiper-pagination-bullet::before, .swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: 0.4s;
}
.swiper-pagination-bullet::before {
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0955221 1.56584C-0.0918149 0.677989 0.814779 -0.180875 1.69643 0.0337484C2.72284 0.283609 3.67095 0.301047 4.72878 0.0712883C5.642 -0.127063 6.59124 0.831476 6.42331 1.75078C6.21917 2.86827 6.312 3.87165 6.60682 4.99293C6.82822 5.83502 6.00844 6.64044 5.15835 6.45208C3.88757 6.17051 2.76403 6.19883 1.45916 6.50048C0.61711 6.69514 -0.172308 5.8756 0.0330824 5.03611C0.322729 3.85223 0.353702 2.78944 0.0955221 1.56584Z' fill='%23DFDFDF'/%3E%3C/svg%3E%0A");
  opacity: 1;
}
.swiper-pagination-bullet::after {
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='7' viewBox='0 0 7 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0955221 1.56584C-0.0918149 0.677989 0.814779 -0.180875 1.69643 0.0337484C2.72284 0.283609 3.67095 0.301047 4.72878 0.0712883C5.642 -0.127063 6.59124 0.831476 6.42331 1.75078C6.21917 2.86827 6.312 3.87165 6.60682 4.99293C6.82822 5.83502 6.00844 6.64044 5.15835 6.45208C3.88757 6.17051 2.76403 6.19883 1.45916 6.50048C0.61711 6.69514 -0.172308 5.8756 0.0330824 5.03611C0.322729 3.85223 0.353702 2.78944 0.0955221 1.56584Z' fill='url(%23paint0_linear_312_3348)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_312_3348' x1='-0.677734' y1='1.89504' x2='7.46561' y2='2.74681' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23BD0000'/%3E%3Cstop offset='1' stop-color='%239F0000'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  opacity: 0;
}
@media (min-width: 992px) {
  .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
}

.swiper-pagination-bullet-active::before {
  opacity: 0;
}
.swiper-pagination-bullet-active::after {
  opacity: 1;
}

.swiper-prev,
.swiper-next {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  color: #0b0d0e;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.swiper-prev svg,
.swiper-next svg {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-prev g,
.swiper-next g {
  transition: 0.4s;
}
.swiper-prev g.is-default,
.swiper-next g.is-default {
  opacity: 1;
}
.swiper-prev g.is-hover,
.swiper-next g.is-hover {
  opacity: 0;
}
.swiper-prev:hover g.is-default,
.swiper-next:hover g.is-default {
  opacity: 0;
}
.swiper-prev:hover g.is-hover,
.swiper-next:hover g.is-hover {
  opacity: 1;
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .swiper-prev,
  .swiper-next {
    width: 4.8rem;
    height: 4.8rem;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: rgba(0, 0, 0, .7);
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  -webkit-backdrop-filter: var(--f-button-backdrop-filter);
  backdrop-filter: var(--f-button-backdrop-filter);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  pointer-events: all;
  cursor: pointer;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}
.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
  position: relative;
  z-index: 1;
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

[data-panzoom-action=toggleFS] g:first-child {
  display: -ms-flexbox;
  display: flex;
}

[data-panzoom-action=toggleFS] g:last-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:first-child {
  display: none;
}

.in-fullscreen [data-panzoom-action=toggleFS] g:last-child {
  display: -ms-flexbox;
  display: flex;
}

[data-autoplay-action=toggle] svg g:first-child {
  display: -ms-flexbox;
  display: flex;
}

[data-autoplay-action=toggle] svg g:last-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action=toggle] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:-moz-full-screen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:-moz-full-screen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:root {
  --f-spinner-color-1: rgba(0, 0, 0, .1);
  --f-spinner-color-2: rgba(17, 24, 28, .8);
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: calc(var(--f-spinner-width) * -0.5) 0 0 calc(var(--f-spinner-height) * -0.5);
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  border-radius: var(--f-spinner-border-radius);
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  animation: f-spinner 0.75s linear infinite, f-fadeIn 0.2s ease 0.2s both;
}

@keyframes f-spinner {
  to {
    transform: rotate(360deg);
  }
}
.f-panzoom, .f-zoomable {
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  display: block;
  content: "";
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom.in-fullscreen, .f-zoomable.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999;
}

.f-panzoom__wrapper {
  position: relative;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  display: block;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  width: auto;
  height: auto;
  vertical-align: top;
  object-fit: contain;
  transition: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.f-panzoom__wrapper > .f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.f-panzoom__viewport > .f-panzoom__content {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

picture.f-panzoom__content img {
  vertical-align: top;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  transition: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.f-panzoom__protected {
  position: absolute;
  inset: 0;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.2) ease calc(var(--f-transition-duration, 0.2s) * 0.8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}
.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}
@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, 0.975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 1.6rem), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }
  to {
    transform: scale(1) translateZ(0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, 0.975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 1.6rem), 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, 0.2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, 0.2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 15rem) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 15rem), 0);
    opacity: 0;
  }
}
.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-html {
  position: relative;
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
}

.f-html.is-error {
  text-align: center;
}

.f-iframe {
  display: block;
  margin: 0;
  border: 0;
  height: 100%;
  width: 100%;
}

.f-caption {
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 1.6rem 0.8rem);
  max-width: 100%;
  max-height: calc(80vh - 10rem);
  overflow: auto;
  overflow-wrap: anywhere;
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, rgba(0, 0, 0, 0.9));
}

.f-html5video {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 4.6rem);
  --f-button-height: var(--f-arrow-height, 4.6rem);
  --f-button-svg-width: var(--f-arrow-svg-width, 2.4rem);
  --f-button-svg-height: var(--f-arrow-svg-height, 2.4rem);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  position: absolute;
  transform: translate(0);
  z-index: 20;
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%) rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 0.8rem);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  -webkit-backdrop-filter: var(--f-toolbar-backdrop-filter);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  position: relative;
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 1.7rem);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
}

.f-carousel__toolbar__column.is-left {
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  display: -ms-flexbox;
  display: flex;
  justify-self: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-flow: nowrap;
  flex-flow: nowrap;
}

.f-carousel__toolbar__column {
  pointer-events: none;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-counter {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 0.4rem);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
}

.f-counter span {
  padding: 0 var(--f-counter-gap, 0.4rem);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-z-index: 1;
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-fit: cover;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-transfors: none;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
}

.f-thumbs {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: var(--f-thumbs-margin);
  padding: 0;
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: max-height 0.3s ease, max-width 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: var(--f-thumbs-z-index);
}

.f-thumbs.is-horizontal {
  max-height: calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-vertical {
  max-width: calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-gap) * 2);
}

.f-thumbs.is-ltr {
  direction: ltr;
}

.f-thumbs.is-rtl {
  direction: rtl;
}

.f-thumbs__viewport {
  margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  overflow: visible;
  display: grid;
}

.f-thumbs.is-vertical .f-thumbs__viewport {
  height: calc(100% - var(--f-thumbs-padding-y) * 2);
}

.f-thumbs__slide {
  position: relative;
  box-sizing: border-box;
  grid-area: 1/1;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 100%;
  outline: none;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
}

.f-thumbs__slide button:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: none;
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--f-thumb-fit);
  border-radius: inherit;
  pointer-events: none;
}

.f-thumbs__slide img.has-lazyerror {
  display: none;
}

.f-thumbs.is-classic {
  --f-carousel-slide-width: var(--f-thumb-width);
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: var(--f-thumbs-gap);
}

.f-thumbs.is-modern {
  --f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );
  --f-carousel-slide-height: var(--f-thumb-height);
  --f-carousel-gap: 0;
  --width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--f-carousel-slide-width) * 2);
  margin-inline: calc(var(--f-carousel-slide-width) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );
  padding: 0;
  overflow: visible;
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button {
  display: block;
  margin-inline: 50%;
  width: var(--f-thumb-width);
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
  border: none;
  box-shadow: none;
  transition: opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease);
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, 0.2s) var(--f-thumb-transition-easing, ease), -webkit-clip-path var(--f-transition-duration) var(--f-transition-easing);
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

:root {
  --f-progressbar-height: 3px;
  --f-progressbar-color: var(--f-carousel-theme-color, #575ad6);
  --f-progressbar-opacity: 1;
  --f-progressbar-z-index: 30;
}

.f-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--f-progressbar-z-index);
  height: var(--f-progressbar-height);
  transform: scaleX(0);
  transform-origin: 0;
  opacity: var(--f-progressbar-opacity);
  background: var(--f-progressbar-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-play-state: running;
  animation-timing-function: linear;
}

.f-progressbar:empty {
  display: block;
}

button > .f-progressbar {
  --f-progressbar-height: 100%;
  --f-progressbar-opacity: .2;
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
[data-fullscreen-action=toggle] svg g:first-child {
  display: -ms-flexbox;
  display: flex;
}

[data-fullscreen-action=toggle] svg g:last-child {
  display: none;
}

:-moz-full-screen [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action=toggle] svg g:first-child {
  display: none;
}

:-moz-full-screen [data-fullscreen-action=toggle] svg g:last-child {
  display: flex;
}

:-ms-fullscreen [data-fullscreen-action=toggle] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fullscreen-action=toggle] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  -ms-flex: 1;
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

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

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--f-body-margin, 0px) + var(--f-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__dialog {
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  -ms-touch-action: none;
  touch-action: none;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}
.fancybox__dialog *:empty {
  display: block;
}

div.fancybox__dialog {
  position: fixed;
  inset: 0;
  z-index: 1050;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: rgba(24, 24, 27, .95);
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 0.8rem;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 1.6rem;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, .75);
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 1rem;
  --f-counter-gap: 0.4rem;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 1.7rem;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 1.6rem 0.8rem;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: rgba(255, 255, 255, .2);
  --f-spinner-color-2: rgba(255, 255, 255, .8);
  --f-spinner-width: 5rem;
  --f-spinner-height: 5rem;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 0.4rem;
  --f-progressbar-color: rgba(255, 255, 255);
  --f-button-width: 4.6rem;
  --f-button-height: 4.6rem;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 0.1rem;
  --f-button-outline-color: rgba(255, 255, 255, .75);
  --f-button-outline-offset: 0px;
  --f-button-bg: rgba(54, 54, 54, .75);
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 2.4rem;
  --f-button-svg-height: 2.4rem;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(0.1rem 0.1rem 0.1rem rgba(24, 24, 27, .01)), drop-shadow(0.1rem 0.2rem 0.1rem rgba(24, 24, 27, .05));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 3.2rem;
  --f-arrow-width: 5rem;
  --f-arrow-height: 5rem;
  --f-arrow-svg-width: 2.4rem;
  --f-arrow-svg-height: 2.4rem;
  --f-arrow-svg-stroke-width: 2;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: rgba(54, 54, 54, .65);
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-close-button-width: 3.4rem;
  --f-close-button-height: 3.4rem;
  --f-close-border-radius: 0.4rem;
  --f-close-button-color: #fff;
  --f-close-button-hover-color: #fff;
  --f-close-button-bg: transparent;
  --f-close-button-hover-bg: transparent;
  --f-close-button-active-bg: transparent;
  --f-close-button-svg-width: 2.2rem;
  --f-close-button-svg-height: 2.2rem;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 0.8rem;
  --f-thumbs-padding-y: 0.8rem;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 9.4rem;
  --f-thumb-height: 7.6rem;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 0.2rem rgba(255, 255, 255, .65);
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 0.2rem #fff;
  --f-thumb-selected-transform: none;
}

.fancybox__container[theme=light] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: rgba(0, 0, 0, .2);
  --f-spinner-color-2: rgba(0, 0, 0, .8);
  --f-spinner-border-width: 0.35rem;
  --f-progressbar-color: rgba(111, 111, 116);
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: rgba(0, 0, 0, .85);
  --f-button-bg: rgba(255, 255, 255, .85);
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: rgba(255, 255, 255, .85);
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 0.18rem #fff, 0px 0px 0px 0.225rem #888;
  --f-thumb-selected-shadow: 0 0 0 0.18rem #fff, 0px 0px 0px 0.225rem #000;
}

.fancybox__container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.fancybox__container:focus {
  outline: none;
}

.fancybox__container.has-vertical-thumbs {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport {
  overflow-x: clip;
  overflow-y: visible;
}

.fancybox__container > *:not(.fancybox__carousel), .fancybox__container .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > *:not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, 0.35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > *:not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > *:not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
}

.fancybox__carousel {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  position: relative;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  position: absolute;
  content: "";
  inset: -3rem;
  z-index: 1;
}

.fancybox__viewport {
  display: grid;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
}

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

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

.fancybox__viewport [data-selectable], .fancybox__viewport [contenteditable] {
  cursor: auto;
}

.fancybox__slide {
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.fancybox__slide:before, .fancybox__slide:after {
  display: block;
  content: "";
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  overflow: auto;
  padding: 8px;
}

.fancybox__slide.has-close-btn {
  padding-top: 3.4rem;
}

.fancybox__slide.has-controls:before {
  margin: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.fancybox__container.is-closing .fancybox__carousel {
  overflow: visible;
}

.f-button.is-close-button {
  --f-button-width: var(--f-close-button-width);
  --f-button-height: var(--f-close-button-height);
  --f-button-border-radius: var(--f-close-border-radius);
  --f-button-color: var(--f-close-button-color);
  --f-button-hover-color: var(--f-close-button-hover-color);
  --f-button-bg: var(--f-close-button-bg);
  --f-button-hover-bg: var(--f-close-button-hover-bg);
  --f-button-active-bg: var(--f-close-button-active-bg);
  --f-button-svg-width: var(--f-close-button-svg-width);
  --f-button-svg-height: var(--f-close-button-svg-height);
  position: absolute;
  top: calc(var(--f-button-height) * -1);
  right: 0;
  z-index: 40;
}

:root {
  --f-thumbs-gap: 12px;
  --f-thumb-border-radius: 10px;
}

.fancybox__container {
  --f-html-bg: transparent;
  --f-html-color: #071c26;
  --fancybox-backdrop-bg: rgba(11, 13, 14, 0.3);
  --f-toolbar-padding: 4rem 2rem;
  --f-carousel-slide-padding: 4rem 2rem;
  --f-counter-padding: 0;
  --f-thumbs-padding-x: 0;
  --f-thumbs-padding-y: 0;
  --f-thumbs-bg: #071c26;
  --f-thumb-width: 10rem;
  --f-thumb-height: 8rem;
  --f-thumbs-padding-x: 0;
  --f-thumbs-padding-y: 2rem;
  --f-thumb-selected-shadow: none;
  --f-arrow-pos: 2rem;
  --f-arrow-width: 4rem;
  --f-arrow-height: 4rem;
  --f-arrow-svg-width: 2rem;
  --f-arrow-svg-height: 2rem;
  --f-arrow-svg-stroke-width: 1.5;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #f1f5f7;
  --f-arrow-color: #071c26;
  --f-arrow-hover-color: #071c26;
  --f-button-width: 4rem;
  --f-button-height: 4rem;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-bg: #f1f5f7;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-shadow: none;
  --f-button-transition: all 0.2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 2rem;
  --f-button-svg-height: 2rem;
  --f-button-svg-stroke-width: 0;
  --f-button-svg-filter:
      drop-shadow(0.1rem 0.1rem 0.1rem rgba(24, 24, 27, 0.01)),
      drop-shadow(0.1rem 0.2rem 0.1rem rgba(24, 24, 27, 0.05));
  --f-button-svg-fill: url(#gradient-primary);
  --f-button-svg-disabled-opacity: 0.5;
}

.fancybox__backdrop {
  -webkit-backdrop-filter: blur(0.25rem);
  backdrop-filter: blur(0.25rem);
}

.f-button svg {
  transition: transform 0.4s;
}
.f-button:hover svg {
  transform: scale(1.2);
}

.f-thumbs__slide button::after {
  padding: 0.4rem;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.f-thumbs__slide.is-selected button::after {
  opacity: 1;
}

.f-button.is-arrow {
  --f-button-svg-fill: none;
}

.f-panzoom__content {
  border-radius: 1rem;
}

.fancybox__slide:has(.modal) {
  background: transparent;
  padding: 8.5rem 0 0 0;
  overflow: clip;
}
.fancybox__slide:has(.modal)::before, .fancybox__slide:has(.modal)::after {
  display: none;
}
@media (min-width: 768px) {
  .fancybox__slide:has(.modal) {
    padding: 2.4rem 6.4rem;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .fancybox__slide:has(.modal)::before, .fancybox__slide:has(.modal)::after {
    display: block;
  }
}

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

/* 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, 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 */
  text-decoration: underline dotted;
  /* 2 */
}

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

/**
* 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, 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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: 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: button;
}

/**
* 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: 0.1rem 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;
  /* 1 */
  outline-offset: -0.2rem;
  /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-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: button;
  /* 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;
}

/* Defaults
 ========================================================================== */
html,
body {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

picture {
  display: block;
}

img,
video,
svg {
  max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-ms-clear {
  display: none;
}

button,
input,
textarea,
select {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

::-moz-selection {
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

svg {
  max-width: 100%;
  overflow: unset;
}

mark {
  background: none;
  color: currentColor;
}

a,
button {
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

iframe {
  border: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  overflow: hidden;
}

figure {
  margin: 0;
}

@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Regular.woff2") format("woff2"), url("../fonts/Bounded-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.ui-wysiwyg {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #2f444e;
}
@media (min-width: 768px) {
  .ui-wysiwyg {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
  }
}
.ui-wysiwyg h1,
.ui-wysiwyg h2,
.ui-wysiwyg h3 {
  color: #071c26;
}
.ui-wysiwyg h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .ui-wysiwyg h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .ui-wysiwyg h1 {
    font-size: 4.2rem;
  }
}
.ui-wysiwyg h2 {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 1.2rem;
}
@media (min-width: 768px) {
  .ui-wysiwyg h2 {
    font-size: 2.2rem;
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 1200px) {
  .ui-wysiwyg h2 {
    font-size: 2.4rem;
  }
}
.ui-wysiwyg h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .ui-wysiwyg h3 {
    margin: 0 0 1.2rem;
  }
}
@media (min-width: 1200px) {
  .ui-wysiwyg h3 {
    font-size: 1.8rem;
  }
}
.ui-wysiwyg em {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  font-style: normal;
  color: #071c26;
}
@media (min-width: 768px) {
  .ui-wysiwyg em {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .ui-wysiwyg em {
    margin: 0 0 4rem;
  }
}
@media (min-width: 1200px) {
  .ui-wysiwyg em {
    font-size: 1.8rem;
  }
}
.ui-wysiwyg strong,
.ui-wysiwyg b {
  font-weight: 500;
  color: #071c26;
}
.ui-wysiwyg p {
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .ui-wysiwyg p {
    margin: 0 0 0.8rem;
  }
}
.ui-wysiwyg ul {
  margin: 0 0 1.2rem;
}
.ui-wysiwyg ul > li {
  padding: 0 0 0 1.6rem;
  margin: 0 0 0.6rem;
  position: relative;
}
.ui-wysiwyg ul > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #b61f38;
}
@media (min-width: 768px) {
  .ui-wysiwyg ul {
    margin: 0 0 2rem;
  }
  .ui-wysiwyg ul > li {
    margin: 0 0 0.8rem;
  }
}
.ui-wysiwyg ol {
  margin: 0 0 1.2rem;
  counter-reset: point;
}
.ui-wysiwyg ol > li {
  position: relative;
  padding: 0 0 0 2.4rem;
  margin: 0 0 0.6rem;
}
.ui-wysiwyg ol > li:after {
  content: counter(point) ".";
  counter-increment: point 1;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .ui-wysiwyg ol {
    margin: 0 0 2rem;
  }
  .ui-wysiwyg ol > li {
    margin: 0 0 0.8rem;
  }
}
.ui-wysiwyg a:not([class]) {
  text-decoration: underline;
  color: #b61f38;
  transition: color 0.25s;
}
.ui-wysiwyg a:not([class]):hover {
  text-decoration: underline;
  color: #ed1c24;
}
.ui-wysiwyg mark {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.ui-wysiwyg picture {
  background-color: #dfe4e6;
  margin: 2rem 0;
  border-radius: 2rem;
  overflow: hidden;
}
.ui-wysiwyg img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 26.2rem;
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 1rem;
  object-fit: cover;
}
.ui-wysiwyg iframe {
  background-color: #dfe4e6;
  margin: 2rem 0;
  border-radius: 2rem;
  overflow: hidden;
  border: none;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.ui-wysiwyg section {
  background: #f1f5f7;
  border-radius: 2rem;
  padding: 2rem;
  margin: 0 -2rem 2rem;
}
.ui-wysiwyg section:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .ui-wysiwyg section {
    padding: 2.4rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .ui-wysiwyg section {
    padding: 2.8rem 3.2rem 3.2rem;
  }
}
.ui-wysiwyg *:first-child {
  margin-top: 0;
}
.ui-wysiwyg *:last-child {
  margin-bottom: 0;
}
.ui-wysiwyg .row {
  margin: 2rem -1rem;
  gap: 1.6rem 0;
}
.ui-wysiwyg .row > [class^=col] {
  padding: 0 1rem;
}
.ui-wysiwyg ul + h2,
.ui-wysiwyg ol + h2,
.ui-wysiwyg p + h2 {
  margin-top: 2.4rem;
}
@media (min-width: 1200px) {
  .ui-wysiwyg ul + h2,
  .ui-wysiwyg ol + h2,
  .ui-wysiwyg p + h2 {
    margin-top: 3.2rem;
  }
}
.ui-wysiwyg p + h3 {
  margin-top: 2rem;
}
.ui-wysiwyg ul + p,
.ui-wysiwyg ol + p {
  margin-top: 2rem;
}
.ui-wysiwyg p:has(.ui-btn) {
  margin-top: 2rem;
}
.ui-wysiwyg .ui-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .ui-wysiwyg .ui-btn {
    width: auto;
  }
}

.ui-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 4.5rem;
  border-radius: 10rem;
  padding: 0.8rem 3.2rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: clip;
}
.ui-btn::before, .ui-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: opacity 0.4s;
}
.ui-btn::before {
  z-index: -2;
}
.ui-btn::after {
  z-index: -1;
  opacity: 0;
}
.ui-btn:hover::after {
  opacity: 1;
}
@media (min-width: 992px) {
  .ui-btn {
    min-height: 5.7rem;
    font-size: 1.6rem;
  }
}

@media (min-width: 992px) {
  .ui-btn--h45 {
    min-height: 4.5rem;
    padding: 0.8rem 2.4rem;
    font-size: 1.6rem;
  }
}

.ui-btn--primary {
  color: #fff;
}
.ui-btn--primary::before {
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
}
.ui-btn--primary::after {
  background: linear-gradient(95.97deg, #ff2d2d 3.24%, #d20505 96.41%);
}

.ui-btn--secondary {
  color: #fff;
}
.ui-btn--secondary::before {
  background: rgba(191, 191, 191, 0.08);
  border: 0.1rem solid rgba(247, 247, 247, 0.1);
}
.ui-btn--secondary::after {
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  width: 10.6rem;
  height: 3.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1.6rem 0 0 -5.3rem;
  filter: blur(1.5rem);
}

.ui-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  position: relative;
  text-decoration: none;
  color: #e4e4e4;
}
.ui-link:hover {
  text-decoration: none;
  color: #fff;
}

.ui-link--primary {
  color: #e4e4e4;
}
.ui-link--primary::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0.2rem 0 0;
  height: 0.1rem;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  transition: 0.4s;
  transform: scaleX(0);
}
.ui-link--primary:hover {
  color: #fff;
}
.ui-link--primary:hover::after {
  transform: scaleX(1);
}

.ui-field {
  position: relative;
}

.ui-input, .ui-textarea {
  display: block;
  width: 100%;
  height: 4.6rem;
  background: rgba(191, 191, 191, 0.12);
  border: 0.1rem solid rgba(191, 191, 191, 0.3);
  color: #0b0d0e;
  border-radius: 1rem;
  padding: 1.6rem 2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  transition: 0.4s;
  cursor: pointer;
}
.ui-input:-ms-input-placeholder, .ui-textarea:-ms-input-placeholder {
  color: #5b5d5e;
  opacity: 0.6;
  transition: 0.4s;
}
.ui-input::placeholder, .ui-textarea::placeholder {
  color: #5b5d5e;
  opacity: 0.6;
  transition: 0.4s;
}
.ui-input:hover, .ui-textarea:hover {
  background: rgba(191, 191, 191, 0.12);
  border: 0.1rem solid rgba(191, 191, 191, 0.6);
}
.ui-input:hover:-ms-input-placeholder, .ui-textarea:hover:-ms-input-placeholder {
  opacity: 0.8;
}
.ui-input:hover::placeholder, .ui-textarea:hover::placeholder {
  opacity: 0.8;
}
.ui-input:focus, .ui-textarea:focus {
  background: rgba(191, 191, 191, 0.12);
  border: 0.1rem solid rgba(191, 191, 191, 0.3);
}
.ui-input:focus:-ms-input-placeholder, .ui-textarea:focus:-ms-input-placeholder {
  opacity: 0.6;
}
.ui-input:focus::placeholder, .ui-textarea:focus::placeholder {
  opacity: 0.6;
}
.ui-input.is-error, .is-error.ui-textarea {
  border-color: #bd0000;
}
@media (min-width: 992px) {
  .ui-input, .ui-textarea {
    height: 5.4rem;
  }
}

.ui-textarea {
  min-height: 10rem;
  resize: none;
}

.ui-check {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  gap: 1.2rem;
  position: relative;
}
.ui-check:has(.is-error) .ui-check__checkbox {
  border-color: #bd0000;
}

.ui-check__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.ui-check__input:checked ~ .ui-check__checkbox::before, .ui-check__input:checked ~ .ui-check__checkbox::after {
  opacity: 1;
}

.ui-check__checkbox {
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(191, 191, 191, 0.12);
  border: 0.1rem solid rgba(191, 191, 191, 0.6);
  border-radius: 0.4rem;
  display: block;
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  cursor: pointer;
  transition: 0.4s;
}
.ui-check__checkbox::before {
  content: "";
  display: block;
  position: absolute;
  inset: -0.1rem;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  transition: 0.4s;
  opacity: 0;
}
.ui-check__checkbox::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0.2rem;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16602 9.88091L8.40844 14.1666L15.8327 6.66663' stroke='%23F9FBFC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: 0.4s;
  opacity: 0;
}

.ui-check__text {
  display: block;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  -ms-flex-item-align: center;
  align-self: center;
}
@media (min-width: 992px) {
  .ui-check__text {
    font-size: 1.6rem;
  }
}

.ui-validate {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0.4rem 0 0 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #bd0000;
}

.ui-captcha {
  margin: 0;
}
.ui-captcha img {
  display: block;
}

html {
  -ms-overflow-style: scrollbar;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 54rem;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 72rem;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 96rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 114rem;
  }
}

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

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-hd,
.col-hd-auto, .col-hd-12, .col-hd-11, .col-hd-10, .col-hd-9, .col-hd-8, .col-hd-7, .col-hd-6, .col-hd-5, .col-hd-4, .col-hd-3, .col-hd-2, .col-hd-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 0.1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-4 {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-10 {
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

.push-1 {
  left: 8.3333333333%;
}

.push-2 {
  left: 16.6666666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.3333333333%;
}

.push-5 {
  left: 41.6666666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.3333333333%;
}

.push-8 {
  left: 66.6666666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.3333333333%;
}

.push-11 {
  left: 91.6666666667%;
}

.pull-1 {
  right: 8.3333333333%;
}

.pull-2 {
  right: 16.6666666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.3333333333%;
}

.pull-5 {
  right: 41.6666666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.3333333333%;
}

.pull-8 {
  right: 66.6666666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.3333333333%;
}

.pull-11 {
  right: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .push-sm-0 {
    left: auto;
  }
  .push-sm-1 {
    left: 8.3333333333%;
  }
  .push-sm-2 {
    left: 16.6666666667%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .push-sm-4 {
    left: 33.3333333333%;
  }
  .push-sm-5 {
    left: 41.6666666667%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .push-sm-7 {
    left: 58.3333333333%;
  }
  .push-sm-8 {
    left: 66.6666666667%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .push-sm-10 {
    left: 83.3333333333%;
  }
  .push-sm-11 {
    left: 91.6666666667%;
  }
  .pull-sm-0 {
    right: auto;
  }
  .pull-sm-1 {
    right: 8.3333333333%;
  }
  .pull-sm-2 {
    right: 16.6666666667%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .pull-sm-4 {
    right: 33.3333333333%;
  }
  .pull-sm-5 {
    right: 41.6666666667%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .pull-sm-7 {
    right: 58.3333333333%;
  }
  .pull-sm-8 {
    right: 66.6666666667%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .pull-sm-10 {
    right: 83.3333333333%;
  }
  .pull-sm-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .push-md-0 {
    left: auto;
  }
  .push-md-1 {
    left: 8.3333333333%;
  }
  .push-md-2 {
    left: 16.6666666667%;
  }
  .push-md-3 {
    left: 25%;
  }
  .push-md-4 {
    left: 33.3333333333%;
  }
  .push-md-5 {
    left: 41.6666666667%;
  }
  .push-md-6 {
    left: 50%;
  }
  .push-md-7 {
    left: 58.3333333333%;
  }
  .push-md-8 {
    left: 66.6666666667%;
  }
  .push-md-9 {
    left: 75%;
  }
  .push-md-10 {
    left: 83.3333333333%;
  }
  .push-md-11 {
    left: 91.6666666667%;
  }
  .pull-md-0 {
    right: auto;
  }
  .pull-md-1 {
    right: 8.3333333333%;
  }
  .pull-md-2 {
    right: 16.6666666667%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .pull-md-4 {
    right: 33.3333333333%;
  }
  .pull-md-5 {
    right: 41.6666666667%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .pull-md-7 {
    right: 58.3333333333%;
  }
  .pull-md-8 {
    right: 66.6666666667%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .pull-md-10 {
    right: 83.3333333333%;
  }
  .pull-md-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .push-lg-0 {
    left: auto;
  }
  .push-lg-1 {
    left: 8.3333333333%;
  }
  .push-lg-2 {
    left: 16.6666666667%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .push-lg-4 {
    left: 33.3333333333%;
  }
  .push-lg-5 {
    left: 41.6666666667%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .push-lg-7 {
    left: 58.3333333333%;
  }
  .push-lg-8 {
    left: 66.6666666667%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .push-lg-10 {
    left: 83.3333333333%;
  }
  .push-lg-11 {
    left: 91.6666666667%;
  }
  .pull-lg-0 {
    right: auto;
  }
  .pull-lg-1 {
    right: 8.3333333333%;
  }
  .pull-lg-2 {
    right: 16.6666666667%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .pull-lg-4 {
    right: 33.3333333333%;
  }
  .pull-lg-5 {
    right: 41.6666666667%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .pull-lg-7 {
    right: 58.3333333333%;
  }
  .pull-lg-8 {
    right: 66.6666666667%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .pull-lg-10 {
    right: 83.3333333333%;
  }
  .pull-lg-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .push-xl-0 {
    left: auto;
  }
  .push-xl-1 {
    left: 8.3333333333%;
  }
  .push-xl-2 {
    left: 16.6666666667%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .push-xl-4 {
    left: 33.3333333333%;
  }
  .push-xl-5 {
    left: 41.6666666667%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .push-xl-7 {
    left: 58.3333333333%;
  }
  .push-xl-8 {
    left: 66.6666666667%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .push-xl-10 {
    left: 83.3333333333%;
  }
  .push-xl-11 {
    left: 91.6666666667%;
  }
  .pull-xl-0 {
    right: auto;
  }
  .pull-xl-1 {
    right: 8.3333333333%;
  }
  .pull-xl-2 {
    right: 16.6666666667%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .pull-xl-4 {
    right: 33.3333333333%;
  }
  .pull-xl-5 {
    right: 41.6666666667%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .pull-xl-7 {
    right: 58.3333333333%;
  }
  .pull-xl-8 {
    right: 66.6666666667%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .pull-xl-10 {
    right: 83.3333333333%;
  }
  .pull-xl-11 {
    right: 91.6666666667%;
  }
}
@media (min-width: 1600px) {
  .col-hd {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-hd-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-hd-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-hd-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-hd-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-hd-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-hd-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-hd-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-hd-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-hd-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-hd-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-hd-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-hd-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-hd-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-hd-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-hd-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-hd-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-hd-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-hd-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-hd-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-hd-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-hd-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-hd-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-hd-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-hd-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-hd-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-hd-0 {
    margin-left: 0%;
  }
  .offset-hd-1 {
    margin-left: 8.3333333333%;
  }
  .offset-hd-2 {
    margin-left: 16.6666666667%;
  }
  .offset-hd-3 {
    margin-left: 25%;
  }
  .offset-hd-4 {
    margin-left: 33.3333333333%;
  }
  .offset-hd-5 {
    margin-left: 41.6666666667%;
  }
  .offset-hd-6 {
    margin-left: 50%;
  }
  .offset-hd-7 {
    margin-left: 58.3333333333%;
  }
  .offset-hd-8 {
    margin-left: 66.6666666667%;
  }
  .offset-hd-9 {
    margin-left: 75%;
  }
  .offset-hd-10 {
    margin-left: 83.3333333333%;
  }
  .offset-hd-11 {
    margin-left: 91.6666666667%;
  }
  .push-hd-0 {
    left: auto;
  }
  .push-hd-1 {
    left: 8.3333333333%;
  }
  .push-hd-2 {
    left: 16.6666666667%;
  }
  .push-hd-3 {
    left: 25%;
  }
  .push-hd-4 {
    left: 33.3333333333%;
  }
  .push-hd-5 {
    left: 41.6666666667%;
  }
  .push-hd-6 {
    left: 50%;
  }
  .push-hd-7 {
    left: 58.3333333333%;
  }
  .push-hd-8 {
    left: 66.6666666667%;
  }
  .push-hd-9 {
    left: 75%;
  }
  .push-hd-10 {
    left: 83.3333333333%;
  }
  .push-hd-11 {
    left: 91.6666666667%;
  }
  .pull-hd-0 {
    right: auto;
  }
  .pull-hd-1 {
    right: 8.3333333333%;
  }
  .pull-hd-2 {
    right: 16.6666666667%;
  }
  .pull-hd-3 {
    right: 25%;
  }
  .pull-hd-4 {
    right: 33.3333333333%;
  }
  .pull-hd-5 {
    right: 41.6666666667%;
  }
  .pull-hd-6 {
    right: 50%;
  }
  .pull-hd-7 {
    right: 58.3333333333%;
  }
  .pull-hd-8 {
    right: 66.6666666667%;
  }
  .pull-hd-9 {
    right: 75%;
  }
  .pull-hd-10 {
    right: 83.3333333333%;
  }
  .pull-hd-11 {
    right: 91.6666666667%;
  }
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1600px) {
  .flex-hd-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-hd-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-hd-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-hd-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-hd-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-hd-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-hd-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-hd-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-hd-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-hd-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-hd-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-hd-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-hd-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-hd-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-hd-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-hd-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-hd-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-hd-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-hd-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-hd-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-hd-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-hd-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-hd-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-hd-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-hd-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-hd-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-hd-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-hd-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-hd-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
* {
  outline: none;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}
*:before, *:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html,
body {
  scrollbar-gutter: stable;
  scrollbar-width: none;
  overscroll-behavior: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-padding-top: 84px;
}
@media (min-width: 1200px) and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (min-width: 992px) {
  html {
    scroll-padding-top: 126px;
  }
}

body {
  background: var(--body-bg);
  color: var(--body-color);
  font: 400 1.6rem/1.3 var(--font-primary);
}

.app {
  position: relative;
  min-height: 100%;
  min-width: 32rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: clip;
  max-width: 192rem;
  margin: 0 auto;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 992px) {
  .container-fluid {
    padding: 0 3.2rem;
    max-width: 136.4rem;
  }
}

.is-sticky .header::before {
  opacity: 1;
}

.is-nav-open .header__nav-toggle svg:nth-child(1) {
  opacity: 0;
  transform: scale(0);
}
.is-nav-open .header__nav-toggle svg:nth-child(2) {
  opacity: 1;
  transform: scale(1);
}
.is-nav-open .header__nav-offcanvas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (hover: none) {
  .is-nav-open body {
    overflow: hidden;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 6.4rem;
  color: #fff;
}
.header::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 13, 14, 0.4);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  transition: opacity 0.4s;
  opacity: 0;
}
.header > .container-fluid {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .header {
    height: 8.6rem;
  }
}

.header__logo {
  display: block;
  margin: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 9rem;
}
.header__logo img,
.header__logo svg {
  display: block;
}
@media (min-width: 992px) {
  .header__logo {
    width: 11.4rem;
  }
}

@media (min-width: 992px) {
  .header__nav {
    -ms-flex: 1;
    flex: 1;
  }
}

.header__nav-toggle {
  display: block;
  width: 2rem;
  height: 2rem;
  position: relative;
  color: #fff;
}
.header__nav-toggle::before {
  content: "";
  display: block;
  position: absolute;
  inset: -2rem;
}
.header__nav-toggle svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.header__nav-toggle svg:nth-child(1) {
  opacity: 1;
  transform: scale(1);
}
.header__nav-toggle svg:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
@media (min-width: 992px) {
  .header__nav-toggle {
    display: none;
  }
}

.header__nav-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  padding: 6.4rem 2rem 2rem;
  background: #0b0d0e;
  color: #fff;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.header__nav-offcanvas::before {
  content: "";
  display: block;
  position: absolute;
  top: -28.7rem;
  left: -47rem;
  width: 95.6rem;
  height: 81.4rem;
  z-index: -1;
  display: block;
  background: url(../images/header/decor-360.svg) 0 0 no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .header__nav-offcanvas::before {
    width: 111rem;
    height: 95.4rem;
    background-image: url(../images/header/decor-768.svg);
    top: -28.6rem;
    left: -42.3rem;
  }
}
@media (min-width: 992px) {
  .header__nav-offcanvas {
    position: relative;
    z-index: 100;
    padding: 0;
    background: none;
    opacity: 1;
    visibility: visible;
  }
  .header__nav-offcanvas::before {
    display: none;
  }
}

.header__nav-offcanvas-in {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.header__nav-offcanvas-in::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-offcanvas-in {
    width: auto;
    height: auto;
    overflow: unset;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
}

.header__line {
  display: block;
  border: none;
  margin: 0 0 4rem;
  border-bottom: 0.1rem solid rgba(247, 247, 247, 0.2);
}
@media (min-width: 992px) {
  .header__line {
    display: none;
  }
}

.header__menu {
  padding: 0;
  margin: 0 0 4rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.6rem 2rem;
  font: 400 1.8rem/1.3 var(--font-secondary);
}
.header__menu .ui-link {
  color: #fff;
}
@media (min-width: 768px) {
  .header__menu {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .header__menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    gap: 1.6rem 3.2rem;
    font: 400 1.6rem/1.3 var(--font-primary);
  }
}
@media (min-width: 1200px) {
  .header__menu {
    gap: 2rem 4rem;
  }
}

.header__action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header__action {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .header__action {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .header__action .ui-btn--secondary {
    display: none;
  }
}

.main {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  background: #0b0d0e;
  border-radius: 3.2rem 3.2rem 0 0;
  padding: 2rem 0 4rem;
  color: #e4e4e4;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer::before {
  content: "";
  display: block;
  width: 117rem;
  height: 126.4rem;
  background: url(../images/footer/decor-360.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -15.4rem;
  right: -58.4rem;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer::before {
    background-image: url(../images/footer/decor-768.svg);
    bottom: -31rem;
    right: -68rem;
  }
}
@media (min-width: 992px) {
  .footer {
    border-radius: 4rem 4rem 0 0;
    padding: 3.2rem 0 4rem;
  }
  .footer::before {
    background-image: url(../images/footer/decor-1024.svg);
    bottom: -31.2rem;
    right: -57rem;
  }
}
@media (min-width: 1200px) {
  .footer::before {
    background-image: url(../images/footer/decor-1366.svg);
    bottom: -22.7rem;
    right: -31.2rem;
  }
}
@media (min-width: 1600px) {
  .footer::before {
    background-image: url(../images/footer/decor-1920.svg);
    bottom: auto;
    top: 3rem;
    right: -35.7rem;
  }
}

.footer__feedback {
  margin: 0 0 7rem;
  background: #fff;
  color: #0b0d0e;
  border-radius: 2rem;
  padding: 2.4rem;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(162, 0, 0, 0.04), -0.1rem -0.1rem 0.4rem rgba(162, 0, 0, 0.04);
}
.footer__feedback .row {
  gap: 2.4rem 0;
}
@media (min-width: 768px) {
  .footer__feedback {
    position: relative;
    z-index: 1;
    padding: 3.2rem;
    margin: 0 0 8rem;
    overflow: hidden;
  }
  .footer__feedback .row {
    gap: 3.2rem 0;
  }
  .footer__feedback::before {
    content: "";
    display: block;
    position: absolute;
    right: -22.2rem;
    bottom: -21.4rem;
    z-index: -1;
    width: 57.4rem;
    height: 47.8rem;
    background: url(../images/footer/decor-feedback-768.svg) 0 0 no-repeat;
    background-size: contain;
  }
}
@media (min-width: 992px) {
  .footer__feedback {
    padding: 4rem;
    margin: 0 0 8rem;
  }
  .footer__feedback::before {
    background-image: url(../images/footer/decor-feedback-1024.svg);
    top: auto;
    right: auto;
    left: -15.2rem;
    bottom: -24.4rem;
    width: 87.7rem;
    height: 78.1rem;
  }
}
@media (min-width: 1200px) {
  .footer__feedback {
    padding: 6rem;
    margin: 0 0 8.3rem;
  }
  .footer__feedback::before {
    background-image: url(../images/footer/decor-feedback-1366.svg);
    left: -15.2rem;
    bottom: -14.8rem;
  }
}
@media (min-width: 1600px) {
  .footer__feedback::before {
    background-image: url(../images/footer/decor-feedback-1920.svg);
  }
}

.footer__feedback-title {
  display: block;
  margin: 0 0 1.6rem;
  font: 400 2.4rem/1.25 var(--font-secondary);
}
@media (min-width: 992px) {
  .footer__feedback-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .footer__feedback-title {
    font-size: 3.8rem;
    max-width: 54rem;
  }
}

.footer__feedback-text {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #0b0d0e;
}
.footer__feedback-text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer__feedback-text {
    margin: 0 0 3.2rem;
    max-width: 39rem;
  }
}
@media (min-width: 992px) {
  .footer__feedback-text {
    font-size: 1.6rem;
    max-width: 32rem;
  }
}
@media (min-width: 1200px) {
  .footer__feedback-text {
    max-width: 45rem;
  }
}

.footer__feedback-form .ui-field {
  margin: 0 0 1.6rem;
}
.footer__feedback-form .ui-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  padding: 0.8rem 0 0;
}
@media (min-width: 768px) {
  .footer__feedback-form .ui-field {
    margin: 0 0 2rem;
  }
  .footer__feedback-form .ui-action {
    gap: 3.2rem;
    padding: 1.2rem 0 0 0;
  }
  .footer__feedback-form .ui-action .ui-btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

.footer__main {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #e4e4e4;
}

.footer__line {
  border: none;
  border-bottom: 0.1rem solid rgba(247, 247, 247, 0.2);
  margin: 3.6rem 0;
}
@media (min-width: 768px) {
  .footer__line {
    margin: 4rem 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .footer__line {
    margin: 3rem 0 4rem;
  }
}

.footer__logo {
  display: block;
  margin: 0 0 3.2rem;
  width: 9rem;
  color: #fff;
}
.footer__logo img,
.footer__logo svg {
  display: block;
}
@media (min-width: 992px) {
  .footer__logo {
    width: 11.4rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 1200px) {
  .footer__logo {
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
  }
}

.footer__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.6rem;
}
@media (min-width: 768px) {
  .footer__nav {
    gap: 3rem;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .footer__nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__nav-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.footer__nav-contacts .ui-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__nav-contacts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer__nav-menu {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.6rem 4rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  .footer__nav-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.6rem 3.2rem;
    min-height: 2.4rem;
  }
}
@media (min-width: 992px) {
  .footer__nav-menu {
    font-size: 1.6rem;
    gap: 2rem 4rem;
  }
}

.footer__address {
  display: block;
  margin: 0 0 2rem;
  font-style: normal;
}
.footer__address p {
  margin: 0 0 1rem;
}
.footer__address *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer__address {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .footer__address {
    max-width: 26rem;
  }
  .footer__address p {
    margin: 0 0 1.6rem;
  }
}
.footer__info {
  color: #e4e4e4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .footer__info {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .footer__info {
    margin: 0 0 1.2rem;
  }
}

.footer__copyright {
  margin: 0 0 1.2rem;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin: 0;
  }
}

.footer__policy {
  margin: 0 0 3.2rem;
}
@media (min-width: 768px) {
  .footer__policy {
    margin: 0;
  }
}

.footer__dev {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  color: rgba(228, 228, 228, 0.8);
  margin: 0;
}

.footer__dev-text {
  display: block;
  -ms-flex: 1;
  flex: 1;
}

.footer__dev-link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.6;
  transition: 0.4s;
}
.footer__dev-link:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}
.footer__dev-link img,
.footer__dev-link svg {
  display: block;
}

.is-ready .modal {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(162, 0, 0, 0.04), -0.1rem -0.1rem 0.4rem rgba(162, 0, 0, 0.04);
  border-radius: 2rem 2rem 0 0;
  padding: 0;
  max-height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .modal {
    width: 52.4rem;
    border-radius: 2rem;
    max-height: none;
    min-height: auto;
    height: auto;
    padding: 4rem 3.2rem;
  }
}
@media (min-width: 992px) {
  .modal {
    width: 66.4rem;
    padding: 4.2rem;
  }
}

.modal__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title close" "desc desc";
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem 2rem;
  padding: 2.4rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .modal__head {
    padding: 0;
    margin: 0 0 2.8rem;
    gap: 1.6rem 2rem;
  }
}

.modal__body {
  -ms-flex: 1;
  flex: 1;
  padding: 0 2.4rem 2.4rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
}
.modal__body::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .modal__body {
    overflow: unset;
    padding: 0;
  }
}

.modal__close {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f8f8f8;
  color: #0b0d0e;
  cursor: pointer;
  grid-area: close;
}
.modal__close svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}
.modal__close g {
  transition: opacity 0.4s;
}
.modal__close g.is-default {
  opacity: 1;
}
.modal__close g.is-hover {
  opacity: 0;
}
.modal__close:hover svg {
  transform: rotate(180deg);
}
.modal__close:hover g.is-default {
  opacity: 0;
}
.modal__close:hover g.is-hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .modal__close {
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0 0 0 1rem;
  }
}
@media (min-width: 992px) {
  .modal__close {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.modal__title {
  grid-area: title;
  -ms-flex-item-align: center;
  align-self: center;
  display: block;
  margin: 0;
  font: 400 2.4rem/1.2 var(--font-secondary);
}
.modal__desc {
  grid-area: desc;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #131415;
}
.modal__desc p {
  margin: 0 0 1rem;
}
.modal__desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .modal__desc {
    font-size: 1.6rem;
  }
}

.modal__form .row {
  gap: 1.6rem 0;
}
.modal__form .ui-field {
  margin: 0 0 1.6rem;
}
.modal__form .ui-field:last-child {
  margin-bottom: 0;
}
.modal__form .ui-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem 0 0;
}
@media (min-width: 768px) {
  .modal__form .ui-action {
    gap: 3.2rem;
    padding: 3.2rem 0 0;
  }
}
@media (min-width: 992px) {
  .modal__form .row {
    gap: 2rem 0;
  }
}

.hero {
  background: #0b0d0e;
  color: #fff;
  border-radius: 0 0 3.2rem 3.2rem;
  padding: 10.3rem 0 8rem;
  margin: 0 0 8rem;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: -28.7rem;
  left: -47rem;
  width: 95.6rem;
  height: 81.4rem;
  z-index: -1;
  display: block;
  background: url(../images/hero/decor-360.svg) 0 0 no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .hero::before {
    width: 174.5rem;
    height: 240rem;
    background-image: url(../images/hero/decor-768.svg);
    top: -26.6rem;
    left: -40.2rem;
  }
}
@media (min-width: 992px) {
  .hero {
    padding: 16rem 0 9rem;
    margin: 0 0 9rem;
    overflow: clip;
  }
  .hero::before {
    width: 215.4rem;
    height: 241.3rem;
    background-image: url(../images/hero/decor-1024.svg);
    top: -30.1rem;
    left: 50%;
    margin: 0 0 0 -102.1rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 19rem 0 12rem;
    margin: 0 0 12rem;
  }
  .hero::before {
    width: 248.1rem;
    height: 266.3rem;
    background-image: url(../images/hero/decor-1366.svg);
    top: -28.8rem;
    left: 50%;
    margin: 0 0 0 -99.3rem;
  }
}
@media (min-width: 1600px) {
  .hero::before {
    width: 285.4rem;
    height: 298.2rem;
    background-image: url(../images/hero/decor-1920.svg);
    top: -45.5rem;
    left: 50%;
    margin: 0 0 0 -126rem;
  }
}

.hero__topbar {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .hero__topbar {
    margin: 0 0 6rem;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .hero__topbar {
    margin: 0 0 7.5rem;
  }
}
@media (min-width: 1200px) {
  .hero__topbar {
    margin: 0 0 8.3rem;
  }
}

.hero__topbar-title {
  display: block;
  margin: 0 0 3.2rem;
  font: 400 2.8rem/1.2 var(--font-secondary);
}
@media (min-width: 768px) {
  .hero__topbar-title {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .hero__topbar-title {
    font-size: 5.4rem;
    margin: 0 0 4.2rem;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .hero__topbar-title {
    margin: 0 auto 5rem;
    font-size: 6.4rem;
    max-width: 120rem;
  }
}

.hero__topbar-tags {
  margin: 0 0 2.4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__topbar-tags > li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(191, 191, 191, 0.04);
  border: 0.1rem solid rgba(247, 247, 247, 0.1);
  border-radius: 1rem;
  min-height: 3.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  color: #eeeeee;
}
@media (min-width: 768px) {
  .hero__topbar-tags {
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .hero__topbar-tags {
    margin: 0 0 3.2rem;
  }
  .hero__topbar-tags > li {
    min-height: 3.7rem;
    font-size: 1.6rem;
  }
}

.hero__topbar-desc {
  margin: 0 0 3.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #eeeeee;
}
.hero__topbar-desc br {
  display: none;
}
.hero__topbar-desc p {
  margin: 0 0 1rem;
}
.hero__topbar-desc *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero__topbar-desc {
    max-width: 45.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__topbar-desc br {
    display: block;
  }
}
@media (min-width: 992px) {
  .hero__topbar-desc {
    max-width: 64rem;
    margin: 0 auto 4.8rem;
    font-size: 1.6rem;
  }
  .hero__topbar-desc br {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hero__topbar-desc {
    margin: 0 auto 5.6rem;
  }
}

.hero__topbar-action {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .hero__topbar-action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.hero__stats {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .hero__stats {
    margin: 0 0 6rem;
  }
}
@media (min-width: 992px) {
  .hero__stats {
    margin: 0 0 9rem;
  }
}

.hero__stats-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .hero__stats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-flex-align: start;
    align-items: start;
  }
  .hero__stats-list > li {
    position: relative;
  }
  .hero__stats-list > li:nth-child(2) {
    top: 3rem;
    margin-bottom: 3rem;
  }
  .hero__stats-list > li:nth-child(3) {
    top: 10.3rem;
    margin-bottom: 10.3rem;
  }
}
@media (min-width: 992px) {
  .hero__stats-list {
    gap: 2rem;
  }
  .hero__stats-list > li {
    position: relative;
  }
  .hero__stats-list > li:nth-child(2) {
    top: 6rem;
    margin-bottom: 6rem;
  }
  .hero__stats-list > li:nth-child(3) {
    top: 12rem;
    margin-bottom: 12rem;
  }
}

.hero__stats-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.6rem;
  height: 100%;
  min-height: 10.5rem;
  background: rgba(191, 191, 191, 0.04);
  border: 0.1rem solid rgba(247, 247, 247, 0.1);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 2.4rem 1.6rem;
  text-align: center;
}
.hero__stats-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 5rem;
  left: 50%;
  z-index: -1;
  width: 15.4rem;
  height: 15.4rem;
  border-radius: 50%;
  margin: 0 0 0 -7.7rem;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  opacity: 0.7;
  filter: blur(5rem);
}
@media (min-width: 992px) {
  .hero__stats-card {
    padding: 3rem 2rem;
    gap: 1.2rem;
  }
}

.hero__stats-card-title {
  display: block;
  font: 400 2.4rem/1.2 var(--font-secondary);
  margin: 0;
}
@media (min-width: 992px) {
  .hero__stats-card-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .hero__stats-card-title {
    font-size: 3.8rem;
  }
}

.hero__stats-card-text {
  display: block;
  margin: 0;
  font: 400 1.4rem/1.4 var(--font-primary);
  color: #eeeeee;
}
@media (min-width: 992px) {
  .hero__stats-card-text {
    font-size: 1.6rem;
  }
}

.hero__info-title {
  display: block;
  margin: 0 0 4rem;
  font: 400 2.4rem/1.2 var(--font-secondary);
}
.hero__info-title mark {
  background: linear-gradient(95.97deg, #ff2d2d 3.24%, #d20505 96.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (min-width: 992px) {
  .hero__info-title {
    font-size: 3.2rem;
    margin: 0 0 4.8rem;
  }
}
@media (min-width: 1200px) {
  .hero__info-title {
    font-size: 3.8rem;
    margin: 0 0 6rem;
  }
}

.hero__info-desc {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #eeeeee;
  margin: 0 0 5rem;
}
.hero__info-desc p {
  margin: 0 0 1rem;
}
.hero__info-desc *:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .hero__info-desc {
    margin: 0;
    padding: 0 0 0 4rem;
    font-size: 1.6rem;
    position: sticky;
    top: 10.6rem;
  }
}
@media (min-width: 1200px) {
  .hero__info-desc {
    padding: 0 1rem 0 11rem;
  }
}

.hero__info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.hero__info-list > li:nth-child(even) .hero__info-card::before {
  right: auto;
  left: -8rem;
}
@media (min-width: 768px) {
  .hero__info-list > li:nth-child(even) .hero__info-card::before {
    right: -8rem;
    left: auto;
  }
}
@media (min-width: 992px) {
  .hero__info-list {
    gap: 2rem;
  }
}

.hero__info-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2.4rem;
  gap: 1.2rem;
  background: rgba(191, 191, 191, 0.04);
  border: 0.1rem solid rgba(247, 247, 247, 0.1);
  border-radius: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero__info-card::before {
  content: "";
  display: block;
  position: absolute;
  top: -8rem;
  right: -8rem;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  opacity: 0.7;
  filter: blur(5rem);
}
@media (min-width: 992px) {
  .hero__info-card {
    padding: 3rem;
    gap: 1.6rem;
  }
}

.hero__info-card-title {
  display: block;
  font: 400 1.8rem/1.25 var(--font-secondary);
  margin: 0;
}
@media (min-width: 992px) {
  .hero__info-card-title {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: 400;
  }
}

.hero__info-card-text {
  display: block;
  margin: 0;
  font: 400 1.4rem/1.4 var(--font-primary);
  color: #eeeeee;
  max-width: 98%;
}
@media (min-width: 992px) {
  .hero__info-card-text {
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  .hero__info-card-text {
    max-width: 60rem;
  }
}

.awards {
  margin: 0 0 8rem;
}
.awards .row {
  gap: 1.6rem 0;
}
@media (min-width: 768px) {
  .awards .row {
    gap: 2rem 0;
  }
}
@media (min-width: 992px) {
  .awards {
    margin: 0 0 9rem;
  }
}
@media (min-width: 1200px) {
  .awards {
    margin: 0 0 12rem;
  }
}

.awards__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5rem;
  height: 100%;
  background: #0b0d0e url(../images/awards/bg-card-360.svg) 0 0 no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 2rem;
  padding: 2.4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .awards__card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8rem;
    padding: 2.4rem 2.4rem 2.8rem;
    background-image: url(../images/awards/bg-card-768.svg);
  }
}
@media (min-width: 992px) {
  .awards__card {
    padding: 3rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
    background-image: url(../images/awards/bg-card-1024.svg);
  }
}
@media (min-width: 1200px) {
  .awards__card {
    background-image: url(../images/awards/bg-card-1366.svg);
  }
}
@media (min-width: 1600px) {
  .awards__card {
    background-image: url(../images/awards/bg-card-1920.svg);
  }
}

@media (min-width: 768px) {
  .awards__card-desc {
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}

.awards__card-title {
  display: block;
  margin: 0 0 1.6rem;
  font: 400 2.4rem/1.2 var(--font-secondary);
}
@media (min-width: 992px) {
  .awards__card-title {
    font-size: 3.2rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .awards__card-title {
    font-size: 3.8rem;
  }
}

.awards__card-text {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #e4e4e4;
  margin: 0;
  max-width: 97%;
}
@media (min-width: 992px) {
  .awards__card-text {
    font-size: 1.6rem;
  }
}

.awards__card-icon {
  display: block;
  width: 6rem;
  height: 6rem;
  margin: auto 0 0 0;
}
.awards__card-icon img,
.awards__card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .awards__card-icon {
    margin: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .awards__card-icon {
    width: 8rem;
    height: 8rem;
    margin: auto 0 0 0;
  }
}
@media (min-width: 1200px) {
  .awards__card-icon {
    width: 9rem;
    height: 9rem;
  }
}

.awards__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  counter-reset: point;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.awards__list > li {
  background: #fff;
  border-radius: 2.4rem;
  padding: 5.9rem 2.4rem 2.4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.awards__list > li::before {
  content: " ";
  display: block;
  position: absolute;
  top: -12rem;
  left: 50%;
  z-index: -1;
  width: 21.4rem;
  height: 21.4rem;
  margin: 0 0 0 -10.7rem;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  opacity: 0.1;
  filter: blur(7rem);
}
.awards__list > li::after {
  content: counter(point, decimal-leading-zero);
  counter-increment: point 1;
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  font: 400 1.8rem/1.3 var(--font-secondary);
  background: linear-gradient(95.97deg, #ff2d2d 3.24%, #d20505 96.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.awards__list > li:nth-child(odd)::before {
  display: none;
}
@media (min-width: 768px) {
  .awards__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .awards__list > li:nth-child(odd)::before {
    display: block;
  }
  .awards__list > li:nth-child(6n-1)::before, .awards__list > li:nth-child(6n-2)::before, .awards__list > li:nth-child(6n-5)::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .awards__list {
    gap: 2rem;
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 400;
  }
  .awards__list > li {
    padding: 7.7rem 3rem 3rem;
  }
  .awards__list > li::after {
    top: 3rem;
    left: 3rem;
    font-size: 2.4rem;
  }
}

.solutions {
  margin: 0 0 7rem;
  padding: 7rem 0 8rem;
  border-radius: 3.2rem;
  background: #0b0d0e;
  color: #fff;
  position: relative;
  z-index: 0;
}
.solutions::before {
  content: "";
  display: block;
  width: 109.3rem;
  height: 88.8rem;
  background: url(../images/solutions/decor-360.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: -59rem;
  left: -54.7rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .solutions::before {
    background-image: url(../images/solutions/decor-768.svg);
    width: 188rem;
    height: 238rem;
    top: -54.9rem;
    left: -54.7rem;
  }
}
@media (min-width: 992px) {
  .solutions {
    padding: 9rem 0 11rem;
    margin: 0 0 9rem;
    border-radius: 4rem;
  }
  .solutions::before {
    background-image: url(../images/solutions/decor-1024.svg);
    width: 188rem;
    height: 229rem;
    top: -46.8rem;
    left: -53.7rem;
  }
}
@media (min-width: 1200px) {
  .solutions {
    padding: 12rem 0 14rem;
    margin: 0 0 12rem;
  }
  .solutions::before {
    background-image: url(../images/solutions/decor-1366.svg);
    width: 188rem;
    height: 229rem;
    top: -46.8rem;
    left: -53.7rem;
  }
}
@media (min-width: 1600px) {
  .solutions::before {
    background-image: url(../images/solutions/decor-1920.svg);
    width: 261.1rem;
    height: 227.8rem;
    top: -42.9rem;
    left: 50%;
    margin: 0 0 0 -139.05rem;
  }
}

.solutions__title {
  display: block;
  margin: 0 0 4rem;
  font: 400 2.4rem/1.2 var(--font-secondary);
}
.solutions__title mark {
  background: linear-gradient(95.97deg, #ff2d2d 3.24%, #d20505 96.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (min-width: 768px) {
  .solutions__title {
    max-width: 57.2rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .solutions__title {
    font-size: 3.2rem;
    max-width: 76.8rem;
    margin: 0 auto 5.4rem;
  }
}
@media (min-width: 1200px) {
  .solutions__title {
    font-size: 3.8rem;
    margin: 0 auto 6rem;
    max-width: 94rem;
  }
}

.solutions__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .solutions__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .solutions__list {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .solutions__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .solutions__list > li:nth-child(odd) .solutions__card {
    background: rgba(191, 191, 191, 0.04);
    border: 0.1rem solid rgba(247, 247, 247, 0.1);
    border-radius: 2.4rem;
  }
  .solutions__list > li:nth-child(odd) .solutions__card::before {
    position: absolute;
    right: -11.8rem;
    top: -12rem;
    position: absolute;
    width: 30rem;
    height: 30rem;
    background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
    opacity: 0.8;
    filter: blur(9rem);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .solutions__list > li:nth-child(6n-1) .solutions__card, .solutions__list > li:nth-child(6n-2) .solutions__card, .solutions__list > li:nth-child(6n-5) .solutions__card {
    background: rgba(191, 191, 191, 0.04);
    border: 0.1rem solid rgba(247, 247, 247, 0.1);
    border-radius: 2.4rem;
  }
  .solutions__list > li:nth-child(6n-1) .solutions__card::before, .solutions__list > li:nth-child(6n-2) .solutions__card::before, .solutions__list > li:nth-child(6n-5) .solutions__card::before {
    position: absolute;
    right: -11.8rem;
    top: -12rem;
    position: absolute;
    width: 30rem;
    height: 30rem;
    background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
    opacity: 0.8;
    filter: blur(9rem);
  }
}
@media (min-width: 1200px) {
  .solutions__list > li:nth-child(odd) .solutions__card {
    background: rgba(191, 191, 191, 0.04);
    border: 0.1rem solid rgba(247, 247, 247, 0.1);
    border-radius: 2.4rem;
  }
  .solutions__list > li:nth-child(odd) .solutions__card::before {
    position: absolute;
    right: -11.8rem;
    top: -12rem;
    position: absolute;
    width: 30rem;
    height: 30rem;
    background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
    opacity: 0.8;
    filter: blur(9rem);
  }
}

.solutions__card {
  min-height: 100%;
  border: 0.1rem solid transparent;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(162, 0, 0, 0.04), -0.1rem -0.1rem 0.4rem rgba(162, 0, 0, 0.04);
  border-radius: 2.4rem;
  padding: 2.4rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.solutions__card::before {
  content: "";
  display: block;
  position: absolute;
  top: -16rem;
  right: -13rem;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  background: linear-gradient(95.97deg, #bd0000 3.24%, #9f0000 96.41%);
  opacity: 0.05;
  filter: blur(5rem);
}
@media (min-width: 992px) {
  .solutions__card {
    padding: 3rem;
  }
}

.solutions__card-icon {
  display: block;
  margin: 0 0 3.2rem;
  width: 3.6rem;
  height: 3.6rem;
}
.solutions__card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .solutions__card-icon {
    width: 4.4rem;
    height: 4.4rem;
    margin: 0 0 4rem;
  }
}

.solutions__card-title {
  display: block;
  margin: 0 0 2rem;
  font: 400 1.8rem/1.3 var(--font-secondary);
}
@media (min-width: 992px) {
  .solutions__card-title {
    font-size: 2.4rem;
  }
}

.solutions__card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.275;
  font-weight: 400;
}
.solutions__card-list > li {
  position: relative;
  padding: 0 0 0 1.6rem;
}
.solutions__card-list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0664462 0.743756C-0.0616771 0.308522 0.385827 -0.117174 0.815191 0.029423C2.0516 0.451567 3.06633 0.473535 4.36212 0.0558237C4.80684 -0.0875379 5.26884 0.380749 5.13248 0.827668C4.73183 2.14077 4.85151 3.17232 5.26566 4.47401C5.39765 4.88888 4.98733 5.29051 4.57016 5.16599C3.19858 4.75657 2.11992 4.79116 0.704538 5.1997C0.28936 5.31954 -0.104954 4.91028 0.0246091 4.49803C0.438586 3.18083 0.474046 2.12837 0.0664462 0.743756Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .solutions__card-list {
    padding: 0 8rem 0 0;
  }
}
@media (min-width: 1200px) {
  .solutions__card-list {
    padding: 0 4rem 0 0;
  }
}

.products {
  margin: 0 0 7rem;
}
@media (min-width: 992px) {
  .products {
    margin: 0 0 9rem;
  }
}
@media (min-width: 1200px) {
  .products {
    margin: 0 0 12rem;
  }
}

.products__title {
  display: block;
  margin: 0 0 3.2rem;
  font: 400 2.4rem/1.2 var(--font-secondary);
}
@media (min-width: 992px) {
  .products__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .products__title {
    font-size: 3.8rem;
    margin: 0 0 4rem;
  }
}

.products__tabs-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 3.2rem;
}
@media (min-width: 992px) {
  .products__tabs-menu {
    margin: 0 0 4rem;
  }
}
@media (min-width: 1200px) {
  .products__tabs-menu {
    margin: 0 0 6rem;
  }
}

.products__tabs-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 4.2rem;
  padding: 0 1.6rem;
  border-radius: 1rem;
  background: #eeeeee;
  color: #5b5d5e;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  transition: 0.4s;
}
.products__tabs-btn:hover {
  background: #eaeaea;
  color: #0b0d0e;
}
.products__tabs-btn.is-active {
  background: #0b0d0e;
  color: #fff;
}
@media (min-width: 992px) {
  .products__tabs-btn {
    height: 4.8rem;
    padding: 0 2.4rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
  }
}

.products__tabs-wrapper {
  position: relative;
}

.products__tabs-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.products__tabs-content.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: 0.4s;
}

.products__card .row {
  gap: 3.2rem 0;
}
@media (min-width: 992px) {
  .products__card .row {
    gap: 6rem 0;
  }
}

.products__card-title {
  display: block;
  margin: 0 0 1.6rem;
  font: 400 1.8rem/1.3 var(--font-secondary);
}
@media (min-width: 992px) {
  .products__card-title {
    font-size: 2.4rem;
  }
}

.products__card-text {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 1.4rem/1.3 var(--font-secondary);
}
.products__card-text:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .products__card-text {
    font-size: 1.6rem;
    max-width: 83.3333333333%;
  }
}

.products__card-tags {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 2.4rem;
}
.products__card-tags:last-child {
  margin-bottom: 0;
}
.products__card-tags > li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(191, 191, 191, 0.04);
  border: 0.1rem solid #e4e4e4;
  border-radius: 1rem;
  padding: 0.8rem 1.6rem;
  min-height: 3.5rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  color: #0b0d0e;
}
@media (min-width: 992px) {
  .products__card-tags > li {
    min-height: 3.7rem;
    font-size: 1.6rem;
  }
}

.products__card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(162, 0, 0, 0.04), -0.1rem -0.1rem 0.4rem rgba(162, 0, 0, 0.04);
  border-radius: 1.2rem;
}
.products__card-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .products__card-image {
    border-radius: 2rem;
  }
}

.products__card-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 992px) {
  .products__card-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products__card-feature {
  background: #fff;
  color: #0b0d0e;
  border-radius: 2.4rem;
  padding: 2.4rem;
  min-height: 100%;
}
@media (min-width: 992px) {
  .products__card-feature {
    padding: 3rem;
  }
}

.products__card-feature-title {
  display: block;
  margin: 0 0 1.2rem;
  font: 400 1.6rem/1.3 var(--font-secondary);
}
@media (min-width: 992px) {
  .products__card-feature-title {
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 1200px) {
  .products__card-feature-title {
    margin: 0 0 2rem;
  }
}

.products__card-feature-text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #5b5d5e;
}
@media (min-width: 992px) {
  .products__card-feature-text {
    font-size: 1.6rem;
  }
}

.products__card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #5b5d5e;
  margin: 0 0 2.4rem;
}
.products__card-list:last-child {
  margin-bottom: 0;
}
.products__card-list > li {
  position: relative;
  padding: 0 0 0 1.6rem;
}
.products__card-list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0664462 0.743756C-0.0616771 0.308522 0.385827 -0.117174 0.815191 0.029423C2.0516 0.451567 3.06633 0.473535 4.36212 0.0558237C4.80684 -0.0875379 5.26884 0.380749 5.13248 0.827668C4.73183 2.14077 4.85151 3.17232 5.26566 4.47401C5.39765 4.88888 4.98733 5.29051 4.57016 5.16599C3.19858 4.75657 2.11992 4.79116 0.704538 5.1997C0.28936 5.31954 -0.104954 4.91028 0.0246091 4.49803C0.438586 3.18083 0.474046 2.12837 0.0664462 0.743756Z' fill='url(%23paint0_linear_312_2591)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_312_2591' x1='-0.357422' y1='1.60438' x2='5.75009' y2='2.24321' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23BD0000'/%3E%3Cstop offset='1' stop-color='%239F0000'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .products__card-list {
    font-size: 1.6rem;
  }
}

.products__card-video {
  background: #ffffff;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(162, 0, 0, 0.04), -0.1rem -0.1rem 0.4rem rgba(162, 0, 0, 0.04);
  border-radius: 1.2rem;
  display: block;
  position: relative;
}
.products__card-video::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 100;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  opacity: 0;
}
.products__card-video video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}
@media (min-width: 768px) {
  .products__card-video {
    border-radius: 2rem;
  }
}

.clients {
  margin: 0 0 4rem;
}
@media (min-width: 1200px) {
  .clients {
    margin: 0 0 4.8rem;
  }
}

.clients__title {
  display: block;
  margin: 0 0 2.4rem;
  font: 400 2.4rem/1.2 var(--font-secondary);
}
.clients__title mark {
  background: linear-gradient(95.97deg, #ff2d2d 3.24%, #d20505 96.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (min-width: 768px) {
  .clients__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 69rem;
  }
}
@media (min-width: 992px) {
  .clients__title {
    font-size: 3.2rem;
    margin: 0 auto 3.2rem;
  }
}
@media (min-width: 1200px) {
  .clients__title {
    font-size: 3.8rem;
    margin: 0 auto 4rem;
    max-width: 84rem;
  }
}

.clients__swiper {
  margin: 0 -25svw;
}
.clients__swiper .swiper {
  overflow: unset;
  margin: 0 0 1.2rem;
}
.clients__swiper .swiper:nth-child(even) {
  direction: rtl;
}
.clients__swiper .swiper:last-child {
  margin-bottom: 0;
}
.clients__swiper .swiper-wrapper {
  transition-timing-function: linear;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.clients__swiper .swiper-slide {
  width: auto;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .clients__swiper .swiper-slide {
    padding: 0 1.6rem;
  }
}
@media (min-width: 1200px) {
  .clients__swiper .swiper {
    margin: 0 0 2rem;
  }
}

.clients__image {
  width: 16.4rem;
  height: 8rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.clients__image img,
.clients__image svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 992px) {
  .clients__image {
    width: 20.4rem;
    height: 10rem;
  }
}

.reviews {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .reviews {
    margin: 0 0 7rem;
  }
}
@media (min-width: 992px) {
  .reviews {
    margin: 0 0 9rem;
  }
}
@media (min-width: 1200px) {
  .reviews {
    margin: 0 0 12rem;
  }
}

.reviews__swiper .swiper {
  overflow: unset;
  margin: 0 -1rem;
}
.reviews__swiper .swiper-slide {
  padding: 0 1rem;
  width: 30rem;
  max-width: 100%;
  height: auto;
}
.reviews__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .reviews__swiper .swiper-slide {
    width: 50%;
    transition: opacity 0.4s;
  }
  .reviews__swiper .swiper-slide:not(.swiper-slide-visible) {
    opacity: 0;
  }
  .reviews__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    padding: 3.2rem 0 0;
  }
}
@media (min-width: 1200px) {
  .reviews__swiper .swiper-slide {
    width: 33.333%;
  }
}

.reviews__card {
  background: #fff;
  color: #0b0d0e;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 9rem 2.4rem 2.4rem;
  position: relative;
  border-radius: 2rem;
}
.reviews__card::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  width: 4.8rem;
  height: 3.4rem;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='34' viewBox='0 0 48 34' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_312_3703)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 22.6667C0 28.926 4.884 34 10.909 34C16.9341 34 21.8181 28.926 21.8181 22.6667C21.8181 16.4843 17.051 11.4613 11.1282 11.3393C13.8824 8.5332 17.6546 6.79978 21.8181 6.79978V0C9.76852 0 0 10.1485 0 22.6667ZM48 0C35.9504 0 26.1819 10.1485 26.1819 22.6667C26.1819 28.926 31.0664 34 37.091 34C43.116 34 48 28.926 48 22.6667C48 16.4843 43.2329 11.4613 37.3101 11.3393C40.0643 8.5332 43.837 6.79978 48 6.79978V0Z' fill='url(%23paint0_linear_312_3703)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_312_3703' x1='2.86985e-08' y1='11.6481' x2='48.3405' y2='18.7864' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF2D2D'/%3E%3Cstop offset='1' stop-color='%23D20505'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_312_3703'%3E%3Crect width='48' height='34' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media (min-width: 992px) {
  .reviews__card {
    padding: 11.2rem 3rem 3rem;
  }
  .reviews__card::before {
    top: 3rem;
    left: 3rem;
    width: 6rem;
    height: 4.2rem;
  }
}

.reviews__card-blockquote {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1.425;
  font-weight: 400;
  font-style: normal;
  color: #5b5d5e;
}
.reviews__card-blockquote p {
  margin: 0 0 1rem;
}
.reviews__card-blockquote *:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .reviews__card-blockquote {
    font-size: 1.6rem;
    line-height: 1.375;
    font-weight: 400;
    margin: 0 0 2.2rem;
  }
}
@media (min-width: 1200px) {
  .reviews__card-blockquote {
    padding: 0 2rem 0 0;
  }
}

.reviews__card-cite {
  display: block;
  margin: auto 0 0 0;
  font: 400 1.4rem/1.3 var(--font-secondary);
}
@media (min-width: 992px) {
  .reviews__card-cite {
    font-size: 1.6rem;
  }
}