:root {
  --font-primary: "Heraclito", sans-serif;
  --body-bg: #f9fbfc;
  --body-color: #071c26;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 0 0;
}
.swiper-control:has(.swiper-button-lock), .swiper-control:has(.swiper-pagination-lock) {
  display: none !important;
}

.swiper-nav {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.swiper-prev,
.swiper-next {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f1f5f7;
  border: 0.1rem solid #ebeff1;
  color: #2f444e;
  transition: 0.2s;
}
.swiper-prev svg,
.swiper-next svg {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-prev path,
.swiper-next path {
  transition: opacity 0.4s;
}
.swiper-prev path.is-default,
.swiper-next path.is-default {
  opacity: 1;
}
.swiper-prev path.is-hover,
.swiper-next path.is-hover {
  opacity: 0;
}
.swiper-prev:hover path.is-default,
.swiper-next:hover path.is-default {
  opacity: 0;
}
.swiper-prev:hover path.is-hover,
.swiper-next:hover path.is-hover {
  opacity: 1;
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled {
  color: #acb4b8;
  cursor: default;
  pointer-events: none;
}

.swiper-pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

.swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.6rem;
  background: #dfe4e6;
  cursor: pointer;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.swiper-pagination-bullet-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  transition: opacity 0.4s;
  opacity: 0;
}

.swiper-pagination-bullet-active {
  width: 8rem;
}
.swiper-pagination-bullet-active .swiper-pagination-bullet-progress {
  opacity: 1;
}

.swiper-images .swiper {
  border-radius: 1rem;
  overflow: hidden;
}
.swiper-images .swiper-slide {
  height: auto;
}
.swiper-images .swiper-control {
  padding: 1.2rem 0 0;
}
.swiper-images picture {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

picture {
  display: block;
}

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

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

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

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

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

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

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

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

button {
  cursor: pointer;
}

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

mark {
  background: none;
  color: currentColor;
}

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

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

iframe {
  border: none;
}

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

section {
  overflow: hidden;
}

figure {
  margin: 0;
}

@font-face {
  font-family: "Heraclito";
  src: url("../fonts/Heraclito-Regular.woff2") format("woff2"), url("../fonts/Heraclito-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heraclito";
  src: url("../fonts/Heraclito-Medium.woff2") format("woff2"), url("../fonts/Heraclito-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heraclito";
  src: url("../fonts/Heraclito-SemiBold.woff2") format("woff2"), url("../fonts/Heraclito-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Heraclito";
  src: url("../fonts/Heraclito-Bold.woff2") format("woff2"), url("../fonts/Heraclito-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.ui-btn {
  --spin-color: transparent;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  border: 0.1rem solid transparent;
  height: 4rem;
  padding: 0 2rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 10rem;
  transition: 0.2s;
  position: relative;
}
.ui-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid var(--spin-color);
  border-right-color: transparent;
  margin: -0.8rem 0 0 -0.8rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.ui-btn:hover {
  text-decoration: none;
}
.ui-btn:disabled {
  background: #d9dde5;
  color: #fff;
  pointer-events: none;
}
.ui-btn svg {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  transition: transform 0.2s;
}
.ui-btn path.is-default {
  opacity: 1;
}
.ui-btn path.is-hover {
  opacity: 0;
}
.ui-btn path:not(.is-default):not(.is-hover) {
  fill: url(#gradient-primary);
}
.ui-btn.is-loading {
  color: transparent;
  pointer-events: none;
}
.ui-btn.is-loading::after {
  opacity: 1;
  animation: spin 0.5s infinite linear;
}
.ui-btn:hover path.is-default {
  opacity: 0;
}
.ui-btn:hover path.is-hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .ui-btn {
    height: 4.8rem;
    font-size: 1.6rem;
  }
}

@media (min-width: 992px) {
  .ui-btn--h42 {
    height: 4.2rem;
    font-size: 1.4rem;
  }
}

.ui-btn--circle {
  padding: 0;
  aspect-ratio: 1/1;
}

.ui-btn--primary {
  --spin-color: #fff;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 33.333%, #b61f38 66.666%, #b61f38 100%);
  background-size: 300% 100%;
  color: #fff;
  transition: 0.8s;
}
.ui-btn--primary:hover {
  color: #fff;
  background-position: 100% 0;
}

.ui-btn--red {
  --spin-color: #fff;
  background: #ed1c24;
  color: #fff;
}
.ui-btn--red:hover {
  background: #b61f38;
  color: #fff;
}

.ui-btn--white {
  --spin-color: #071c26;
  background: #ffffff;
  color: #071c26;
}
.ui-btn--white:hover {
  background: #ffffff;
  color: #4e6069;
}

.ui-btn--light {
  --spin-color: #071c26;
  background: #f1f5f7;
  color: #071c26;
}
.ui-btn--light:hover {
  background: #f1f5f7;
  color: #4e6069;
}

.ui-btn--fullwidth {
  width: 100%;
}

.ui-link, .parking__desc a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: 0.4s;
}
.ui-link svg, .parking__desc a svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ui-link:hover, .parking__desc a:hover {
  text-decoration: none;
}

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

.ui-link--red {
  color: #ed1c24;
}
.ui-link--red:hover {
  color: #b61f38;
}

.ui-link--darkred {
  color: #b61f38;
}
.ui-link--darkred:hover {
  color: #ed1c24;
}

.ui-link--dark, .parking__desc a {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.4s;
}
.ui-link--dark:hover, .parking__desc a:hover {
  color: transparent;
}

.ui-link--primary {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: 0.4s;
}
.ui-link--primary:hover {
  color: #b61f38;
}

.ui-field {
  position: relative;
}

.ui-input, .ui-subsc__input {
  display: block;
  width: 100%;
  height: 4rem;
  border-radius: 1rem;
  background: #f1f5f7;
  border: 0.1rem solid #f1f5f7;
  color: #071c26;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  padding: 0 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
}
.ui-input:-ms-input-placeholder, .ui-subsc__input:-ms-input-placeholder {
  color: #6d7c83;
  transition: 0.2s;
}
.ui-input::placeholder, .ui-subsc__input::placeholder {
  color: #6d7c83;
  transition: 0.2s;
}
.ui-input:hover:-ms-input-placeholder, .ui-subsc__input:hover:-ms-input-placeholder {
  color: #4e6069;
}
.ui-input:hover::placeholder, .ui-subsc__input:hover::placeholder {
  color: #4e6069;
}
.ui-input.is-error, .is-error.ui-subsc__input {
  border-color: #ed1c24;
}
@media (min-width: 992px) {
  .ui-input, .ui-subsc__input {
    height: 4.8rem;
  }
}

.ui-validate {
  display: block;
  padding: 0.4rem 0 0 0;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  color: #b61f38;
}

.ui-search {
  position: relative;
}

.ui-search__input {
  width: 100%;
  height: 4rem;
  border-radius: 2rem;
  background: #fff;
  border: 0.1rem solid #ebeff1;
  box-shadow: none;
  color: #071c26;
  padding: 0 5.2rem 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.ui-search__input:-ms-input-placeholder {
  color: #97a1a7;
  transition: 0.2s;
}
.ui-search__input::placeholder {
  color: #97a1a7;
  transition: 0.2s;
}
.ui-search__input:hover:-ms-input-placeholder, .ui-search__input:focus:-ms-input-placeholder {
  color: #4e6069;
}
.ui-search__input:hover::placeholder, .ui-search__input:focus::placeholder {
  color: #4e6069;
}
.ui-search__input:hover ~ .ui-search__btn, .ui-search__input:focus ~ .ui-search__btn {
  color: #acb4b8;
}
.ui-search__input:not(:placeholder-shown) ~ .ui-search__btn path.is-default {
  opacity: 0;
}
.ui-search__input:not(:placeholder-shown) ~ .ui-search__btn path.is-hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .ui-search__input {
    height: 4.2rem;
    font-size: 1.4rem;
  }
}

.ui-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1.2rem;
  height: 100%;
  color: #c0c8cc;
}
.ui-search__btn svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
.ui-search__btn path {
  transition: 0.2s;
}
.ui-search__btn path.is-default {
  opacity: 1;
}
.ui-search__btn path.is-hover {
  opacity: 0;
}
.ui-search__btn:hover path.is-default {
  opacity: 0;
}
.ui-search__btn:hover path.is-hover {
  opacity: 1;
}

.ui-subsc {
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
}

.ui-subsc__input {
  -ms-flex: 1;
  flex: 1;
  border-radius: 1rem 0 0 1rem;
  height: 4.4rem;
  width: auto;
  background: #f1f5f7;
}
@media (min-width: 1200px) {
  .ui-subsc__input {
    height: 4.8rem;
  }
}

.ui-subsc__btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.4rem;
  height: auto;
  aspect-ratio: 1/1;
  background: #f1f5f7;
  border-radius: 0 1rem 1rem 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  cursor: pointer;
}
.ui-subsc__btn:hover {
  background: #ecf0f2;
}
@media (min-width: 1200px) {
  .ui-subsc__btn {
    height: 4.8rem;
  }
}

.ui-dot {
  display: inline-block;
  vertical-align: middle;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ui-dot--gradient {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
}

.ui-pagination {
  --size: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  color: #6b717b;
}
@media (min-width: 768px) {
  .ui-pagination {
    gap: 1.2rem;
    font-size: 1.6rem;
    --size: 4.8rem;
  }
}

.ui-pagination__prev,
.ui-pagination__next {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: var(--size);
  height: var(--size);
  border-radius: 10rem;
  background: #f1f5f7;
  color: #071c26;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  gap: 0.6rem;
  transition: 0.4s;
}
.ui-pagination__prev svg,
.ui-pagination__next svg {
  display: block;
  width: 2rem;
  height: 2rem;
  transition: transform 0.4s;
}
.ui-pagination__prev path,
.ui-pagination__next path {
  stroke: url(#gradient-primary);
}
.ui-pagination__prev:hover,
.ui-pagination__next:hover {
  color: #2f444e;
}
.ui-pagination__prev.is-disabled,
.ui-pagination__next.is-disabled {
  pointer-events: none;
  color: #97a1a7;
}
.ui-pagination__prev.is-disabled path,
.ui-pagination__next.is-disabled path {
  stroke: currentColor;
}
@media (min-width: 768px) {
  .ui-pagination__prev,
  .ui-pagination__next {
    padding: 0 2rem;
  }
}

.ui-pagination__prev:hover svg {
  transform: translateX(-0.2rem);
}
@media (min-width: 768px) {
  .ui-pagination__prev {
    padding-left: 1.4rem;
  }
}

.ui-pagination__next:hover svg {
  transform: translateX(0.2rem);
}
@media (min-width: 768px) {
  .ui-pagination__next {
    padding-right: 1.4rem;
  }
}

.ui-pagination__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.6rem;
}
.ui-pagination__menu > li:nth-of-type(3) ~ li:not(:nth-last-of-type(1), :nth-last-of-type(2)) {
  display: none;
}
@media (min-width: 768px) {
  .ui-pagination__menu {
    gap: 1.2rem;
  }
  .ui-pagination__menu > li:nth-of-type(3) ~ li:not(:nth-last-of-type(1), :nth-last-of-type(2)) {
    display: block;
  }
}

.ui-pagination__link,
.ui-pagination__dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: var(--size);
  height: var(--size);
  border-radius: 10rem;
  background: #ebeff1;
  color: #6b717b;
  transition: 0.4s;
  position: relative;
}
.ui-pagination__link.is-active,
.ui-pagination__dots.is-active {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  color: #fff;
}
.ui-pagination__link.is-active:hover,
.ui-pagination__dots.is-active:hover {
  color: #fff;
}

.ui-pagination__link:hover {
  color: #b61f38;
}

.ui-title-h1 {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .ui-title-h1 {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .ui-title-h1 {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .ui-title-h1 {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}

.ui-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.ui-accordion__card {
  --border-radius: 1rem;
}
.ui-accordion__card.is-open .ui-accordion__card-arrow path:nth-child(1) {
  opacity: 0;
  transform: rotate(180deg);
}
.ui-accordion__card.is-open .ui-accordion__card-arrow path:nth-child(2) {
  opacity: 1;
  transform: rotate(0deg);
}

.ui-accordion__card-question {
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  min-height: 4.4rem;
  cursor: pointer;
}
.ui-accordion__card-question > * {
  background: #fff;
  border-radius: var(--border-radius);
}
.ui-accordion__card-question:hover .ui-accordion__card-title-in {
  color: transparent;
}
@media (min-width: 768px) {
  .ui-accordion__card-question {
    min-height: 5.6rem;
  }
}

.ui-accordion__card-title {
  -ms-flex: 1;
  flex: 1;
  padding: 0.4rem 1.6rem;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 768px) {
  .ui-accordion__card-title {
    padding: 0.8rem 2rem;
    font-size: 1.6rem;
  }
}

.ui-accordion__card-title-in {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.4s;
}

.ui-accordion__card-arrow {
  width: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ui-accordion__card-arrow svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
.ui-accordion__card-arrow path {
  transition: 0.4s;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}
.ui-accordion__card-arrow path:nth-child(1) {
  opacity: 1;
  transform: rotate(0deg);
}
.ui-accordion__card-arrow path:nth-child(2) {
  opacity: 0;
  transform: rotate(-180deg);
}
@media (min-width: 768px) {
  .ui-accordion__card-arrow {
    width: 5rem;
  }
  .ui-accordion__card-arrow svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.ui-accordion__card-answer {
  display: none;
}

.ui-accordion__card-answer-in {
  position: relative;
  top: 0.4rem;
  margin: 0 0 0.4rem;
  padding: 1.2rem 1.6rem 1.6rem;
  background: #fff;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}
.ui-accordion__card-answer-in p {
  margin: 0 0 0.8rem;
}
.ui-accordion__card-answer-in p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .ui-accordion__card-answer-in {
    padding: 1.6rem 2rem 2rem;
  }
}

.ui-placement-card {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: #071c26;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ui-placement-card {
    min-height: 35.6rem;
  }
}
@media (min-width: 992px) {
  .ui-placement-card {
    min-height: 40rem;
  }
}
@media (min-width: 1200px) {
  .ui-placement-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 404fr 828fr;
    grid-template-areas: "desc primary" "secondary primary";
    gap: 7rem 2rem;
    background: none;
    color: #071c26;
    border-radius: 0;
  }
}

.ui-placement-card__image--primary {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ui-placement-card__image--primary::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(357.28deg, rgba(122, 51, 92, 0) 1.88%, rgba(122, 51, 92, 0.14) 97.35%), linear-gradient(275deg, rgba(0, 8, 18, 0) 4.59%, rgba(0, 8, 18, 0.8) 96.54%);
  opacity: 0.8;
}
.ui-placement-card__image--secondary {
  display: none;
}
.ui-placement-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .ui-placement-card__image {
    overflow: hidden;
    border-radius: 2rem;
  }
  .ui-placement-card__image--primary {
    position: relative;
    grid-area: primary;
  }
  .ui-placement-card__image--secondary {
    display: block;
    grid-area: secondary;
  }
}

.ui-placement-card__desc {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ui-placement-card__desc {
    padding: 2.4rem 7.2rem 2.4rem 2.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-placement-card__desc {
    grid-area: desc;
    width: auto;
    height: auto;
    padding: 0;
  }
}

.ui-placement-card__title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  .ui-placement-card__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .ui-placement-card__title {
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 2.4rem;
  }
}

.ui-placement-card__action {
  margin: auto 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.ui-todo-card {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #071c26;
  color: #fff;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (hover: hover) {
  .ui-todo-card {
    will-change: transform;
  }
  .ui-todo-card:hover .ui-todo-card__image img,
  .ui-todo-card:hover .ui-todo-card__arrow svg {
    transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  .ui-todo-card {
    min-height: 33.2rem;
  }
}
@media (min-width: 992px) {
  .ui-todo-card {
    min-height: 41.5rem;
  }
}
@media (min-width: 1200px) {
  .ui-todo-card {
    min-height: 40.4rem;
  }
}

.ui-todo-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ui-todo-card__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(357.28deg, rgba(122, 51, 92, 0) 1.88%, rgba(122, 51, 92, 0.14) 97.35%), linear-gradient(365deg, rgba(0, 8, 18, 0) 4.59%, rgba(0, 8, 18, 0.8) 96.54%);
}
.ui-todo-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.ui-todo-card__arrow {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 3;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  margin: 0;
  background: #fff;
}
.ui-todo-card__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.8s;
}
.ui-todo-card__arrow path {
  fill: url(#gradient-primary);
}
@media (min-width: 768px) {
  .ui-todo-card__arrow {
    left: 2.4rem;
    bottom: 2.4rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}
@media (min-width: 992px) {
  .ui-todo-card__arrow {
    left: 2.4rem;
    bottom: 2.4rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}

.ui-todo-card__desc {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 1.8rem 2rem 6rem;
}
@media (min-width: 768px) {
  .ui-todo-card__desc {
    padding: 2.4rem 2.4rem 7.2rem;
  }
}
@media (min-width: 1200px) {
  .ui-todo-card__desc {
    padding: 3rem 6rem 3rem 3rem;
  }
}

.ui-todo-card__title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 768px) {
  .ui-todo-card__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .ui-todo-card__title {
    font-size: 2.4rem;
  }
}

.ui-todo-card__text {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  max-width: 33rem;
}

.ui-events-card {
  width: 100%;
  height: 100%;
  min-height: 40rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #071c26;
  color: #fff;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (hover: hover) {
  .ui-events-card {
    will-change: transform;
  }
  .ui-events-card:hover .ui-events-card__image img,
  .ui-events-card:hover .ui-events-card__arrow svg {
    transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  .ui-events-card {
    min-height: 30rem;
  }
}
@media (min-width: 1200px) {
  .ui-events-card {
    min-height: 33rem;
  }
}

.ui-events-card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ui-events-card__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(267.28deg, rgba(122, 51, 92, 0) 1.88%, rgba(122, 51, 92, 0.14) 97.35%), linear-gradient(275deg, rgba(0, 8, 18, 0) 4.59%, rgba(0, 8, 18, 0.8) 96.54%);
}
.ui-events-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.ui-events-card__desc {
  position: relative;
  z-index: 2;
  padding: 2rem 2.4rem 2rem 2rem;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .ui-events-card__desc {
    padding: 2.4rem 13.6rem 2.4rem 2.4rem;
  }
}
@media (min-width: 992px) {
  .ui-events-card__desc {
    padding: 2.4rem 10rem 2.4rem 2.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-events-card__desc {
    padding: 3rem 25rem 3rem 3rem;
  }
}

.ui-events-card__info {
  margin: 0 0 auto;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.ui-events-card__info > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.ui-events-card__info > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  margin: -0.2rem -0.2rem 0;
  background: #c0c8cc;
}
.ui-events-card__info svg {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: block;
}
@media (min-width: 768px) {
  .ui-events-card__info {
    font-size: 1.6rem;
  }
  .ui-events-card__info svg {
    width: 2rem;
    height: 2rem;
  }
}

.ui-events-card__title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .ui-events-card__title {
    margin: 0 0 1.2rem;
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .ui-events-card__title {
    font-size: 2.4rem;
  }
}

.ui-events-card__text {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-events-card__text:last-child {
  margin-bottom: 0;
}

.ui-events-card__age {
  display: none;
}
@media (min-width: 768px) {
  .ui-events-card__age {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    z-index: 100;
    width: 4.6rem;
    height: 4.4rem;
    background: rgba(235, 239, 241, 0.2);
    border: 0.1rem solid rgba(250, 252, 253, 0.2);
    -webkit-backdrop-filter: blur(0.6rem);
    backdrop-filter: blur(0.6rem);
    border-radius: 1rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .ui-events-card__age {
    right: 2.4rem;
    bottom: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-events-card__age {
    right: 3rem;
    bottom: 3rem;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    font-size: 1.8rem;
  }
}

.ui-news-card {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background: #f1f5f7;
  color: #071c26;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (hover: hover) {
  .ui-news-card {
    will-change: transform;
  }
  .ui-news-card:hover .ui-news-card__image img,
  .ui-news-card:hover .ui-news-card__arrow svg {
    transform: scale(1.1);
  }
  .ui-news-card:hover .ui-news-card__title {
    color: transparent;
  }
}

.ui-news-card__image {
  background-color: #dfe4e6;
  width: 100%;
  height: 18rem;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  margin: 0;
}
.ui-news-card__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
@media (min-width: 768px) {
  .ui-news-card__image {
    height: 21rem;
  }
}
@media (min-width: 992px) {
  .ui-news-card__image {
    height: 26.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-news-card__image {
    height: 24rem;
  }
}

.ui-news-card__arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  margin: 0;
  width: 3.6rem;
  height: 3.6rem;
  background: #fff;
  border-radius: 50%;
}
.ui-news-card__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.8s;
}
.ui-news-card__arrow path {
  fill: url(#gradient-primary);
}
@media (min-width: 768px) {
  .ui-news-card__arrow {
    width: 4.4rem;
    height: 4.4rem;
  }
}

.ui-news-card__desc {
  padding: 1.6rem 2rem 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 992px) {
  .ui-news-card__desc {
    padding: 2rem 2.4rem 2.4rem;
  }
}

.ui-news-card__title {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  transition: 0.8s;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
}
.ui-news-card__title:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .ui-news-card__title {
    margin: 0 0 2.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-news-card__title {
    font-size: 1.8rem;
    margin: 0 0 1.6rem;
  }
}

.ui-news-card__line {
  border: none;
  border-top: 0.1rem solid #dfe4e6;
  margin: auto 0 1.6rem;
}

.ui-news-card__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}
.ui-news-card__info > li {
  position: relative;
}
.ui-news-card__info > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #c0c8cc;
  margin: -0.2rem -0.2rem 0;
}
@media (min-width: 768px) {
  .ui-news-card__info {
    font-size: 1.4rem;
  }
}

.ui-gallery-card {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #071c26;
  color: #fff;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (hover: hover) {
  .ui-gallery-card {
    will-change: transform;
  }
  .ui-gallery-card:hover .ui-gallery-card__image img {
    transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  .ui-gallery-card {
    min-height: 33.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-gallery-card {
    min-height: 41.8rem;
  }
}

.ui-gallery-card__image {
  position: absolute;
  inset: 0;
}
.ui-gallery-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.ui-benefits-card {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background: #f1f5f7;
  color: #071c26;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
}
@media (min-width: 992px) {
  .ui-benefits-card {
    padding: 2.4rem;
  }
}

.ui-benefits-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 0 3.2rem;
}
.ui-benefits-card__icon img,
.ui-benefits-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ui-benefits-card__title {
  display: block;
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .ui-benefits-card__title {
    margin: 0 0 1.2rem;
    font-size: 1.8rem;
  }
}

.ui-benefits-card__text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}

.ui-webcams-card {
  display: block;
}

.ui-webcams-card__container {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 16/9;
  background: #c0c8cc;
  overflow: hidden;
  margin: 0 0 0.8rem;
  border-radius: 1rem;
}
.ui-webcams-card__container img,
.ui-webcams-card__container video,
.ui-webcams-card__container iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .ui-webcams-card__container {
    margin: 0 0 1.6rem;
  }
}

.ui-webcams-card__title {
  display: block;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .ui-webcams-card__title {
    font-size: 1.8rem;
  }
}

.ui-media-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: #f1f5f7;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  color: #071c26;
}
.ui-media-card:hover {
  color: #071c26;
}
@media (min-width: 768px) {
  .ui-media-card {
    max-height: 28rem;
  }
  .ui-media-card::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2rem;
    height: 7.4rem;
    background: linear-gradient(180deg, rgba(241, 245, 247, 0) 0%, #f1f5f7 100%);
    transition: 0.4s;
    pointer-events: none;
    opacity: 0;
  }
  .ui-media-card.is-scroll::after {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .ui-media-card {
    max-height: 28.8rem;
    padding: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .ui-media-card {
    padding: 3.2rem;
  }
}

.ui-media-card__image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 15.2rem;
  height: 4.6rem;
  margin: 0 0 2rem;
  position: sticky;
  top: 0;
}
.ui-media-card__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 992px) {
  .ui-media-card__image {
    margin: 0 0 2.4rem;
  }
}

.ui-media-card__desc {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.ui-media-card__desc p {
  margin: 0 0 0.8rem;
}
.ui-media-card__desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .ui-media-card__desc {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 400;
    -ms-flex: 1;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .ui-media-card__desc::-webkit-scrollbar {
    display: none;
  }
}

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

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;
}
*: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: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}

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

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

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

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

.is-search-open .header__search-offcanvas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 6rem;
  background: #fff;
  border-bottom: 0.1rem solid #ebeff1;
  margin: 0 0 4rem;
}
.header > .container-fluid {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .header {
    margin: 0 0 6rem;
  }
}
@media (min-width: 992px) {
  .header {
    height: 6.8rem;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 7rem;
    margin: 0 0 8rem;
  }
}

.header__left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 992px) {
  .header__left {
    gap: 2rem;
  }
}

.header__right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .header__right {
    -ms-flex: 1;
    flex: 1;
  }
}

.header__logo {
  position: relative;
  z-index: 200;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.header__logo--igora {
  width: 6rem;
  height: 6.8rem;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.header__logo--igora img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__logo--rg {
  width: 8rem;
  height: 3.4rem;
}
.header__logo--rg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 992px) {
  .header__logo--igora {
    width: 7.5rem;
    height: 8rem;
  }
  .header__logo--rg {
    width: 9.4rem;
    height: 4rem;
  }
}

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

.header__search-offcanvas {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: 0 0 2rem 2rem;
  background: #fff;
  padding: 2rem;
  border-top: 0.1rem solid #ebeff1;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  margin: -0.1rem 0 0;
}
@media (min-width: 992px) {
  .header__search-offcanvas {
    border-radius: 0;
    left: 5.4rem;
    border-bottom: 0.1rem solid #ebeff1;
  }
}
@media (min-width: 1200px) {
  .header__search-offcanvas {
    position: relative;
    top: 0;
    left: 0;
    border-radius: unset;
    background: none;
    padding: 0;
    border: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}

.header__additional {
  display: none;
}
@media (min-width: 768px) {
  .header__additional {
    display: block;
  }
  .header__additional .ui-btn {
    height: 4rem;
    font-size: 1.4rem;
    padding: 0 2rem;
  }
  .header__additional .ui-btn--circle {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .header__additional .ui-btn {
    height: 4.2rem;
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) {
  .header__additional-menu {
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
}

.header__nav {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .header__nav {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .header__nav {
    -ms-flex-order: -1;
    order: -1;
  }
}

.header__nav-toggle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 10rem;
  background: #f1f5f7;
  color: #071c26;
  text-decoration: none;
  transition: 0.4s;
}
.header__nav-toggle:hover {
  text-decoration: none;
  color: #4e6069;
}
@media (min-width: 992px) {
  .header__nav-toggle {
    padding: 0 1.6rem;
    gap: 0.8rem;
    width: auto;
    height: 4.2rem;
  }
}

.header__nav-toggle-icon {
  width: 2rem;
  height: 2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  display: block;
}
.header__nav-toggle-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.header__nav-toggle-icon svg:nth-child(1) {
  transform: scale(1);
  opacity: 1;
}
.header__nav-toggle-icon svg:nth-child(2) {
  transform: scale(0);
  opacity: 0;
}

.header__nav-toggle-text {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-toggle-text {
    display: block;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 500;
    -ms-flex: 1;
    flex: 1;
  }
  .header__nav-toggle-text::after {
    content: attr(data-open-false);
  }
}

.header__nav-offcanvas {
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header__nav-offcanvas::-webkit-scrollbar {
  display: none;
}
.header__nav-offcanvas > .container-fluid {
  padding: 0;
  min-height: 100%;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .header__nav-offcanvas {
    top: 6.8rem;
    left: 5.4rem;
    background: #f9fbfc;
  }
  .header__nav-offcanvas > .container-fluid {
    padding: 0 3rem;
  }
}
@media (min-width: 1200px) {
  .header__nav-offcanvas {
    top: 7rem;
  }
}

.header__nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "categories" "info" "main";
  gap: 1rem;
  padding: 1.6rem 0 7.8rem;
}
@media (min-width: 768px) {
  .header__nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "categories info" "main main";
    gap: 1.6rem;
    padding: 3rem 2rem 9.2rem;
  }
}
@media (min-width: 992px) {
  .header__nav-grid {
    display: grid;
    grid-template-columns: 198fr 324fr 267fr;
    grid-template-areas: "categories main info";
    gap: 0 6rem;
    -ms-flex-align: start;
    align-items: start;
    padding: 4rem 0 10.2rem;
  }
}
@media (min-width: 1200px) {
  .header__nav-grid {
    grid-template-columns: 234fr 632fr 267fr;
    padding: 4rem 3rem 3rem;
  }
}

.header__nav-categories {
  border-radius: 2rem;
  background: #f1f5f7;
  padding: 2rem;
  grid-area: categories;
}
@media (min-width: 768px) {
  .header__nav-categories {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .header__nav-categories {
    border-radius: 0;
    background: none;
    padding: 0;
    position: sticky;
    top: 0;
  }
}

.header__nav-categories-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 2.4rem;
}
@media (min-width: 768px) {
  .header__nav-categories-head {
    display: none;
  }
}

.header__nav-categories-body {
  margin: 0 0 2.4rem;
}
@media (min-width: 768px) {
  .header__nav-categories-body {
    -ms-flex: 1;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .header__nav-categories-body {
    margin: 0;
  }
}

.header__nav-categories-foot {
  padding: 2rem 0 0;
  border-top: 0.1rem solid #dfe4e6;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header__nav-categories-foot {
    display: none;
  }
}

.header__nav-categories-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 600;
}
.header__nav-categories-menu a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.2s;
}
.header__nav-categories-menu a:hover, .header__nav-categories-menu a.is-open {
  color: transparent;
}
.header__nav-categories-menu svg {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .header__nav-categories-menu {
    font-size: 2.2rem;
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }
  .header__nav-categories-menu a {
    gap: 0.6rem;
  }
  .header__nav-categories-menu svg {
    width: 2rem;
    height: 2rem;
  }
}
@media (min-width: 1200px) {
  .header__nav-categories-menu {
    font-size: 2.4rem;
    gap: 2rem;
  }
}

.header__nav-main {
  grid-area: main;
}
@media (min-width: 992px) {
  .header__nav-main {
    position: relative;
  }
  .header__nav-main::before {
    content: "";
    display: block;
    position: absolute;
    top: -4rem;
    bottom: -4rem;
    left: -3rem;
    right: -3rem;
    min-height: calc(100vh - 8rem);
    border-left: 0.1rem solid #ebeff1;
    border-right: 0.1rem solid #ebeff1;
  }
}

.header__nav-dropdown {
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 3.6rem 2rem 9.8rem;
  background: #f9fbfc;
  overflow-x: hidden;
  overflow-y: auto;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translate(100%, 0);
}
.header__nav-dropdown::-webkit-scrollbar {
  display: none;
}
.header__nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0);
}
@media (min-width: 768px) {
  .header__nav-dropdown {
    padding: 4rem 2rem 10.2rem;
  }
}
@media (min-width: 992px) {
  .header__nav-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    padding: 0;
    transform: unset;
  }
  .header__nav-dropdown.is-open {
    position: relative;
  }
}

.header__nav-back {
  margin: 0 0 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 600;
  color: #071c26;
}
.header__nav-back svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
}
@media (min-width: 992px) {
  .header__nav-back {
    display: none;
  }
}

.header__nav-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header__nav-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .header__nav-group {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.header__nav-menu {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: 2rem;
  background: #f1f5f7;
}
.header__nav-menu a {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.2s;
}
.header__nav-menu a:hover {
  color: transparent;
}
@media (min-width: 992px) {
  .header__nav-menu {
    padding: 0;
    border-radius: 0;
    background: none;
  }
}
@media (min-width: 1200px) {
  .header__nav-menu {
    font-size: 1.8rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.header__nav-image {
  background: #f1f5f7;
  border-radius: 2rem;
  overflow: hidden;
  margin: 0 -2rem;
  height: 24rem;
  position: relative;
}
.header__nav-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .header__nav-image {
    margin: 0;
    height: auto;
  }
}
@media (min-width: 992px) {
  .header__nav-image {
    height: 22rem;
  }
}
@media (min-width: 1200px) {
  .header__nav-image {
    height: 24rem;
  }
}

.header__nav-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0 0 1rem;
}
.header__nav-cards:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .header__nav-cards {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.5rem -1rem;
    padding: 0 0 2rem;
    gap: 0;
  }
  .header__nav-cards > li {
    padding: 0 0.5rem 1rem;
    min-width: 50%;
    width: 50%;
    -ms-flex: 1;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .header__nav-cards > li {
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1200px) {
  .header__nav-cards > li {
    width: 50%;
    -ms-flex: 1;
    flex: 1;
  }
}

.header__nav-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 2rem;
  height: 100%;
  min-height: 23rem;
  background: #071c26;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .header__nav-card {
    will-change: transform;
  }
  .header__nav-card:hover .header__nav-card-image img,
  .header__nav-card:hover .header__nav-card-arrow svg {
    transform: scale(1.1);
  }
}
.header__nav-card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.header__nav-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.header__nav-card-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(357.28deg, rgba(122, 51, 92, 0) 1.88%, rgba(122, 51, 92, 0.21) 97.35%), linear-gradient(365deg, rgba(0, 0, 0, 0) 4.59%, rgba(0, 0, 0, 0.42) 96.54%);
}

.header__nav-card-desc {
  position: relative;
  z-index: 2;
  padding: 2rem 6rem 8rem 2rem;
}

.header__nav-card-title {
  display: block;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}

.header__nav-card-arrow {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 100;
}
.header__nav-card-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.8s;
}
@media (min-width: 768px) {
  .header__nav-card-arrow {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.header__nav-banner {
  display: block;
  position: relative;
  height: 100%;
  min-height: 12rem;
  border-radius: 2rem;
  overflow: hidden;
  padding: 2rem 11rem 2rem 2rem;
  position: relative;
}
@media (hover: hover) {
  .header__nav-banner {
    will-change: transform;
  }
  .header__nav-banner:hover .header__nav-banner-image img {
    transform: scale(1.1);
  }
}
.header__nav-banner--rg {
  background: linear-gradient(274.38deg, #edd091 7.15%, #e7e0c0 62.72%), linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  color: #071c26;
}
@media (max-width: 767px) {
  .header__nav-banner--rg .header__nav-banner-title {
    font-size: 1.4rem;
  }
  .header__nav-banner--rg .header__nav-banner-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 1200px) {
  .header__nav-banner--rg {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header__nav-banner--rg .header__nav-banner-image {
    margin: -2rem auto;
    position: relative;
    height: auto;
  }
}
.header__nav-banner--autumn {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  color: #fff;
}
.header__nav-banner--winter {
  background: linear-gradient(84.12deg, #3e273f 4.29%, #2d4f81 94.72%);
  color: #fff;
}

.header__nav-banner-arrow {
  display: none;
}
@media (min-width: 768px) {
  .header__nav-banner-arrow {
    display: block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
  }
  .header__nav-banner-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(-45deg);
  }
}
@media (min-width: 992px) {
  .header__nav-banner-arrow {
    display: none;
  }
}

.header__nav-banner-desc {
  max-width: 30rem;
  position: relative;
  z-index: 2;
}

.header__nav-banner-title {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
}

.header__nav-banner-text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}

.header__nav-banner-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 14rem;
  height: 100%;
  z-index: 1;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__nav-banner-image img {
  display: block;
  transition: 0.8s;
}

.header__nav-info {
  grid-area: info;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 992px) {
  .header__nav-info {
    gap: 2.4rem;
    -ms-flex-align: start;
    align-items: start;
    position: sticky;
    top: 0;
  }
}
@media (min-width: 1200px) {
  .header__nav-info {
    gap: 3.2rem;
  }
}

.header__nav-location {
  border-radius: 1.6rem;
  padding: 1.6rem 2rem;
  background: #f1f5f7;
  position: relative;
}
@media (min-width: 992px) {
  .header__nav-location {
    border-radius: 0;
    padding: 0;
    background: none;
  }
}

.header__nav-location-callback {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-location-callback {
    display: block;
    margin: 0 0 2.4rem;
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .header__nav-location-callback {
    font-size: 2.4rem;
    margin: 0 0 3.2rem;
  }
}

.header__nav-location-url {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: block;
}
@media (min-width: 992px) {
  .header__nav-location-url {
    display: none;
  }
}

.header__nav-location-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
}
.header__nav-location-title svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0 0 auto;
  color: #97a1a7;
}
@media (min-width: 992px) {
  .header__nav-location-title {
    font-size: 1.8rem;
    margin: 0 0 1.2rem;
  }
  .header__nav-location-title svg {
    display: none;
  }
}

.header__nav-location-address {
  display: block;
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  color: #4e6069;
}
.header__nav-location-address p {
  margin: 0;
}
@media (min-width: 992px) {
  .header__nav-location-address {
    margin: 0 0 1.2rem;
  }
}

.header__nav-location-coords {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  font-style: normal;
  color: #4e6069;
}
.header__nav-location-coords dt {
  font-weight: 400;
}
.header__nav-location-coords dd {
  margin: 0;
}
.header__nav-location-coords a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  color: #b61f38;
  text-decoration: none;
  font-weight: 500;
}

.header__nav-weather {
  border-radius: 1.6rem;
  padding: 1.6rem 2rem;
  background: #f1f5f7;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 6rem;
  grid-template-areas: "title title" "tags image";
  -ms-flex-align: end;
  align-items: end;
}
.header__nav-weather > * {
  min-width: 0;
}
.header__nav-weather:hover .header__nav-weather-image img {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .header__nav-weather {
    padding: 2rem;
  }
}

.header__nav-weather-url {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: block;
}

.header__nav-weather-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
  grid-area: title;
}
.header__nav-weather-title svg {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0 0 auto;
  color: #97a1a7;
}
@media (min-width: 992px) {
  .header__nav-weather-title {
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
}

.header__nav-weather-tags {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.4rem;
  grid-area: tags;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #071c26;
}
.header__nav-weather-tags > li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: top;
  background: #fff;
  border-radius: 10rem;
  padding: 0 1.4rem;
  height: 3.4rem;
}
.header__nav-weather-tags mark {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header__nav-weather-image {
  width: 6rem;
  height: 6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__nav-weather-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: 0.8s;
  transform-origin: right bottom;
}

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

.footer {
  border-radius: 2rem 2rem 0 0;
  background: #fff;
  border: 0.1rem solid #ebeff1;
  border-bottom: none;
  margin: 0 -0.1rem;
  padding: 0 0 6.2rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .footer {
    border-radius: 0;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 0;
  }
}

.footer__group {
  position: relative;
  border-bottom: 0.1rem solid #ebeff1;
}
.footer__group:last-child {
  border: none;
}
.footer__group .row {
  margin: 0;
}
.footer__group .row > [class^=col] {
  position: relative;
  z-index: 1;
  padding: 0;
}
.footer__group:nth-child(1) {
  padding: 2rem 0 0;
}
.footer__group:nth-child(1) .row > [class^=col] {
  padding: 2.4rem 0;
  border-bottom: 0.1rem solid #ebeff1;
}
.footer__group:nth-child(1) .row > [class^=col]:last-child {
  border: none;
}
.footer__group:nth-child(2) {
  padding: 2.4rem 0;
}
.footer__group:nth-child(2) .row {
  gap: 1.2rem 0;
}
.footer__group:nth-child(3) {
  padding: 2.4rem 0;
}
@media (min-width: 768px) {
  .footer__group {
    border: none;
  }
  .footer__group:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120vw;
    margin: 0 0 0 -60vw;
    border-bottom: 0.1rem solid #ebeff1;
  }
  .footer__group:nth-child(1) .row {
    margin: 0 -2rem;
  }
  .footer__group:nth-child(1) .row > [class^=col] {
    border: none;
    padding: 3rem 2rem;
  }
  .footer__group:nth-child(1) .row > [class^=col]::before {
    content: "";
    display: block;
    position: absolute;
    top: -10rem;
    left: 0;
    bottom: 0;
    border-left: 0.1rem solid #ebeff1;
  }
  .footer__group:nth-child(1) .row > [class^=col]::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120vw;
    margin: 0 0 0 -60vw;
    border-bottom: 0.1rem solid #ebeff1;
  }
  .footer__group:nth-child(1) .row > [class^=col]:nth-child(odd)::before {
    display: none;
  }
  .footer__group:nth-child(2) {
    padding: 3rem 0;
  }
  .footer__group:nth-child(3) {
    padding: 2.4rem 0;
  }
}
@media (min-width: 992px) {
  .footer__group:nth-child(1) .row {
    margin: 0 -3rem;
  }
  .footer__group:nth-child(1) .row > [class^=col] {
    padding: 3rem;
  }
  .footer__group:nth-child(2) {
    padding: 3rem 0;
  }
  .footer__group:nth-child(3) {
    padding: 2.4rem 0;
  }
}
@media (min-width: 1200px) {
  .footer__group:nth-child(1) .row {
    margin: 0 -2rem;
  }
  .footer__group:nth-child(1) .row > [class^=col] {
    padding: 6rem 2rem;
  }
  .footer__group:nth-child(1) .row > [class^=col]:nth-child(odd)::before {
    display: block;
  }
  .footer__group:nth-child(1) .row > [class^=col]:first-child::before {
    display: none;
  }
  .footer__group:nth-child(2) {
    padding: 0;
  }
  .footer__group:nth-child(2) .row {
    margin: 0 -2rem;
  }
  .footer__group:nth-child(2) .row > [class^=col] {
    padding: 2.4rem 2rem;
  }
  .footer__group:nth-child(2) .row > [class^=col]:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-left: 0.1rem solid #ebeff1;
  }
  .footer__group:nth-child(3) {
    padding: 2.4rem 0;
  }
}

@media (min-width: 768px) {
  .footer__location {
    grid-area: location;
  }
}

.footer__location-title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 768px) {
  .footer__location-title {
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 992px) {
  .footer__location-title {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .footer__location-title {
    font-size: 1.8rem;
    margin: 0 0 2.4rem;
  }
}

.footer__location-address {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  font-style: normal;
  color: #6d7c83;
}
.footer__location-address p {
  margin: 0 0 0.8rem;
}
.footer__location-address p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer__location-address {
    max-width: 22rem;
    margin: 0 0 1.2rem;
  }
}
@media (min-width: 1200px) {
  .footer__location-address {
    max-width: 24.2rem;
  }
}

.footer__location-coords {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}
.footer__location-coords dt {
  margin: 0 0 0.6rem;
  font-weight: inherit;
}
.footer__location-coords dd {
  margin: 0 0 1.2rem;
  font-weight: 500;
}
.footer__location-coords dd:last-child {
  margin-bottom: 0;
}
.footer__location-coords a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  color: #b61f38;
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer__nav {
    grid-area: nav;
  }
}

.footer__nav-title {
  display: none;
}
@media (min-width: 992px) {
  .footer__nav-title {
    display: block;
    margin: 0 0 2rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
  }
}
@media (min-width: 1200px) {
  .footer__nav-title {
    font-size: 1.8rem;
    margin: 0 0 2.4rem;
  }
}

.footer__nav-menu {
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 600;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.footer__nav-menu a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  color: #071c26;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.2s;
}
.footer__nav-menu a:hover {
  color: transparent;
}
.footer__nav-menu a:hover svg {
  transform: translate(5%, -5%);
}
.footer__nav-menu svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.2s;
}
@media (min-width: 992px) {
  .footer__nav-menu {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 500;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .footer__callback {
    grid-area: call;
  }
}

.footer__callback-title {
  display: none;
}
@media (min-width: 768px) {
  .footer__callback-title {
    display: block;
    margin: 0 0 1.6rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .footer__callback-title {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .footer__callback-title {
    font-size: 1.8rem;
    margin: 0 0 2.4rem;
  }
}

.footer__callback-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #6d7c83;
}
.footer__callback-menu > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}
.footer__callback-menu small {
  font-size: inherit;
}
.footer__callback-menu a {
  -ms-flex-order: -100;
  order: -100;
  font-weight: 500;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.2s;
}
.footer__callback-menu a:hover {
  color: transparent;
}
@media (min-width: 1200px) {
  .footer__callback-menu {
    gap: 2rem;
  }
  .footer__callback-menu > li {
    display: block;
  }
  .footer__callback-menu > li small {
    display: block;
    margin: 0 0 0.8rem;
  }
}

.footer__subsc {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title social" "form form";
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem 1.6rem;
}
@media (min-width: 768px) {
  .footer__subsc {
    grid-area: subsc;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "form" "social" ".";
    gap: 1.6rem;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (min-width: 992px) {
  .footer__subsc {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .footer__subsc {
    gap: 2.4rem;
  }
}

.footer__subsc-title {
  display: block;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  grid-area: title;
}
@media (min-width: 1200px) {
  .footer__subsc-title {
    font-size: 1.8rem;
  }
}

.footer__subsc-social {
  grid-area: social;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
}
.footer__subsc-social a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #f1f5f7;
  color: #4e6069;
  transition: 0.2s;
}
.footer__subsc-social a:hover {
  color: #2f444e;
}
.footer__subsc-social a:hover svg {
  transform: scale(1.1);
}
.footer__subsc-social svg {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.2s;
}
@media (min-width: 1200px) {
  .footer__subsc-social {
    gap: 1rem;
  }
  .footer__subsc-social a {
    width: 4.2rem;
    height: 4.2rem;
  }
  .footer__subsc-social svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.footer__subsc-form {
  grid-area: form;
}

.footer__copyright,
.footer__policy,
.footer__rules {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #6d7c83;
  display: block;
  margin: 0;
}
.footer__copyright a,
.footer__policy a,
.footer__rules a {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.2s;
  font-weight: 500;
}
.footer__copyright a:hover,
.footer__policy a:hover,
.footer__rules a:hover {
  color: transparent;
}
@media (min-width: 768px) {
  .footer__copyright br,
  .footer__policy br,
  .footer__rules br {
    display: none;
  }
}

.footer__dev {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #6d7c83;
}
.footer__dev::after {
  display: none;
}
@media (min-width: 768px) {
  .footer__dev {
    grid-area: dev;
  }
  .footer__dev::after {
    display: none;
  }
}

.footer__dev-text {
  display: block;
  margin: 0;
}

.footer__dev-link {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #97a1a7;
}
.footer__dev-link svg {
  display: block;
}
.footer__dev-link g {
  transition: 0.4s;
}
.footer__dev-link g.is-default {
  opacity: 1;
}
.footer__dev-link g.is-hover {
  opacity: 0;
}
.footer__dev-link:hover g.is-default {
  opacity: 0;
}
.footer__dev-link:hover g.is-hover {
  opacity: 1;
}

.aside {
  display: none;
}
@media (min-width: 992px) {
  .aside {
    position: fixed;
    top: 6.8rem;
    left: 0;
    bottom: 6.2rem;
    width: 5.4rem;
    z-index: 800;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border-right: 0.1rem solid #ebeff1;
  }
}
@media (min-width: 1200px) {
  .aside {
    bottom: 0;
  }
}

@media (min-width: 992px) {
  .aside__menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .aside__menu > li {
    -ms-flex: 1;
    flex: 1;
    border-bottom: 0.1rem solid #ebeff1;
  }
  .aside__menu > li:last-child {
    border-bottom: none;
  }
}

@media (min-width: 992px) {
  .aside__link {
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #071c26;
    position: relative;
    transition: 0.2s;
  }
  .aside__link::before, .aside__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 0.4rem;
    background: #ebeff1;
    transition: 0.2s;
  }
  .aside__link::after {
    opacity: 0;
    z-index: 2;
  }
  .aside__link:hover {
    color: #4e6069;
  }
  .aside__link:hover svg {
    transform: scale(1.1);
  }
  .aside__link.is-active {
    background: none;
    color: #071c26;
    pointer-events: none;
  }
  .aside__link.is-active::after {
    opacity: 1;
  }
  .aside__link--summer::after {
    background: #efbc05;
  }
  .aside__link--spring-autumn::after {
    background: linear-gradient(to top, #c2c900 0, #c2c900 calc(50% - 0.1rem), #ffffff calc(50% - 0.1rem), #ffffff calc(50% + 0.1rem), #de9125 calc(50% + 0.1rem), #de9125 100%);
  }
  .aside__link--winter::after {
    background: #7ea9ff;
  }
}

@media (min-width: 992px) {
  .aside__link-valign {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
  }
}

@media (min-width: 992px) {
  .aside__link-icon {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
  }
  .aside__link-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
  }
}

@media (min-width: 992px) {
  .aside__link-text {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
  }
}

.navbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #fff;
  border: 0.1rem solid #ebeff1;
  border-bottom: none;
  border-radius: 2rem 2rem 0 0;
  height: 6.2rem;
  padding: 0 2rem;
}
@media (min-width: 992px) {
  .navbar {
    border-radius: 0;
    background: #f9fbfc;
    border: none;
    border-top: 0.1rem solid #ebeff1;
  }
}
@media (min-width: 1200px) {
  .navbar {
    display: none;
  }
}

.navbar__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}
@media (min-width: 768px) {
  .navbar__menu {
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .navbar__menu {
    gap: 5.2rem;
  }
}

.navbar__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #2f444e;
}
.navbar__link:hover {
  text-decoration: none;
  color: #2f444e;
}
.navbar__link:hover .navbar__link-icon {
  transform: scale(1.1);
}
.navbar__link:hover .navbar__link-text {
  color: transparent;
}

.navbar__link-icon {
  width: 2rem;
  height: 2rem;
  margin: 0;
  transition: 0.2s;
  transform-origin: center bottom;
}
.navbar__link-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.navbar__link-text {
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #2f444e;
  transition: 0.2s;
}

.modal {
  display: none;
  padding: 2.4rem;
  background: #f7f7f7;
  border-radius: 1.4rem;
  width: 100%;
  height: auto;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: auto;
}
.modal--center .modal__title,
.modal--center .modal__text {
  text-align: center;
}
@media (min-width: 768px) {
  .modal {
    padding: 3.2rem;
  }
  .modal--w420 {
    max-width: 42rem;
  }
  .modal--w500 {
    max-width: 50rem;
  }
}

.modal__close {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
  background: #fff;
  color: #00013b;
  margin: 0 0 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.modal__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.modal__close:hover {
  color: #007ec4;
}
@media (min-width: 768px) {
  .modal__close {
    top: 0;
    left: 100%;
    right: auto;
    bottom: auto;
    margin: 0 0 0 1rem;
  }
}

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

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

.modal__form .ui-placeholder {
  margin: 0 0 0.8rem;
}
.modal__form .ui-check {
  margin: 1.2rem 0 2rem;
}
@media (min-width: 768px) {
  .modal__form .ui-placeholder {
    margin: 0 0 1.2rem;
  }
  .modal__form .ui-check {
    margin: 0.8rem 0 2rem;
  }
}

:has(.hero) .header {
  margin: 0;
}

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

.hero__swiper .swiper-slide {
  height: auto;
}
.hero__swiper .swiper-pagination {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
.hero__swiper .swiper-pagination-bullet {
  -ms-flex: 1;
  flex: 1;
  width: auto;
  height: 0.3rem;
  border-radius: 10rem;
  background: rgba(241, 245, 247, 0.4);
  opacity: 1;
  position: relative;
  display: block;
  cursor: pointer;
  transition: 0.2s;
  overflow: unset;
}
.hero__swiper .swiper-pagination-bullet::before {
  content: "";
  display: block;
  position: absolute;
  inset: -0.4rem;
  border-radius: inherit;
}
.hero__swiper .swiper-pagination-bullet:hover {
  background: rgba(241, 245, 247, 0.6);
}
.hero__swiper .swiper-pagination-bullet-progress {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  border-radius: inherit;
  background: #fff;
  transition: opacity 0.4s;
  opacity: 0;
}
.hero__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.hero__swiper .swiper-pagination-bullet-active .swiper-pagination-bullet-progress {
  opacity: 1;
}
@media (min-width: 992px) {
  .hero__swiper .swiper-pagination {
    bottom: 3rem;
    left: 8.4rem;
    right: 3rem;
  }
}
@media (min-width: 1366px) {
  .hero__swiper .swiper-pagination {
    left: 50%;
    right: auto;
    width: 125.2rem;
    margin: 0 0 0 2.7rem;
    transform: translate(-50%, 0);
  }
}

.hero__card {
  position: relative;
  height: calc(100svh - 6rem - 6.2rem);
  max-height: 56rem;
  background: #071c26;
  color: #fff;
  padding: 12rem 0 6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__card {
    padding: 16rem 0 8rem;
    max-height: 58rem;
  }
}
@media (min-width: 992px) {
  .hero__card {
    height: calc(100svh - 6.8rem);
  }
}
@media (min-width: 1200px) {
  .hero__card {
    padding: 18rem 0 9rem;
    height: calc(100svh - 7rem);
    max-height: 68rem;
  }
}

.hero__card-video,
.hero__card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}
.hero__card-video::before, .hero__card-video::after,
.hero__card-image::before,
.hero__card-image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}
.hero__card-video::before,
.hero__card-image::before {
  background: linear-gradient(269.98deg, rgba(0, 8, 18, 0) 11.54%, rgba(0, 8, 18, 0.4) 99.98%);
  opacity: 0.9;
}
.hero__card-video::after,
.hero__card-image::after {
  background: linear-gradient(267.28deg, rgba(122, 51, 92, 0) 1.88%, rgba(122, 51, 92, 0.14) 97.35%), linear-gradient(185deg, rgba(0, 8, 18, 0) 4.59%, rgba(0, 8, 18, 0.8) 96.54%);
}
.hero__card-video img,
.hero__card-video video,
.hero__card-image img,
.hero__card-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card-desc {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero__card-desc {
    max-width: 42.8rem;
  }
}
@media (min-width: 992px) {
  .hero__card-desc {
    max-width: 49.6rem;
  }
}

.hero__card-title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
}
.hero__card-title:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero__card-title {
    font-size: 4rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .hero__card-title {
    font-size: 4.2rem;
  }
}

.hero__card-text {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__card-text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero__card-text {
    font-size: 1.6rem;
    margin: 0 0 3.2rem;
  }
}

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

.placement__title {
  display: block;
  padding: 0 3.2rem 0 0;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .placement__title {
    font-size: 3.2rem;
    margin: 0 0 3rem;
    max-width: 58rem;
  }
}
@media (min-width: 992px) {
  .placement__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .placement__title {
    font-size: 3.6rem;
    max-width: 72rem;
    margin: 0 auto 3.6rem;
    text-align: center;
  }
}

.placement__tabs-control {
  display: none;
}
@media (min-width: 1200px) {
  .placement__tabs-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 4rem;
    padding: 0.6rem;
    border-radius: 10rem;
    background: #f1f5f7;
  }
}

@media (min-width: 1200px) {
  .placement__tabs-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem;
    height: 4.8rem;
    border-radius: 10rem;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 500;
    color: #6d7c83;
    -ms-flex: 1;
    flex: 1;
    transition: 0.2s;
  }
  .placement__tabs-btn svg {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
  }
  .placement__tabs-btn:hover {
    color: #071c26;
  }
  .placement__tabs-btn:hover path {
    fill: url(#gradient-primary);
  }
  .placement__tabs-btn.is-active {
    background: #fff;
    color: #071c26;
  }
  .placement__tabs-btn.is-active path {
    fill: url(#gradient-primary);
  }
}

.placement__tabs-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .placement__tabs-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .placement__tabs-wrapper {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .placement__tabs-wrapper {
    display: block;
  }
}

@media (min-width: 1200px) {
  .placement__tabs-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
  .placement__tabs-content.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: 0.8s;
  }
}

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

@media (min-width: 768px) {
  .todo__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title action" "swiper swiper";
  }
}

.todo__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .todo__title {
    margin: 0 0 3.2rem;
    font-size: 3.2rem;
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .todo__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .todo__title {
    font-size: 3.6rem;
    margin: 0 0 4rem;
  }
}

.todo__swiper .swiper {
  overflow: unset;
  margin: 0 -0.5rem;
}
.todo__swiper .swiper-slide {
  width: 100%;
  max-width: 31rem;
  height: auto;
  padding: 0 0.5rem;
}
.todo__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .todo__swiper {
    grid-area: swiper;
  }
  .todo__swiper .swiper {
    margin: 0 -0.8rem;
  }
  .todo__swiper .swiper-slide {
    width: 50%;
    max-width: 50%;
    padding: 0 0.8rem;
  }
  .todo__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .todo__swiper .swiper {
    margin: 0 -1rem;
  }
  .todo__swiper .swiper-slide {
    padding: 0 1rem;
  }
  .todo__swiper .swiper-control {
    margin: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .todo__swiper .swiper {
    margin: 0;
  }
  .todo__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transform: none !important;
  }
  .todo__swiper .swiper-slide {
    padding: 0;
    width: auto;
    max-width: none;
  }
  .todo__swiper .swiper-control {
    display: none;
  }
}

@media (min-width: 768px) {
  .todo__action {
    grid-area: action;
  }
}

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

.map__container {
  background: #dfe4e6;
  margin: 0 -2rem;
  border-radius: 2rem;
  height: 63.2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #071c26;
}
@media (min-width: 768px) {
  .map__container {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .map__container {
    height: 56.2rem;
  }
}

.map__title {
  display: block;
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
  color: #2f444e;
}
.map__title small {
  display: block;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  padding: 1.6rem 0 0;
}
@media (min-width: 768px) {
  .map__title {
    font-size: 3.2rem;
  }
  .map__title small {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .map__title {
    font-size: 3.6rem;
  }
  .map__title small {
    font-size: 2.4rem;
  }
}

.events {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .events {
    margin: 0 0 6rem;
  }
}

@media (min-width: 768px) {
  .events__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title action" "swiper swiper";
  }
}

.events__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .events__title {
    margin: 0 0 3rem;
    font-size: 3.2rem;
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .events__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .events__title {
    font-size: 3.6rem;
    margin: 0 0 4.2rem;
  }
}

.events__swiper .swiper {
  overflow: unset;
  margin: 0 -0.5rem;
}
.events__swiper .swiper-slide {
  width: 100%;
  max-width: 31rem;
  height: auto;
  padding: 0 0.5rem;
}
.events__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .events__swiper {
    grid-area: swiper;
  }
  .events__swiper .swiper {
    margin: 0 -0.8rem;
  }
  .events__swiper .swiper-slide {
    width: 66.666%;
    max-width: 49.6rem;
    padding: 0 0.8rem;
  }
  .events__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .events__swiper .swiper {
    margin: 0 -1rem;
  }
  .events__swiper .swiper-slide {
    width: 50%;
    max-width: 50%;
    padding: 0 1rem;
  }
  .events__swiper .swiper-control {
    margin: 0 1rem;
  }
}

.events__action {
  padding: 2rem 0 0;
}
@media (min-width: 768px) {
  .events__action {
    grid-area: action;
    padding: 0;
  }
}

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

@media (min-width: 768px) {
  .news__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title action" "swiper swiper";
  }
}

.news__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .news__title {
    margin: 0 0 3rem;
    font-size: 3.2rem;
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .news__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .news__title {
    font-size: 3.6rem;
    margin: 0 0 4rem;
  }
}

.news__swiper .swiper {
  overflow: unset;
  margin: 0 -0.5rem;
}
.news__swiper .swiper-slide {
  width: 100%;
  max-width: 31rem;
  height: auto;
  padding: 0 0.5rem;
}
.news__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .news__swiper {
    grid-area: swiper;
  }
  .news__swiper .swiper {
    margin: 0 -0.8rem;
  }
  .news__swiper .swiper-slide {
    width: 50%;
    max-width: 50%;
    padding: 0 0.8rem;
  }
  .news__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .news__swiper .swiper {
    margin: 0 -1rem;
  }
  .news__swiper .swiper-slide {
    padding: 0 1rem;
  }
  .news__swiper .swiper-control {
    margin: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .news__swiper .swiper-slide {
    width: 33.333%;
    max-width: 33.333%;
  }
}

.news__action {
  padding: 2rem 0 0;
}
@media (min-width: 768px) {
  .news__action {
    grid-area: action;
    padding: 0;
  }
}

.news__list {
  margin: 0 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
.news__list:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .news__list {
    margin: 0 0 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .news__list {
    margin: 0 0 2.4rem;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .news__list {
    margin: 0 0 4rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .gallery {
    margin: 0 0 8rem;
  }
}
@media (min-width: 1200px) {
  .gallery {
    margin: 0 0 8rem;
  }
}

@media (min-width: 768px) {
  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title action" "swiper swiper";
  }
}

.gallery__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .gallery__title {
    margin: 0 0 3rem;
    font-size: 3.2rem;
    grid-area: title;
    max-width: 48rem;
  }
}
@media (min-width: 992px) {
  .gallery__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .gallery__title {
    font-size: 3.6rem;
    margin: 0 0 4.2rem;
    max-width: none;
  }
}

.gallery__swiper .swiper {
  overflow: unset;
  margin: 0 -0.5rem;
}
.gallery__swiper .swiper-slide {
  width: 100%;
  max-width: 31rem;
  height: auto;
  padding: 0 0.5rem;
}
.gallery__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .gallery__swiper {
    grid-area: swiper;
  }
  .gallery__swiper .swiper {
    margin: 0 -0.8rem;
  }
  .gallery__swiper .swiper-slide {
    width: 66.666%;
    max-width: 49.6rem;
    padding: 0 0.8rem;
  }
  .gallery__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .gallery__swiper .swiper {
    margin: 0 -1rem;
  }
  .gallery__swiper .swiper-slide {
    padding: 0 1rem;
    max-width: 62rem;
  }
  .gallery__swiper .swiper-control {
    margin: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .gallery__swiper .swiper-slide {
    width: 50%;
    max-width: 50%;
  }
}

.gallery__action {
  padding: 2rem 0 0;
}
@media (min-width: 768px) {
  .gallery__action {
    grid-area: action;
    padding: 0;
  }
}

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

@media (min-width: 768px) {
  .benefits__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title action" "swiper swiper";
  }
}

.benefits__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .benefits__title {
    margin: 0 0 3rem;
    font-size: 3.2rem;
    grid-area: title;
    max-width: 48rem;
  }
}
@media (min-width: 992px) {
  .benefits__title {
    max-width: 58rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .benefits__title {
    max-width: none;
    margin: 0 0 4.2rem;
    font-size: 3.6rem;
  }
}

.benefits__swiper .swiper {
  overflow: unset;
  margin: 0 -0.5rem;
}
.benefits__swiper .swiper-slide {
  width: 100%;
  max-width: 31rem;
  height: auto;
  padding: 0 0.5rem;
}
.benefits__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .benefits__swiper {
    grid-area: swiper;
  }
  .benefits__swiper .swiper {
    margin: 0 -0.8rem;
  }
  .benefits__swiper .swiper-slide {
    width: 33.333%;
    max-width: 33.333%;
    padding: 0 0.8rem;
  }
  .benefits__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .benefits__swiper .swiper {
    margin: 0 -1rem;
  }
  .benefits__swiper .swiper-slide {
    padding: 0 1rem;
  }
  .benefits__swiper .swiper-control {
    margin: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .benefits__swiper .swiper-slide {
    width: 25%;
    max-width: 25%;
  }
}

.benefits__action {
  padding: 2rem 0 0;
}
@media (min-width: 768px) {
  .benefits__action {
    grid-area: action;
    padding: 0;
  }
}

:has(.breadcrumbs) .header {
  margin: 0;
}

.breadcrumbs {
  padding: 2rem 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #2f444e;
  position: relative;
  overflow: hidden;
}
.breadcrumbs::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 9rem;
  background: linear-gradient(270deg, #f9fbfc 0%, rgba(249, 251, 252, 0) 100%);
  pointer-events: none;
}
.breadcrumbs > .container-fluid {
  overflow-x: auto;
  overflow-y: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.breadcrumbs > .container-fluid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumbs {
    padding: 4rem 0 2.4rem;
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .breadcrumbs {
    padding: 5rem 0 2.4rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumbs {
    padding: 5rem 0 3.2rem;
  }
}

.breadcrumbs__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.6rem;
  width: -moz-max-content;
  width: max-content;
}
.breadcrumbs__menu > li {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
}
.breadcrumbs__menu > li:not(:last-child)::after {
  content: "/";
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 100%;
  width: 2.6rem;
  height: 100%;
}
.breadcrumbs__menu svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}

.breadcrumbs__link {
  color: #2f444e;
}
.breadcrumbs__link:hover {
  color: #071c26;
}
.breadcrumbs__link.is-active {
  pointer-events: none;
}

.news-article {
  margin: 0 0 5rem;
  overflow: unset;
}
@media (min-width: 768px) {
  .news-article {
    margin: 0 0 8rem;
  }
}
@media (min-width: 1200px) {
  .news-article {
    margin: 0 0 6rem;
  }
}

.news-article__head {
  margin: 0 0 2.4rem;
}
@media (min-width: 768px) {
  .news-article__head {
    margin: 0 0 4rem;
  }
}
@media (min-width: 992px) {
  .news-article__head {
    margin: 0 0 5rem;
  }
}
@media (min-width: 1200px) {
  .news-article__head {
    margin: 0 0 3rem;
    padding: 0 0 3rem;
    border-bottom: 0.1rem solid #dfe4e6;
  }
}

.news-article__body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "aside" "main";
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .news-article__body {
    display: grid;
    -ms-flex-align: start;
    align-items: start;
    grid-template-columns: 480fr 232fr;
    grid-template-areas: "main aside";
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .news-article__body {
    grid-template-columns: 600fr 290fr;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .news-article__body {
    grid-template-columns: 828fr 404fr;
  }
}

.news-article__main {
  grid-area: main;
}
@media (min-width: 1200px) {
  .news-article__main {
    margin: 0 4rem 0 0;
  }
}

.news-article__aside {
  grid-area: aside;
}
@media (min-width: 768px) {
  .news-article__aside {
    position: sticky;
    top: 7.6rem;
  }
}
@media (min-width: 992px) {
  .news-article__aside {
    top: 8rem;
  }
}
@media (min-width: 1200px) {
  .news-article__aside {
    top: 9rem;
  }
}

.news-article__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .news-article__title {
    font-size: 4rem;
    margin: 0 0 3.4rem;
  }
}
@media (min-width: 1200px) {
  .news-article__title {
    font-size: 4.2rem;
  }
}

.news-article__info {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  min-height: 3rem;
  border-radius: 10rem;
  background: #fff;
  border: 0.1rem solid #ecf0f2;
  padding: 0.4rem 1.4rem;
  gap: 0.4rem 2rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #071c26;
}
.news-article__info > li {
  position: relative;
}
.news-article__info > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #c0c8cc;
  margin: -0.2rem -0.2rem 0;
}
@media (min-width: 768px) {
  .news-article__info {
    min-height: 3.2rem;
    font-size: 1.4rem;
    gap: 0.4rem 2.4rem;
  }
  .news-article__info > li:not(:last-child)::after {
    right: -1.2rem;
  }
}

.blog-article {
  margin: 0 0 5rem;
  overflow: unset;
}
@media (min-width: 768px) {
  .blog-article {
    margin: 0 0 8rem;
  }
}
@media (min-width: 1200px) {
  .blog-article {
    margin: 0 0 6rem;
  }
}

.blog-article__head {
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .blog-article__head {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .blog-article__head {
    margin: 0 0 4rem;
  }
}
@media (min-width: 1200px) {
  .blog-article__head {
    display: grid;
    -ms-flex-align: start;
    align-items: start;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title info" "image image";
    margin: 0 0 3rem;
    gap: 0 3rem;
  }
}

.blog-article__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 992px) {
  .blog-article__body {
    grid-template-columns: 290fr 600fr;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .blog-article__body {
    grid-template-columns: 404fr 828fr;
  }
}

.blog-article__title {
  display: block;
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .blog-article__title {
    font-size: 3.2rem;
    margin: 0 0 2rem;
    grid-area: title;
  }
}
@media (min-width: 1200px) {
  .blog-article__title {
    font-size: 3.6rem;
    margin: 0 0 3.2rem;
  }
}

.blog-article__info {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  min-height: 3rem;
  border-radius: 10rem;
  background: #fff;
  border: 0.1rem solid #ecf0f2;
  padding: 0.8rem 1.4rem;
  gap: 0.4rem 2rem;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #071c26;
  margin: 0 0 2.4rem;
}
.blog-article__info > li {
  position: relative;
}
.blog-article__info > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #c0c8cc;
  margin: -0.2rem -0.2rem 0;
}
@media (min-width: 768px) {
  .blog-article__info {
    margin: 0 0 2.4rem;
    min-height: 3.2rem;
    font-size: 1.4rem;
    gap: 0.4rem 2.4rem;
    grid-area: info;
  }
  .blog-article__info > li:not(:last-child)::after {
    right: -1.2rem;
  }
}
@media (min-width: 992px) {
  .blog-article__info {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 1200px) {
  .blog-article__info {
    margin: 1rem 0;
  }
}

.blog-article__image {
  background-color: #dfe4e6;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  border-radius: 2rem;
}
.blog-article__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .blog-article__image {
    height: 22.6rem;
    grid-area: image;
  }
}
@media (min-width: 992px) {
  .blog-article__image {
    height: 28.2rem;
  }
}
@media (min-width: 1200px) {
  .blog-article__image {
    height: 40rem;
  }
}

.docs-article {
  margin: 0 0 6rem;
}
@media (min-width: 992px) {
  .docs-article {
    margin: 0 0 8rem;
  }
}
@media (min-width: 1200px) {
  .docs-article {
    margin: 0 0 10rem;
  }
}

.docs-article__head {
  margin: 0 0 2.4rem;
}
@media (min-width: 768px) {
  .docs-article__head {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 1200px) {
  .docs-article__head {
    margin: 0 0 4rem;
  }
}

.docs-article__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
@media (min-width: 992px) {
  .docs-article__body {
    display: grid;
    grid-template-columns: 600fr 290fr;
    gap: 2rem;
    grid-template-areas: "main aside";
  }
}
@media (min-width: 1200px) {
  .docs-article__body {
    grid-template-columns: 934fr 298fr;
  }
}

@media (min-width: 992px) {
  .docs-article__aside {
    grid-area: aside;
  }
}

.docs-article__main picture {
  border-radius: 1rem;
}
.docs-article__main picture img {
  min-height: auto;
}
@media (min-width: 992px) {
  .docs-article__main {
    grid-area: main;
  }
}

.docs-article__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 3.2rem;
  max-width: 94rem;
}
@media (min-width: 768px) {
  .docs-article__title {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .docs-article__title {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .docs-article__title {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}
.docs-article__title:last-child {
  margin-bottom: 0;
}

.other {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .other {
    margin: 0 0 8rem;
  }
}
@media (min-width: 992px) {
  .other {
    margin: 0 0 8rem;
  }
}

@media (min-width: 768px) {
  .other__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title action" "swiper swiper";
  }
}

.other__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .other__title {
    margin: 0 0 3rem;
    font-size: 3.2rem;
    grid-area: title;
  }
}
@media (min-width: 992px) {
  .other__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .other__title {
    font-size: 3.6rem;
    margin: 0 0 4rem;
  }
}

.other__swiper .swiper {
  overflow: unset;
  margin: 0 -0.5rem;
}
.other__swiper .swiper-slide {
  width: 100%;
  max-width: 31rem;
  height: auto;
  padding: 0 0.5rem;
}
.other__swiper .swiper-control {
  display: none;
}
@media (min-width: 768px) {
  .other__swiper {
    grid-area: swiper;
  }
  .other__swiper .swiper {
    margin: 0 -0.8rem;
  }
  .other__swiper .swiper-slide {
    width: 50%;
    max-width: 50%;
    padding: 0 0.8rem;
  }
  .other__swiper .swiper-control {
    display: -ms-flexbox;
    display: flex;
    margin: 0 0.8rem;
  }
}
@media (min-width: 992px) {
  .other__swiper .swiper {
    margin: 0 -1rem;
  }
  .other__swiper .swiper-slide {
    padding: 0 1rem;
  }
  .other__swiper .swiper-control {
    margin: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .other__swiper .swiper-slide {
    width: 33.333%;
    max-width: 33.333%;
  }
}

.other__action {
  padding: 2rem 0 0;
}
@media (min-width: 768px) {
  .other__action {
    grid-area: action;
    padding: 0;
  }
}

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

.webcams__title {
  display: block;
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .webcams__title {
    margin: 0 0 3.2rem;
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .webcams__title {
    margin: 0 0 4rem;
    font-size: 3.6rem;
  }
}
.webcams__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .webcams__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.weather__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 2.4rem;
}
@media (min-width: 768px) {
  .weather__title {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .weather__title {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .weather__title {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 768px) {
  .weather__title {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .weather__title {
    margin: 0 0 4rem;
  }
}

.weather__list {
  margin: 0 0 2.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.weather__caption {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 768px) {
  .weather__caption {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .weather__caption {
    text-align: center;
  }
}

.weather__info {
  background: #f1f5f7;
  padding: 2rem;
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "aside" "main";
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .weather__info {
    display: grid;
    grid-template-columns: 33.2rem 1fr;
    grid-template-areas: "aside main";
    gap: 1.6rem;
    padding: 2.4rem;
  }
}
@media (min-width: 992px) {
  .weather__info {
    grid-template-columns: 34.4rem 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .weather__info {
    grid-template-columns: 38rem 1fr;
  }
}

.weather__info-aside {
  grid-area: aside;
}

.weather__info-main {
  grid-area: main;
}

.weather__info-swiper .swiper {
  margin: 0 -0.8rem;
  overflow: unset;
}
.weather__info-swiper .swiper-slide {
  padding: 0 0.8rem;
  width: 25%;
  min-width: 20.2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .weather__info-swiper .swiper-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.6rem 0;
    transform: none !important;
  }
  .weather__info-swiper .swiper-slide {
    width: 50%;
    min-width: auto;
  }
}
@media (min-width: 768px) {
  .weather__info-swiper {
    overflow: hidden;
    margin: 0 -2.4rem 0 0;
    padding: 0 2.4rem 0 0;
    border-radius: 1rem 0 0 1rem;
    height: 100%;
  }
  .weather__info-swiper .swiper {
    margin: 0 -0.8rem;
    height: 100%;
  }
  .weather__info-swiper .swiper-slide {
    padding: 0 0.8rem;
    min-width: 15.6rem;
  }
}
@media (min-width: 992px) {
  .weather__info-swiper .swiper {
    margin: 0 -1rem;
  }
  .weather__info-swiper .swiper-slide {
    padding: 0 1rem;
    min-width: 20.6rem;
  }
}
.weather__forecast {
  background: #f1f5f7;
  padding: 2rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .weather__forecast {
    padding: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .weather__forecast {
    padding: 2.4rem 2.4rem 3.2rem;
  }
}

.weather__forecast-title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .weather__forecast-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .weather__forecast-title {
    font-size: 2.4rem;
  }
}

.weather__forecast-swiper .swiper {
  margin: 0 -0.8rem;
  overflow: unset;
}
.weather__forecast-swiper .swiper-slide {
  padding: 0 0.8rem;
  width: 10%;
  min-width: 11.2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .weather__forecast-swiper .swiper {
    margin: 0 -1rem;
  }
  .weather__forecast-swiper .swiper-slide {
    padding: 0 1rem;
    min-width: 12.2rem;
  }
}

.weather__today {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .weather__today {
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 1.6rem;
  }
}

.weather__today-image {
  width: 5.4rem;
  height: 5.4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.weather__today-image img,
.weather__today-image svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.weather__today-desc {
  -ms-flex: 1;
  flex: 1;
}

.weather__today-title {
  display: block;
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .weather__today-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .weather__today-title {
    font-size: 2.4rem;
  }
}

.weather__today-text {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #6d7c83;
}
@media (min-width: 768px) {
  .weather__today-text {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1200px) {
  .weather__today-text {
    font-size: 1.6rem;
    margin: 0 0 1.2rem;
  }
}

.weather__today-tags {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 768px) {
  .weather__today-tags {
    gap: 0.8rem;
  }
}

.weather__today-tag {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  height: 3.6rem;
  border-radius: 10rem;
  background: #fff;
  color: #071c26;
  padding: 0 1.6rem;
  gap: 0.8rem;
}

.weather__today-tag-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
}
.weather__today-tag-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.weather__today-tag-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  gap: 1.6rem;
}
.weather__today-tag-list > li {
  position: relative;
}
.weather__today-tag-list > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 1.6rem;
  background: #c0c8cc;
  position: absolute;
  top: 50%;
  right: -0.8rem;
  margin: -0.8rem 0 0 0;
}
@media (min-width: 768px) {
  .weather__today-tag-list {
    font-size: 1.4rem;
  }
}

.weather__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 1.6rem;
  text-align: center;
}

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

.weather__card-text {
  display: block;
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #6d7c83;
}

.weather__card-image {
  margin: 0 auto 0.8rem;
  width: 3.2rem;
  height: 3.2rem;
}
.weather__card-image img,
.weather__card-image svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.weather__card-temp {
  display: block;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 1200px) {
  .weather__card-temp {
    font-size: 2.2rem;
  }
}

.media {
  margin: 0 0 6rem;
}
@media (min-width: 992px) {
  .media {
    margin: 0 0 8rem;
  }
}
@media (min-width: 1200px) {
  .media {
    margin: 0 0 10rem;
  }
}

.media__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .media__title {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .media__title {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .media__title {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}

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

.is-scrollspy-open .scrollspy-nav__offcanvas {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.is-scrollspy-open body {
  overflow: hidden;
}

@media (min-width: 992px) {
  .scrollspy-nav {
    position: sticky;
    top: 8.4rem;
  }
}
@media (min-width: 992px) {
  .scrollspy-nav {
    top: 9rem;
  }
}
@media (min-width: 1200px) {
  .scrollspy-nav {
    top: 10rem;
  }
}

.scrollspy-nav__toggle {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  height: 4rem;
}
@media (min-width: 992px) {
  .scrollspy-nav__toggle {
    display: none;
  }
}

.scrollspy-nav__toggle-icon {
  height: 100%;
  width: auto;
  aspect-ratio: 1/1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  color: #fff;
}
.scrollspy-nav__toggle-icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

.scrollspy-nav__toggle-label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ecf0f2;
  color: #071c26;
  border-radius: 10rem;
  padding: 0 2rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  transition: 0.4s;
}
.scrollspy-nav__toggle-label:hover {
  color: #4e6069;
}

.scrollspy-nav__offcanvas {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  background: #f1f5f7;
  border-radius: 2rem 2rem 0 0;
  padding: 2rem;
  box-shadow: 0 0 0 999.9rem rgba(7, 28, 38, 0.1);
  transition: 0.4s;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  max-height: 80svh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 992px) {
  .scrollspy-nav__offcanvas {
    position: relative;
    background: none;
    border-radius: none;
    padding: 0;
    box-shadow: none;
    transition: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}

.scrollspy-nav__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.6rem;
  margin: 0 0 0.8rem;
}
@media (min-width: 992px) {
  .scrollspy-nav__head {
    display: none;
  }
}

.scrollspy-nav__body {
  -ms-flex: 1;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.scrollspy-nav__body::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .scrollspy-nav__body {
    overflow: unset;
    max-height: none;
  }
}

.scrollspy-nav__title {
  display: block;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .scrollspy-nav__title {
    font-size: 1.8rem;
  }
}

.scrollspy-nav__close {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.scrollspy-nav__close svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

.scrollspy-nav__menu {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
}
.scrollspy-nav__link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  color: #071c26;
  padding: 0.6rem 0 0.8rem;
  transition: 0.4s;
}
@media (min-width: 992px) {
  .scrollspy-nav__link {
    padding: 0.8rem 2rem;
    min-height: 4.8rem;
    border-radius: 2.4rem;
    color: #4e6069;
  }
  .scrollspy-nav__link:hover {
    color: #071c26;
  }
  .scrollspy-nav__link.is-active {
    background: #f1f5f7;
    color: #071c26;
  }
}

.docs {
  margin: 0 0 6rem;
}
@media (min-width: 992px) {
  .docs {
    margin: 0 0 8rem;
  }
}
@media (min-width: 1200px) {
  .docs {
    margin: 0 0 10rem;
  }
}

.docs__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .docs__title {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .docs__title {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .docs__title {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}

.docs__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.docs__card {
  background: #f1f5f7;
  border-radius: 2rem;
  padding: 2rem;
  margin: 0 -2rem;
}
@media (min-width: 768px) {
  .docs__card {
    margin: 0;
    padding: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .docs__card {
    padding: 2.8rem 3.2rem 3.6rem;
  }
}

.docs__card-title {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .docs__card-title {
    font-size: 2.4rem;
    margin: 0 0 2.8rem;
  }
}
.docs__card-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 0 0 2.4rem;
}
.docs__card-menu:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .docs__card-menu {
    gap: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .docs__card-menu {
    gap: 1.6rem;
  }
}

.docs__card-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.2rem 5.6rem 1.2rem 1.6rem;
  background: #fff;
  color: #071c26;
  border-radius: 1rem;
  position: relative;
  transition: 0.4s;
  min-height: 4.8rem;
}
.docs__card-link:hover .docs__card-link-title {
  color: transparent;
}
.docs__card-link:hover .docs__card-link-arrow path.is-default {
  opacity: 0;
}
.docs__card-link:hover .docs__card-link-arrow path.is-hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .docs__card-link {
    padding: 1.6rem 7.2rem 1.6rem 2.4rem;
    min-height: 6rem;
  }
}

.docs__card-link-title {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.4s;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 768px) {
  .docs__card-link-title {
    font-size: 1.6rem;
  }
}

.docs__card-link-arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 0;
}
.docs__card-link-arrow path {
  transition: 0.4s;
}
.docs__card-link-arrow path.is-default {
  opacity: 1;
}
.docs__card-link-arrow path.is-hover {
  opacity: 0;
}
@media (min-width: 768px) {
  .docs__card-link-arrow {
    width: 2.4rem;
    height: 2.4rem;
    right: 2rem;
    margin: -1.2rem 0 0 0;
  }
}

.docs__card-desc {
  border-radius: 1rem;
  padding: 1.6rem;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}
.docs__card-desc b,
.docs__card-desc strong {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  color: #071c26;
}
.docs__card-desc p {
  margin: 0 0 0.8rem;
}
.docs__card-desc *:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .docs__card-desc {
    padding: 2.4rem;
    font-size: 1.4rem;
  }
  .docs__card-desc b,
  .docs__card-desc strong {
    font-size: 1.6rem;
  }
}

.contacts {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .contacts {
    margin: 0 0 6rem;
  }
}
@media (min-width: 1200px) {
  .contacts {
    margin: 0 0 8rem;
  }
}

.contacts__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .contacts__title {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .contacts__title {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .contacts__title {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}

.contacts__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contacts__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media (min-width: 992px) {
  .contacts__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .contacts__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contacts__card {
  background: #f1f5f7;
  color: #071c26;
  border-radius: 1.4rem;
  padding: 2rem;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contacts__card.is-highlight {
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  color: #fff;
}
.contacts__card.is-highlight .contacts__card-info a {
  color: #fff;
}
.contacts__card.is-highlight .contacts__card-info svg {
  color: #f9fbfc;
}
.contacts__card.is-highlight .contacts__card-worktime > li {
  background: rgba(255, 255, 255, 0.1);
  border: 0.1rem solid rgba(250, 252, 253, 0.2);
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
  color: #fff;
}
@media (min-width: 992px) {
  .contacts__card {
    padding: 2.4rem;
    border-radius: 2rem;
    min-height: 26rem;
  }
}

.contacts__card-title {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.contacts__card-title + .contacts__card-text {
  margin-top: -0.8rem;
}
@media (min-width: 992px) {
  .contacts__card-title {
    margin: 0 0 1.8rem;
  }
}

.contacts__card-text {
  display: block;
  margin: 0 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}

.contacts__card-info {
  margin: 0 0 2.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.contacts__card-info a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  color: #071c26;
  transition: 0.4s;
}
.contacts__card-info a:hover {
  opacity: 0.7;
}
.contacts__card-info svg {
  display: block;
  width: 2rem;
  height: 2rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #acb4b8;
}

.contacts__card-worktime {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: auto 0 0 0;
  gap: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.contacts__card-worktime > li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 10rem;
  min-height: 2.8rem;
}
@media (min-width: 992px) {
  .contacts__card-worktime > li {
    min-height: 3.8rem;
    padding: 0.4rem 1.6rem;
  }
}

.route {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .route {
    margin: 0 0 6rem;
  }
}
@media (min-width: 1200px) {
  .route {
    margin: 0 0 8rem;
  }
}

.route__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 28px;
}
@media (min-width: 768px) {
  .route__title {
    font-size: 3.2rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .route__title {
    font-size: 3.2rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .route__title {
    font-size: 3.6rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 768px) {
  .route__title {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .route__title {
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .route__title {
    margin: 0 0 4rem;
  }
}

.route__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "main" "aside";
  gap: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .route__grid {
    grid-template-areas: "aside" "main";
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .route__grid {
    grid-template-columns: 4fr 8fr;
    grid-template-areas: "aside main";
  }
}

.route__main {
  grid-area: main;
  position: relative;
}

.route__aside {
  grid-area: aside;
}

.route__map {
  background: #ecf0f2;
  border-radius: 1.4rem;
  overflow: hidden;
  height: 100%;
  min-height: 36rem;
}
@media (min-width: 768px) {
  .route__map {
    min-height: 50rem;
    border-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .route__map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.route__card {
  background: #f1f5f7;
  color: #071c26;
  border-radius: 1.4rem;
  padding: 2rem;
  margin: 0 0 1rem;
}
.route__card:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .route__card {
    padding: 2.4rem;
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 992px) {
  .route__card {
    margin: 0 0 2rem;
  }
}

.route__card-title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}
@media (min-width: 768px) {
  .route__card-title {
    font-size: 2.2rem;
    margin: 0 0 1.6rem;
  }
}

.route__card-address {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  font-style: normal;
  color: #4e6069;
}
@media (min-width: 768px) {
  .route__card-address {
    font-size: 1.6rem;
  }
}

.route__card-coords {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.route__card-coords dt {
  margin: 0 0 0.6rem;
  font-weight: 500;
}
.route__card-coords dd {
  margin: 0 0 1.2rem;
  font-weight: 500;
  color: #4e6069;
}
.route__card-coords dd:last-child {
  margin-bottom: 0;
}
.route__card-coords a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  color: #b61f38;
  text-decoration: none;
}
@media (min-width: 768px) {
  .route__card-coords {
    font-size: 1.6rem;
  }
}

.parking {
  margin: 0 0 5rem;
}
@media (min-width: 768px) {
  .parking {
    margin: 0 0 6rem;
  }
}
@media (min-width: 1200px) {
  .parking {
    margin: 0 0 8rem;
  }
}

.parking__title {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 1.2rem;
}
@media (min-width: 768px) {
  .parking__title {
    font-size: 3.2rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .parking__title {
    font-size: 3.2rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .parking__title {
    font-size: 3.6rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 768px) {
  .parking__title {
    margin: 0 0 2rem;
  }
}

.parking__desc {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
  margin: 0 0 2.8rem;
}
.parking__desc p {
  margin: 0 0 1.2rem;
}
.parking__desc p:last-child {
  margin-bottom: 0;
}
.parking__desc a {
  font-weight: 500;
}
@media (min-width: 768px) {
  .parking__desc {
    font-size: 1.6rem;
    margin: 0 0 3.2rem;
  }
  .parking__desc p {
    margin: 0 0 2rem;
  }
}

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

.parking__card {
  background: #f1f5f7;
  border-radius: 2rem;
  padding: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) {
  .parking__card {
    padding: 2.4rem;
  }
}

.parking__card-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 0 2.4rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  color: #fff;
}
.parking__card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .parking__card-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 0 3.2rem;
  }
}

.parking__card-title {
  display: block;
  margin: 0 0 1.2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
}

.parking__card-desc {
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #4e6069;
}
.parking__card-desc p {
  margin: 0 0 0.8rem;
}
.parking__card-desc p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .parking__card-desc {
    margin: 0 0 2.4rem;
  }
}
@media (min-width: 992px) {
  .parking__card-desc {
    margin: 0 0 4rem;
  }
}

.parking__card-info {
  margin: auto 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.parking__card-info > li {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.4rem 1.2rem;
  min-height: 2.8rem;
  border-radius: 10rem;
  background: #fff;
  color: #071c26;
}
@media (min-width: 768px) {
  .parking__card-info {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0.4rem 2rem;
    background: #fff;
    border-radius: 10rem;
    margin: auto auto 0 0;
    padding: 0.4rem 1.2rem;
  }
  .parking__card-info > li {
    padding: 0;
    min-height: auto;
    position: relative;
    background: none;
  }
  .parking__card-info > li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 0.1rem;
    height: 1.4rem;
    margin: -0.7rem 0 0 0;
    background: #c0c8cc;
  }
}
@media (min-width: 992px) {
  .parking__card-info {
    background: none;
    gap: 0.4rem;
    padding: 0.4rem 1.6rem;
  }
  .parking__card-info > li {
    min-height: 3.8rem;
    padding: 0.4rem 1.6rem;
    background: #fff;
    border-radius: 10rem;
  }
  .parking__card-info > li:not(:last-child)::after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .parking__card-info {
    background: #fff;
    gap: 0.4rem 2rem;
  }
  .parking__card-info > li {
    padding: 0;
  }
  .parking__card-info > li:not(:last-child)::after {
    display: block;
  }
}

:has(.vacancies) .header {
  margin: 0;
}

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

.vacancies__head {
  position: relative;
  z-index: 10;
  color: #fff;
  min-height: 36rem;
  padding: 2.4rem 0;
  margin: 0 0 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .vacancies__head {
    padding: 3.2rem 0;
  }
}
@media (min-width: 1200px) {
  .vacancies__head {
    min-height: 37rem;
    padding: 4rem 0;
  }
}

.vacancies__image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -1;
  margin: 0 0 0 -50vw;
  background: #071c26;
}
.vacancies__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancies__image::before, .vacancies__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}
.vacancies__image::before {
  background: linear-gradient(to bottom, rgba(0, 8, 18, 0) 0%, rgba(0, 8, 18, 0.8) 100%);
  opacity: 0.8;
  z-index: 2;
}
.vacancies__image::after {
  background: linear-gradient(to bottom, rgba(122, 51, 92, 0) 0%, rgba(122, 51, 92, 0.7) 100%);
  opacity: 0.2;
  z-index: 1;
}

.vacancies__desc {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}
.vacancies__desc h1,
.vacancies__desc h2,
.vacancies__desc h3 {
  display: block;
  margin: 0 0 2.8rem;
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 1.2rem;
}
@media (min-width: 768px) {
  .vacancies__desc h1,
  .vacancies__desc h2,
  .vacancies__desc h3 {
    font-size: 4rem;
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 992px) {
  .vacancies__desc h1,
  .vacancies__desc h2,
  .vacancies__desc h3 {
    font-size: 4rem;
    margin: 0 0 3.6rem;
  }
}
@media (min-width: 1200px) {
  .vacancies__desc h1,
  .vacancies__desc h2,
  .vacancies__desc h3 {
    font-size: 4.2rem;
    margin: 0 0 4rem;
  }
}
@media (min-width: 768px) {
  .vacancies__desc h1,
  .vacancies__desc h2,
  .vacancies__desc h3 {
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 1200px) {
  .vacancies__desc h1,
  .vacancies__desc h2,
  .vacancies__desc h3 {
    margin: 0 0 2.4rem;
  }
}
.vacancies__desc p {
  margin: 0 0 0.8rem;
}
.vacancies__desc p:last-child {
  margin-bottom: 0;
}

.vacancies__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 992px) {
  .vacancies__list {
    gap: 2rem;
  }
}

.vacancies__card {
  background: #f1f5f7;
  color: #071c26;
  border-radius: 2rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title arrow" "info info";
  gap: 1rem 1.6rem;
}
.vacancies__card:hover .vacancies__card-title {
  color: transparent;
}
@media (min-width: 768px) {
  .vacancies__card {
    padding: 2rem 2rem 2.4rem;
    gap: 1.2rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .vacancies__card {
    padding: 2.4rem 2.4rem 2.8rem;
  }
}
@media (min-width: 1200px) {
  .vacancies__card {
    padding: 2.8rem 3.2rem 3.2rem;
    gap: 1.6rem;
  }
}

.vacancies__card-title {
  display: block;
  margin: 0 auto 0 0;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  grid-area: title;
  background: linear-gradient(90deg, #7a335c 0%, #ed1c24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #071c26;
  transition: 0.4s;
}
@media (min-width: 768px) {
  .vacancies__card-title {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .vacancies__card-title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .vacancies__card-title {
    font-size: 2.4rem;
  }
}

.vacancies__card-arrow {
  display: block;
  margin: 0;
  width: 2rem;
  height: 2rem;
  grid-area: arrow;
}
.vacancies__card-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .vacancies__card-arrow {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.vacancies__card-info {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
  grid-area: info;
  color: #2f444e;
}
@media (min-width: 768px) {
  .vacancies__card-info {
    font-size: 1.6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0.4rem 2rem;
  }
  .vacancies__card-info > li {
    position: relative;
  }
  .vacancies__card-info > li:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #c0c8cc;
    margin: 0 -0.2rem;
  }
}