:root {
  --font-primary: "Montserrat", sans-serif;
  --body-bg: #fff;
  --body-color: #1b1e25;
  --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;
  }

  .features__list li {
      position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
  }

}

@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-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.8rem;
}
.swiper-pagination .swiper-pagination-lock {
  display: none;
}

.swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border: 0.2rem solid #1b1e25;
  opacity: 0.3;
  border-radius: 50%;
  transition: 0.4;
}

.swiper-pagination-bullet-active {
  background: #1b1e25;
  opacity: 1;
}

.swiper-nav {
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}
.swiper-nav > * {
  -ms-flex: 1;
  flex: 1;
}

.swiper-prev,
.swiper-next {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #0078b8;
  color: #fff;
  height: 3.2rem;
  width: auto;
  transition: 0.4s;
  cursor: pointer;
}
.swiper-prev svg,
.swiper-next svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
}
.swiper-prev:hover,
.swiper-next:hover {
  background: #0099eb;
  color: #fff;
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.swiper-prev.swiper-button-lock,
.swiper-next.swiper-button-lock {
  display: none;
}

: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;
}

.fancybox__container {
  --fancybox-backdrop-bg: rgba(0, 0, 0, 0.4);
  --f-html-color: #000;
  --f-html-bg: transparent;
}

.fancybox__slide.has-html {
  padding: 10px;
}

/*! 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 {
  color: #0078b8;
  text-decoration: none;
}
a:hover {
  color: #0099eb;
  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: "Raleway";
  src: url("../fonts/Raleway-v4020-Light.woff2") format("woff2"), url("../fonts/Raleway-v4020-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-v4020-Medium.woff2") format("woff2"), url("../fonts/Raleway-v4020-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-v4020-SemiBold.woff2") format("woff2"), url("../fonts/Raleway-v4020-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-v4020-Bold.woff2") format("woff2"), url("../fonts/Raleway-v4020-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-v4020-Regular.woff2") format("woff2"), url("../fonts/Raleway-v4020-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.icon-arrow-right {
  width: 10.2rem;
  height: 2.4rem;
}

.icon-rub {
  font-family: var(--font-secondary);
}

.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;
  height: 4.8rem;
  border: 0.2rem solid transparent;
  border-radius: 0.2rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  gap: 1rem;
  transition: 0.4s;
}
.ui-btn--fullwidth {
  width: 100%;
}

.ui-btn--white {
  background: #fff;
  border-color: #fff;
  color: #1b1e25;
}
.ui-btn--white:hover {
  background: #0099eb;
  border-color: #0099eb;
  color: #fff;
}
.ui-btn--white.ui-btn--outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.ui-btn--white.ui-btn--outline:hover {
  border-color: #0099eb;
  background: #0099eb;
  color: #fff;
}

.ui-btn--blue {
  background: #0078b8;
  border-color: #0078b8;
  color: #fff;
}
.ui-btn--blue:hover {
  background: #0099eb;
  border-color: #0099eb;
  color: #fff;
}
.ui-btn--blue.ui-btn--outline {
  background: transparent;
  border-color: #0078b8;
  color: #0078b8;
}
.ui-btn--blue.ui-btn--outline:hover {
  border-color: #0099eb;
  background: #0099eb;
  color: #fff;
}

.ui-btn--dark {
  background: #171d2c;
  border-color: #171d2c;
  color: #fff;
}
.ui-btn--dark:hover {
  background: #9bcde4;
  border-color: #9bcde4;
  color: #fff;
}

.ui-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: top;
  gap: 1rem;
  position: relative;
  text-decoration: none;
  transition: 0.2s;
}
.ui-link:hover {
  text-decoration: none;
}
.ui-link svg {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
}

.ui-link--underline {
  text-decoration: underline;
}
.ui-link--underline:hover {
  text-decoration: underline;
}

.ui-link--blue {
  color: #9bcde4;
}

.ui-link--white {
  color: #fff;
}
.ui-link--white:hover {
  color: #fff;
}

.ui-link--dark {
  color: #171d2c;
}
.ui-link--dark:hover {
  color: #0099eb;
}

.ui-field {
  position: relative;
}

.ui-input, .ui-textarea {
  display: block;
  width: 100%;
  height: 4.2rem;
  background: transparent;
  border: 0.1rem solid #767676;
  color: #fff;
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
  transition: 0.4s;
  cursor: pointer;
}
.ui-input:-ms-input-placeholder, .ui-textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 0.25;
  transition: 0.4s;
}
.ui-input::placeholder, .ui-textarea::placeholder {
  color: #fff;
  opacity: 0.25;
  transition: 0.4s;
}
.ui-input:focus, .ui-textarea:focus {
  background: rgba(0, 120, 184, 0.15);
  border-color: #0078b8;
}
.ui-input.is-error, .is-error.ui-textarea {
  border-color: #ff6d7a;
}
@media (min-width: 1200px) {
  .ui-input, .ui-textarea {
    height: 6.8rem;
    font-size: 1.8rem;
    padding: 0 2rem;
  }
}

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

.ui-validate {
  display: block;
  padding: 0.8rem 0 0 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ff6d7a;
}

.ui-check {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  gap: 1rem;
  position: relative;
  cursor: pointer;
}

.ui-check__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.ui-check__input:checked ~ .ui-check__checkbox {
  border-color: #0078b8;
}
.ui-check__input:checked ~ .ui-check__checkbox::after {
  opacity: 1;
}

.ui-check__checkbox {
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 0.1rem solid #767676;
  border-radius: 0.5rem;
  display: block;
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  cursor: pointer;
  transition: 0.4s;
}
.ui-check__checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 1.2rem;
  margin: -0.6rem 0 0 -0.7rem;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.8125L3.76399 9.68086C4.57005 10.809 6.25156 10.7946 7.03822 9.65286L13 1' stroke='%230078B8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: 0.4s;
  opacity: 0;
}
@media (min-width: 1200px) {
  .ui-check__checkbox {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.ui-check__text {
  display: block;
  -ms-flex: 1;
  flex: 1;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  -ms-flex-item-align: center;
  align-self: center;
}
.ui-check__text a {
  color: #9bcde4;
  transition: 0.2s;
}
.ui-check__text a:hover {
  color: #9bcde4;
  opacity: 0.5;
}
@media (min-width: 1200px) {
  .ui-check__text {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
  }
}

.ui-title-h1 {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .ui-title-h1 {
    font-size: 4.6rem;
    margin: 0 0 3.2rem;
  }
}

.ui-ol {
  margin: 0 0 1.2rem;
  counter-reset: point;
}
.ui-ol > li {
  position: relative;
  padding: 0 0 0 2.4rem;
  margin: 0 0 0.6rem;
}
.ui-ol > li:after {
  content: counter(point) ".";
  counter-increment: point 1;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  color: #0078b8;
}
@media (min-width: 768px) {
  .ui-ol {
    margin: 0 0 2rem;
  }
  .ui-ol > li {
    margin: 0 0 0.8rem;
  }
}

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);
}
@media (min-width: 1200px) and (max-width: 1400px) {
  html {
    font-size: 0.7122507123vw;
  }
}

body {
  background: var(--body-bg);
  color: var(--body-color);
  font: 400 1.6rem/1.6 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;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container-fluid {
    padding: 0 3rem;
    max-width: 140.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 {
  margin: 0 0 2rem;
  background: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .header {
    margin: 0 0 3rem;
  }
}

.header__promo {
  position: relative;
  padding: 4rem 0 2rem;
  color: #fff;
}
@media (min-width: 768px) {
  .header__promo {
    padding: 2.5rem 0;
  }
}
@media (min-width: 1200px) {
  .header__promo {
    padding: 3rem 0;
    min-height: 14.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
}

.header__promo-image {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100vw;
  height: 100%;
  margin: 0 0 0 -50vw;
  background: #232323;
}
.header__promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.header__promo-desc {
  position: relative;
  z-index: 2;
  text-wrap: balance;
  -ms-flex: 1;
  flex: 1;
}
.header__promo-desc .row {
  gap: 2.4rem 0;
  -ms-flex-align: center;
  align-items: center;
}

.header__promo-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .header__promo-title {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .header__promo-title {
    font-size: 3.5rem;
  }
}

.header__promo-text {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}
.header__promo-text:last-child {
  margin-bottom: 0;
}
.header__promo-text mark {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -ms-flex-align: center;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.8rem;
  border-radius: 10rem;
  border: 0.1rem solid currentColor;
  background: none;
}
@media (min-width: 768px) {
  .header__promo-text {
    font-size: 1.8rem;
    margin: 0 0 3rem;
  }
  .header__promo-text mark {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .header__promo-text {
    font-size: 2.8rem;
    margin: 0;
  }
}

.header__promo-action .ui-btn {
  width: 100%;
  height: 4.8rem;
  font-size: 1.2rem;
  border-radius: 0.2rem;
}
@media (min-width: 768px) {
  .header__promo-action .ui-btn {
    min-width: 27.8rem;
    width: auto;
    height: 5.4rem;
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .header__promo-action .ui-btn {
    height: 7.6rem;
  }
}

.header__grid {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 4.8rem;
}
@media (min-width: 768px) {
  .header__grid {
    height: 9rem;
  }
}
@media (min-width: 1200px) {
  .header__grid {
    height: auto;
    display: grid;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "contacts contacts social" "logo search call" "nav nav nav";
    gap: 2rem;
  }
  .header__grid::before {
    content: "";
    display: block;
    position: absolute;
    top: 5rem;
    left: 50%;
    width: 100vw;
    margin: 0 0 0 -50vw;
    border-top: 0.1rem solid #e8e8e8;
  }
}

.header__contacts {
  display: none;
}
@media (min-width: 1200px) {
  .header__contacts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 5rem;
    gap: 6rem;
    grid-area: contacts;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 400;
    color: #999999;
  }
  .header__contacts > li {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
  }
  .header__contacts a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: #999999;
  }
  .header__contacts a:hover {
    color: #999999;
  }
}

.header__social {
  display: none;
}
@media (min-width: 1200px) {
  .header__social {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 5rem;
    gap: 2rem;
    grid-area: social;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
  }
  .header__social a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: #2d2d2d;
  }
  .header__social img,
  .header__social svg {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.header__logo {
  display: block;
  width: 7.2rem;
  margin: 0 auto;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo {
    width: 13rem;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    grid-area: logo;
  }
}

@media (min-width: 1200px) {
  .header__search {
    grid-area: search;
  }
}

.header__search-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  margin: -1.2rem 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #bebebf;
}
.header__search-toggle svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
}
@media (min-width: 1200px) {
  .header__search-toggle {
    display: none;
  }
}

.header__search-offcanvas {
  display: none;
}
@media (min-width: 1200px) {
  .header__search-offcanvas {
    display: block;
  }
}

@media (min-width: 1200px) {
  .header__search-form {
    position: relative;
  }
}

@media (min-width: 1200px) {
  .header__search-input {
    display: block;
    width: 100%;
    height: 3.7rem;
    border-radius: 0.5rem;
    border: 0.1rem solid transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f0f0f0;
    padding: 0 3.6rem 0 1rem;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 400;
  }
  .header__search-input:-ms-input-placeholder {
    color: #757575;
  }
  .header__search-input::placeholder {
    color: #757575;
  }
}

@media (min-width: 1200px) {
  .header__search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 3.6rem;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #0078b8;
  }
  .header__search-btn svg {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 1.6rem;
    height: 1.6rem;
  }
}

.header__call {
  display: none;
}
@media (min-width: 1200px) {
  .header__call {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0.4rem;
    grid-area: call;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
  }
  .header__call a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    color: #2d2d2d;
  }
  .header__call a:hover {
    color: #2d2d2d;
  }
  .header__call u {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
    border-bottom: 0.1rem dashed currentColor;
    text-decoration: none;
  }
}

@media (min-width: 1200px) {
  .header__nav {
    grid-area: nav;
    position: relative;
    z-index: 100;
  }
  .header__nav::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin: 0 0 0 -50vw;
    background: #0078b8;
    z-index: -1;
  }
}

.header__nav-toggle {
  position: absolute;
  top: 50%;
  left: 0;
  margin: -1.2rem 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: #bebebf;
}
.header__nav-toggle svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1.2rem 0 0 -1.2rem;
}
.header__nav-toggle svg:nth-of-type(1) {
  opacity: 1;
}
.header__nav-toggle svg:nth-of-type(2) {
  opacity: 0;
}
@media (min-width: 1200px) {
  .header__nav-toggle {
    display: none;
  }
}

.header__nav-offcanvas {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav-offcanvas {
    display: block;
  }
}

@media (min-width: 1200px) {
  .header__nav-menu {
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav-menu > li {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border-left: 0.1rem solid #0099eb;
  }
  .header__nav-menu > li:last-child {
    border-right: 0.1rem solid #0099eb;
  }
  .header__nav-menu a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.5rem;
    height: 5rem;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
  }
  .header__nav-menu a:hover {
    background: #0099eb;
    color: #fff;
  }
  .header__nav-menu svg {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 1.3rem;
    height: 1.3rem;
  }
}

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

.footer {
  background: #2b2f32;
  color: #fff;
  padding: 3rem 0;
  text-wrap: balance;
}
.footer > .container-fluid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
.footer .row {
  gap: 3rem 0;
}
.footer *:last-child {
  margin-bottom: 0;
}

.footer__nav {
  margin: 0 0 3rem;
}

.footer__nav-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
.footer__nav-menu a {
  color: #fff;
}
.footer__nav-menu a:hover {
  color: #0099eb;
}
@media (min-width: 1200px) {
  .footer__nav-menu {
    gap: 1.5rem 4rem;
  }
}

.footer__contacts {
  margin: 0 0 3rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.footer__contacts > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.footer__contacts a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  color: #fff;
}
.footer__contacts a:hover {
  color: #fff;
}
.footer__contacts svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer__call {
  margin: 0 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
}
.footer__call .ui-btn {
  width: 100%;
  height: 4.4rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  border-radius: 0.4rem;
}

.footer__payments {
  margin: 0 0 3rem;
  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: 1.5rem;
}
.footer__payments > li {
  -ms-flex: 1;
  flex: 1;
  max-width: 5rem;
}
.footer__payments img {
  display: block;
  width: 5rem;
  height: 3rem;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.4s;
}
.footer__payments img:hover {
  filter: grayscale(0%);
}
@media (min-width: 1200px) {
  .footer__payments {
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.footer__social {
  margin: 0 0 3rem;
  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: 1.5rem;
}
.footer__social a {
  color: #bfc2c7;
}
.footer__social a:hover {
  color: #fff;
}
.footer__social svg {
  display: block;
}

.footer__copyright {
  display: block;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: #777e89;
}
@media (min-width: 1200px) {
  .footer__copyright {
    text-align: left;
  }
}

.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;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background: #fff;
  color: #1b1e25;
  border-radius: 0;
  padding: 4rem 2rem;
  width: 32rem;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  .modal {
    width: 120rem;
    padding: 7rem 10rem;
    text-align: left;
  }
}

.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #1f1f1f;
  cursor: pointer;
  transition: 0.4s;
  opacity: 0.5;
}
.modal__close svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}
.modal__close:hover {
  opacity: 1;
  color: #1f1f1f;
}
@media (min-width: 1200px) {
  .modal__close {
    top: 3.5rem;
    right: 3.5rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}

.modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .modal__grid {
    display: grid;
    grid-template-columns: 1fr 28.4rem;
    grid-template-areas: "head head" "body aside";
    gap: 0 4.5rem;
  }
}

@media (min-width: 1200px) {
  .modal__head {
    grid-area: head;
    margin: 0 0 1rem;
  }
}

@media (min-width: 1200px) {
  .modal__body {
    grid-area: body;
  }
}

.modal__aside {
  display: none;
}
@media (min-width: 1200px) {
  .modal__aside {
    display: block;
    grid-area: aside;
  }
}

.modal__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.modal__title:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .modal__title {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 600;
  }
}

.modal__text {
  display: block;
  margin: 0 auto 2.6rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
  max-width: 24rem;
}
@media (min-width: 1200px) {
  .modal__text {
    max-width: 49rem;
    margin: 0 0 4rem;
    font-size: 1.8rem;
  }
}

.modal__call {
  margin: 0 0 3rem;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 600;
}
.modal__call a {
  color: #0078b8;
}
.modal__call a:hover {
  color: #0099eb;
}
@media (min-width: 1200px) {
  .modal__call {
    margin: 0 0 6.2rem;
    font-size: 4.5rem;
  }
}

.modal__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  margin: 0 0 3rem;
}
.modal__social a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  color: #1b1e25;
}
.modal__social a:hover {
  color: #0099eb;
}
.modal__social img,
.modal__social svg {
  width: 2.2rem;
  height: 2.2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .modal__social {
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4rem;
    font-size: 1.8rem;
    margin: 0 0 4rem;
  }
  .modal__social a {
    gap: 1rem;
  }
  .modal__social img,
  .modal__social svg {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.modal__action .ui-btn {
  min-width: 21.5rem;
  height: 5rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .modal__action .ui-btn {
    height: 7.6rem;
    font-size: 1.4rem;
  }
}

.modal__qr {
  max-width: 28.4rem;
  margin: 0 auto;
}

.modal__qr-image {
  border-radius: 1.2rem;
  border: 0.1rem solid #f2f2f2;
  background: #fff;
  margin: 0 0 1.5rem;
  overflow: hidden;
}
.modal__qr-image img {
  display: block;
  width: 100%;
  height: auto;
}

.modal__qr-figcaption {
  display: block;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.hero {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .hero {
    margin: 0 0 10rem;
  }
}

.hero__swiper .swiper-slide {
  height: auto;
}
.hero__swiper .swiper-control {
  padding: 1rem 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero__swiper .swiper-control {
    padding: 1.5rem 0 0 0;
  }
  .hero__swiper .swiper-prev,
  .hero__swiper .swiper-next {
    height: 5.2rem;
  }
}
@media (min-width: 1200px) {
  .hero__swiper {
    position: relative;
  }
  .hero__swiper .swiper {
    padding: 0 3.2rem;
  }
  .hero__swiper .swiper:has(.swiper-button-lock, .swiper-pagination-lock) {
    padding: 0;
  }
  .hero__swiper .swiper-control {
    padding: 0;
  }
  .hero__swiper .swiper-pagination {
    display: none;
  }
  .hero__swiper .swiper-prev,
  .hero__swiper .swiper-next {
    width: 3.2rem;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 100;
  }
  .hero__swiper .swiper-prev {
    left: 0;
  }
  .hero__swiper .swiper-next {
    right: 0;
  }
}

.hero__card {
  position: relative;
  height: 100%;
  min-height: 55rem;
  background: #000;
  color: #fff;
  padding: 5rem 2rem 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero__card {
    padding: 6rem 3rem 3rem;
  }
}
@media (min-width: 1200px) {
  .hero__card {
    min-height: 45.5rem;
    padding: 8rem;
  }
}

.hero__card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
}
.hero__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66.666% 33.333%;
}

.hero__card-desc {
  position: relative;
  z-index: 2;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .hero__card-desc {
    margin: auto 0;
    -ms-flex: unset;
    flex: unset;
  }
}

.hero__card-title {
  display: block;
  margin: 0 0 2rem;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero__card-title {
    font-size: 4rem;
    margin: 0 0 3rem;
  }
}
@media (min-width: 1200px) {
  .hero__card-title {
    font-size: 4.5rem;
    margin: 0 0 2rem;
    max-width: 106rem;
    text-wrap: unset;
  }
}

.hero__card-text {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero__card-text {
    font-size: 2.2rem;
    margin: 0 0 6rem;
  }
}
@media (min-width: 1200px) {
  .hero__card-text {
    font-size: 1.8rem;
    margin: 0 0 5rem;
  }
}

.hero__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 2.4rem;
}
.hero__card-list > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__card-list svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 0 1.6rem;
}
.hero__card-list b {
  font-weight: 600;
}
@media (min-width: 768px) {
  .hero__card-list {
    gap: 3rem;
    margin: 0 0 6rem;
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .hero__card-list {
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
    padding: 2rem 0 0;
  }
  .hero__card-list > li {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}

.hero__card-action {
  margin: auto 0 3rem;
}
.hero__card-action .ui-btn {
  width: 100%;
  height: 5rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .hero__card-action {
    margin: auto 0 0 0;
  }
  .hero__card-action .ui-btn {
    height: 7.6rem;
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .hero__card-action .ui-btn {
    width: auto;
    height: 5rem;
    min-width: 26.5rem;
    font-size: 1.4rem;
  }
}

.features {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .features {
    margin: 0 0 10rem;
  }
}

.features__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .features__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .features__title {
    margin: 0 0 4.5rem;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
  }
}

.features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.1rem;
  }




}

.features__card {
  height: 100%;
  min-height: 32.6rem;
  background: #000;
  color: #fff;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
  position: relative;
}
.features__card:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .features__card {
    min-height: 34.2rem;
    padding: 0 0 5rem;
  }
}
@media (min-width: 1200px) {
  .features__card {
    min-height: 51rem;
    padding: 3rem;
    overflow: hidden;
  }
  .features__card:hover .features__card-image img {
    filter: grayscale(0%);
  }
  .features__card:hover .features__card-desc {
    transform: translate(0, 0);
  }
  .features__card:hover .features__card-action {
    opacity: 1;
  }
}

.features__card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.features__card-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.features__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .features__card-image img {
    transition: 0.4s;
    filter: grayscale(100%);
  }
}

.features__card-desc {
  position: relative;
  z-index: 2;
  margin: auto 0 0 0;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .features__card-desc {
    padding: 2rem 1rem;
  }
}
@media (min-width: 1200px) {
  .features__card-desc {
    padding: 0;
    transition: 0.4s;
    transform: translate(0, 7rem);
  }
}

.features__card-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .features__card-title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .features__card-title {
    font-size: 2.8rem;
  }
}

.features__card-text {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 768px) {
  .features__card-text {
    font-size: 1.3rem;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .features__card-text {
    font-size: 1.5rem;
    margin: 0 0 2rem;
  }
}

.features__card-action .ui-btn {
  min-width: 21rem;
  height: 5rem;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .features__card-action {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5rem;
  }
  .features__card-action .ui-btn {
    width: 100%;
    height: 5rem;
  }
}
@media (min-width: 1200px) {
  .features__card-action {
    position: relative;
    bottom: 0;
    transition: 0.4s;
    opacity: 0;
  }
  .features__card-action .ui-btn {
    width: auto;
    font-size: 1.4rem;
  }
}

.brands {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .brands {
    margin: 0 0 10rem;
  }
}

.brands__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .brands__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .brands__title {
    margin: 0 0 3rem;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
  }
}

.brands__list {
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .brands__list {
    margin: 0 0 3rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .brands__list > li {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .brands__list {
    margin: 0 0 5rem;
  }
  .brands__list > li {
    width: 20%;
  }
}

.brands__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  color: #1b1e25;
  margin: -0.5px;
  padding: 0.5rem 1.5rem 2rem;
  transition: 0.4s;
  position: relative;
}
.brands__card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 0.1rem solid #f2f2f2;
  background: #fff;
}
.brands__card:hover {
  color: #1b1e25;
  box-shadow: 0 0.8rem 3.2rem rgba(27, 30, 37, 0.08);
}
@media (min-width: 768px) {
  .brands__card {
    min-height: 18.5rem;
  }
}
@media (min-width: 1200px) {
  .brands__card {
    padding: 2rem;
    min-height: 22.3rem;
  }
}

.brands__card-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0.5rem;
  height: 8rem;
}
.brands__card-image img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .brands__card-image {
    margin: 0 0 1rem;
  }
}

.brands__card-title {
  display: block;
  margin: auto 0 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .brands__card-title {
    font-size: 1.5rem;
  }
}

.brands__action .ui-btn {
  width: 100%;
  height: 5rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .brands__action {
    text-align: center;
  }
  .brands__action .ui-btn {
    width: auto;
    min-width: 16rem;
    font-size: 1.3rem;
  }
}

.feedback {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .feedback {
    margin: 0 0 10rem;
  }
}

@media (min-width: 768px) {
  .feedback__grid {
    position: relative;
    display: grid;
    grid-template-columns: 392fr 140fr;
    gap: 4.6rem;
  }
}
@media (min-width: 1200px) {
  .feedback__grid {
    grid-template-columns: 837fr 426fr;
    gap: 10rem;
  }
}

.feedback__main {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 5rem;
  color: #fff;
}
@media (min-width: 768px) {
  .feedback__main {
    position: static;
    padding: 2.5rem 0 2.5rem 0;
  }
}
@media (min-width: 1200px) {
  .feedback__main {
    padding: 6rem 0;
    -ms-flex-item-align: center;
    align-self: center;
  }
}

.feedback__aside {
  position: relative;
  z-index: 2;
  top: -2rem;
  margin: 0 0 -2rem;
  padding: 2rem;
  border-radius: 2rem;
  background: #f0f0f0;
  color: #1b1e25;
}
@media (min-width: 768px) {
  .feedback__aside {
    top: 0;
    margin: 0;
    padding: 2rem 0 2rem 2rem;
    border-radius: 0;
    background: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .feedback__aside::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: -1;
    background: #f0f0f0;
    border-radius: 2rem 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .feedback__aside {
    padding: 9rem 6rem 9rem 9rem;
  }
}

.feedback__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background: #000;
}
.feedback__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: radial-gradient(67.58% 232.99% at 87.81% 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.feedback__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .feedback__image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    margin: 0 0 0 -50vw;
  }
}

.feedback__title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .feedback__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .feedback__title {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 3rem;
  }
}

.feedback__text {
  display: block;
  margin: 0 0 3rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .feedback__text {
    font-size: 1.1rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .feedback__text {
    font-size: 1.8rem;
    margin: 0 0 6rem;
    max-width: 64rem;
  }
}

@media (min-width: 1200px) {
  .feedback__form {
    max-width: 71.2rem;
  }
}
.feedback__form .ui-label {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
@media (min-width: 768px) {
  .feedback__form .ui-label {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .feedback__form .ui-label {
    font-size: 1.8rem;
  }
}
.feedback__form .ui-social {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 0 0 2.6rem;
}
.feedback__form .ui-social > li {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.feedback__form .ui-social a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 4.2rem;
  gap: 0.6rem;
  padding: 0 0.6rem;
  border: 0.545455px solid #767676;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  transition: 0.4s;text-decoration:none!important;
}
.feedback__form .ui-social a:hover {
  background: rgba(0, 120, 184, 0.15);
  border-color: #0078b8;
  color: #fff;
}
@media (min-width: 768px) {
  .feedback__form .ui-social a {
    height: 3.8rem;
    font-size: 1.1rem;
  }
}
@media (min-width: 1200px) {
  .feedback__form .ui-social a {
    gap: 1.2rem;
    height: 6.8rem;
    font-size: 1.8rem;
    padding: 1rem;
  }
}
.feedback__form .ui-social img {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 1200px) {
  .feedback__form .ui-social img {
    width: 4.8rem;
    height: 4.8rem;
  }
}
@media (min-width: 1200px) {
  .feedback__form .ui-social {
    margin: 0 0 4rem;
  }
}
.feedback__form .ui-field {
  margin: 0 0 1.2rem;
}
@media (min-width: 768px) {
  .feedback__form .ui-field {
    margin: 0 0 0.5rem;
  }
}
@media (min-width: 1200px) {
  .feedback__form .ui-field {
    margin: 0 0 1rem;
  }
}
.feedback__form .ui-action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 2.6rem;
}
@media (min-width: 768px) {
  .feedback__form .ui-action {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .feedback__form .ui-action {
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2rem;
  }
}
.feedback__form .ui-btn {
  width: 100%;
  height: 5rem;
  font-size: 1.1rem;
  border-radius: 0.2rem;
}
@media (min-width: 768px) {
  .feedback__form .ui-btn {
    font-size: 1.3rem;
    height: 4.2rem;
  }
}
@media (min-width: 1200px) {
  .feedback__form .ui-btn {
    height: 7.6rem;
    font-size: 1.6rem;
    width: auto;
    min-width: auto;
    padding: 0 4rem;
  }
}

.feedback__qr {
  display: none;
}
@media (min-width: 768px) {
  .feedback__qr {
    display: block;
    margin: 0 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .feedback__qr {
    margin: 0 0 3rem;
  }
}

@media (min-width: 768px) {
  .feedback__qr-figcaption {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
  }
  .feedback__qr-figcaption img,
  .feedback__qr-figcaption svg {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
  }
}
@media (min-width: 1200px) {
  .feedback__qr-figcaption {
    font-size: 1.8rem;
    margin: 0 0 1rem;
    gap: 1rem;
  }
  .feedback__qr-figcaption img,
  .feedback__qr-figcaption svg {
    width: 4.6rem;
    height: 4.6rem;
  }
}

@media (min-width: 768px) {
  .feedback__qr-image {
    overflow: hidden;
    border-radius: 1.2rem;
  }
  .feedback__qr-image img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.feedback__contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.feedback__contacts .ui-btn {
  width: 100%;
  height: 5rem;
  border-radius: 0.5rem;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .feedback__contacts .ui-btn {
    font-size: 0.9rem;
    gap: 0.5rem;
    height: 3.2rem;
  }
  .feedback__contacts .ui-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
@media (min-width: 1200px) {
  .feedback__contacts .ui-btn {
    height: 6.8rem;
    font-size: 1.8rem;
    gap: 1rem;
  }
  .feedback__contacts .ui-btn svg {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.categories {
  margin: 0 0 8rem;
  overflow: unset;
}
@media (min-width: 768px) {
  .categories {
    margin: 0 0 10rem;
  }
}

.categories__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .categories__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .categories__title {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 4rem;
  }
}

.categories__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0.1rem 1rem;
}
@media (min-width: 768px) {
  .categories__list {
    padding: 0.1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .categories__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.categories__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  margin: -0.5px;
  padding: 2rem;
  color: #222222;
  position: relative;
  transition: 0.4s;
}
.categories__card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 0.1rem solid #f2f2f2;
  background: #fff;
}
.categories__card:hover {
  color: #0099eb;
  box-shadow: 0 0.8rem 3.2rem rgba(27, 30, 37, 0.08);
}
@media (min-width: 1200px) {
  .categories__card {
    padding: 4.6rem;
  }
}

.categories__card-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 11rem;
  margin: 0 0 2rem;
}
.categories__card-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.categories__card-title {
  display: block;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}

.about {
  margin: 0 0 8rem;
}
.about .row {
  gap: 3rem 0;
}
@media (min-width: 768px) {
  .about {
    margin: 0 0 10rem;
  }
}
@media (min-width: 1200px) {
  .about {
    border-top: 0.1rem solid #f2f2f2;
    border-bottom: 0.1rem solid #f2f2f2;
  }
  .about .row {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 1200px) {
  .about__desc {
    padding: 7rem 0 7rem 10rem;
  }
}

.about__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 500;
}
.about__title small {
  display: block;
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #b0b0b0;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .about__title {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 4rem;
  }
  .about__title small {
    margin: 0 0 1.5rem;
  }
}

.about__list {
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 600;
  text-wrap: balance;
}
.about__list > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border: 0.1rem solid #0078b8;
  border-radius: 1.2rem;
  gap: 1rem;
  padding: 1.4rem;
}
.about__list img,
.about__list svg {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .about__list {
    margin: 0 0 1.5rem;
  }
  .about__list > li {
    min-height: 5.8rem;
    padding: 1.7rem;
  }
}
@media (min-width: 1200px) {
  .about__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 72.5rem;
    margin: 0 0 4rem;
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 600;
  }
  .about__list > li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2rem;
  }
  .about__list img,
  .about__list svg {
    width: 3.8rem;
    height: 3.8rem;
  }
}

.about__action .ui-btn {
  width: 100%;
  height: 5rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .about__action .ui-btn {
    font-size: 1.3rem;
    border-radius: 0.2rem;
  }
}
@media (min-width: 1200px) {
  .about__action .ui-btn {
    font-size: 1.4rem;
    height: 5rem;
    width: auto;
    min-width: 24.4rem;
  }
}

.about__image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 300/222;
}
.about__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .about__image {
    aspect-ratio: unset;
    width: 50vw;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .about__image {
    float: right;
    margin: 0 -2rem 0 0;
  }
}

.certificates {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .certificates {
    margin: 0 0 10rem;
  }
}

.certificates__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .certificates__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .certificates__title {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 5rem;
  }
}

.certificates__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 0 2rem;
}
.certificates__list > li:nth-of-type(3) ~ li {
  display: none;
}
@media (min-width: 768px) {
  .certificates__list {
    gap: 3rem;
    margin: 0 0 3rem;
  }
}
@media (min-width: 1200px) {
  .certificates__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin: 0 0 5rem;
  }
  .certificates__list > li:nth-of-type(3) ~ li {
    display: block;
  }
}

.certificates__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #2d2d2d;
  transition: 0.4s;
}
.certificates__card:hover {
  color: #0099eb;
}
.certificates__card:hover .certificates__card-image {
  transform: translate(0, -1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}

.certificates__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 307/434;
  position: relative;
  margin: 0 0 1rem;
  transition: 0.4s;
}
.certificates__card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .certificates__card-image {
    margin: 0 0 3rem;
  }
}

.certificates__card-title {
  display: block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .certificates__card-title {
    font-size: 1.6rem;
  }
}

.certificates__action .ui-btn {
  width: 100%;
  height: 5rem;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .certificates__action {
    text-align: center;
  }
  .certificates__action .ui-btn {
    width: auto;
    min-width: 30.2rem;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .certificates__action .ui-btn {
    font-size: 1.6rem;
  }
}

.partners {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .partners {
    margin: 0 0 10rem;
  }
}

.partners__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .partners__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .partners__title {
    margin: 0 0 5rem;
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 400;
  }
}

.partners__swiper .swiper {
  position: relative;
  padding: 0 2rem;
  overflow: unset;
}
.partners__swiper .swiper-slide {
  padding: 0 2rem;
  width: 50%;
  transition: opacity 0.4s;
}
.partners__swiper .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}
.partners__swiper .swiper-control {
  padding: 1rem 0 0;
}
.partners__swiper .swiper-prev,
.partners__swiper .swiper-next {
  position: absolute;
  top: 0;
  bottom: 1rem;
  z-index: 100;
  width: 3rem;
  height: auto;
  background: none;
  color: #1b1e25;
}
.partners__swiper .swiper-prev:hover,
.partners__swiper .swiper-next:hover {
  color: #0099eb;
}
.partners__swiper .swiper-prev {
  left: 0;
}
.partners__swiper .swiper-next {
  right: 0;
}
@media (min-width: 768px) {
  .partners__swiper .swiper-slide {
    width: 33.333%;
  }
}
@media (min-width: 1200px) {
  .partners__swiper .swiper-slide {
    width: 20%;
  }
}

.partners__card {
  display: block;
}

.partners__card-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 8rem;
  width: 16rem;
  margin: 0 auto;
  max-width: 100%;
}
.partners__card-image img,
.partners__card-image svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.txt {
  margin: 0 0 8rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}
.txt h2 {
  display: block;
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
}
.txt h3 {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
}
.txt ul,
.txt ol,
.txt p {
  margin: 0 0 2rem;
}
.txt ul + h2, .txt ul + h3,
.txt ol + h2,
.txt ol + h3,
.txt p + h2,
.txt p + h3 {
  padding-top: 1rem;
}
.txt *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .txt {
    margin: 0 0 10rem;
  }
  .txt h2 {
    font-size: 3.4rem;
  }
}

.consult {
  position: relative;
  background: #0078b8;
  color: #fff;
}

.consult__grid {
  padding: 4rem 2rem;
}
@media (min-width: 768px) {
  .consult__grid {
    padding: 4rem 0;
    display: grid;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 4rem;
  }
}
@media (min-width: 1200px) {
  .consult__grid {
    padding: 4rem 5rem;
    gap: 4.5rem;
  }
}

.consult__title {
  display: block;
  margin: 0 0 1rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.consult__title::before {
  content: "";
  display: block;
  width: 28rem;
  height: 15rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  margin: -7.5rem 0 0 -14rem;
  background: url(../images/consult/decor.webp) 50% 50% no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .consult__title {
    margin: 0;
    padding: 0 3.2rem;
  }
  .consult__title::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4.8rem;
    margin: -2.4rem 0 0 0;
    border-left: 0.2rem solid currentColor;
    border-right: 0.2rem solid currentColor;
  }
}

.consult__text {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (min-width: 768px) {
  .consult__text {
    margin: 0;
  }
}

.consult__action .ui-btn {
  min-width: 18rem;
  width: 100%;
  height: 4.8rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 400;
}
.benefits {
  margin: 0 0 8rem;
  overflow: unset;
}
@media (min-width: 768px) {
  .benefits {
    margin: 0 0 10rem;
  }
}

.benefits__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .benefits__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .benefits__title {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 4rem;
  }
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0.1rem;
}
@media (min-width: 768px) {
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .benefits__list {
    grid-template-columns: 292fr 336fr 320fr 396fr;
  }
}

.benefits__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
  margin: -0.5px;
  padding: 4rem 5.5rem;
  color: #222222;
  position: relative;
  transition: 0.4s;
}
.benefits__card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 0.1rem solid #f2f2f2;
  background: #fff;
}
.benefits__card:hover {
  color: #0099eb;
  box-shadow: 0 0.8rem 3.2rem rgba(27, 30, 37, 0.08);
}

.benefits__card-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.benefits__card-icon img {
  display: block;
  width: 100%;
  height: 10rem;
}

.benefits__card-text {
  display: block;
  margin: 0;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  text-wrap: balance;
}

.distribution {
  margin: 0 0 8rem;
}
@media (min-width: 768px) {
  .distribution {
    margin: 0 0 10rem;
  }
}

.distribution__list {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .distribution__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.distribution__card {
  position: relative;
  z-index: 1;
  background: #000;
  color: #fff;
  width: 100%;
  height: auto;
  aspect-ratio: 673/449;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.distribution__card:hover {
  color: #fff;
}
.distribution__card:hover .distribution__card-image {
  opacity: 0.8;
}
.distribution__card:hover .distribution__card-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.distribution__card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  transition: 0.4s;
  overflow: hidden;
  will-change: transform;
}
.distribution__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.4s;
}

.distribution__card-desc {
  position: relative;
  z-index: 2;
}

.distribution__card-title {
  display: block;
  margin: 0 auto 0.5rem;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 600;
  max-width: 42rem;
}

.distribution__card-text {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  max-width: 28rem;
  margin: 0 auto;
}

.breadcrumbs {
  margin: 0 0 1.6rem;
  padding: 1.6rem 0;
}
@media (min-width: 1200px) {
  .breadcrumbs {
    padding: 0;
    margin: 0 0 2.8rem;
  }
}

.breadcrumbs__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
}
.breadcrumbs__menu > li {
  position: relative;
}
.breadcrumbs__menu > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 1.2rem;
  height: 1.2rem;
  margin: -0.6rem -0.6rem 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.45508 9.95906L7.71508 6.69906C8.10008 6.31406 8.10008 5.68406 7.71508 5.29906L4.45508 2.03906' stroke='%23333333' stroke-opacity='0.5' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.breadcrumbs__menu > li:last-child::after {
  display: none;
}
.breadcrumbs__menu a {
  transition: 0.2s;
  color: #333333;
  opacity: 0.5;
}
.breadcrumbs__menu a:hover {
  color: #333333;
  opacity: 0.75;
}
.breadcrumbs__menu a.is-active {
  opacity: 1;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .breadcrumbs__menu {
    font-size: 1.4rem;
    line-height: 1.575;
    font-weight: 500;
    gap: 0.8rem 2.8rem;
  }
  .breadcrumbs__menu > li::after {
    right: -1.4rem;
  }
}
.intec-ui-markup-ul>.intec-ui-markup-li:before,[data-ui-markup=ul]>[data-ui-markup=li]:before,ul>li:before 
{
content:''!important;
}

.feedback__form .ui-social > li

{
padding:0!important;
}

.benefits  ul > li
{
padding:0!important;
}

.distribution ul > li

{
padding:0!important;
}

.benefits__card
{
border: 0.1rem solid #f2f2f2;
}
.modal__body ul > li
{
padding:0!important;
}
