

/* Start:/local/templates/link/css/fonts/fonts.css?17719585521362*/
@font-face {
    font-family: 'Grtsk Thin Giga';
    src: url('/local/templates/link/css/fonts/Grtsk-ThinGiga.woff2') format('woff2'),
        url('/local/templates/link/css/fonts/Grtsk-ThinGiga.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grtsk Medium Giga';
    src: url('/local/templates/link/css/fonts/Grtsk-MediumGiga.woff2') format('woff2'),
        url('/local/templates/link/css/fonts/Grtsk-MediumGiga.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Int';
    src: url('/local/templates/link/css/fonts/SuisseIntl-Light.woff2') format('woff2'),
        url('/local/templates/link/css/fonts/SuisseIntl-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Int';
    src: url('/local/templates/link/css/fonts/SuisseIntl-Light.woff2') format('woff2'),
        url('/local/templates/link/css/fonts/SuisseIntl-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Int';
    src: url('/local/templates/link/css/fonts/SuisseIntl.woff2') format('woff2'),
        url('/local/templates/link/css/fonts/SuisseIntl.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Int';
    src: url('/local/templates/link/css/fonts/SuisseIntl-Regular.woff2') format('woff2'),
        url('/local/templates/link/css/fonts/SuisseIntl-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* End */


/* Start:/local/templates/link/css/fancybox.css?177195855229141*/
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height)
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1)
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124
  }
}

.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp
}

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

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp
}

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

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0
  }
}

.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
  }
  100% {
    opacity: 1
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0
  }
}

.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2
}

@keyframes f-fadeFastIn {
  0% {
    opacity: .75
  }
  100% {
    opacity: 1
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0
  }
}

.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2
}

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

@keyframes f-crossfadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0
  }
}

.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext
}

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

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

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

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%)
  }
  100% {
    transform: translate3d(0, 0, 0)
  }
}

@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%)
  }
  100% {
    transform: translate3d(0, 0, 0)
  }
}

@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%)
  }
}

@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%)
  }
}

.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0
  }
}

@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0
  }
}

: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-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --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-disabled-opacity: 0.65
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  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);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition)
}

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

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
  outline: none
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

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

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

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

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos)
}

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

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none
}

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

html.with-fancybox body {
  touch-action: none
}

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

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: #fff;
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 5rem;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain
}

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

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip
}

.fancybox__viewport {
  width: 100%;
  height: 100%
}

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

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

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden
}

.fancybox__slide.has-image {
  overflow: hidden
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible
}

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

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20
}

.is-loading .fancybox__content {
  opacity: 0
}

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

.can-zoom_in .fancybox__content {
  cursor: zoom-in
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out
}

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

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

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px)
}

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

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden
}

.is-compact .fancybox__caption {
  padding-bottom: 0
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: .75
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all .25s ease
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1
}

.is-idle .fancybox__nav {
  animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop,.fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop,.fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut
}

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

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, .9);
  color: #fff
}

.has-map .fancybox__content {
  background: #e5e3df
}

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

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

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0)
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1
}

.f-thumbs .f-spinner svg {
  display: none
}

.f-thumbs.is-vertical {
  height: 100%
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0)
}

.f-thumbs__track {
  display: flex
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer
}

.f-thumbs__slide.is-loading img {
  opacity: 0
}

.is-classic .f-thumbs__viewport {
  height: 100%
}

.is-modern .f-thumbs__track {
  width: max-content
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn .2s ease-out;
  z-index: 10
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height .35s cubic-bezier(0.23, 1, 0.32, 1)
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important
}

.is-closing .fancybox__thumbs {
  transition: none !important
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20
}

.fancybox__toolbar :focus-visible {
  z-index: 1
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none
}

.fancybox__infobar span {
  padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
  position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none
}
/* End */


/* Start:/local/templates/link/css/ion.rangeSlider.min.css?177195855211084*/
/*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/.irs{position:relative;display:block;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:12px;font-family:Arial,sans-serif}.irs-line{position:relative;display:block;overflow:hidden;outline:none !important}.irs-bar{position:absolute;display:block;left:0;width:0}.irs-shadow{position:absolute;display:none;left:0;width:0}.irs-handle{position:absolute;display:block;box-sizing:border-box;cursor:default;z-index:1}.irs-handle.type_last{z-index:2}.irs-min,.irs-max{position:absolute;display:block;cursor:default}.irs-min{left:0}.irs-max{right:0}.irs-from,.irs-to,.irs-single{position:absolute;display:block;top:0;left:0;cursor:default;white-space:nowrap}.irs-grid{position:absolute;display:none;bottom:0;left:0;width:100%;height:20px}.irs-with-grid .irs-grid{display:block}.irs-grid-pol{position:absolute;top:0;left:0;width:1px;height:8px;background:#000}.irs-grid-pol.small{height:4px}.irs-grid-text{position:absolute;bottom:0;left:0;white-space:nowrap;text-align:center;font-size:9px;line-height:9px;padding:0 3px;color:#000}.irs-disable-mask{position:absolute;display:block;top:0;left:-1%;width:102%;height:100%;cursor:default;background:rgba(0,0,0,0);z-index:2}.lt-ie9 .irs-disable-mask{background:#000;filter:alpha(opacity=0);cursor:not-allowed}.irs-disabled{opacity:.4}.irs-hidden-input{position:absolute !important;display:block !important;top:0 !important;left:0 !important;width:0 !important;height:0 !important;font-size:0 !important;line-height:0 !important;padding:0 !important;margin:0 !important;overflow:hidden;outline:none !important;z-index:-9999 !important;background:none !important;border-style:solid !important;border-color:transparent !important}.irs--flat{height:40px}.irs--flat.irs-with-grid{height:60px}.irs--flat .irs-line{top:25px;height:12px;background-color:#e1e4e9;border-radius:4px}.irs--flat .irs-bar{top:25px;height:12px;background-color:#ed5565}.irs--flat .irs-bar--single{border-radius:4px 0 0 4px}.irs--flat .irs-shadow{height:1px;bottom:16px;background-color:#e1e4e9}.irs--flat .irs-handle{top:22px;width:16px;height:18px;background-color:transparent}.irs--flat .irs-handle>i:first-child{position:absolute;display:block;top:0;left:50%;width:2px;height:100%;margin-left:-1px;background-color:#da4453}.irs--flat .irs-handle.state_hover>i:first-child,.irs--flat .irs-handle:hover>i:first-child{background-color:#a43540}.irs--flat .irs-min,.irs--flat .irs-max{top:0;padding:1px 3px;color:#999;font-size:10px;line-height:1.333;text-shadow:none;background-color:#e1e4e9;border-radius:4px}.irs--flat .irs-from,.irs--flat .irs-to,.irs--flat .irs-single{color:white;font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;background-color:#ed5565;border-radius:4px}.irs--flat .irs-from:before,.irs--flat .irs-to:before,.irs--flat .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#ed5565}.irs--flat .irs-grid-pol{background-color:#e1e4e9}.irs--flat .irs-grid-text{color:#999}.irs--big{height:55px}.irs--big.irs-with-grid{height:70px}.irs--big .irs-line{top:33px;height:12px;background-color:white;background:linear-gradient(to bottom, #ddd -50%, white 150%);border:1px solid #ccc;border-radius:12px}.irs--big .irs-bar{top:33px;height:12px;background-color:#92bce0;border:1px solid #428bca;background:linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);box-shadow:inset 0 0 1px 1px rgba(255,255,255,0.5)}.irs--big .irs-bar--single{border-radius:12px 0 0 12px}.irs--big .irs-shadow{height:1px;bottom:16px;background-color:rgba(66,139,202,0.5)}.irs--big .irs-handle{top:25px;width:30px;height:30px;border:1px solid rgba(0,0,0,0.3);background-color:#cbcfd5;background:linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);box-shadow:1px 1px 2px rgba(0,0,0,0.2),inset 0 0 3px 1px white;border-radius:30px}.irs--big .irs-handle.state_hover,.irs--big .irs-handle:hover{border-color:rgba(0,0,0,0.45);background-color:#939ba7;background:linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%)}.irs--big .irs-min,.irs--big .irs-max{top:0;padding:1px 5px;color:white;text-shadow:none;background-color:#9f9f9f;border-radius:3px}.irs--big .irs-from,.irs--big .irs-to,.irs--big .irs-single{color:white;text-shadow:none;padding:1px 5px;background-color:#428bca;background:linear-gradient(to bottom, #428bca 0%, #3071a9 100%);border-radius:3px}.irs--big .irs-grid-pol{background-color:#428bca}.irs--big .irs-grid-text{color:#428bca}.irs--modern{height:55px}.irs--modern.irs-with-grid{height:55px}.irs--modern .irs-line{top:25px;height:5px;background-color:#d1d6e0;background:linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);border:1px solid #a3adc1;border-bottom-width:0;border-radius:5px}.irs--modern .irs-bar{top:25px;height:5px;background:#20b426;background:linear-gradient(to bottom, #20b426 0%, #18891d 100%)}.irs--modern .irs-bar--single{border-radius:5px 0 0 5px}.irs--modern .irs-shadow{height:1px;bottom:21px;background-color:rgba(209,214,224,0.5)}.irs--modern .irs-handle{top:37px;width:12px;height:13px;border:1px solid #a3adc1;border-top-width:0;box-shadow:1px 1px 1px rgba(0,0,0,0.1);border-radius:0 0 3px 3px}.irs--modern .irs-handle>i:nth-child(1){position:absolute;display:block;top:-4px;left:1px;width:6px;height:6px;border:1px solid #a3adc1;background:white;transform:rotate(45deg)}.irs--modern .irs-handle>i:nth-child(2){position:absolute;display:block;box-sizing:border-box;top:0;left:0;width:10px;height:12px;background:#e9e6e6;background:linear-gradient(to bottom, white 0%, #e9e6e6 100%);border-radius:0 0 3px 3px}.irs--modern .irs-handle>i:nth-child(3){position:absolute;display:block;box-sizing:border-box;top:3px;left:3px;width:4px;height:5px;border-left:1px solid #a3adc1;border-right:1px solid #a3adc1}.irs--modern .irs-handle.state_hover,.irs--modern .irs-handle:hover{border-color:#7685a2;background:#c3c7cd;background:linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%)}.irs--modern .irs-handle.state_hover>i:nth-child(1),.irs--modern .irs-handle:hover>i:nth-child(1){border-color:#7685a2}.irs--modern .irs-handle.state_hover>i:nth-child(3),.irs--modern .irs-handle:hover>i:nth-child(3){border-color:#48536a}.irs--modern .irs-min,.irs--modern .irs-max{top:0;font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;color:white;background-color:#d1d6e0;border-radius:5px}.irs--modern .irs-from,.irs--modern .irs-to,.irs--modern .irs-single{font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;background-color:#20b426;color:white;border-radius:5px}.irs--modern .irs-from:before,.irs--modern .irs-to:before,.irs--modern .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#20b426}.irs--modern .irs-grid{height:25px}.irs--modern .irs-grid-pol{background-color:#dedede}.irs--modern .irs-grid-text{color:silver;font-size:13px}.irs--sharp{height:50px;font-size:12px;line-height:1}.irs--sharp.irs-with-grid{height:57px}.irs--sharp .irs-line{top:30px;height:2px;background-color:black;border-radius:2px}.irs--sharp .irs-bar{top:30px;height:2px;background-color:#ee22fa}.irs--sharp .irs-bar--single{border-radius:2px 0 0 2px}.irs--sharp .irs-shadow{height:1px;bottom:21px;background-color:rgba(0,0,0,0.5)}.irs--sharp .irs-handle{top:25px;width:10px;height:10px;background-color:#a804b2}.irs--sharp .irs-handle>i:first-child{position:absolute;display:block;top:100%;left:0;width:0;height:0;border:5px solid transparent;border-top-color:#a804b2}.irs--sharp .irs-handle.state_hover,.irs--sharp .irs-handle:hover{background-color:black}.irs--sharp .irs-handle.state_hover>i:first-child,.irs--sharp .irs-handle:hover>i:first-child{border-top-color:black}.irs--sharp .irs-min,.irs--sharp .irs-max{color:white;font-size:14px;line-height:1;top:0;padding:3px 4px;opacity:.4;background-color:#a804b2;border-radius:2px}.irs--sharp .irs-from,.irs--sharp .irs-to,.irs--sharp .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 4px;background-color:#a804b2;color:white;border-radius:2px}.irs--sharp .irs-from:before,.irs--sharp .irs-to:before,.irs--sharp .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#a804b2}.irs--sharp .irs-grid{height:25px}.irs--sharp .irs-grid-pol{background-color:#dedede}.irs--sharp .irs-grid-text{color:silver;font-size:13px}.irs--round{height:50px}.irs--round.irs-with-grid{height:65px}.irs--round .irs-line{top:36px;height:4px;background-color:#dee4ec;border-radius:4px}.irs--round .irs-bar{top:36px;height:4px;background-color:#006cfa}.irs--round .irs-bar--single{border-radius:4px 0 0 4px}.irs--round .irs-shadow{height:4px;bottom:21px;background-color:rgba(222,228,236,0.5)}.irs--round .irs-handle{top:26px;width:24px;height:24px;border:4px solid #006cfa;background-color:white;border-radius:24px;box-shadow:0 1px 3px rgba(0,0,255,0.3)}.irs--round .irs-handle.state_hover,.irs--round .irs-handle:hover{background-color:#f0f6ff}.irs--round .irs-min,.irs--round .irs-max{color:#333;font-size:14px;line-height:1;top:0;padding:3px 5px;background-color:rgba(0,0,0,0.1);border-radius:4px}.irs--round .irs-from,.irs--round .irs-to,.irs--round .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 5px;background-color:#006cfa;color:white;border-radius:4px}.irs--round .irs-from:before,.irs--round .irs-to:before,.irs--round .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#006cfa}.irs--round .irs-grid{height:25px}.irs--round .irs-grid-pol{background-color:#dedede}.irs--round .irs-grid-text{color:silver;font-size:13px}.irs--square{height:50px}.irs--square.irs-with-grid{height:60px}.irs--square .irs-line{top:31px;height:4px;background-color:#dedede}.irs--square .irs-bar{top:31px;height:4px;background-color:black}.irs--square .irs-shadow{height:2px;bottom:21px;background-color:#dedede}.irs--square .irs-handle{top:25px;width:16px;height:16px;border:3px solid black;background-color:white;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.irs--square .irs-handle.state_hover,.irs--square .irs-handle:hover{background-color:#f0f6ff}.irs--square .irs-min,.irs--square .irs-max{color:#333;font-size:14px;line-height:1;top:0;padding:3px 5px;background-color:rgba(0,0,0,0.1)}.irs--square .irs-from,.irs--square .irs-to,.irs--square .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 5px;background-color:black;color:white}.irs--square .irs-grid{height:25px}.irs--square .irs-grid-pol{background-color:#dedede}.irs--square .irs-grid-text{color:silver;font-size:11px}
/* End */


/* Start:/local/templates/link/css/swiper-bundle.min.css?177195855218452*/
/**
 * Swiper 11.2.8
 * 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: May 23, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}: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;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;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{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.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{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{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:'';flex-shrink:0;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:1px;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:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{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,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(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,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(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,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .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)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/link/css/style.css?1771958552144738*/
*{margin:0;padding:0;box-sizing:border-box}body,html{height:100%;font:inherit;line-height:1}body{background:var(--bg-second);overflow-x:hidden;width:100vw}canvas,img,picture,svg,video{display:block;max-width:100%}button,input,select,textarea{font:inherit;background:none;border:none;outline:none}a{color:inherit;text-decoration:none}ol,ul{list-style:none}:-ms-input-placeholder{color:var(--color-gray)}::placeholder{color:var(--color-gray)}:root{--color-white:#fff;--color-black:#1a1918;--color-gray:#5e5e5d;--color-primary:#d5262f;--color-seconday:#ededeb;--bg-main:var(--color-black);--bg-second:#eaeae8;--font-h1:4rem;--font-h2:3.5rem;--font-h3:3rem;--font-h4:2.5rem;--font-h5:2rem;--font-header:4rem;--font-body:1.6rem;--font-small:1.4rem;--border-radius:0rem;--grid-gutter:10px;--max-width:1440px;--fancybox-bg:var(--color-black)!important}.fancybox__container{--fancybox-bg:var(--color-black);--fancybox-color:var(--color-white)}.fancybox__toolbar .f-button:not([data-fancybox-close]){display:none!important}.fancybox__toolbar [data-fancybox-close]{border-radius:0;width:46px;height:46px;clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%);transition:all .3s ease}.fancybox__nav,.fancybox__toolbar [data-fancybox-close]{--f-button-color:var(--color-white);--f-button-hover-color:var(--color-black);--f-button-bg:var(--color-primary);--f-button-hover-bg:var(--color-white);--f-button-svg-filter:none;--f-button-shadow:none}.fancybox__nav .f-button{border-radius:0;width:46px;height:46px;transition:all .3s ease}.fancybox__nav .fancybox__button--prev{clip-path:polygon(15px 0,100% 0,100% 100%,0 100%,0 15px)}.fancybox__nav .fancybox__button--next{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}.fancybox-image{background:var(--color-white)}.fancybox__footer,.fancybox__thumbs{display:none!important}@media (min-width:768px) and (max-width:1024px){:root{--grid-gutter:7px}}body{font-family:Suisse Int,Arial,serif;font-size:var(--font-body);line-height:calc(var(--font-body) + .5rem)}.button{display:block;background:var(--color-primary);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);font-family:Grtsk Medium Giga,Arial;text-transform:uppercase;font-size:16px;line-height:20px;font-weight:500;position:relative;z-index:1;clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%);transition:all .3s ease;width:-moz-fit-content;width:fit-content}@media (min-width:768px) and (max-width:1024px){.button{font-size:12px;line-height:16px}}@media screen and (max-width:768px){.button{font-size:12px;line-height:14px}}.button:hover{background:var(--bg-second);color:var(--color-black);transition:all .3s ease}.button._outline{background:var(--color-white);color:var(--color-white);position:relative;z-index:2}.button._outline,.button._outline:before{clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%)}.button._outline:before{content:"";inset:1px;position:absolute;z-index:-1;background:var(--color-black)}.button._outline:hover{color:var(--color-white)}.button._outline:hover,.button._outline:hover:before{background:var(--color-primary)}.button._white{background:var(--color-white);color:var(--color-black)}.button._white:hover{background:var(--color-primary);color:var(--color-white)}.button._black{background:var(--color-black);color:var(--color-white)}.button._black:hover{background:var(--color-primary);color:var(--color-white)}.button._stroke{background:var(--color-primary);color:var(--color-primary);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%);position:relative;z-index:2}.button._stroke:hover{color:var(--color-white)}.button._stroke:hover:before{background:var(--color-primary)}.button._stroke:before{content:"";inset:1px;position:absolute;z-index:-1;background:var(--bg-second);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%)}#resetFilters{color:var(--color-primary);text-decoration:underline}@media screen and (max-width:768px){._mobileHide{display:none}}.breadcrumbs{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 30px;margin-top:calc(var(--grid-gutter) * 4)}@media (min-width:768px) and (max-width:1024px){.breadcrumbs{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.breadcrumbs{padding:0 calc(var(--grid-gutter) * 2);margin-top:0}}.breadcrumbs__list{list-style:none;margin:0;padding:0;font-size:14px;line-height:18px;color:var(--color-black);display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 3)}@media screen and (max-width:768px){.breadcrumbs__list{font-size:12px;line-height:16px;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}}.breadcrumbs__item{display:-ms-flexbox;display:flex;position:relative}@media screen and (max-width:768px){.breadcrumbs__item{white-space:nowrap}}.breadcrumbs__item:after{content:"/";position:absolute;right:-15px;color:var(--color-gray);opacity:.5}.breadcrumbs__item--active:after,.breadcrumbs__item:last-child:after{content:""}.breadcrumbs a{color:var(--color-gray);opacity:.5}.custom-controls label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;cursor:pointer}.custom-controls input[type=checkbox],.custom-controls input[type=radio]{display:none}.custom-checkbox .custom-checkmark{width:14px;height:14px;background:var(--color-white);border:1px solid #fff;margin-right:8px;position:relative;border-radius:0;margin-bottom:3px}.custom-checkbox input[type=checkbox]:checked+.custom-checkmark{background-color:var(--color-white);border-color:var(--color-white)}.custom-checkbox .custom-checkmark:after{content:"";position:absolute;top:50%;left:50%;width:8px;height:8px;background:#fff;transform:translate(-50%,-50%) scale(0);transition:transform .2s ease;background:var(--color-black)}.custom-checkbox input[type=checkbox]:checked+.custom-checkmark:after{transform:translate(-50%,-50%) scale(1)}.homeSlider{background:var(--bg-main);background-repeat:no-repeat;background-size:cover;background:var(--color-black);margin-top:0;position:relative;overflow:hidden;height:100vh}@media screen and (max-width:1200px){.homeSlider{height:80vh}}.homeSlider:after{position:absolute;left:0;width:100%;bottom:0;height:250px;background:linear-gradient(0deg,var(--color-black) 50%,transparent);content:"";z-index:1}@media screen and (max-width:768px){.homeSlider{height:80vh;padding:calc(var(--grid-gutter) * 2);width:100vw;overflow:unset;overflow:hidden}}.homeSlider__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);position:absolute;top:0;left:0;right:0;height:100%;padding:0 calc(var(--grid-gutter) * 7)}@media (min-width:768px) and (max-width:1024px){.homeSlider__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeSlider__inner{padding:0 calc(var(--grid-gutter) * 2);background:var(--color-black)}}.homeSlider__video video{position:absolute;z-index:1;top:50%;left:calc(50% - 1px);height:100%;transform:translate(-50%,-50%);object-fit:cover;min-width:100%}@media screen and (max-height:968px){.homeSlider__video video{top:-5%;left:0;width:100%;height:auto;transform:none;object-fit:unset}}@media screen and (max-height:568px){.homeSlider__video video{top:-10%;left:0;width:100%;height:auto;transform:none;object-fit:unset}}.homeSlider__top{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;position:absolute;z-index:5;top:2em;color:var(--color-white);left:2rem;right:2rem}@media screen and (max-width:768px){.homeSlider__top{left:calc(var(--grid-gutter) * 2);right:calc(var(--grid-gutter) * 2);top:calc(var(--grid-gutter) * 2)}}.homeSlider__topMenu{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 4)}.homeSlider__topMenuPhone{font-size:18px;line-height:28px;font-family:Grtsk Medium Giga}@media (min-width:768px) and (max-width:1024px){.homeSlider__topMenuPhone{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeSlider__topMenuPhone{font-size:14px;line-height:16px;display:none}}.homeSlider__topLogo img{height:30px}@media screen and (max-width:768px){.homeSlider__topLogo img{height:20px}}.homeSlider__topMenu{cursor:pointer}.homeSlider__topMenu svg:last-child{position:relative;top:4px}.homeSlider__hero{position:absolute;z-index:5;bottom:calc(var(--grid-gutter) * 2);color:var(--color-white);width:calc(100% - 140px)}@media screen and (max-width:768px){.homeSlider__hero{width:calc(100% - 20px);bottom:calc(var(--grid-gutter) * 2)}}.homeSlider__hero h1{font-family:Grtsk Medium Giga;font-size:30px;line-height:38px;font-weight:500;margin-bottom:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.homeSlider__hero h1{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.homeSlider__hero h1{font-size:18px;line-height:24px}}.homeSlider__hero p{font-size:18px;line-height:28px;margin-bottom:calc(var(--grid-gutter) * 1);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}@media (min-width:768px) and (max-width:1024px){.homeSlider__hero p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeSlider__hero p{font-size:14px;line-height:16px}}.homeSlider__hero p span{width:16px;height:16px;border-radius:50%;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-right:calc(var(--grid-gutter) * 1);background:var(--color-white);position:relative;top:-1px;color:red;font-size:10px}.homeSlider__heroButtons{margin-top:calc(var(--grid-gutter) * 1);display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 3);height:-moz-fit-content;height:fit-content}@media screen and (max-width:768px){.homeSlider__heroButtons .button{width:100%}}@media screen and (max-width:768px){.homeSlider__heroButtons{-ms-flex-direction:column;flex-direction:column;width:-moz-fit-content;width:fit-content;gap:calc(var(--grid-gutter) * 1);width:calc(100% - 20px);text-align:center}}.homeSlider__heroBottom{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:768px){.homeSlider__heroBottom{-ms-flex-direction:column-reverse;flex-direction:column-reverse;width:100%}}.homeSlider__heroPrice{font-family:Grtsk Medium Giga,Arial;text-align:right}@media screen and (max-width:768px){.homeSlider__heroPrice{text-align:left}}.homeSlider__heroPrice small{display:block;font-family:Suisse Int,Arial,serif;font-size:18px;line-height:28px;position:relative;top:calc(var(--grid-gutter) * -1)}@media (min-width:768px) and (max-width:1024px){.homeSlider__heroPrice small{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeSlider__heroPrice small{font-size:14px;line-height:16px;display:-ms-inline-flexbox;display:inline-flex;font-family:Grtsk Medium Giga,Arial;-ms-flex-align:end;align-items:end;top:unset;position:static;margin-left:5px;font-size:10px}}.homeSlider__heroPrice span{font-size:44px;line-height:52px}@media (min-width:768px) and (max-width:1024px){.homeSlider__heroPrice span{font-size:36px;line-height:42px}}@media screen and (max-width:768px){.homeSlider__heroPrice span{font-size:26px;line-height:32px}}.home-about{background:var(--bg-second);overflow:hidden}@media (min-width:768px) and (max-width:1024px){.home-about{position:relative}}@media screen and (max-width:768px){.home-about{padding:0;position:unset}}.home-about__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 70px;position:relative;padding-top:calc(var(--grid-gutter) * 4);padding-bottom:calc(var(--grid-gutter) * 4)}@media (min-width:768px) and (max-width:1024px){.home-about__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.home-about__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media (min-width:768px) and (max-width:1024px){.home-about__inner{position:unset}}@media screen and (max-width:768px){.home-about__inner{padding-top:calc(var(--grid-gutter) * 3);padding-bottom:calc(var(--grid-gutter) * 2)}}.home-about__stella{position:absolute;top:0;right:50px;height:90%;z-index:1}@media screen and (max-width:768px){.home-about__stella{top:unset;bottom:-40px;right:0;transform:rotate(180deg);height:70%}}.home-about__stella img{height:100%}.home-about__bg{position:absolute;top:0;left:70px;height:100%;z-index:1}@media screen and (max-width:768px){.home-about__bg{top:unset;bottom:0;height:auto}}.home-about__bg img{height:100%}.home-about__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white);margin-bottom:10rem}@media (min-width:768px) and (max-width:1024px){.home-about__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.home-about__header{font-size:22px;line-height:28px;margin-bottom:3rem}}.home-about__logo{margin-top:calc(var(--grid-gutter) * 5)}@media screen and (max-width:768px){.home-about__logo{margin-top:calc(var(--grid-gutter) * 0)}}.home-about__logo img{width:320px}@media screen and (max-width:768px){.home-about__logo img{width:150px}}.home-about__description{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 0);font-family:Grtsk Medium Giga,Arial;margin-top:calc(var(--grid-gutter) * 6);margin-bottom:calc(var(--grid-gutter) * 0);position:relative;z-index:5}@media screen and (max-width:768px){.home-about__description{margin-bottom:calc(var(--grid-gutter) * 3);-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 1);margin-top:calc(var(--grid-gutter) * 3)}}.home-about__description p{font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.home-about__description p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.home-about__description p{font-size:14px;line-height:16px}}.home-about__description p:last-child{margin-bottom:0}.home-about__description--left{-ms-flex:0.58;flex:0.58;font-size:30px;line-height:38px;font-weight:500}@media (min-width:768px) and (max-width:1024px){.home-about__description--left{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.home-about__description--left{font-size:18px;line-height:24px}}.home-about__description--right{-ms-flex:0.4;flex:0.4;font-family:Suisse Int,Arial,serif}@media screen and (max-width:768px){.home-about__description--right{margin-top:calc(var(--grid-gutter) * 1)}}.home-about__description--right p{margin-bottom:calc(var(--grid-gutter) * 2);width:80%}.home-about__numbers{-ms-flex:0.45;flex:0.45;display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 6);font-weight:500;position:relative;z-index:2;margin-top:calc(var(--grid-gutter) * 0)}@media screen and (max-width:768px){.home-about__numbers{gap:calc(var(--grid-gutter) * 1);-ms-flex-direction:column;flex-direction:column}}.home-about__numbers h2{font-size:44px;line-height:52px;font-family:Grtsk Medium Giga,Arial;color:var(--color-primary)}@media (min-width:768px) and (max-width:1024px){.home-about__numbers h2{font-size:36px;line-height:42px}}@media screen and (max-width:768px){.home-about__numbers h2{font-size:26px;line-height:32px}}.home-about__numbers p{margin-top:calc(var(--grid-gutter) * 1);font-size:18px;line-height:28px;font-family:Suisse Int,Arial,serif}@media (min-width:768px) and (max-width:1024px){.home-about__numbers p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.home-about__numbers p{font-size:14px;line-height:16px}}.home-about__desc-text{margin-top:calc(var(--grid-gutter) * 1);-ms-flex:0.55;flex:0.55;line-height:3rem}@media screen and (max-width:768px){.home-about__desc-text{font-size:1.8rem;line-height:2.4rem;-ms-flex:1;flex:1}}.homeAdvantage{background:var(--color-black);padding:calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 5);color:var(--color-white);position:relative;overflow:hidden}@media screen and (max-width:768px){.homeAdvantage{padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 4)}}.homeAdvantage__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 70px}@media (min-width:768px) and (max-width:1024px){.homeAdvantage__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeAdvantage__inner{padding:0 calc(var(--grid-gutter) * 2);padding:0}}.homeAdvantage__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white);margin-bottom:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.homeAdvantage__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homeAdvantage__header{font-size:22px;line-height:28px;margin-bottom:3rem}}.homeAdvantage__text{display:-ms-flexbox;display:flex;color:var(--color-white)}.homeAdvantage__text ul{display:-ms-inline-flexbox;display:inline-flex;gap:calc(var(--grid-gutter) * 3)}@media screen and (max-width:768px){.homeAdvantage__text ul{-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}}.homeAdvantage__text ul li{font-size:18px;line-height:28px;position:relative;padding-left:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.homeAdvantage__text ul li{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeAdvantage__text ul li{font-size:14px;line-height:16px}}.homeAdvantage__text ul li:after{background:var(--color-primary);width:calc(var(--grid-gutter) / 1.5);height:calc(var(--grid-gutter) / 1.5);display:block;border-radius:50%;content:"";position:absolute;left:0;top:calc(var(--grid-gutter) / 1)}@media screen and (max-width:768px){.homeAdvantage__text ul li:after{top:4px}}.homeAdvantage__textMobile{display:none}@media screen and (max-width:768px){.homeAdvantage__textMobile{padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2);display:block}}.homeAdvantage__sliders{background:var(--bg-main);padding:0}.homeAdvantage__slidersInner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding-left:0;padding-right:0}@media (min-width:768px) and (max-width:1024px){.homeAdvantage__slidersInner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeAdvantage__slidersInner{padding:0 calc(var(--grid-gutter) * 2);padding:0}}.homeAdvantage__tabs{margin-top:calc(var(--grid-gutter) * 4);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;gap:calc(var(--grid-gutter) * 2)}@media screen and (max-width:768px){.homeAdvantage__tabs{display:none}}.homeAdvantage__tabsItems{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2)}@media screen and (max-width:768px){.homeAdvantage__tabsItems a{white-space:nowrap}}@media screen and (max-width:768px){.homeAdvantage__tabsItems{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}}.homeAdvantage__tabsArrow{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 1)}@media screen and (max-width:768px){.homeAdvantage__tabsArrow{display:none}}.homeAdvantage__tabsArrow span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer;padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);text-transform:uppercase;font-size:1.4rem;position:relative;z-index:1;color:var(--color-white);transition:all .3s ease}.homeAdvantage__tabsArrow span,.homeAdvantage__tabsArrow span:hover{background:var(--color-primary)}.homeAdvantage__tabsArrow span:hover img{filter:brightness(1);filter:invert(1)}.homeAdvantage__tabsArrowLeft{clip-path:polygon(15px 0,100% 0,100% 100%,100% 100%,0 100%,0 15px)}.homeAdvantage__tabsArrowRight{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}.homeAdvantage__slider{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2);height:420px;overflow:hidden}@media screen and (max-width:768px){.homeAdvantage__sliderItem{padding-bottom:30px}}.homeAdvantage__sliderItem._w25{width:calc(25% - 15px)}@media screen and (max-width:768px){.homeAdvantage__sliderItem._w25{width:100%}}.homeAdvantage__sliderItem._w50{width:calc(50% - 15px)}@media screen and (max-width:768px){.homeAdvantage__sliderItem._w50{width:100%}}.homeAdvantage__sliderItem._w75{width:calc(75% - 15px)}@media screen and (max-width:768px){.homeAdvantage__sliderItem._w75{width:100%}}.homeAdvantage__sliderItem._w100{width:calc(100% - 15px)}@media screen and (max-width:768px){.homeAdvantage__sliderItem._w100{width:100%}}.homeAdvantage__slider{display:none!important}.homeAdvantage__slider._active{display:block!important}.homeAdvantage__sliders .slide{width:100%;height:100%;overflow:hidden;position:relative;color:var(--color-white);font-size:16px;line-height:24px}.homeAdvantage__sliders .slide ul{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 1)}@media screen and (max-width:768px){.homeAdvantage__sliders .slide ul{-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 0)}}.homeAdvantage__sliders .slide ul li{font-size:16px;line-height:24px;position:relative;padding-left:calc(var(--grid-gutter) * 2);color:#babab9;margin-right:20px}@media screen and (max-width:768px){.homeAdvantage__sliders .slide ul li{font-size:12px;line-height:16px}}.homeAdvantage__sliders .slide ul li:after{background:var(--color-primary);width:calc(var(--grid-gutter) / 1.5);height:calc(var(--grid-gutter) / 1.5);display:block;border-radius:50%;content:"";position:absolute;left:0;top:7px}@media screen and (max-width:768px){.homeAdvantage__sliders .slide ul li:after{top:4px}}.homeAdvantage__sliders .slide h3{font-size:20px;line-height:26px;color:var(--color-primary);text-transform:uppercase;font-family:Grtsk Medium Giga,Arial;margin-right:20px;font-weight:400;margin-bottom:0}@media (min-width:768px) and (max-width:1024px){.homeAdvantage__sliders .slide h3{font-size:18px;line-height:22px}}@media screen and (max-width:768px){.homeAdvantage__sliders .slide h3{font-size:16px;line-height:20px}}.homeAdvantage__sliders .view360{position:absolute;bottom:calc(var(--grid-gutter) * 2);right:calc(var(--grid-gutter) * 2);display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2);color:var(--color-white)}.homeAdvantage__sliders .view360 a{width:100%;height:100%;left:0;top:0;z-index:2;position:absolute}.homeAdvantage__sliders .view360 img{position:relative;top:2px}.homeAdvantage__sliders .view360:hover{background:var(--color-primary);color:var(--color-white)}.slideType1__img,.slideType1__img img{width:100%;height:100%}.slideType1__img img{object-fit:cover}.slideType2{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}.slideType2__img,.slideType2__img img{width:100%;height:100%}.slideType2__img img{object-fit:cover}.slideType3{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;gap:calc(var(--grid-gutter) * 2)}.slideType3__img{height:294px;width:100%}.slideType3__img img{height:100%;object-fit:cover;width:100%;object-position:center}.slideType4{-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}.slideType4,.slideType4__header{display:-ms-flexbox;display:flex}.slideType4__header{-ms-flex:1;flex:1;-ms-flex-align:end;align-items:end;margin-bottom:calc(var(--grid-gutter) * 2)}.slideType4__img{-ms-flex:1;flex:1;width:100%;height:100%}.slideType4__img img{height:100%;object-fit:cover;width:100%}.slideType5{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}.slideType5__text{-ms-flex:1;flex:1}.slideType5__text h3{margin-bottom:calc(var(--grid-gutter) * 2)}.slideType5__text ul{margin-top:calc(var(--grid-gutter) * 2)}.slideType5__img{width:100%}.slideType5__img img{height:100%;object-fit:cover;width:100%}.slideType6{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}.slideType6__text h3{margin-bottom:calc(var(--grid-gutter) * 2)}.slideType6__text ul{margin-top:calc(var(--grid-gutter) * 2)}.slideType6__img{-ms-flex:1;flex:1;width:100%;height:100%}.slideType6__img img{height:100%;object-fit:cover;width:100%}.slideType7{gap:calc(var(--grid-gutter) * 2)}.slideType7,.slideType7__text{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.slideType7__text{-ms-flex-pack:end;justify-content:end;margin-top:auto}.slideType7__text,.slideType7__text h3{margin-bottom:calc(var(--grid-gutter) * 2)}.slideType7__text ul{margin-top:calc(var(--grid-gutter) * 2)}.homeAdvantage__tabsArrowLeft,.homeAdvantage__tabsArrowRight{opacity:1;pointer-events:auto;transition:opacity .3s}.homeAdvantage__tabsArrowLeft._hidden,.homeAdvantage__tabsArrowRight._hidden{opacity:0;pointer-events:none}.mobileAdvantage{background:var(--color-black);position:relative;display:none}@media screen and (max-width:768px){.mobileAdvantage{display:-ms-flexbox;display:flex}}.mobileAdvantage__filterSliderArrow{position:absolute;top:280px;left:calc(var(--grid-gutter) * 2);right:calc(var(--grid-gutter) * 2);z-index:10;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;gap:calc(var(--grid-gutter) * 1);margin-bottom:2rem;width:calc(100% - (var(--grid-gutter) * 4))}.mobileAdvantage__filterSliderArrowLeft{clip-path:polygon(15px 0,100% 0,100% 100%,100% 100%,0 100%,0 15px)}.mobileAdvantage__filterSliderArrowRight{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}@media screen and (max-width:768px){.mobileAdvantage__filterSliderArrowRight{clip-path:polygon(0 0,100% 0,100% 25px,calc(100% - 15px) 100%,0 100%)}}.mobileAdvantage__filterSliderArrow span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer;background:var(--color-primary);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);text-transform:uppercase;font-size:1.4rem;position:relative;z-index:1;color:var(--color-black);transition:all .3s ease}@media screen and (max-width:768px){.mobileAdvantage__filterSliderArrow span{padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1.2)}}.mobileAdvantage__filterSliderArrow span:hover{background:var(--color-white)}.mobileAdvantage__filterSliderArrow span:hover img{filter:brightness(1);filter:invert(1)}.mobileAdvantage__filterSliderArrow span img{filter:brightness(0);filter:invert(0)}@media screen and (max-width:768px){.mobileAdvantage__filterSliderButton{display:none}}.mobileAdvantage__filterSliderButton .button{color:var(--color-white)}.mobileAdvantage__header{font-size:20px;line-height:24px;color:var(--color-primary);text-transform:uppercase;font-family:Grtsk Medium Giga,Arial;margin-bottom:calc(var(--grid-gutter) * 2)}.mobileAdvantage .swiper-slide:after{position:absolute;content:"";width:100%;height:150px;background:linear-gradient(0deg,#1a1918,transparent);left:0;bottom:0}.mobileAdvantage__tabs{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2);overflow-x:auto;margin-bottom:12px;position:absolute;z-index:10;left:calc(var(--grid-gutter) * 0);top:calc(var(--grid-gutter) * 1);right:calc(var(--grid-gutter) * 0)}.mobileAdvantage__tabs .button{color:var(--color-white);background:hsla(0,0%,100%,.4);backdrop-filter:blur(40px);-webkit-backdrop-filter:blur(10px);border:none;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;gap:10px;isolation:isolate;backdrop-filter:blur(1.3px);-ms-flex:none;flex:none;font-size:16px}.mobileAdvantage__tabs .button._active{background:var(--color-primary)!important;color:var(--color-white)}.mobileAdvantage__tab:first-child{margin-left:calc(var(--grid-gutter) * 2)}.mobileAdvantage__tab:last-child{margin-right:calc(var(--grid-gutter) * 2)}.mobileAdvantage__button a{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2)}.mobileAdvantage__text{font-size:18px;line-height:28px;color:var(--color-white);padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 0);margin-bottom:calc(var(--grid-gutter) * 0);position:relative;z-index:5;top:calc(var(--grid-gutter) * -6)}@media (min-width:768px) and (max-width:1024px){.mobileAdvantage__text{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.mobileAdvantage__text{font-size:14px;line-height:16px}}.mobileAdvantage__text ul{display:-ms-inline-flexbox;display:inline-flex;gap:calc(var(--grid-gutter) * 3)}@media screen and (max-width:768px){.mobileAdvantage__text ul{-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}}.mobileAdvantage__text ul li{font-size:18px;line-height:28px;font-size:16px!important;line-height:24px!important;position:relative;padding-left:calc(var(--grid-gutter) * 2);color:#babab9}@media (min-width:768px) and (max-width:1024px){.mobileAdvantage__text ul li{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.mobileAdvantage__text ul li{font-size:14px;line-height:16px}}.mobileAdvantage__text ul li:after{background:var(--color-primary);width:calc(var(--grid-gutter) / 1.5);height:calc(var(--grid-gutter) / 1.5);display:block;border-radius:50%;content:"";position:absolute;left:0;top:6px}#mobileSliderWrapper{height:450px;display:none}@media screen and (max-width:768px){#mobileSliderWrapper{display:-ms-flexbox;display:flex}}#mobileSliderWrapper img{object-fit:cover;height:100%;width:100%}.mobileAdvantage__tabs{scrollbar-width:none}.mobileAdvantage__tabs::-webkit-scrollbar{scrollbar-width:none;display:none}.homeBuilds{position:relative;overflow:hidden;background:var(--bg-second)}.homeBuilds__select{margin-top:calc(var(--grid-gutter) * 2);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 2);font-size:14px;line-height:18px}@media screen and (max-width:768px){.homeBuilds__select{font-size:12px;line-height:16px}}.homeBuilds__select img{width:30px}.homeBuilds__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);position:relative;overflow:hidden;padding-left:0;padding-right:0}@media (min-width:768px) and (max-width:1024px){.homeBuilds__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeBuilds__inner{padding:0 calc(var(--grid-gutter) * 2);padding:0}}.homeBuilds__img{transition:transform .6s ease;will-change:transform}@media screen and (max-width:768px){.homeBuilds__img{height:500px}}@media screen and (max-width:768px){.homeBuilds__img img{height:500px;object-fit:cover}}.homeBuilds__roza{margin-bottom:calc(var(--grid-gutter) * 4)}.homeBuilds__rozaWhite{position:absolute;right:70px;top:70px;z-index:10}@media screen and (max-width:768px){.homeBuilds__rozaWhite{right:10px;top:10px}}@media screen and (max-width:768px){.homeBuilds__rozaWhite img{width:50px!important;height:50px!important}}.homeBuilds._left .homeBuilds__officeLogo{opacity:0}.homeBuilds._left .homeBuilds__logo{transition:transform .6s ease;opacity:0}.homeBuilds._left g.area{opacity:0;pointer-events:none;transition:none!important}.homeBuilds._left ._rune{transform:translateX(-120%)}.homeBuilds._left ._neo,.homeBuilds._left ._rune{transition:transform .6s ease;will-change:transform;z-index:5;opacity:0}.homeBuilds._left ._neo{transform:translate(-95%,10%)}.homeBuilds._left .homeBuilds__img .homeBuilds__img{transform:translateX(-40%);filter:grayscale(1)}.homeBuilds._left .homeBuilds__info{transform:translateX(60%);transition:transform .6s ease;will-change:transform}.homeBuilds._left g.floor{transform:translateX(-40%);opacity:1;visibility:visible}.homeBuilds._left g.floor path,.homeBuilds._left g.floor polygon,.homeBuilds._left g.floor rect{opacity:0;cursor:pointer;stroke:var(--color-primary)}.homeBuilds._left g.floor._active path,.homeBuilds._left g.floor._active polygon,.homeBuilds._left g.floor._active rect,.homeBuilds._left g.floor:hover path,.homeBuilds._left g.floor:hover polygon,.homeBuilds._left g.floor:hover rect{fill:rgba(213,38,47,.5);stroke-width:1px;opacity:1;transition:none!important}.homeBuilds._left._RUNE ._neo{filter:grayscale(1);opacity:0;transition:transform .6s ease}.homeBuilds._left._NEO ._rune{filter:grayscale(1)}.homeBuilds__logo{position:absolute;left:calc(var(--grid-gutter) * 8);top:calc(var(--grid-gutter) * 3);z-index:2;width:100%;color:var(--color-white);font-family:Grtsk Medium Giga,Arial;transition:transform .6s ease;font-size:36px;line-height:44px}@media (min-width:768px) and (max-width:1024px){.homeBuilds__logo{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homeBuilds__logo{font-size:22px;line-height:28px;left:calc(var(--grid-gutter) * 2)}}.homeBuilds__close{display:-ms-flexbox;display:flex;-ms-flex-align:end;align-items:end;-ms-flex-pack:end;justify-content:end;cursor:pointer}.homeBuilds__info{background:var(--color-white);width:65%;transform:translateX(200%);position:absolute;height:100%;top:0;transition:transform .6s ease;will-change:transform;z-index:5;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:justify;justify-content:space-between}.homeBuilds__infoFloor{padding:calc(var(--grid-gutter) * 4);color:var(--color-primary);-ms-flex:1;flex:1;position:relative}.homeBuilds__infoFloor ._back{width:-moz-fit-content;width:fit-content;color:var(--color-white);position:relative;z-index:2;margin-bottom:calc(var(--grid-gutter) * 2)}.homeBuilds__infoFloorSqm{color:var(--color-black);font-size:36px;line-height:44px}@media (min-width:768px) and (max-width:1024px){.homeBuilds__infoFloorSqm{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homeBuilds__infoFloorSqm{font-size:22px;line-height:28px}}.homeBuilds__infoFloorHeight{color:var(--color-black)}.homeBuilds__infoFloorInfo{margin-bottom:calc(var(--grid-gutter) * 6)}.homeBuilds__infoFloorInfo p{font-size:44px;line-height:52px;margin-bottom:calc(var(--grid-gutter) * 2);font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.homeBuilds__infoFloorInfo p{font-size:36px;line-height:42px}}@media screen and (max-width:768px){.homeBuilds__infoFloorInfo p{font-size:26px;line-height:32px}}.homeBuilds__infoFloorInfo span{display:block;font-size:30px;line-height:38px;font-weight:500;text-transform:uppercase;color:var(--color-black);font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.homeBuilds__infoFloorInfo span{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.homeBuilds__infoFloorInfo span{font-size:18px;line-height:24px}}.homeBuilds__infoFloorNumbers{font-family:Grtsk Medium Giga,Arial;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}.homeBuilds__infoFloorNumbers .button{width:-moz-fit-content;width:fit-content;color:var(--color-white);position:absolute;bottom:calc(var(--grid-gutter) * 4)}.homeBuilds__infoFloorNumbers h3{text-transform:uppercase;font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.homeBuilds__infoFloorNumbers h3{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homeBuilds__infoFloorNumbers h3{font-size:12px;line-height:16px}}.homeBuilds__infoFloorNumbers p{font-size:44px;line-height:52px}@media (min-width:768px) and (max-width:1024px){.homeBuilds__infoFloorNumbers p{font-size:36px;line-height:42px}}@media screen and (max-width:768px){.homeBuilds__infoFloorNumbers p{font-size:26px;line-height:32px}}.homeBuilds__infoFloorNumbers p span{font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.homeBuilds__infoFloorNumbers p span{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeBuilds__infoFloorNumbers p span{font-size:14px;line-height:16px}}.homeBuilds__infoPlans{-ms-flex:1;flex:1;background:var(--color-white);padding:calc(var(--grid-gutter) * 4);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:0;cursor:pointer}.homeBuilds__infoPlans img{margin:0 auto;max-height:100%}.homeBuilds ._rune{position:absolute;z-index:10;left:66%;top:13%;width:250px;margin-right:10rem;transition:transform .6s ease;opacity:1}@media screen and (max-width:768px){.homeBuilds ._rune{display:none}}.homeBuilds ._neo{position:absolute;z-index:10;left:30%;top:4%;width:250px;margin-right:10rem;transition:transform .6s ease;opacity:1}@media screen and (max-width:768px){.homeBuilds ._neo{display:none}}.homeBuilds__tooltip{font-family:Grtsk Medium Giga,Arial;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;text-align:left}.homeBuilds__tooltip svg{position:absolute;left:0;top:0;width:100%;height:auto;z-index:1}@media (min-width:768px) and (max-width:1024px){.homeBuilds__tooltip svg{width:auto}}.homeBuilds__tooltip h2{font-size:18px;line-height:28px;text-transform:uppercase;color:var(--color-primary);margin-bottom:calc(var(--grid-gutter) * 1)}@media (min-width:768px) and (max-width:1024px){.homeBuilds__tooltip h2{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeBuilds__tooltip h2{font-size:14px;line-height:16px}}.homeBuilds__tooltipItem{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;font-size:18px;line-height:28px;margin-bottom:calc(var(--grid-gutter) * .5);padding-left:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.homeBuilds__tooltipItem{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeBuilds__tooltipItem{font-size:14px;line-height:16px}}.homeBuilds__tooltipItem small{font-size:16px;line-height:24px;font-family:Suisse Int,Arial,serif;opacity:.4}@media (min-width:768px) and (max-width:1024px){.homeBuilds__tooltipItem small{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homeBuilds__tooltipItem small{font-size:12px;line-height:16px}}.homeBuilds__mobilePanelRune{width:100%;height:300px;background:var(--color-white);padding:calc(var(--grid-gutter) * 6) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2);position:absolute;z-index:30;bottom:0;transform:translateY(300px);transition:all .3s ease-in-out;opacity:0;visibility:hidden;font-size:18px;line-height:28px}.homeBuilds__mobilePanelRune._open{transition:all .3s ease-in-out;opacity:1;visibility:visible;transform:translateY(0)}@media (min-width:768px) and (max-width:1024px){.homeBuilds__mobilePanelRune{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeBuilds__mobilePanelRune{font-size:14px;line-height:16px}}.homeBuilds__mobilePanelRune .buttonClose{position:absolute;right:0;top:0;width:-moz-fit-content;width:fit-content}.homeBuilds__mobilePanelRune .button{color:var(--color-white);text-align:center}.homeBuilds__mobilePanelRune .selectOffice{margin-top:calc(var(--grid-gutter) * 2)}.homeBuilds__mobilePanelRune h3{font-family:Grtsk Medium Giga,Arial;color:var(--color-primary);font-weight:400}.homeBuilds__mobilePanelRune table{margin-top:calc(var(--grid-gutter) * 2)}.homeBuilds__mobilePanelRune table tr td{padding:calc(var(--grid-gutter) * .5) 0;vertical-align:middle}.homeBuilds__mobilePanelRune table tr td:first-child{opacity:.5;width:200px}.homeBuilds__mobilePanelRune table tr td:last-child{font-family:Grtsk Medium Giga,Arial}.homeBuilds__mobilePanelNeo{width:100%;height:250px;background:var(--color-white);padding:calc(var(--grid-gutter) * 6) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2);position:absolute;z-index:30;bottom:0;transform:translateY(300px);opacity:0;transition:all .3s ease-in-out;visibility:hidden;font-size:18px;line-height:28px}.homeBuilds__mobilePanelNeo._open{transition:all .3s ease-in-out;opacity:1;visibility:visible;transform:translateY(0)}@media (min-width:768px) and (max-width:1024px){.homeBuilds__mobilePanelNeo{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeBuilds__mobilePanelNeo{font-size:14px;line-height:16px}}.homeBuilds__mobilePanelNeo .buttonClose{position:absolute;right:0;top:0;width:-moz-fit-content;width:fit-content;color:var(--color-white)}.homeBuilds__mobilePanelNeo h3{font-family:Grtsk Medium Giga,Arial;color:var(--color-primary);font-weight:400}.homeBuilds__mobilePanelNeo table{margin-top:calc(var(--grid-gutter) * 2)}.homeBuilds__mobilePanelNeo table tr td{padding:calc(var(--grid-gutter) * .5) 0;vertical-align:middle}.homeBuilds__mobilePanelNeo table tr td:first-child{opacity:.5;width:200px}.homeBuilds__mobilePanelNeo table tr td:last-child{font-family:Grtsk Medium Giga,Arial}.homeBuilds__mobileIcon{display:none!important}@media screen and (max-width:768px){.homeBuilds__mobileIcon{display:block!important}}.homeBuilds__mobileIcon svg{opacity:.7;height:25px}.homeBuilds__mobileIconRune{left:66%;top:41%}.homeBuilds__mobileIconNeo,.homeBuilds__mobileIconRune{background:var(--color-white);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%);box-shadow:4px 4px 8px 0 rgba(34,60,80,.2);transition:all .3s ease;position:absolute;width:40px;height:40px;z-index:20;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.homeBuilds__mobileIconNeo{left:20%;top:65%}.homeBuilds__mask{position:absolute;top:0;left:0;width:100%;height:100%}@media screen and (max-width:768px){.homeBuilds__mask{z-index:-1}}.homeBuilds__mask g.area path,.homeBuilds__mask g.area polygon,.homeBuilds__mask g.area rect{opacity:0;cursor:pointer;transition:all .6s ease;stroke:var(--color-primary)}.homeBuilds__mask g.area path:hover,.homeBuilds__mask g.area polygon:hover,.homeBuilds__mask g.area rect:hover{stroke-width:2px;opacity:1}.homeBuilds__mask g.floor{opacity:0;visibility:hidden}@media screen and (max-width:768px){.homeBuilds__mask g.floor{display:none!important;position:absolute;left:-1000%;top:-1000%}}.floor-label{position:absolute;color:var(--color-white);line-height:26px;font-size:14px;pointer-events:none;white-space:nowrap;z-index:10;font-family:Grtsk Medium Giga,Arial}.home-booklets{color:var(--color-white);background:var(--bg-main)}.home-booklets__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 70px;position:relative;display:-ms-flexbox;display:flex;overflow:hidden;background:var(--color-primary);padding-top:calc(var(--grid-gutter) * 3);padding-bottom:calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.home-booklets__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.home-booklets__inner{padding:0 calc(var(--grid-gutter) * 2);-ms-flex-direction:column;flex-direction:column;padding-top:calc(var(--grid-gutter) * 2)}}.home-booklets__bg{position:absolute;top:0;left:30px;height:100%;z-index:0}.home-booklets__bg img{height:100%}.home-booklets__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white)}@media (min-width:768px) and (max-width:1024px){.home-booklets__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.home-booklets__header{font-size:22px;line-height:28px}}.home-booklets__side--left{-ms-flex:0.57;flex:0.57;position:relative;z-index:2}.home-booklets__side--right{-ms-flex:0.4;flex:0.4;position:relative}.home-booklets__download{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:65%}@media screen and (max-width:768px){.home-booklets__download{width:100%;margin-top:calc(var(--grid-gutter) * 6);margin-bottom:calc(var(--grid-gutter) * 2)}}.home-booklets__download-item{cursor:pointer;font-size:18px;line-height:28px;font-family:Grtsk Medium Giga,Arial;text-transform:uppercase;border-bottom:1px solid var(--color-white);position:relative;padding-top:calc(var(--grid-gutter) * 4);padding-bottom:calc(var(--grid-gutter) * 1.2)}@media (min-width:768px) and (max-width:1024px){.home-booklets__download-item{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.home-booklets__download-item{font-size:14px;line-height:16px}}.home-booklets__download-item:first-child{padding-top:calc(var(--grid-gutter) * 1)}.home-booklets__download-item:first-child:after{top:calc(var(--grid-gutter) * 1)}.home-booklets__download-item:hover{opacity:.7}.home-booklets__download-item:after{content:"";background-image:url(/img/arrow.svg);background-size:calc(var(--grid-gutter) * 2);background-repeat:no-repeat;width:calc(var(--grid-gutter) * 2);height:calc(var(--grid-gutter) * 2);position:absolute;top:calc(var(--grid-gutter) * 4);right:0}.home-constructions{background:var(--color-black);padding:calc(var(--grid-gutter) * 4) 0 calc(var(--grid-gutter) * 8);color:var(--color-white);position:relative}@media screen and (max-width:768px){.home-constructions{padding:calc(var(--grid-gutter) * 2) 0 calc(var(--grid-gutter) * 4)}}.home-constructions__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 70px}@media (min-width:768px) and (max-width:1024px){.home-constructions__inner{padding:0 calc(var(--grid-gutter) * 4)}}@media screen and (max-width:768px){.home-constructions__inner{padding:0 calc(var(--grid-gutter) * 2)}}.home-constructions__top{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:start;align-items:flex-start;margin-bottom:calc(var(--grid-gutter) * 4)}@media screen and (max-width:768px){.home-constructions__top{-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2)}}.home-constructions__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white);margin:0}@media (min-width:768px) and (max-width:1024px){.home-constructions__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.home-constructions__header{font-size:22px;line-height:28px}}.home-constructions__date-select{position:relative;cursor:pointer;z-index:10}.home-constructions__date-current{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 1);background:var(--color-primary);color:var(--color-white);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);font-family:Grtsk Medium Giga,Arial;font-size:16px;line-height:20px;font-weight:500;text-transform:uppercase;clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%);transition:background .3s ease;white-space:nowrap}@media (min-width:768px) and (max-width:1024px){.home-constructions__date-current{font-size:12px;line-height:16px}}@media screen and (max-width:768px){.home-constructions__date-current{font-size:12px;line-height:14px}}.home-constructions__date-current svg{transition:transform .3s ease;-ms-flex-negative:0;flex-shrink:0}._open .home-constructions__date-current svg{transform:rotate(180deg)}.home-constructions__date-dropdown{display:none;position:absolute;top:100%;right:0;min-width:100%;max-height:300px;overflow-y:auto;background:var(--color-black);border:1px solid var(--color-gray);z-index:20}._open .home-constructions__date-dropdown{display:block}.home-constructions__date-option{padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 2);font-size:14px;line-height:18px;white-space:nowrap;transition:background .2s ease;cursor:pointer}@media screen and (max-width:768px){.home-constructions__date-option{font-size:12px;line-height:16px}}.home-constructions__date-option._active,.home-constructions__date-option:hover{background:var(--color-primary)}.home-constructions__slider{position:relative;width:100%}.home-constructions__swiper{width:100%;height:600px}@media (min-width:768px) and (max-width:1024px){.home-constructions__swiper{height:450px}}@media screen and (max-width:768px){.home-constructions__swiper{height:300px}}.home-constructions__slide{background-size:cover;background-position:50%;background-repeat:no-repeat;cursor:pointer}.home-constructions__nav{position:absolute;top:0;left:0;right:0;bottom:0;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;pointer-events:none;padding:0 calc(var(--grid-gutter) * 2);z-index:5}@media screen and (max-width:768px){.home-constructions__nav{padding:0 calc(var(--grid-gutter) * 1)}}.home-constructions__nav span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;pointer-events:auto;cursor:pointer;background:var(--color-primary);padding:calc(var(--grid-gutter) * 1.5);transition:all .3s ease}@media screen and (max-width:768px){.home-constructions__nav span{padding:calc(var(--grid-gutter) * 1)}}.home-constructions__nav span img{width:20px;height:20px;filter:brightness(0) invert(1)}@media screen and (max-width:768px){.home-constructions__nav span img{width:16px;height:16px}}.home-constructions__nav span:hover{background:var(--color-white)}.home-constructions__nav span:hover img{filter:brightness(0)}.home-constructions__navLeft{clip-path:polygon(15px 0,100% 0,100% 100%,0 100%,0 15px)}.home-constructions__navRight{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}.home-constructions__pagination{margin-top:calc(var(--grid-gutter) * 3);display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;position:absolute;bottom:0;left:0;right:0}.home-constructions__pagination .swiper-pagination{position:relative;bottom:auto}.home-constructions__pagination .swiper-pagination-bullet{width:7px;height:7px;border-radius:0;background:var(--color-gray);opacity:1;transition:all .3s ease}.home-constructions__pagination .swiper-pagination-bullet-active{background:var(--color-primary);width:9px;height:9px}.home-contacts{background:var(--bg-main)}.home-contacts__inner{color:var(--color-white);position:relative;max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:40px 70px}@media (min-width:768px) and (max-width:1024px){.home-contacts__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.home-contacts__inner{padding:0 calc(var(--grid-gutter) * 2);padding:0}}.home-contacts__stella{position:absolute;right:0;top:0;height:calc(100% + 0px)}@media screen and (max-width:768px){.home-contacts__stella{display:none}}.home-contacts__stella img{height:100%;width:57px}.home-contacts__top{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16)}@media screen and (max-width:768px){.home-contacts__top{padding:calc(var(--grid-gutter) * 0) 0;-ms-flex-direction:column;flex-direction:column;gap:0;clip-path:unset;margin-top:calc(var(--grid-gutter) * 0)}}.home-contacts__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white);margin-bottom:6rem}@media (min-width:768px) and (max-width:1024px){.home-contacts__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.home-contacts__header{font-size:22px;line-height:28px}}.home-contacts__side--left{-ms-flex:1;flex:1;clip-path:polygon(0 0,98% 0,98% 50%,100% 53%,100% 100%,100% 100%,99.9% 100%,1% 100%,2% 50%,0 52%);background:var(--color-black)}@media screen and (max-width:768px){.home-contacts__side--left{clip-path:unset}}.home-contacts__side--left p{margin-right:10rem}@media screen and (max-width:768px){.home-contacts__side--left p{margin-right:3rem}}.home-contacts__side--right{-ms-flex:1;flex:1;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}@media screen and (max-width:768px){.home-contacts__side--right{padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2);position:relative;top:calc(var(--grid-gutter) * -2)}}.home-contacts__form{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 0);width:70%;font-size:14px;line-height:18px}@media screen and (max-width:768px){.home-contacts__form{font-size:12px;line-height:16px;width:100%;margin-top:3rem}}.home-contacts__form label{color:var(--color-gray);font-size:14px;line-height:18px;display:-ms-flexbox;display:flex}@media screen and (max-width:768px){.home-contacts__form label{font-size:12px;line-height:16px}}.home-contacts__form label a{color:var(--color-primary);text-decoration:underline}.home-contacts__form input[type=email],.home-contacts__form input[type=tel],.home-contacts__form input[type=text]{background:transparent;border-bottom:1px solid var(--color-gray);padding:calc(var(--grid-gutter) * 1);width:100%;margin-bottom:calc(var(--grid-gutter) * 2);color:var(--color-white);font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.home-contacts__form input[type=email],.home-contacts__form input[type=tel],.home-contacts__form input[type=text]{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.home-contacts__form input[type=email],.home-contacts__form input[type=tel],.home-contacts__form input[type=text]{font-size:12px;line-height:16px}}.home-contacts__form button[type=submit]{margin-top:calc(var(--grid-gutter) * 2);display:block;background:var(--color-primary);color:var(--color-white);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);font-family:Grtsk Medium Giga,Arial;font-weight:500;text-transform:uppercase;position:relative;z-index:1;clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 2rem) 100%,0 100%);transition:all .3s ease;cursor:pointer}.home-contacts__form button[type=submit]:hover{background:var(--color-white);color:var(--color-black);transition:all .3s ease}.home-contacts__form .checkboxWrapper{display:-ms-flexbox;display:flex}.home-contacts__success{padding:calc(var(--grid-gutter) * 5);margin:calc(var(--grid-gutter) * 2);text-align:center}.home-contacts .custom-checkbox .custom-checkmark{background:var(--color-black);border:2px solid var(--color-primary)}.home-contacts .custom-checkbox input[type=checkbox]:checked+.custom-checkmark{background-color:var(--color-primary);border-color:var(--color-primary)}.home-contacts .custom-checkbox .custom-checkmark:after{background:var(--color-primary)}.home-contacts__copy{margin-top:calc(var(--grid-gutter) * 10);background:var(--color-black);color:var(--color-white);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;position:relative;font-size:14px;line-height:18px}@media screen and (max-width:768px){.home-contacts__copy{font-size:12px;line-height:16px;padding:calc(var(--grid-gutter) * 2);-ms-flex-direction:column;flex-direction:column;margin-top:calc(var(--grid-gutter) * 0)}}.home-contacts__copy img{margin-bottom:2rem}.home-contacts__copy h3{color:var(--color-primary);text-transform:uppercase;font-family:Grtsk Medium Giga,Arial;font-weight:400;margin-bottom:calc(var(--grid-gutter) * 2)}.home-contacts__copy p{font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.home-contacts__copy p{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.home-contacts__copy p{font-size:12px;line-height:16px}}.home-contacts__copy small{margin-top:calc(var(--grid-gutter) * 2);font-size:16px;line-height:24px;display:block;opacity:.5}@media (min-width:768px) and (max-width:1024px){.home-contacts__copy small{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.home-contacts__copy small{font-size:12px;line-height:16px}}.home-contacts__copy a{text-decoration:underline;display:block;margin-bottom:1rem}.home-contacts__copy-left{-ms-flex:0.5;flex:0.5}.home-contacts__copy-center{-ms-flex:0.35;flex:0.35;margin-top:calc(var(--grid-gutter) * 4);font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.home-contacts__copy-center{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.home-contacts__copy-center{font-size:12px;line-height:16px}}.home-contacts__copy-center a{text-decoration:none}.home-contacts__copy-center p{font-size:10px;line-height:14px;opacity:.5;width:80%}@media screen and (max-width:768px){.home-contacts__copy-center p{width:100%}}.home-contacts__copy-right{-ms-flex:0.15;flex:0.15;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:start;justify-content:start;text-align:left;font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.home-contacts__copy-right{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.home-contacts__copy-right{font-size:12px;line-height:16px;padding-right:0}}.home-contacts__copy-right p{opacity:.5;margin-bottom:calc(var(--grid-gutter) * 2)}.home-contacts__copy-bottom,.home-contacts__copy-right p{margin-top:calc(var(--grid-gutter) * 4)}.homeLocation{padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 0) 0;color:var(--color-white);overflow:hidden;background:var(--color-black)}@media screen and (max-width:768px){.homeLocation{padding-bottom:calc(var(--grid-gutter) * 4);padding:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column-reverse;flex-direction:column-reverse}}.homeLocation__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);position:relative;padding-left:0;padding-right:0;background:var(--bg-main)}@media (min-width:768px) and (max-width:1024px){.homeLocation__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeLocation__inner{padding:0 calc(var(--grid-gutter) * 2);padding:0}}.homeLocation__innerTitle{background:var(--bg-main);padding-top:calc(var(--grid-gutter) * 7)}@media screen and (max-width:768px){.homeLocation__innerTitle{padding:0}}.homeLocation__arrow{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:end;gap:calc(var(--grid-gutter) * 1);margin-bottom:2rem;position:absolute;bottom:30px;right:30px}@media screen and (max-width:768px){.homeLocation__arrow{display:none}}.homeLocation__arrowMinus{clip-path:polygon(15px 0,100% 0,100% 100%,100% 100%,0 100%,0 15px)}.homeLocation__arrowPlus{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}@media screen and (max-width:768px){.homeLocation__arrowPlus{clip-path:polygon(0 0,100% 0,100% 25px,calc(100% - 15px) 100%,0 100%)}}.homeLocation__arrow span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer;background:var(--color-primary);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 1.5);text-transform:uppercase;font-size:1.4rem;position:relative;z-index:1;color:var(--color-black);transition:all .3s ease}@media screen and (max-width:768px){.homeLocation__arrow span{padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1.2)}}.homeLocation__arrow span:hover{background:var(--color-white)}.homeLocation__arrow span:hover img{filter:brightness(1);filter:invert(1)}.homeLocation__arrow span img{filter:brightness(0);filter:invert(0)}.homeLocation__info{background:var(--color-primary);padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 5) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2);color:var(--color-white);position:absolute;z-index:2;left:calc(var(--grid-gutter) * 7);top:calc(var(--grid-gutter) * 4);font-size:16px;line-height:24px;clip-path:polygon(0 0,100% 0,100% 90%,calc(100% - 15px) 100%,0 100%)}@media (min-width:768px) and (max-width:1024px){.homeLocation__info{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homeLocation__info{font-size:12px;line-height:16px;top:calc(var(--grid-gutter) * 2);left:20px;right:20px;padding:calc(var(--grid-gutter) * 1);clip-path:polygon(0 0,100% 0,100% 80%,calc(100% - 15px) 100%,0 100%)}}.homeLocation__infoSelect{display:none}@media screen and (max-width:786px){.homeLocation__infoSelect{cursor:pointer;display:-ms-flexbox;display:flex;gap:10px;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;font-family:Grtsk Medium Giga,Arial}}.homeLocation__infoSelect img{position:relative;top:1px;height:7px}.homeLocation__infoDropdown{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * .5);-ms-flex-direction:column;flex-direction:column}@media screen and (max-width:768px){.homeLocation__infoDropdown{display:none}}.homeLocation__infoDropdown._open{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr);gap:5px;padding-top:calc(var(--grid-gutter) * 1);padding-left:calc(var(--grid-gutter) * 1)}.homeLocation__info input{margin-right:calc(var(--grid-gutter) * .5)}.homeLocation .ymaps-2-1-79-map-copyrights-promo{display:none}.homeLocation__address{font-family:Grtsk Medium Giga,Arial;background:var(--bg-second);padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 2);color:var(--color-primary);text-transform:uppercase;display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * .5);-ms-flex-direction:column;flex-direction:column;position:absolute;z-index:2;left:calc(var(--grid-gutter) * 7);bottom:calc(var(--grid-gutter) * 4);font-size:16px;line-height:24px;clip-path:polygon(0 0,100% 0,100% 90%,calc(100% - 15px) 100%,0 100%)}@media (min-width:768px) and (max-width:1024px){.homeLocation__address{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homeLocation__address{font-size:12px;line-height:16px;top:unset;bottom:calc(var(--grid-gutter) * 2);left:calc(var(--grid-gutter) * 2)}}.homeLocation__address input{margin-right:calc(var(--grid-gutter) * .5)}.homeLocation__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;padding:0 70px;color:var(--color-white);margin-bottom:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.homeLocation__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homeLocation__header{font-size:22px;line-height:28px}}@media (min-width:768px) and (max-width:1024px){.homeLocation__header{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeLocation__header{padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2) 0;margin-bottom:calc(var(--grid-gutter) * 0)}}.homeLocation__text{padding:0 70px;padding-bottom:calc(var(--grid-gutter) * 7)}@media (min-width:768px) and (max-width:1024px){.homeLocation__text{padding:0 calc(var(--grid-gutter) * 2);margin-bottom:calc(var(--grid-gutter) * 4)}}@media screen and (max-width:768px){.homeLocation__text{padding:0;padding-bottom:calc(var(--grid-gutter) * 1)}}.homeLocation__text ul{display:-ms-inline-flexbox;display:inline-flex;gap:calc(var(--grid-gutter) * 3)}@media screen and (max-width:768px){.homeLocation__text ul{-ms-flex-direction:column;flex-direction:column;padding:calc(var(--grid-gutter) * 2);gap:calc(var(--grid-gutter) * 1)}}.homeLocation__text ul li{font-size:18px;line-height:28px;position:relative;padding-left:calc(var(--grid-gutter) * 2);color:var(--color-white)}@media (min-width:768px) and (max-width:1024px){.homeLocation__text ul li{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeLocation__text ul li{font-size:14px;line-height:16px}}.homeLocation__text ul li:after{background:var(--color-primary);width:calc(var(--grid-gutter) / 1.5);height:calc(var(--grid-gutter) / 1.5);display:block;border-radius:50%;content:"";position:absolute;left:0;top:calc(var(--grid-gutter) / 1)}@media screen and (max-width:768px){.homeLocation__text ul li:after{top:4px}}.homeLocation__map{position:relative;height:670px;background:#c5c5c5}.homeLocation__map #map{width:100%;height:670px}@media screen and (max-width:768px){.homeLocation__map #map{height:500px}}.homeLocation__map [class*=ymaps-2-1][class*=-ground-pane]{-webkit-filter:grayscale(100%)!important}@media screen and (max-width:768px){.homeLocation__map{height:500px}}@media screen and (max-width:768px){.homeLocation__mapMain{height:100%;object-fit:cover;object-position:70%}}.homeLocation__mapIcon1{position:absolute;left:55%;top:25%;z-index:10;font-size:1.2rem;text-align:center;color:var(--color-white);font-family:Grtsk Medium Giga,Arial}@media screen and (max-width:768px){.homeLocation__mapIcon1{left:40%;top:20%}}.homeLocation__mapIcon1 img{max-width:8rem;margin:0 auto}@media screen and (max-width:768px){.homeLocation__mapIcon1 img{max-width:6rem}}.homeLocation__mapIcon2{position:absolute;left:84%;top:43%;z-index:10;font-size:1.2rem;text-align:center;color:var(--color-white);font-family:Grtsk Medium Giga,Arial}@media screen and (max-width:768px){.homeLocation__mapIcon2{left:87%;top:40%}}.homeLocation__mapIcon2 img{max-width:8rem;margin:0 auto}@media screen and (max-width:768px){.homeLocation__mapIcon2 img{max-width:6rem}}.homeLocation__text{gap:calc(var(--grid-gutter) * 16)}.homeLocation__text,.mapIcon{display:-ms-flexbox;display:flex}.mapIcon{gap:4px}.mapIconImg{min-width:35px;min-height:25px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;background:var(--color-white);padding:3px 10px;box-shadow:4px 4px 8px 0 rgba(34,60,80,.2)}@media screen and (max-width:768px){.mapIconImg{padding:2px 5px;min-width:25px;min-height:25px}}.mapIconText{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;background:var(--color-white);padding:3px 10px;box-shadow:4px 4px 8px 0 rgba(34,60,80,.2);white-space:nowrap;font-family:Grtsk Medium Giga,Arial;font-size:7px;text-transform:uppercase}@media screen and (max-width:768px){.mapIconText{padding:2px 10px;font-size:8px}}.mapIconProject{display:-ms-flexbox;display:flex;gap:4px}.mapIconProjectImg{min-width:50px;min-height:50px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding:5px;box-shadow:4px 4px 8px 0 rgba(34,60,80,.5);background:var(--color-primary)}@media screen and (max-width:768px){.mapIconProjectImg{padding:2px 5px;min-width:40px;min-height:40px}}.mapIconProjectText{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-width:100px;padding:5px 20px;box-shadow:4px 4px 8px 0 rgba(34,60,80,.5);white-space:nowrap;font-family:Grtsk Medium Giga,Arial;font-size:12px;background:var(--color-black);color:var(--color-white);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%)}@media screen and (max-width:768px){.mapIconProjectText{padding:2px 10px}}.homeNews{display:-ms-flexbox;display:flex;background:var(--bg-second)}@media screen and (max-width:768px){.homeNews{-ms-flex-direction:column;flex-direction:column;padding:calc(var(--grid-gutter) * 1);background:var(--color-primary)}}.homeNews__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);position:relative;display:-ms-flexbox;display:flex;overflow:hidden}@media (min-width:768px) and (max-width:1024px){.homeNews__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeNews__inner{padding:0 calc(var(--grid-gutter) * 2);padding:0;-ms-flex-direction:column;flex-direction:column;clip-path:polygon(0 0,98% 0,98% 50%,100% 53%,100% 100%,100% 100%,99.9% 100%,1% 100%,2% 50%,0 52%)}}.homeNews__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white);left:calc(var(--grid-gutter) * 11);top:calc(var(--grid-gutter) * 4);position:absolute;z-index:5}@media (min-width:768px) and (max-width:1024px){.homeNews__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homeNews__header{font-size:22px;line-height:28px;left:calc(var(--grid-gutter) * 1);top:calc(var(--grid-gutter) * 2);width:100%}}.homeNews__swiper{width:100%;height:500px}@media screen and (max-width:768px){.homeNews__swiper{height:380px}}.homeNews__items{display:-ms-grid!important;display:grid!important;-ms-grid-columns:50% 25% 25%;grid-template-columns:50% 25% 25%;background:var(--color-primary)}@media screen and (max-width:768px){.homeNews__items{display:-ms-flexbox!important;display:flex!important}}.homeNews__item{color:var(--color-white);position:relative;background-size:cover;background-repeat:no-repeat;background-position:50%;height:100%}@media screen and (max-width:768px){.homeNews__item{width:100vw}}.homeNews__item:first-child{padding:calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 7) calc(var(--grid-gutter) * 8)}.homeNews__item:first-child .homeNews__itemImg{width:calc(100% - (var(--grid-gutter) * 3));height:calc(100% - (var(--grid-gutter) * 3));position:absolute;left:0;top:0;clip-path:polygon(0 0,98% 0,98% 50%,100% 53%,100% 100%,100% 100%,99.9% 100%,1% 100%,2% 50%,0 52%);margin:calc(var(--grid-gutter) * 1.5)}@media screen and (max-width:768px){.homeNews__item:first-child .homeNews__itemImg{clip-path:unset;width:100%;height:100%;margin:0}}.homeNews__item:first-child .homeNews__itemText{padding:0;bottom:calc(var(--grid-gutter) * 4)}.homeNews__item:first-child h3{font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.homeNews__item:first-child h3{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.homeNews__item:first-child h3{font-size:14px;line-height:16px}}.homeNews__itemImg{width:100%;height:100%;margin:0}.homeNews__itemImg:after{position:absolute;left:0;width:100%;bottom:0;height:450px;background:linear-gradient(0deg,#000 0,transparent);content:"";z-index:1}.homeNews__itemImg img{width:100%;height:100%;object-fit:cover;object-position:bottom}.homeNews__itemText{position:absolute;z-index:5;bottom:calc(var(--grid-gutter) * 2);padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 2)}.homeNews__itemText h3{font-family:Grtsk Medium Giga,Arial;font-size:16px;line-height:24px;text-transform:uppercase;font-weight:400;margin-bottom:1rem}@media (min-width:768px) and (max-width:1024px){.homeNews__itemText h3{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homeNews__itemText h3{font-size:12px;line-height:16px}}.homeNews__itemText p{font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.homeNews__itemText p{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homeNews__itemText p{font-size:12px;line-height:16px}}.homeNews__itemText a{display:block;margin-top:calc(var(--grid-gutter) * 2);width:-moz-fit-content;width:fit-content}.homeNews__arrow{gap:calc(var(--grid-gutter) * 1);position:absolute;right:calc(var(--grid-gutter) * 2);top:calc(var(--grid-gutter) * -.5);display:none}@media screen and (max-width:768px){.homeNews__arrow{display:-ms-flexbox;display:flex}}.homeNews__arrow span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer;padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1.2);text-transform:uppercase;font-size:1.4rem;position:relative;z-index:1;color:var(--color-white);transition:all .3s ease}.homeNews__arrow span,.homeNews__arrow span:hover{background:var(--color-primary)}.homeNews__arrow span:hover img{filter:brightness(1);filter:invert(1)}.homeNews__arrowLeft{clip-path:polygon(15px 0,100% 0,100% 100%,100% 100%,0 100%,0 15px)}.homeNews__arrowRight{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}.homePlans{background:var(--bg-second);padding:calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 0)}@media screen and (max-width:768px){.homePlans{padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 0)}}.homePlans__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 70px}@media (min-width:768px) and (max-width:1024px){.homePlans__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homePlans__inner{padding:0 calc(var(--grid-gutter) * 2)}}.homePlans #loadMoreBtn{margin:0 auto;color:var(--color-white);cursor:pointer}.homePlans #loadMoreBtn:hover,.homePlans__header{color:var(--color-black)}.homePlans__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;margin-bottom:calc(var(--grid-gutter) * 2.5);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media (min-width:768px) and (max-width:1024px){.homePlans__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homePlans__header{font-size:22px;line-height:28px;margin-bottom:3rem}}.homePlans__title{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2)}.homePlans__select{color:var(--color-primary)}@media screen and (max-width:768px){.homePlans__button{display:none}}.homePlans__button .button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 1)}.homePlans__button .button svg{fill:var(--color-primary)}.homePlans__button .button:hover svg{fill:var(--color-white)}.homePlans__filter{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:768px){.homePlans__filter{display:none}}.homePlans__filter._show{display:block!important;margin-bottom:1rem}.homePlans__filterShow{display:none}@media screen and (max-width:768px){.homePlans__filterShow{display:block}}.homePlans__filterShow a{width:-moz-fit-content;width:fit-content;color:var(--color-white)}.homePlans__filterRangeData{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * .5);margin-top:calc(var(--grid-gutter) * 2);cursor:pointer}.homePlans__filterRangeData:hover:first-child{color:var(--color-black)!important}.homePlans__filterRangeData:hover:last-child span,.homePlans__filterRangeData:hover:last-child span:last-child{color:var(--color-white)}.homePlans__filterRangeData:hover:last-child span:before{background:var(--color-black)}.homePlans__filterRangeData span{padding:calc(var(--grid-gutter) * .1) calc(var(--grid-gutter) * 1);font-size:14px;position:relative;background:var(--color-black);color:var(--color-black);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%)}.homePlans__filterRangeData span:first-child{clip-path:unset;background:transparent;color:var(--color-black)!important;border:1px solid var(--color-black);padding:calc(var(--grid-gutter) * .4) calc(var(--grid-gutter) * 2)}.homePlans__filterRangeData span:first-child:hover{color:var(--color-black)!important}.homePlans__filterRangeData span:last-child{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}@media screen and (max-width:768px){.homePlans__filterRangeData span{padding:calc(var(--grid-gutter) * .3) calc(var(--grid-gutter) * 1)}}.homePlans__filterRangeData span:before{content:"";inset:1px;position:absolute;z-index:-1;background:var(--bg-second);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%)}.homePlans__filterSlider{-ms-flex:1;flex:1;display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2)}@media screen and (max-width:768px){.homePlans__filterSlider{-ms-flex-direction:column;flex-direction:column}}.homePlans__filterSliderItem{font-size:14px;line-height:18px;-ms-flex:1;flex:1}@media screen and (max-width:768px){.homePlans__filterSliderItem{font-size:12px;line-height:16px}}.homePlans__filterSliderCount{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;color:var(--color-gray);font-size:14px;line-height:18px}@media screen and (max-width:768px){.homePlans__filterSliderCount{font-size:12px;line-height:16px}}.homePlans__filterSliderCount b{font-weight:400;color:var(--color-black)}.homePlans__filterSliderRange{margin-top:calc(var(--grid-gutter) * 1.5);background:#dedede;padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 2);clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 2rem) 100%,0 100%);width:100%}.homePlans__filterSliderLine{margin:calc(var(--grid-gutter) * 2) 0;height:3px;width:100%;background:var(--color-primary)}.homePlans__filterSliderControl{margin-top:calc(var(--grid-gutter) * 4);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}@media screen and (max-width:768px){.homePlans__filterSliderControl{margin-top:calc(var(--grid-gutter) * 2)}}.homePlans__filterSliderArrow{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:end;gap:calc(var(--grid-gutter) * 1);margin-bottom:2rem}.homePlans__filterSliderArrowLeft{clip-path:polygon(15px 0,100% 0,100% 100%,100% 100%,0 100%,0 15px)}.homePlans__filterSliderArrowRight{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}@media screen and (max-width:768px){.homePlans__filterSliderArrowRight{clip-path:polygon(0 0,100% 0,100% 25px,calc(100% - 15px) 100%,0 100%)}}.homePlans__filterSliderArrow span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer;background:var(--color-primary);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);text-transform:uppercase;font-size:1.4rem;position:relative;z-index:1;color:var(--color-black);transition:all .3s ease}@media screen and (max-width:768px){.homePlans__filterSliderArrow span{padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1.2)}}.homePlans__filterSliderArrow span:hover{background:var(--color-white)}.homePlans__filterSliderArrow span:hover img{filter:brightness(1);filter:invert(1)}.homePlans__filterSliderArrow span img{filter:brightness(0);filter:invert(0)}@media screen and (max-width:768px){.homePlans__filterSliderButton{display:none}}.homePlans__filterSliderButton .button{color:var(--color-white)}.homePlans .swiper-slide{height:auto}.homePlans__plans{margin-top:calc(var(--grid-gutter) * 1)}.homePlans__plansItems{padding-bottom:40px}.homePlans__plansItems._loading{opacity:.2}.homePlans__plansItem{background:var(--color-white);clip-path:polygon(0 0,92.9% 0,92.9% 32.97%,96.2% 35.43%,96.2% 100%,99.9% 100%,99.9% 100%,3% 100%,3.78% 35.2%,0 38.3%);padding-top:calc(var(--grid-gutter) * 1);padding-left:calc(var(--grid-gutter) * 1);padding-right:calc(var(--grid-gutter) * 2);position:relative;margin:0;margin-right:calc(var(--grid-gutter) * 1.5);-ms-flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));max-width:calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5))}@media screen and (max-width:768px){.homePlans__plansItem{margin-right:0;max-width:100%;-ms-flex:1;flex:1}}.homePlans__plansItemTop{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 3) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 1.5)}@media screen and (max-width:768px){.homePlans__plansItemTop{padding:calc(var(--grid-gutter) * 2)}}.homePlans__plansItemTopLeft{-ms-flex:1;flex:1}.homePlans__plansItemTopLeft p{color:var(--color-black);opacity:.5;font-size:16px;line-height:24px;margin-top:10px}@media (min-width:768px) and (max-width:1024px){.homePlans__plansItemTopLeft p{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homePlans__plansItemTopLeft p{font-size:12px;line-height:16px}}.homePlans__plansItemTopLeft span{display:-ms-flexbox;display:flex;color:var(--color-gray);opacity:.7}.homePlans__plansItemTopRight{-ms-flex:1;flex:1;color:var(--color-black);display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:end;font-size:20px;line-height:26px;font-size:24px}@media (min-width:768px) and (max-width:1024px){.homePlans__plansItemTopRight{font-size:18px;line-height:22px}}@media screen and (max-width:768px){.homePlans__plansItemTopRight{font-size:16px;line-height:20px}}.homePlans__plansItemImage{width:100%;max-width:100%}.homePlans__plansItemImage img{max-height:280px;margin:0 auto}.homePlans__plansItemBottom{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 3)}@media screen and (max-width:768px){.homePlans__plansItemBottom{padding:calc(var(--grid-gutter) * 2)}}.homePlans__plansItemBottomLeft{-ms-flex:1;flex:1;font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.homePlans__plansItemBottomLeft{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homePlans__plansItemBottomLeft{font-size:12px;line-height:16px}}.homePlans__plansItemBottomLeft span{display:-ms-flexbox;display:flex;color:var(--color-gray);opacity:.7;font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.homePlans__plansItemBottomLeft span{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homePlans__plansItemBottomLeft span{font-size:12px;line-height:16px}}.homePlans__plansItemBottomRight{-ms-flex:1;flex:1;color:var(--color-black);font-size:16px;line-height:24px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:end;-ms-flex-align:end;align-items:end}@media (min-width:768px) and (max-width:1024px){.homePlans__plansItemBottomRight{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.homePlans__plansItemBottomRight{font-size:12px;line-height:16px}}.homePlans__plansItemBottomRight span{opacity:.5}.homePlans__plansItem._empty{padding:calc(var(--grid-gutter) * 4);height:100%;clip-path:polygon(3% 5%,46% 5%,53% 0,91% 0,93% 44%,98% 50%,100% 96%,44% 95%,51% 100%,0 100%,5% 49%,0 52%)}.homePlans__plansItemEmpty{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-direction:column;flex-direction:column;height:100%}.homePlans__plansItemEmpty p{text-transform:uppercase;font-size:20px;line-height:26px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.homePlans__plansItemEmpty p{font-size:18px;line-height:22px}}@media screen and (max-width:768px){.homePlans__plansItemEmpty p{font-size:16px;line-height:20px}}.homePlans__plansItemEmpty .button{color:var(--color-white);width:-moz-fit-content;width:fit-content}.homePlans__mobileButton{display:none}.homePlans__mobileButton .button{color:var(--color-white);width:100vw;text-align:center}@media screen and (max-width:768px){.homePlans__mobileButton{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;margin:calc(var(--grid-gutter) * -2) 0 calc(var(--grid-gutter) * 2)}}.homePlans .irs--square .irs-handle{border:3px solid var(--color-primary);transform:rotate(45deg);cursor:pointer;background:var(--color-primary)}.homePlans .irs--square .irs-bar{background-color:var(--color-primary)}.homePlans #noResults{display:none;text-align:center;margin:20px 0}.homePlans .swiper-button-next,.homePlans .swiper-button-prev{display:none}.homePlans .swiper-pagination{bottom:0!important;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}@media screen and (max-width:768px){.homePlans .swiper-pagination{display:none}}.homePlans .swiper-pagination .swiper-pagination-bullet{padding:7px;border-radius:0;background:var(--color-gray)}@media screen and (max-width:768px){.homePlans .swiper-pagination .swiper-pagination-bullet{padding:5px}}.homePlans .swiper-pagination .swiper-pagination-bullet-active{background:var(--color-primary)!important;padding:9px}@media screen and (max-width:768px){.homePlans .swiper-pagination .swiper-pagination-bullet-active{padding:7px}}.homePlans .swiper-button-disabled{opacity:.2}.home-purchase{background:var(--bg-second);padding:calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 0) 0;overflow:hidden}@media screen and (max-width:768px){.home-purchase{padding:calc(var(--grid-gutter) * 2) 0 0 calc(var(--grid-gutter) * 2)}}.home-purchase__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);position:relative;padding:0 70px}@media (min-width:768px) and (max-width:1024px){.home-purchase__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.home-purchase__inner{padding:0 calc(var(--grid-gutter) * 2);padding:0;padding-bottom:calc(var(--grid-gutter) * 0)}}.home-purchase__bg{position:absolute;top:0;right:40px;height:100%;z-index:1}@media screen and (max-width:768px){.home-purchase__bg{top:unset;right:0;bottom:0;height:auto}}.home-purchase__bg img{height:100%}@media screen and (max-width:768px){.home-purchase__button{display:none}}.home-purchase__button .button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 1);background:transparent}.home-purchase__button .button svg{fill:var(--color-primary);min-width:25px}.home-purchase__button .button:hover svg{fill:var(--color-white)}.home-purchase__title{margin-bottom:calc(var(--grid-gutter) * 2);color:var(--color-black);font-family:Grtsk Medium Giga,Arial;margin-top:calc(var(--grid-gutter) * 4);font-size:36px;line-height:44px}@media (min-width:768px) and (max-width:1024px){.home-purchase__title{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.home-purchase__title{font-size:22px;line-height:28px;margin-top:calc(var(--grid-gutter) * 0);margin-bottom:calc(var(--grid-gutter) * 0)}}.home-purchase__header{display:-ms-flexbox;display:flex;position:relative;z-index:5}@media screen and (max-width:768px){.home-purchase__header{margin-bottom:3rem}}.home-purchase__header p{margin-top:calc(var(--grid-gutter) * 2);width:70%;font-size:18px;line-height:28px;font-family:Suisse Int,Arial,serif}@media (min-width:768px) and (max-width:1024px){.home-purchase__header p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.home-purchase__header p{font-size:14px;line-height:16px;width:100%}}.home-purchase__description{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 2);padding-bottom:calc(var(--grid-gutter) * 6);position:relative;z-index:5}@media screen and (max-width:768px){.home-purchase__description{padding-bottom:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 0);-ms-flex-direction:column;flex-direction:column}}.home-purchase__description:last-child p{width:90%}@media screen and (max-width:768px){.home-purchase__description:last-child p{width:90%}}.home-purchase__desc-title{margin-top:calc(var(--grid-gutter) * 2);font-family:Grtsk Medium Giga,Arial;color:var(--color-primary);font-size:36px;line-height:44px}@media (min-width:768px) and (max-width:1024px){.home-purchase__desc-title{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.home-purchase__desc-title{font-size:22px;line-height:28px;margin-top:calc(var(--grid-gutter) * 0)}}.home-purchase__desc-numbers{-ms-flex:0.45;flex:0.45;display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 6);font-weight:500;position:relative;z-index:2}@media screen and (max-width:768px){.home-purchase__desc-numbers{gap:calc(var(--grid-gutter) * 2);-ms-flex-direction:column;flex-direction:column}}.home-purchase__desc-numbers h2{font-size:44px;line-height:52px;font-family:Grtsk Medium Giga,Arial;color:var(--color-primary)}@media (min-width:768px) and (max-width:1024px){.home-purchase__desc-numbers h2{font-size:36px;line-height:42px}}@media screen and (max-width:768px){.home-purchase__desc-numbers h2{font-size:26px;line-height:32px}}.home-purchase__desc-numbers p{margin-top:calc(var(--grid-gutter) * 1);font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.home-purchase__desc-numbers p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.home-purchase__desc-numbers p{font-size:14px;line-height:16px}}.home-purchase__desc-numbers-item{-ms-flex:0.2;flex:0.2}.home-purchase__desc-numbers-item:first-child{-ms-flex:0.1;flex:0.1}.home-purchase__desc-numbers-item:last-child{-ms-flex:0.5;flex:0.5}.homeTeams{background:var(--color-black);padding:calc(var(--grid-gutter) * 6) calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 8);color:var(--color-white);position:relative}@media screen and (max-width:768px){.homeTeams{padding:calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 0)}}.homeTeams__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 70px}@media (min-width:768px) and (max-width:1024px){.homeTeams__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.homeTeams__inner{padding:0 calc(var(--grid-gutter) * 2)}}.homeTeams__header{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;color:var(--color-white);margin-bottom:calc(var(--grid-gutter) * 6);position:relative}@media (min-width:768px) and (max-width:1024px){.homeTeams__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.homeTeams__header{font-size:22px;line-height:28px;margin-bottom:calc(var(--grid-gutter) * 4)}}.homeTeams__items{display:-ms-flexbox;display:flex}.homeTeams__item{margin-right:calc(var(--grid-gutter) * 3)}.homeTeams__item._mr{-ms-flex:0.47;flex:0.47}@media screen and (max-width:900px){.homeTeams__item._mr{-ms-flex:unset;flex:unset;min-width:calc(100vw - 70px)}}.homeTeams__item._rbna{-ms-flex:0.3;flex:0.3}@media screen and (max-width:900px){.homeTeams__item._rbna{-ms-flex:unset;flex:unset;min-width:calc(100vw - 70px)}}.homeTeams__item._above{-ms-flex:0.23;flex:0.23}@media screen and (max-width:900px){.homeTeams__item._above{-ms-flex:unset;flex:unset;min-width:calc(100vw - 70px);margin-right:0}}.homeTeams__itemLabel span{font-size:11px;font-family:Grtsk Medium Giga,Arial;letter-spacing:-4%;display:block;background:#5e5e5d;color:#5e5e5d;position:relative;z-index:2;padding:calc(var(--grid-gutter) * .5) calc(var(--grid-gutter) * 2);width:-moz-fit-content;width:fit-content;text-transform:uppercase;margin-bottom:calc(var(--grid-gutter) * 2)}.homeTeams__itemLabel span,.homeTeams__itemLabel span:before{clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 2rem) 100%,0 100%)}.homeTeams__itemLabel span:before{content:"";inset:1px;position:absolute;z-index:-1;background:var(--color-black)}.homeTeams__itemLogo{margin-bottom:calc(var(--grid-gutter) * 2)}.homeTeams__itemLogo img{max-width:calc(var(--grid-gutter) * 30)}.homeTeams__itemText{margin-top:calc(var(--grid-gutter) * 4);font-size:14px;line-height:18px;line-height:22px;width:85%;opacity:.8}@media screen and (max-width:768px){.homeTeams__itemText{font-size:12px;line-height:16px;width:100%}}.homeTeams__arrow{gap:calc(var(--grid-gutter) * 1);position:absolute;right:calc(var(--grid-gutter) * 1);top:calc(var(--grid-gutter) * -.5);display:none}@media screen and (max-width:768px){.homeTeams__arrow{display:-ms-flexbox;display:flex}}.homeTeams__arrow span{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;cursor:pointer;padding:calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1.2);text-transform:uppercase;font-size:1.4rem;position:relative;z-index:1;color:var(--color-white);transition:all .3s ease}.homeTeams__arrow span,.homeTeams__arrow span:hover{background:var(--color-primary)}.homeTeams__arrow span:hover img{filter:brightness(1);filter:invert(1)}.homeTeams__arrowLeft{clip-path:polygon(15px 0,100% 0,100% 100%,100% 100%,0 100%,0 15px)}.homeTeams__arrowRight{clip-path:polygon(0 0,100% 0,100% 30px,calc(100% - 15px) 100%,0 100%)}.second-page__top{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;color:var(--color-black);max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3);margin-top:calc(var(--grid-gutter) * 5)}@media (min-width:768px) and (max-width:1024px){.second-page__top{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.second-page__top{padding:0 calc(var(--grid-gutter) * 2);margin-top:calc(var(--grid-gutter) * 2)}}.second-page__menu{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 4);cursor:pointer}@media screen and (max-width:768px){.second-page__menu{gap:calc(var(--grid-gutter) * 2)}}.second-page__menu svg:last-child{position:relative;top:2px;left:-4px}.second-page__phone{font-size:18px;line-height:28px;font-family:Grtsk Medium Giga}@media (min-width:768px) and (max-width:1024px){.second-page__phone{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.second-page__phone{font-size:14px;line-height:16px;font-size:10px}}.second-page__logo img{width:180px}@media screen and (max-width:768px){.second-page__logo img{width:120px}}.detailPlan .home-contacts__inner{padding:calc(var(--grid-gutter) * 4)}@media screen and (max-width:768px){.detailPlan .home-contacts__inner{padding:calc(var(--grid-gutter) * 0)}}.detailPlan .home-contacts__copy{padding:0}.detailPlan__plans .homePlans__plansItem{margin-bottom:calc(var(--grid-gutter) * 3)}.detailPlan__plans .homePlans__plansItems{margin-top:calc(var(--grid-gutter) * 4);display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;position:relative}@media screen and (max-width:768px){.detailPlan__plans .homePlans__plansItems{margin-top:calc(var(--grid-gutter) * 3);display:block}}.detailPlan__plans .homePlans__plans{--columns:3!important}@media screen and (max-width:900px){.detailPlan__plans .homePlans__plans{--columns:2!important}}@media screen and (max-width:768px){.detailPlan__plans .homePlans__plans{--columns:1!important}}.plansPage{margin-top:calc(var(--grid-gutter) * 0);background:var(--bg-second);padding:0}.plansPage .homePlans__plansItem{margin-bottom:calc(var(--grid-gutter) * 3)}.plansPage .homePlans{padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 0)}.plansPage .homePlans .homePlans__title span{position:relative;left:-5px}.plansPage .homePlans .homePlans__header{margin-bottom:calc(var(--grid-gutter) * 1)}.plansPage .homePlans__inner{padding:0 30px}@media screen and (max-width:768px){.plansPage .homePlans__inner{padding:0 20px}}.plansPage .homePlans__plans{--columns:3}@media screen and (max-width:768px){.plansPage .homePlans__plans{--columns:1}}.plansPage .homePlans__plans h3{font-family:Grtsk Medium Giga;margin-top:calc(var(--grid-gutter) * 6)}.plansPage .homePlans__plansItems{margin-top:calc(var(--grid-gutter) * 4);display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;position:relative}@media screen and (max-width:768px){.plansPage .homePlans__plansItems{display:block}}@media screen and (max-width:768px){.plansPage{padding:calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 0)}}.plansPage__select{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2);margin-top:calc(var(--grid-gutter) * 2)}@media screen and (max-width:768px){.plansPage__select{margin-top:calc(var(--grid-gutter) * 1);gap:0}}.plansPage__selectSortMenu{-ms-flex-direction:column;flex-direction:column;display:none;font-size:14px;line-height:18px;margin-top:calc(var(--grid-gutter) * 2);text-transform:unset;font-family:Suisse Int,Arial,serif;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (max-width:768px){.plansPage__selectSortMenu{font-size:12px;line-height:16px}}.plansPage__selectSortMenu a{display:block;margin-bottom:calc(var(--grid-gutter) * 1);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.plansPage__selectSortMenu._show,.plansPage__selectSortText{display:-ms-flexbox;display:flex}.plansPage__selectSortText{gap:calc(var(--grid-gutter) * 2);cursor:pointer;text-transform:uppercase}.plansPage__selectSortText svg{width:10px}.plansPage__selectSortDropDown{display:block;background:var(--color-primary);padding:calc(var(--grid-gutter) * 1.2) calc(var(--grid-gutter) * 2);font-family:Grtsk Medium Giga,Arial;color:var(--color-white);font-size:16px;line-height:20px;font-weight:500;position:relative;z-index:1;clip-path:polygon(0 0,100% 0,100% 70%,calc(100% - 15px) 100%,0 100%);transition:all .3s ease;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media (min-width:768px) and (max-width:1024px){.plansPage__selectSortDropDown{font-size:12px;line-height:16px}}@media screen and (max-width:768px){.plansPage__selectSortDropDown{font-size:12px;line-height:14px;display:none}}@media screen and (max-width:768px){.construction-page{padding:calc(var(--grid-gutter) * 2) 0}}.construction-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.construction-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.construction-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.construction-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.construction-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.construction-page__header{font-size:22px;line-height:28px}}.construction-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.construction-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.construction-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.construction-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.construction-page__text-content{font-size:14px;line-height:16px}}.construction-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.construction-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.construction-page__text-content h1{font-size:22px;line-height:28px}}.construction-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.construction-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.construction-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.construction-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.construction-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}.construction-grid{display:-ms-flexbox;display:flex;--columns:3;row-gap:calc(var(--grid-gutter) * 4);margin-top:calc(var(--grid-gutter) * 3);-ms-flex-flow:row wrap;flex-flow:row wrap;margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.construction-grid{--columns:1;row-gap:calc(var(--grid-gutter) * 2);margin-bottom:calc(var(--grid-gutter) * 4)}}.construction-grid__item{clip-path:polygon(0 0,92.9% 0,92.9% 32.97%,96.2% 35.43%,96.2% 100%,99.9% 100%,99.9% 100%,3% 100%,3.78% 35.2%,0 38.3%);position:relative;margin-right:calc(var(--grid-gutter) * 1.5);-ms-flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));max-width:calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));color:var(--color-white);cursor:pointer}@media screen and (max-width:768px){.construction-grid__item{aspect-ratio:1;-ms-flex:unset;flex:unset;max-width:100%;margin-right:0}}.construction-grid__link{display:block;width:100%;height:100%}.construction-grid__img{width:100%;height:400px;position:relative}@media screen and (max-width:768px){.construction-grid__img{height:100%}}.construction-grid__img img{width:100%;height:100%;object-fit:cover;object-position:center}.construction-grid__img:after{position:absolute;left:0;width:100%;bottom:0;height:450px;background:linear-gradient(0deg,#000,transparent);content:"";z-index:1}.construction-grid__text{position:absolute;z-index:5;bottom:calc(var(--grid-gutter) * 2);padding:0 calc(var(--grid-gutter) * 4)}.construction-grid__text h3{font-family:Grtsk Medium Giga,Arial;font-size:16px;line-height:24px;text-transform:uppercase;font-weight:400;margin-bottom:1rem}@media (min-width:768px) and (max-width:1024px){.construction-grid__text h3{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.construction-grid__text h3{font-size:12px;line-height:16px}}.construction-grid__text p{font-size:16px;line-height:24px}@media (min-width:768px) and (max-width:1024px){.construction-grid__text p{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.construction-grid__text p{font-size:12px;line-height:16px}}@media screen and (max-width:768px){.documents-page{padding:calc(var(--grid-gutter) * 2) 0}}.documents-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.documents-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.documents-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.documents-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.documents-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.documents-page__header{font-size:22px;line-height:28px}}.documents-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.documents-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.documents-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.documents-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.documents-page__text-content{font-size:14px;line-height:16px}}.documents-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.documents-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.documents-page__text-content h1{font-size:22px;line-height:28px}}.documents-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.documents-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.documents-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.documents-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.documents-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}@media screen and (max-width:768px){.partners-page{padding:calc(var(--grid-gutter) * 2) 0}}.partners-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.partners-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.partners-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.partners-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.partners-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.partners-page__header{font-size:22px;line-height:28px}}.partners-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.partners-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.partners-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.partners-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.partners-page__text-content{font-size:14px;line-height:16px}}.partners-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.partners-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.partners-page__text-content h1{font-size:22px;line-height:28px}}.partners-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.partners-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.partners-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.partners-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.partners-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}@media screen and (max-width:768px){.personal-page{padding:calc(var(--grid-gutter) * 2) 0}}.personal-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.personal-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.personal-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.personal-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.personal-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.personal-page__header{font-size:22px;line-height:28px}}.personal-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.personal-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.personal-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.personal-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.personal-page__text-content{font-size:14px;line-height:16px}}.personal-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.personal-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.personal-page__text-content h1{font-size:22px;line-height:28px}}.personal-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.personal-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.personal-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.personal-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.personal-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}@media screen and (max-width:768px){.politika-page{padding:calc(var(--grid-gutter) * 2) 0}}.politika-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.politika-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.politika-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.politika-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.politika-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.politika-page__header{font-size:22px;line-height:28px}}.politika-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.politika-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.politika-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.politika-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.politika-page__text-content{font-size:14px;line-height:16px}}.politika-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.politika-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.politika-page__text-content h1{font-size:22px;line-height:28px}}.politika-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.politika-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.politika-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.politika-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.politika-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}@media screen and (max-width:768px){.marketing-page{padding:calc(var(--grid-gutter) * 2) 0}}.marketing-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.marketing-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.marketing-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.marketing-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.marketing-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.marketing-page__header{font-size:22px;line-height:28px}}.marketing-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.marketing-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.marketing-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.marketing-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.marketing-page__text-content{font-size:14px;line-height:16px}}.marketing-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.marketing-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.marketing-page__text-content h1{font-size:22px;line-height:28px}}.marketing-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.marketing-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.marketing-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.marketing-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.marketing-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}.error-page{min-height:60vh;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}@media screen and (max-width:768px){.error-page{padding:calc(var(--grid-gutter) * 2) 0}}.error-page__inner{padding:0 calc(var(--grid-gutter) * 3)}.error-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.error-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.error-page__header{font-size:22px;line-height:28px}}.error-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.error-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.error-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.error-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.error-page__text-content{font-size:14px;line-height:16px}}.error-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.error-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.error-page__text-content h1{font-size:22px;line-height:28px}}.error-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.error-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.error-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.error-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.error-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}.error-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:calc(var(--grid-gutter) * 8) calc(var(--grid-gutter) * 3);text-align:center}@media (min-width:768px) and (max-width:1024px){.error-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.error-page__inner{padding:0 calc(var(--grid-gutter) * 2);padding:calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 2)}}.error-page__code{font-family:Grtsk Medium Giga,Arial;font-size:160px;line-height:1;color:var(--color-primary)}@media screen and (max-width:768px){.error-page__code{font-size:100px}}.error-page__text{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;margin-top:calc(var(--grid-gutter) * 2);margin-bottom:calc(var(--grid-gutter) * 4);text-align:center;display:block}@media (min-width:768px) and (max-width:1024px){.error-page__text{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.error-page__text{font-size:22px;line-height:28px}}.error-page .button{margin:0 auto;color:var(--color-white)}.error-page__sitemap{margin-top:calc(var(--grid-gutter) * 8);text-align:left}@media screen and (max-width:768px){.error-page__sitemap{margin-top:calc(var(--grid-gutter) * 4)}}.error-page__sitemap-header{font-size:30px;line-height:38px;font-weight:500;font-family:Grtsk Medium Giga,Arial;margin-bottom:calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.error-page__sitemap-header{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.error-page__sitemap-header{font-size:18px;line-height:24px}}.error-page__sitemap-list{list-style:none;padding:0;margin:0;display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2)}@media screen and (max-width:768px){.error-page__sitemap-list{-ms-grid-columns:1fr;grid-template-columns:1fr}}.error-page__sitemap-list li{border-bottom:1px solid var(--bg-second);padding-bottom:calc(var(--grid-gutter) * 1.5)}.error-page__sitemap-list a{font-size:18px;line-height:28px;color:var(--color-black);transition:color .3s ease}@media (min-width:768px) and (max-width:1024px){.error-page__sitemap-list a{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.error-page__sitemap-list a{font-size:14px;line-height:16px}}.error-page__sitemap-list a:hover{color:var(--color-primary)}@media screen and (max-width:768px){.news-page{padding:calc(var(--grid-gutter) * 2) 0}}.news-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.news-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.news-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.news-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.news-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.news-page__header{font-size:22px;line-height:28px}}.news-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.news-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.news-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.news-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.news-page__text-content{font-size:14px;line-height:16px}}.news-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.news-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.news-page__text-content h1{font-size:22px;line-height:28px}}.news-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.news-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.news-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.news-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.news-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}.news-page .home-contacts__inner{padding-left:30px;padding-right:30px}@media screen and (max-width:768px){.news-page .home-contacts__inner{padding:0}}.news-page__items{display:-ms-flexbox;display:flex;--columns:3;row-gap:calc(var(--grid-gutter) * 4);margin-top:calc(var(--grid-gutter) * 3);-ms-flex-flow:row wrap;flex-flow:row wrap;position:relative;margin-bottom:calc(var(--grid-gutter) * 20)}@media screen and (max-width:768px){.news-page__items{--columns:1;row-gap:calc(var(--grid-gutter) * 2)}}.news-page__header--details{display:none}@media screen and (max-width:768px){.news-page__header--details{display:block;padding-top:0}}.news-page__item{clip-path:polygon(0 0,92.9% 0,92.9% 32.97%,96.2% 35.43%,96.2% 100%,99.9% 100%,99.9% 100%,3% 100%,3.78% 35.2%,0 38.3%);position:relative;margin-bottom:0;margin-right:calc(var(--grid-gutter) * 1.5);-ms-flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));max-width:calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));color:var(--color-white)}@media screen and (max-width:768px){.news-page__item{aspect-ratio:1;-ms-flex:unset;flex:unset;max-width:100%;margin-right:0}}.news-page__item-img{width:100%;height:400px;position:relative}@media screen and (max-width:768px){.news-page__item-img{height:100%}}.news-page__item-img img{width:100%;height:100%;object-fit:cover;object-position:bottom}.news-page__item-img:after{position:absolute;left:0;width:100%;bottom:0;height:450px;background:linear-gradient(0deg,#000,transparent);content:"";z-index:1}.news-page__item-text{position:absolute;z-index:5;bottom:calc(var(--grid-gutter) * 2);padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 4)}.news-page__item-text h3{font-family:Grtsk Medium Giga,Arial;font-size:16px;line-height:24px;text-transform:uppercase;font-weight:400;margin-bottom:1rem}.news-page__item-text p{font-size:16px;line-height:24px;margin-bottom:calc(var(--grid-gutter) * 2)}.news-page__text-date{opacity:.5;font-size:14px;line-height:18px;margin:calc(var(--grid-gutter) * 2) 0}@media screen and (max-width:768px){.news-page__text-date{font-size:12px;line-height:16px}}.news-page__text-img{-ms-flex:1;flex:1}.news-page__text-img-item{width:100%;height:400px;overflow:hidden;clip-path:polygon(0 0,98% 0,98% 50%,100% 53%,100% 100%,100% 100%,99.9% 100%,1% 100%,2% 50%,0 52%)}@media screen and (max-width:768px){.news-page__text-img-item{height:300px}}.news-page__text-img-item img{object-fit:cover;height:100%;width:100%}@media screen and (max-width:768px){.promo-page{padding:calc(var(--grid-gutter) * 2) 0}}.promo-page__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 calc(var(--grid-gutter) * 3)}@media (min-width:768px) and (max-width:1024px){.promo-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.promo-page__inner{padding:0 calc(var(--grid-gutter) * 2)}}.promo-page__header{padding:calc(var(--grid-gutter) * 2) 0 0;font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.promo-page__header{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.promo-page__header{font-size:22px;line-height:28px}}.promo-page__text{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 16);margin-top:calc(var(--grid-gutter) * 3);margin-bottom:calc(var(--grid-gutter) * 10)}@media screen and (max-width:768px){.promo-page__text{-ms-flex-direction:column-reverse;flex-direction:column-reverse;margin-bottom:calc(var(--grid-gutter) * 4);gap:calc(var(--grid-gutter) * 4)}}.promo-page__text-content{font-size:18px;line-height:28px;-ms-flex:1;flex:1}@media (min-width:768px) and (max-width:1024px){.promo-page__text-content{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.promo-page__text-content{font-size:14px;line-height:16px}}.promo-page__text-content h1{font-size:36px;line-height:44px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.promo-page__text-content h1{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.promo-page__text-content h1{font-size:22px;line-height:28px}}.promo-page__text-content p{margin-bottom:calc(var(--grid-gutter) * 2)}.promo-page__text-content ul{list-style-type:disc;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.promo-page__text-content ul li{margin-bottom:calc(var(--grid-gutter) * .5)}.promo-page__text-content ol{list-style-type:decimal;padding-left:1.5em;margin:calc(var(--grid-gutter) * 1.5) 0}.promo-page__text-content ol li{margin-bottom:calc(var(--grid-gutter) * .5)}.promo-page .home-contacts__inner{padding-left:30px;padding-right:30px}@media screen and (max-width:768px){.promo-page .home-contacts__inner{padding:0}}.promo-page__items{display:-ms-flexbox;display:flex;--columns:3;row-gap:calc(var(--grid-gutter) * 4);margin-top:calc(var(--grid-gutter) * 3);-ms-flex-flow:row wrap;flex-flow:row wrap;position:relative;margin-bottom:calc(var(--grid-gutter) * 20)}@media screen and (max-width:768px){.promo-page__items{--columns:1;row-gap:calc(var(--grid-gutter) * 2)}}.promo-page__header--details{display:none}@media screen and (max-width:768px){.promo-page__header--details{display:block;padding-top:0}}.promo-page__item{clip-path:polygon(0 0,92.9% 0,92.9% 32.97%,96.2% 35.43%,96.2% 100%,99.9% 100%,99.9% 100%,3% 100%,3.78% 35.2%,0 38.3%);position:relative;margin-bottom:0;margin-right:calc(var(--grid-gutter) * 1.5);-ms-flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));flex:0 0 calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));max-width:calc((100% / var(--columns)) - (var(--grid-gutter) * 1.5));color:var(--color-white)}@media screen and (max-width:768px){.promo-page__item{aspect-ratio:1;-ms-flex:unset;flex:unset;max-width:100%;margin-right:0}}.promo-page__item-img{width:100%;height:400px;position:relative}@media screen and (max-width:768px){.promo-page__item-img{height:100%}}.promo-page__item-img img{width:100%;height:100%;object-fit:cover;object-position:bottom}.promo-page__item-img:after{position:absolute;left:0;width:100%;bottom:0;height:450px;background:linear-gradient(0deg,#000,transparent);content:"";z-index:1}.promo-page__item-text{position:absolute;z-index:5;bottom:calc(var(--grid-gutter) * 2);padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * 4)}.promo-page__item-text h3{font-family:Grtsk Medium Giga,Arial;font-size:16px;line-height:24px;text-transform:uppercase;font-weight:400;margin-bottom:1rem}.promo-page__item-text small{display:block;opacity:.7;margin-bottom:.5rem}.promo-page__item-text p{font-size:16px;line-height:24px;margin-bottom:calc(var(--grid-gutter) * 2)}.promo-page__text-date{opacity:.5;font-size:14px;line-height:18px;margin:calc(var(--grid-gutter) * 2) 0}@media screen and (max-width:768px){.promo-page__text-date{font-size:12px;line-height:16px}}.promo-page__text-img{-ms-flex:1;flex:1}.promo-page__text-img-item{width:100%;height:400px;overflow:hidden;clip-path:polygon(0 0,98% 0,98% 50%,100% 53%,100% 100%,100% 100%,99.9% 100%,1% 100%,2% 50%,0 52%)}@media screen and (max-width:768px){.promo-page__text-img-item{height:300px}}.promo-page__text-img-item img{object-fit:cover;height:100%;width:100%}.promo-page__empty{padding:40px 0;font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.promo-page__empty{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.promo-page__empty{font-size:14px;line-height:16px}}.promo-page__legal{margin-top:calc(var(--grid-gutter) * 3);font-weight:400}.promo-page__legal summary{cursor:pointer;font-weight:700;font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.promo-page__legal summary{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.promo-page__legal summary{font-size:14px;line-height:16px}}.promo-page__legal div{margin-top:calc(var(--grid-gutter) * 2);font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.promo-page__legal div{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.promo-page__legal div{font-size:14px;line-height:16px}}.promo-page__actions{margin-top:calc(var(--grid-gutter) * 3)}.promo-page__actions a{color:var(--color-white)}.promoPopup{position:fixed;z-index:10000;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.promoPopup,.promoPopup__overlay{top:0;left:0;width:100%;height:100%}.promoPopup__overlay{position:absolute;background:rgba(0,0,0,.6)}.promoPopup__modal{position:relative;background:var(--color-white);max-width:800px;width:90%;border-radius:8px;overflow:hidden;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}@media screen and (max-width:768px){.promoPopup__modal{-ms-flex-direction:column;flex-direction:column;max-height:90vh;overflow-y:auto;max-width:400px}}.promoPopup__close{position:absolute;top:10px;right:15px;background:none;border:none;font-size:28px;cursor:pointer;color:var(--color-black);z-index:2}.promoPopup__img{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}@media screen and (max-width:768px){.promoPopup__img{-ms-flex:none;flex:none;max-width:100%}}.promoPopup__img img{width:100%;height:100%;object-fit:cover;display:block}.promoPopup__content{-ms-flex:1;flex:1;padding:calc(var(--grid-gutter) * 3);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center}.promoPopup__content h3{font-family:Grtsk Medium Giga,Arial;font-size:20px;line-height:26px;margin-bottom:calc(var(--grid-gutter) * 1.5)}@media (min-width:768px) and (max-width:1024px){.promoPopup__content h3{font-size:18px;line-height:22px}}@media screen and (max-width:768px){.promoPopup__content h3{font-size:16px;line-height:20px}}.promoPopup__content p{font-size:18px;line-height:28px;margin-bottom:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.promoPopup__content p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.promoPopup__content p{font-size:14px;line-height:16px}}.promoPopup__content a{color:var(--color-white)}.detailPlan{margin-top:calc(var(--grid-gutter) * 4)}.detailPlan__inner{max-width:var(--max-width);margin:0 auto;width:100%;padding:0 calc(var(--grid-gutter) * 4);padding:0 30px;-ms-flex-direction:column;flex-direction:column;margin-top:calc(var(--grid-gutter) * 2)}@media (min-width:768px) and (max-width:1024px){.detailPlan__inner{padding:0 calc(var(--grid-gutter) * 2)}}@media screen and (max-width:768px){.detailPlan__inner{padding:0 calc(var(--grid-gutter) * 2)}}.detailPlan__item{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2);position:relative}@media screen and (max-width:768px){.detailPlan__item{-ms-flex-direction:column;flex-direction:column;padding:0}}.detailPlan__itemSwitch{position:absolute;z-index:10;left:calc(var(--grid-gutter) * 2);top:calc(var(--grid-gutter) * 2);display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 1)}.detailPlan__itemSwitch .button{font-size:14px;line-height:18px;font-size:10px!important;padding:5px 10px;color:var(--color-white)}@media screen and (max-width:768px){.detailPlan__itemSwitch .button{font-size:12px;line-height:16px}}.detailPlan__itemSwitch .button:hover{background:var(--bg-second);color:var(--color-black)}.detailPlan__itemSwitch .button._stroke{background:var(--color-black)!important;color:var(--color-black)!important}.detailPlan__itemSwitch .button._stroke:before{background:var(--color-white)!important}.detailPlan__plans{--columns:3;margin-top:calc(var(--grid-gutter) * 5)}@media screen and (max-width:768px){.detailPlan__plans{--columns:1}}.detailPlan__plans h3{font-size:36px;line-height:44px;font-weight:400;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.detailPlan__plans h3{font-size:22px;line-height:36px}}@media screen and (max-width:768px){.detailPlan__plans h3{font-size:22px;line-height:28px}}.detailPlan ._back{width:-moz-fit-content;width:fit-content;margin-bottom:calc(var(--grid-gutter) * 4);background:var(--color-white)}.detailPlan__image{background:var(--color-white);-ms-flex:0.5;flex:0.5;clip-path:polygon(0 0,92.9% 0,92.9% 32.97%,96.2% 35.43%,96.2% 100%,99.9% 100%,99.9% 100%,3% 100%,3.78% 35.2%,0 38.3%);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-top:calc(var(--grid-gutter) * 2);padding-bottom:calc(var(--grid-gutter) * 2);min-width:350px;-ms-flex-direction:column;flex-direction:column}@media screen and (max-width:768px){.detailPlan__image._preview a.image{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;height:300px}}.detailPlan__image._preview a.image img{max-height:450px;margin:0 auto}@media screen and (max-width:768px){.detailPlan__image._preview a.image img{max-height:250px}}@media screen and (max-width:768px){.detailPlan__image._preview .button{height:auto!important}}.detailPlan__infoMobile{font-size:18px;line-height:28px;display:none}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobile{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoMobile{font-size:14px;line-height:16px;display:block}}.detailPlan__infoMobileTitle{margin-bottom:calc(var(--grid-gutter) * 2);display:none}@media screen and (max-width:768px){.detailPlan__infoMobileTitle{display:block}}.detailPlan__infoMobileTitle h3{font-size:44px;line-height:52px;font-family:Grtsk Medium Giga,Arial;font-weight:400}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobileTitle h3{font-size:36px;line-height:42px}}@media screen and (max-width:768px){.detailPlan__infoMobileTitle h3{font-size:26px;line-height:32px}}.detailPlan__infoMobileTitle small{font-size:18px;line-height:28px;text-transform:uppercase;font-family:Grtsk Medium Giga,Arial;margin:calc(var(--grid-gutter) * 1) 0 calc(var(--grid-gutter) * 2);display:block}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobileTitle small{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoMobileTitle small{font-size:14px;line-height:16px}}.detailPlan__infoMobileTitle p{font-size:18px;line-height:28px;opacity:.5}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobileTitle p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoMobileTitle p{font-size:14px;line-height:16px}}.detailPlan__infoMobilePrice{display:none;gap:calc(var(--grid-gutter) * 2);width:100%;padding:0 30px;margin-top:calc(var(--grid-gutter) * 4)}@media screen and (max-width:768px){.detailPlan__infoMobilePrice{display:-ms-flexbox;display:flex}}.detailPlan__infoMobilePriceItems h4{-ms-flex:1;flex:1;font-size:30px;line-height:38px;font-weight:500;font-family:Grtsk Medium Giga,Arial;white-space:nowrap}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobilePriceItems h4{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.detailPlan__infoMobilePriceItems h4{font-size:18px;line-height:24px}}.detailPlan__infoMobilePriceItems small{font-size:18px;line-height:28px;opacity:.5}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobilePriceItems small{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoMobilePriceItems small{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.detailPlan__infoMobilePrice{-ms-flex-direction:column;flex-direction:column}}.detailPlan__infoMobileButton{-ms-flex:1;flex:1;-ms-flex-pack:end;justify-content:end}.detailPlan__infoMobileButton,.detailPlan__infoMobileButton .button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.detailPlan__infoMobileButton .button{gap:calc(var(--grid-gutter) * 1);color:var(--color-white)}@media screen and (max-width:768px){.detailPlan__infoMobileButton .button{width:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}}.detailPlan__infoMobileButton .button:hover{background:var(--bg-second)}.detailPlan__infoMobileButton .button:hover svg{fill:var(--color-black)}.detailPlan__infoMobileButton svg{min-width:25px;min-height:25px;fill:#fff}.detailPlan__infoMobileButton a{height:unset}.detailPlan__infoMobileDetails{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 2)}.detailPlan__infoMobileDetailsText{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr);grid-column-gap:calc(var(--grid-gutter) * 2);gap:calc(var(--grid-gutter) * 2);row-gap:calc(var(--grid-gutter) * 2);font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobileDetailsText{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoMobileDetailsText{font-size:14px;line-height:16px;display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr);gap:calc(var(--grid-gutter) * 1);grid-column-gap:calc(var(--grid-gutter) * 2)}}.detailPlan__infoMobileDetailsText b{font-weight:400;opacity:.5;font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoMobileDetailsText b{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoMobileDetailsText b{font-size:14px;line-height:16px}}.detailPlan__infoMobileDetailsText p{font-family:Grtsk Medium Giga,Arial}.detailPlan__infoMobileDetailsImage{width:50px}.detailPlan__infoMobileDetailsImage img{width:100%}@media screen and (max-width:768px){.detailPlan__infoMobileDetailsImage img{width:50px}}.detailPlan__info{-ms-flex:0.6;flex:0.6;clip-path:polygon(0 0,95% 0,95% 45%,97% 48%,97% 85%,100% 89%,100% 100%,0 100%,1.5% 50%,0 51%);background:var(--color-white);padding:calc(var(--grid-gutter) * 3) calc(var(--grid-gutter) * 5) calc(var(--grid-gutter) * 2);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;gap:calc(var(--grid-gutter) * 4)}@media screen and (max-width:768px){.detailPlan__info{display:none}}.detailPlan__infoOtdelka{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) / 2);margin-top:calc(var(--grid-gutter) * 1)}.detailPlan__infoOtdelka span{padding:calc(var(--grid-gutter) * 0) calc(var(--grid-gutter) * .5);font-size:14px;position:relative;background:var(--color-black);color:var(--color-black);border:1px solid var(--color-black);display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;line-height:2}.detailPlan__infoOtdelka span img{max-height:14px}.detailPlan__infoOtdelka span:first-child{content:"";background:var(--color-black);color:var(--color-black)!important;padding:calc(var(--grid-gutter) * .4) calc(var(--grid-gutter) * 1);clip-path:polygon(0 0,100% 0,100% 100%,30% 100%,0 80%);position:relative}.detailPlan__infoOtdelka span:first-child:before{content:"";inset:0;position:absolute;z-index:-1;clip-path:polygon(0 0,100% 0,100% 100%,30% 100%,0 80%);background:var(--color-white)}.detailPlan__infoOtdelka span:last-child{background:var(--color-white)}.detailPlan__infoTitle h1{font-size:30px;line-height:38px;font-weight:500;font-family:Grtsk Medium Giga,Arial}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoTitle h1{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.detailPlan__infoTitle h1{font-size:18px;line-height:24px}}.detailPlan__infoTitle small{font-size:18px;line-height:28px;text-transform:uppercase;font-family:Grtsk Medium Giga,Arial;margin:calc(var(--grid-gutter) * 1) 0 calc(var(--grid-gutter) * 2);display:block}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoTitle small{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoTitle small{font-size:14px;line-height:16px}}.detailPlan__infoTitle p{font-size:18px;line-height:28px;opacity:.5}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoTitle p{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoTitle p{font-size:14px;line-height:16px}}.detailPlan__infoDetails{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 4)}.detailPlan__infoDetailsText{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr);grid-column-gap:calc(var(--grid-gutter) * 2);gap:calc(var(--grid-gutter) * 4);row-gap:calc(var(--grid-gutter) * 2);font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoDetailsText{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoDetailsText{font-size:14px;line-height:16px;display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr);gap:calc(var(--grid-gutter) * 1);grid-column-gap:calc(var(--grid-gutter) * 2)}}.detailPlan__infoDetailsText b{font-weight:400;opacity:.5;font-size:18px;line-height:28px}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoDetailsText b{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoDetailsText b{font-size:14px;line-height:16px}}.detailPlan__infoDetailsText p{font-family:Grtsk Medium Giga,Arial}.detailPlan__infoDetailsImage{width:120px}.detailPlan__infoDetailsImage img{width:100%}@media screen and (max-width:768px){.detailPlan__infoDetailsImage img{width:50px}}.detailPlan__infoPrice{display:-ms-flexbox;display:flex;gap:calc(var(--grid-gutter) * 2)}.detailPlan__infoPriceItems h4{-ms-flex:1;flex:1;font-size:30px;line-height:38px;font-weight:500;font-family:Grtsk Medium Giga,Arial;white-space:nowrap}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoPriceItems h4{font-size:24px;line-height:30px}}@media screen and (max-width:768px){.detailPlan__infoPriceItems h4{font-size:18px;line-height:24px}}.detailPlan__infoPriceItems small{font-size:18px;line-height:28px;opacity:.5}@media (min-width:768px) and (max-width:1024px){.detailPlan__infoPriceItems small{font-size:14px;line-height:26px}}@media screen and (max-width:768px){.detailPlan__infoPriceItems small{font-size:14px;line-height:16px}}@media screen and (max-width:768px){.detailPlan__infoPrice{-ms-flex-direction:column;flex-direction:column}}.detailPlan__infoButton{-ms-flex:1;flex:1;-ms-flex-pack:end;justify-content:end}.detailPlan__infoButton,.detailPlan__infoButton .button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.detailPlan__infoButton .button{gap:calc(var(--grid-gutter) * 1);color:var(--color-white)}@media screen and (max-width:768px){.detailPlan__infoButton .button{width:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}}.detailPlan__infoButton .button:hover{background:var(--bg-second)}.detailPlan__infoButton .button:hover svg{fill:var(--color-black)}.detailPlan__infoButton svg{min-width:25px;min-height:25px;fill:#fff}.documentsTabs{display:-ms-flexbox;display:flex;gap:10px;margin:30px 0;-ms-flex-wrap:wrap;flex-wrap:wrap}.documentsTabs__item{display:inline-block;padding:10px 20px;font-size:14px;text-transform:uppercase;letter-spacing:.5px;border:1px solid #e0e0e0;cursor:pointer;transition:all .3s ease;text-decoration:none;color:#333}.documentsTabs__item._active,.documentsTabs__item:hover{background:#000;color:#fff;border-color:#000}.documentsSection{margin-bottom:50px}.documentsSection__title{font-size:20px;font-weight:500;margin-bottom:20px;padding-bottom:10px;border-bottom:2px solid #000}.documentsSection__list{border-top:1px solid #e0e0e0}.documentsSection__item{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:20px;padding:15px 0;border-bottom:1px solid #f0f0f0;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (max-width:768px){.documentsSection__item{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;gap:10px}}.documentsSection__icon{width:32px;height:32px;-ms-flex-negative:0;flex-shrink:0}.documentsSection__icon img{width:100%;height:100%}.documentsSection__info{-ms-flex:1;flex:1;min-width:200px}.documentsSection__name{display:block;font-size:16px;line-height:1.4}.documentsSection__meta{display:-ms-flexbox;display:flex;gap:15px;margin-top:4px}.documentsSection__date,.documentsSection__size{color:#888;font-size:13px}.mobileMenu{position:fixed;z-index:1000;right:0;top:0;left:auto;width:400px;height:100vh;height:100dvh;background:var(--color-black);padding:calc(var(--grid-gutter) * 4);color:var(--color-white);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between;transform:translateX(100%);transition:all .3s ease;overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;-ms-touch-action:pan-y;touch-action:pan-y}@media screen and (max-width:768px){.mobileMenu{width:100%;left:0}}.mobileMenu._show{transform:translateX(0);transition:all .3s ease}.mobileMenu__close{position:fixed;right:calc(var(--grid-gutter) * 0);top:0;cursor:pointer}.mobileMenu__close a{background:var(--color-white);color:var(--color-black)}.mobileMenu__overlay{background:rgba(0,0,0,.6);position:fixed;left:0;top:0;width:100%;height:100%;z-index:999;opacity:0;visibility:hidden}.mobileMenu__overlay._show{opacity:1;visibility:visible}.mobileMenu__phone{margin-top:calc(var(--grid-gutter) * 2)}.mobileMenu__phone .button{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;gap:calc(var(--grid-gutter) * 1)}.mobileMenu__phone .button:hover svg,.mobileMenu__phone .button svg{fill:var(--color-white)}.mobileMenu ul{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;gap:calc(var(--grid-gutter) * 1.5);margin-top:calc(var(--grid-gutter) * 2)}.mobileMenu ul li{border-bottom:1px solid hsla(0,0%,100%,.1);padding-bottom:calc(var(--grid-gutter) * 1.5);position:relative}.mobileMenu ul li:after{content:"";background-image:url(/img/mobile-arrow.svg);background-repeat:no-repeat;background-size:12px;position:absolute;right:0;top:10px;width:12px;height:12px}.mobileMenu ul li a{font-size:16px;line-height:22px;display:block;font-family:Grtsk Medium Giga,Arial;text-transform:uppercase}.mobileMenu ul li a:hover{color:var(--color-primary)}
/* End */
/* /local/templates/link/css/fonts/fonts.css?17719585521362 */
/* /local/templates/link/css/fancybox.css?177195855229141 */
/* /local/templates/link/css/ion.rangeSlider.min.css?177195855211084 */
/* /local/templates/link/css/swiper-bundle.min.css?177195855218452 */
/* /local/templates/link/css/style.css?1771958552144738 */
