

/* Start:/assets/css/main.css?1752589538239650*/
: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-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}
.f-zoomOutDown {
  animation: 0.2s ease-out 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-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}
.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}
@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}
.f-fadeOut {
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}
@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}
.f-fadeSlowOut {
  animation: 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-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}
.f-fadeFastOut {
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}
@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}
.f-crossfadeOut {
  animation: 0.1s linear 0.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: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}
.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}
.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}
.f-slideOut.to-prev {
  animation: 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: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}
.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  animation: 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: 0;
}
.f-button:focus-visible {
  outline: 0;
  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 0.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-next,
.f-carousel__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev {
  position: absolute;
  z-index: 1;
}
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev {
  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-next,
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev {
  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-next svg,
.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg {
  transform: rotate(90deg);
}
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: rgba(24, 24, 27, 0.98);
  --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: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: transparent;
  overflow: visible;
  z-index: 1050;
  outline: 0;
  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 ::after,
.fancybox__container ::before {
  box-sizing: inherit;
}
.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__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;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}
.fancybox__slide.has-html5video,
.fancybox__slide.has-iframe,
.fancybox__slide.has-video {
  overflow: hidden;
}
.fancybox__slide.has-image {
  overflow: hidden;
}
.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}
.fancybox__slide::after,
.fancybox__slide::before {
  content: '';
  flex: 0 0 0;
  margin: auto;
}
.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 [contenteditable],
.fancybox__content [data-selectable] {
  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-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}
.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0);
  will-change: transform, width, height;
}
.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
}
.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-closing .fancybox__caption,
.is-loading .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: 0.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 0.25s ease;
}
.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.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: 0.15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.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: 0;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}
.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__carousel > :not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__slide > :not(.fancybox__content),
.fancybox__container.is-animated[aria-hidden='false'] > :not(.fancybox__backdrop, .fancybox__carousel) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden='false'] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden='true'] .fancybox__carousel > :not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden='true'] .fancybox__slide > :not(.fancybox__content),
.fancybox__container.is-animated[aria-hidden='true'] > :not(.fancybox__backdrop, .fancybox__carousel) {
  animation: 0.15s ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden='true'] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}
.has-html5video .fancybox__content,
.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .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: 100%;
  height: 100%;
}
.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}
.has-html5video .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.has-html5video .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-vimeo .fancybox__content,
.has-youtube .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.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: 20px;
  --f-thumb-clip-width: 46px;
}
.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  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;
}
.f-thumbs__track {
  display: flex;
  will-change: transform;
}
.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);
  min-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(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}
.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color))
    drop-shadow(0 2px 0 var(--f-thumb-outline-color));
}
.is-modern .f-thumbs__slide > * {
  clip-path: var(--clip-path);
}
.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}
.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}
.f-thumbs__slide__button {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: 0;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}
.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}
.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: 0;
}
.f-thumbs__slide__button:focus-visible {
  outline: 0;
  opacity: var(--f-thumb-selected-opacity);
}
.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.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 0.2s ease-out;
  z-index: 10;
}
.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
}
.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  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;
  margin: auto 0;
  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 0.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: 20px;
  --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-hidden {
  max-height: 0 !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: 0.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: 0.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;
}
: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-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}
.f-zoomOutDown {
  animation: 0.2s ease-out 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-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}
.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}
@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}
.f-fadeOut {
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}
@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}
.f-fadeSlowOut {
  animation: 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-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}
.f-fadeFastOut {
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}
@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}
.f-crossfadeOut {
  animation: 0.1s linear 0.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: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}
.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}
.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}
.f-slideOut.to-prev {
  animation: 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: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}
.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  animation: 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;
  }
}
.f-carousel {
  --f-carousel-theme-color: #706f6c;
  --f-carousel-spacing: 0px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: auto;
  --f-carousel-slide-padding: 0;
  --f-button-width: 42px;
  --f-button-height: 42px;
  --f-button-color: var(--f-carousel-theme-color, currentColor);
  --f-button-hover-color: var(--f-carousel-theme-color, currentColor);
  --f-button-bg: transparent;
  --f-button-hover-bg: var(--f-button-bg);
  --f-button-active-bg: var(--f-button-bg);
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-next-pos: 10px;
  --f-button-prev-pos: 10px;
  position: relative;
  box-sizing: border-box;
}
.f-carousel *,
.f-carousel :after,
.f-carousel :before {
  box-sizing: inherit;
}
.f-carousel.is-ltr {
  direction: ltr;
}
.f-carousel.is-rtl {
  direction: rtl;
}
.f-carousel__viewport {
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
}
.f-carousel__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}
.f-carousel__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.f-carousel__track {
  display: flex;
  margin: 0 auto;
  padding: 0;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}
.f-carousel__slide {
  position: relative;
  flex: 0 0 auto;
  width: var(--f-carousel-slide-width);
  max-width: 100%;
  height: var(--f-carousel-slide-height);
  margin: 0 var(--f-carousel-spacing) 0 0;
  padding: var(--f-carousel-slide-padding);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  outline: 0;
  transform-origin: center center;
}
.f-carousel__slide.is-loading {
  min-height: 88px;
  min-width: 88px;
}
.f-carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}
.f-carousel.is-vertical .f-carousel__track {
  flex-wrap: wrap;
}
.f-carousel.is-vertical .f-carousel__slide {
  margin: 0 0 var(--f-carousel-spacing) 0;
}
:root {
  --f-carousel-dots-width: 24px;
  --f-carousel-dots-height: 30px;
  --f-carousel-dot-width: 8px;
  --f-carousel-dot-height: 8px;
  --f-carousel-dot-radius: 50%;
  --f-carousel-dot-color: var(--f-carousel-theme-color, currentColor);
  --f-carousel-dot-opacity: 0.2;
  --f-carousel-dot-hover-opacity: 0.4;
}
.f-carousel__dots {
  position: absolute;
  bottom: calc(var(--f-carousel-dots-height) * -1);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto !important;
  padding: 0;
  list-style: none !important;
  user-select: none;
}
.f-carousel__dots li {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: var(--f-carousel-dot-opacity);
  transition: opacity 0.15s ease-in-out;
}
.f-carousel__dots li + li {
  margin: 0;
}
.f-carousel__dots li:hover {
  opacity: var(--f-carousel-dot-hover-opacity);
}
.f-carousel__dots li.is-current {
  opacity: 1;
}
.f-carousel__dots li button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: var(--f-carousel-dots-width);
  height: var(--f-carousel-dots-height);
  border: 0;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 0.2s linear;
}
.f-carousel__dot {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: var(--f-carousel-dot-width);
  height: var(--f-carousel-dot-height);
  border-radius: var(--f-carousel-dot-radius);
  background-color: var(--f-carousel-dot-color);
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  pointer-events: none;
}
.f-carousel__dots.is-dynamic li:not(.is-prev, .is-next, .is-current, .is-after-next, .is-before-prev) button {
  transform: scale(0);
  width: 0;
}
.f-carousel__dots.is-dynamic li.is-after-next button,
.f-carousel__dots.is-dynamic li.is-before-prev button {
  transform: scale(0.22);
}
.f-carousel__dots.is-dynamic li.is-next button,
.f-carousel__dots.is-dynamic li.is-prev button {
  transform: scale(0.66);
}
.f-carousel__dots.is-dynamic li.is-current button {
  transform: scale(1);
}
.f-carousel__dots.is-dynamic li.is-after-next button,
.f-carousel__dots.is-dynamic li.is-before-prev button {
  transform: scale(0.33);
}
.f-carousel__dots.is-dynamic li.is-current:first-child {
  margin-left: calc(var(--f-carousel-dots-width) * 2);
}
.f-carousel__dots.is-dynamic li.is-prev:first-child {
  margin-left: var(--f-carousel-dots-width);
}
.f-carousel__dots.is-dynamic li.is-next:last-child {
  margin-right: var(--f-carousel-dots-width);
}
.f-carousel__dots.is-dynamic li.is-current:last-child {
  margin-right: calc(var(--f-carousel-dots-width) * 2);
}
.f-carousel.is-rtl .f-carousel__dots.is-dynamic .is-current:first-child {
  margin-left: 0;
  margin-right: var(--f-carousel-dots-width);
}
.f-carousel.is-rtl .f-carousel__dots.is-dynamic .is-prev:first-child {
  margin-left: 0;
  margin-right: var(--f-carousel-dots-width);
}
.f-carousel.is-rtl .f-carousel__dots.is-dynamic .is-current:last-child {
  margin-left: 0;
  margin-right: var(--f-carousel-dots-width);
}
.f-carousel.is-rtl .f-carousel__dots.is-dynamic .is-next:last-child {
  margin-right: 0;
  margin-left: var(--f-carousel-dots-width);
}
: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: 0;
}
.f-button:focus-visible {
  outline: 0;
  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 0.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-next,
.f-carousel__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev {
  position: absolute;
  z-index: 1;
}
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev {
  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-next,
.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev {
  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-next svg,
.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg {
  transform: rotate(90deg);
}
.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: 20px;
  --f-thumb-clip-width: 46px;
}
.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  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;
}
.f-thumbs__track {
  display: flex;
  will-change: transform;
}
.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);
  min-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(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}
.is-modern .f-thumbs__slide {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}
.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color))
    drop-shadow(0 2px 0 var(--f-thumb-outline-color));
}
.is-modern .f-thumbs__slide > * {
  clip-path: var(--clip-path);
}
.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}
.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}
.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}
.f-thumbs__slide__button {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: 0;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}
.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}
.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: 0;
}
.f-thumbs__slide__button:focus-visible {
  outline: 0;
  opacity: var(--f-thumb-selected-opacity);
}
.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}
.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 0.2s ease-out;
  z-index: 10;
}
.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
}
.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  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;
  margin: auto 0;
  padding: 0 8px;
}
.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: 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%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100;
  src: url(/assets/css/../fonts/montserrat-v26-cyrillic-ext_latin-ext-100.woff2) format('woff2'), url(/assets/css/../fonts/montserrat-v26-cyrillic-ext_latin-ext-100.woff) format('woff');
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: url(/assets/css/../fonts/montserrat-v26-cyrillic-ext_latin-ext-regular.woff2) format('woff2'), url(/assets/css/../fonts/montserrat-v26-cyrillic-ext_latin-ext-regular.woff) format('woff');
}
@font-face {
  font-display: swap;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url(/assets/css/../fonts/montserrat-v26-cyrillic-ext_latin-ext-700.woff2) format('woff2'), url(/assets/css/../fonts/montserrat-v26-cyrillic-ext_latin-ext-700.woff) format('woff');
}
body {
  font-family: Montserrat, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.fancybox-container {
  font-family: Montserrat, Arial, sans-serif;
  font-style: normal;
}
.btn {
  -webkit-appearance: none;
  height: 48px;
  padding: 0 24px;
  border-radius: 2px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  vertical-align: middle;
  border: 0;
  color: #fff;
  background: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:hover {
  background: #fff;
  color: #000;
}
.btn:active {
  background: rba(0 0 0/80%);
  color: #fff;
}
.btn-block {
  width: 100%;
  display: block;
}
.btn-inverse {
  background: #fff;
  color: #000;
}
.btn-inverse:hover {
  background: #000;
  color: #fff;
}
.btn-inverse:active {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}
body {
  display: block;
  min-width: 375px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.2;
}
.page {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1474px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 899px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 899px) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.col-1 {
  width: 8.33333%;
}
.col-2 {
  width: 16.66666%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333%;
}
.col-5 {
  width: 41.66666%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33333%;
}
.col-8 {
  width: 66.66666%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333%;
}
.col-11 {
  width: 91.66666%;
}
.col-12 {
  width: 100%;
}
.col-offset-1 {
  margin-left: 8.33333%;
}
.col-offset-2 {
  margin-left: 16.66666%;
}
.col-offset-3 {
  margin-left: 25%;
}
.col-offset-4 {
  margin-left: 33.33333%;
}
.col-offset-5 {
  margin-left: 41.66666%;
}
.col-offset-6 {
  margin-left: 50%;
}
.col-offset-7 {
  margin-left: 58.33333%;
}
.col-offset-8 {
  margin-left: 66.66666%;
}
.col-offset-9 {
  margin-left: 75%;
}
.col-offset-10 {
  margin-left: 83.33333%;
}
.col-offset-11 {
  margin-left: 91.66666%;
}
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-v-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-v-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-v-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-h-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-h-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-h-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-h-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-h-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.u {
  text-decoration: none !important;
  border-bottom: 1px solid;
  opacity: 1;
}
.u:hover {
  border-bottom-color: transparent;
}
.u-hover {
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
}
.u-hover:hover {
  border-bottom-color: inherit;
}
.u-dotted {
  border-bottom-style: dotted;
}
.u-dashed {
  border-bottom-style: dashed;
}
.b,
.strong {
  font-weight: var(--font-weight-strong);
}
.modal-open {
  overflow-y: hidden;
}
.animated {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.22857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  opacity: 0;
  line-break: auto;
  pointer-events: none;
}
.tooltip.in {
  opacity: 0.85 !important;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.has-scroll {
  overflow: auto;
}
.has-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.has-scroll::-webkit-scrollbar-thumb {
  background: #ebebeb;
  border-radius: 2px;
}
.has-scroll::-webkit-scrollbar-thumb:hover {
  background: #ebebeb;
}
.has-scroll::-webkit-scrollbar-track {
  width: 4px;
  background: #fff;
  opacity: 0;
}
.has-scroll {
  scrollbar-width: thin;
  scrollbar-color: #ebebeb;
}
.invis-scroll {
  overflow: auto;
}
.invis-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.invis-scroll::-webkit-scrollbar-thumb {
  background: 0 0;
}
.invis-scroll::-webkit-scrollbar-thumb:hover {
  background: 0 0;
}
.invis-scroll::-webkit-scrollbar-track {
  width: 4px;
  background: #fff;
  opacity: 0;
}
.invis-scroll {
  scrollbar-width: thin;
  scrollbar-color: transparent;
}
.text-center {
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.in {
  opacity: 1;
}
.header {
  padding-top: 16px;
  position: relative;
  z-index: 10;
  margin-bottom: -100px;
  height: 100px;
  color: #fff;
}
.header--inverse {
  color: #000;
}
.header-in {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.header--inverse .header-in {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.header .logo {
  width: 158px;
  display: block;
}
.header .logo svg {
  display: block;
  width: 100%;
}
.header-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16px;
}
.header-menu > li {
  margin-right: 30px;
  position: relative;
}
.header-menu > li > a {
  position: relative;
  padding-bottom: 16px;
  display: block;
}
.header-menu > li > a::after {
  content: '';
  position: absolute;
  width: calc(100% + 20px);
  left: calc(50% - 10px);
  margin-left: -50%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: all 0.2s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  bottom: -1px;
}
.header-menu > li > a.active::after,
.header-menu > li > a:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.policy__container h1:not(:last-child) {
  margin-bottom: 32px;
}

.policy__container h2:not(:last-child),
.policy__container li:not(:last-child),
.policy__container ol:not(:last-child),
.policy__container p:not(:last-child),
.policy__container ul:not(:last-child) {
  margin-bottom: 16px;
}
.policy__container p,
.policy__container li {
  line-height: 1.4;
}
@media (max-width: 991px) {
  .policy__container h1 {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .policy__container h2 {
    font-size: 22px;
  }
}

.menu-services {
  color: #000;
  background: #fff;
  border: 2px solid #f3f3f5;
  border-radius: 8px;
  padding: 20px;
  position: absolute;
  top: 100%;
  left: -125px;
  width: 405px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  transition: all 0.3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.menu-services::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -6px;
  left: 143px;
  background-color: #fff;
}
.menu-services.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.menu-services a {
  padding-left: 40px;
  display: block;
  font-weight: 700;
  position: relative;
  height: 32px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-services a + a {
  margin-top: 16px;
}
.menu-services a span:not([class]) {
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  display: block;
  font-weight: 400;
}
.menu-services a:hover {
  color: #00b2e3;
}
.menu-services a:hover .hms-img {
  background-color: #b6e4fb;
}
.menu-services .hms-img {
  margin-right: 8px;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f3f3f5;
  transition: all 0.2s ease;
}
.footer-links .menu-services {
  bottom: 0;
  top: inherit;
  left: 0;
}
.footer-links .menu-services.active {
  top: inherit;
  bottom: 120%;
  left: 0;
  z-index: 999;
}
.footer-links .menu-services::after {
  display: none;
}
.header-info {
  margin-left: auto;
}
.header-info-link {
  font-weight: 700;
  font-size: 32px;
}
.header-info-link:hover {
  opacity: 0.75;
}
.header .search {
  position: relative;
  margin-top: 8px;
}
@media (max-width: 1473px) {
  .header .search {
    margin-top: 12px;
  }
}
.header .search > svg {
  position: absolute;
  left: 0;
  top: 5px;
  transition: all 0.3s ease;
}
.header .search input {
  display: block;
  width: 100%;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 0 0 25px;
  color: inherit;
  height: 24px;
  transition: all 0.3s ease;
}
.header .search input::placeholder {
  color: inherit;
}
.header .search-line {
  position: absolute;
  width: calc(100% + 65px);
  left: calc(50% - 65px);
  margin-left: -50%;
  height: 1px;
  background-color: currentColor;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition: all 0.2s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  top: 40px;
  display: block;
  transition: all 0.3s ease;
}
@media (max-width: 1473px) {
  .header .search-line {
    width: 100%;
    left: 50%;
  }
}
.header .search input:focus {
  margin-left: -65px;
}
@media (max-width: 1473px) {
  .header .search input:focus {
    margin-left: 0;
  }
}
.header .search input:focus + svg {
  margin-left: -65px;
}
@media (max-width: 1473px) {
  .header .search input:focus + svg {
    margin-left: 0;
  }
}
.header .search input:focus + svg + .search-line {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.header .search-results {
  color: #000;
  background: #fff;
  border: 2px solid #f3f3f5;
  border-radius: 8px;
  padding: 20px;
  position: absolute;
  top: calc(100% + 20px);
  left: -65px;
  width: calc(100% + 65px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  transition: all 0.3s ease;
}
.header .search-results.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .search-results ul {
  margin-bottom: 20px;
}
.header .search-results li + li {
  margin-top: 12px;
}
.header .search-results a:hover {
  color: #00b2e3;
}
.header .search-results-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}
.header .search-results-link svg {
  margin-right: 8px;
}
.header .burger {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  position: relative;
  transition: color 150ms;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  display: none;
}
.header .burger-icon {
  -webkit-tap-highlight-color: transparent;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header .burger-icon-line {
  fill: none;
  transition: stroke-dasharray 0.4s, stroke-dashoffset 0.4s;
  stroke: currentColor;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.header .burger-icon-line--top {
  stroke-dasharray: 40 121;
}
.header .burger-icon-line--middle {
  stroke-dasharray: 40 121;
}
.header .burger-icon-line--bottom {
  stroke-dasharray: 40 121;
}
.header .burger.is-active .burger-icon {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .burger.is-active .burger-icon-line--bottom,
.header .burger.is-active .burger-icon-line--top {
  stroke-dashoffset: -68px;
}
.header .search-icon-mobile {
  display: none;
}
@media (max-width: 1473px) {
  .header .header-info-link {
    font-weight: 700;
    font-size: 28px;
  }
}
@media (max-width: 1228px) {
  .header {
    height: 80px;
    padding-top: 16px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    z-index: 7;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .header-menu {
    display: none;
  }
  .header-info {
    margin-left: 0;
  }
  .header-info-link {
    display: none;
  }
  .header-in {
    border-bottom: none !important;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header .burger {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header .search {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: calc(100% - 60px);
    left: 60px;
    top: 0;
    height: 100%;
    margin: 0 !important;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 22px;
  }
  .header .search input {
    height: 40px;
  }
  .header .search > svg {
    left: 22px;
    top: 12px;
  }
  .header .search-line {
    display: none !important;
  }
  .header .header-in {
    position: relative;
  }
  .header .search-icon-mobile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    height: 32px;
    width: 32px;
    position: relative;
    z-index: 4;
  }
  .header .search-icon-mobile svg {
    -webkit-transform: scale(1);
    transform: scale(1);
    position: absolute;
  }
  .header .search-icon-mobile svg + svg {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .header .search-icon-mobile.is-active svg {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  .header .search-icon-mobile.is-active svg + svg {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .header.header-mini,
  .header.header-mini2,
  .header.header-mini3 {
    border-bottom: 1px solid #e6e6e6;
    color: #000;
    background: #fff;
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
  }
  .header.spy {
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }
  .header .search.is-active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 899px) {
  .header .search-results {
    left: -76px;
    width: calc(100% + 91px);
    border-radius: 0;
    top: calc(100% + 12px);
    border: 0;
    background: #e6e6e6;
  }
}
.mobile-info {
  position: fixed;
  left: 0;
  top: 64px;
  width: 100%;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  height: calc(100% - 64px);
  background: #fff;
  color: #2b2a29;
  z-index: 20;
  min-width: 375px;
  opacity: 0;
  visibility: hidden;
  display: none;
  overflow: hidden;
}
.mobile-info.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.mobile-info .container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  overflow: auto;
  padding-top: 32px;
  padding-bottom: 32px !important;
}
@media (max-width: 1228px) {
  .mobile-info {
    display: block;
  }
}
.mobile-info .mobile-menu {
  font-weight: 700;
}
.mobile-info .mobile-menu > li + li {
  margin-top: 32px;
}
.mobile-info .mobile-menu .mobile-menu-services {
  font-weight: 400;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.mobile-info .mobile-menu .mobile-menu-services a {
  margin-top: 10px;
}
.mobile-info .mobile-menu .mobile-menu-services a:first-child {
  margin-top: 16px;
}
.mobile-info .mobile-menu a.active,
.mobile-info .mobile-menu a:hover {
  color: #00b2e3;
}
.mobile-info .mobile-info-link {
  font-size: 32px;
  margin-top: 81px;
  font-weight: 700;
}
.mobile-info .mobile-info-link:hover {
  color: #00b2e3;
}
.modal input::-webkit-input-placeholder,
.modal textarea::-webkit-input-placeholder {
  color: #73706d;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal input:-moz-placeholder,
.modal textarea:-moz-placeholder {
  color: #73706d;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.modal input:focus::-webkit-input-placeholder,
.modal textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.modal input:focus:-moz-placeholder,
.modal textarea:focus:-moz-placeholder {
  color: transparent;
}
.form-group {
  position: relative;
}
.form-group-title {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-group.error .form-group-title {
  color: red;
}
.form-control {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 16px;
  background: #fff;
  color: inherit;
  padding: 0 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 400;
  text-align: left;
  height: 48px;
  resize: none;
  border-radius: 0;
}
.form-control:focus {
  border-color: #00b2e3;
}
textarea.form-control {
  min-height: 132px;
  line-height: 1.35;
  padding-top: 10px;
  padding-bottom: 10px;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.checkbox {
  padding-left: 30px;
  position: relative;
  display: block;
  line-height: 1.3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.checkbox > span {
  cursor: pointer;
}
.checkbox > span::after {
  content: '';
  width: 20px;
  height: 20px;
  background: #2b2a29;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.checkbox > span::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(/assets/css/../images/svg/check.svg) no-repeat center center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
}
.checkbox input:checked + span::after {
  background: #00b2e3;
}
.checkbox input:checked + span::before {
  opacity: 1;
}
.radio {
  padding-left: 30px;
  position: relative;
  display: block;
  line-height: 1.2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 1px;
  cursor: pointer;
}
.radio input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.radio > span::after {
  content: '';
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
}
.radio > span::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #00b2e3;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 5px;
  opacity: 0;
  z-index: 2;
}
.radio input:checked + span::after {
  border-color: rgba(0, 0, 0, 0.2) !important;
}
.radio input:checked + span::before {
  opacity: 1;
}
.radio:hover > span::after {
  border-color: #b6e4fb;
}
.form-group-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form-group-content > :not(:last-child) {
  margin-right: 16px;
}
.form-group-content > * {
  margin-bottom: 16px;
}
.forgot-link {
  color: #00b2e3;
  margin-top: 8px;
}
.form-buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-buttons .btn {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.form-buttons-info {
  margin-left: 16px;
  width: 100%;
  color: #999;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.form-buttons-info .form-register-link {
  position: relative;
}
.form-buttons-info .form-register-link > a {
  color: #00b2e3;
  font-weight: 700;
}
.form-agree {
  width: 100%;
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.45;
}
.form-agree a {
  color: #00b2e3;
}
.content {
  padding-top: 155px;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero + .content {
  padding-top: 100px;
}
@media (max-width: 899px) {
  .content {
    padding-top: 120px;
  }
  .hero + .content {
    padding-top: 60px;
  }
}
.icon-link {
  font-weight: 16px;
  font-weight: 700;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.icon-link svg {
  margin-right: 8px;
}
.icon-link:hover {
  color: #00b2e3;
}
.back-link-container {
  margin-bottom: 16px;
}
h1 {
  font-size: 67px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1;
}
.main-search-input {
  position: relative;
}
.main-search-input svg {
  position: absolute;
  left: 12px;
  top: 12px;
}
.main-search-input .form-control {
  padding-left: 48px;
}
.main-search-result a {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 24px;
  font-weight: 700;
  padding: 24px 44px 24px 0;
  line-height: 1.2;
  position: relative;
}
.main-search-result a::after {
  content: '';
  width: 24px;
  height: 24px;
  background: url(/assets/css/../images/svg/search-link.svg) no-repeat center center;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  opacity: 0;
  transition: all 0.2s ease;
}
.main-search-result a:hover {
  color: #00b2e3;
}
.main-search-result a:hover::after {
  opacity: 1;
}
@media (max-width: 1228px) {
  .main-row > div {
    width: 100%;
  }
  .main-row > div h1 {
    margin-bottom: 24px;
  }
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 899px) {
  h1 {
    font-size: 30px;
  }
  .main-search-result a {
    font-size: 16px;
    padding: 16px 44px 16px 0;
  }
}
.color-blue {
  color: #00b2e3;
}
.contacts-city {
  margin-top: 64px;
}
.contacts-city:first-child {
  margin-top: 30px;
}
.contacts-city-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contacts-city-line {
  margin-bottom: 8px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contacts-city-line > * {
  margin-bottom: 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.contacts-city-line > * svg {
  opacity: 0.5;
  margin-right: 8px;
  transition: all 0.2s ease;
}
.contacts-city-line > a {
  position: relative;
  transition: color 0.2s ease-out;
}
.contacts-city-line span {
  position: relative;
  display: block;
  color: #00b2e3;
}
.contacts-city-line span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 1px;
  background-color: #00b2e3;
  opacity: 0.2;
  transition: opacity 0.2s ease-out;
}
.contacts-city-line > a:hover {
  color: #00b2e3;
}
.contacts-city-line > a:hover span::after {
  opacity: 1;
}
.contacts-city-line > a:hover svg {
  opacity: 1;
}
.contacts-city-line > :not(:last-child) {
  margin-right: 30px;
}
.contacts-city .map_zone {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  border: 2px solid #f3f3f5;
  overflow: hidden;
}
.contacts-city [class$='gototaxi__container'],
.contacts-city [class$='gototech'],
.contacts-city [class$='gotoymaps'] {
  display: none;
}
.h-video {
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.h-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero {
  position: relative;
}
.hero--home {
  height: 789px;
  padding-top: 215px;
  color: #fff;
}
.hero--home .container {
  position: relative;
  z-index: 2;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.hero--home .hero-title {
  font-size: 105px;
  font-weight: 700;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1;
}
.hero--home .hero-title span {
  position: relative;
  width: 105px;
  height: 10px;
  background: currentColor;
  margin-bottom: 38px;
}
.hero--home .hero-title span::after,
.hero--home .hero-title span::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  background: currentColor;
  opacity: 0.2;
}
.hero--home .hero-title span::after {
  top: 24px;
}
.hero--home .hero-title span::before {
  bottom: 24px;
}
.hero--home .hero-subtitle {
  font-size: 32px;
  line-height: 130%;
  margin-top: 32px;
  opacity: 0.5;
  max-width: 680px;
}
.hero--home .btn {
  margin-top: 64px;
}
.hero--home-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 490px;
  display: block;
}
.hero--home-line--blue {
  margin-right: 120px;
  bottom: 0;
  right: 0;
}
.hero--home-line--yellow {
  margin-bottom: -80px;
  margin-right: -157px;
  right: 0;
  bottom: 0;
}
@media (max-width: 1473px) {
  .hero--home {
    height: 685px;
    padding-top: 150px;
  }
  .hero--home-line {
    width: 490px;
  }
  .hero--home-line--yellow {
    margin-bottom: -80px;
  }
  .hero--home-line--blue {
    margin-right: 120px;
  }
}
@media (max-width: 1228px) {
  .hero--home .hero-title {
    font-size: 80px;
  }
  .hero--home .hero-title span {
    width: 90px;
    height: 8px;
    margin-bottom: 30px;
  }
  .hero--home .hero-title span::after {
    top: 18px;
  }
  .hero--home .hero-title span::before {
    bottom: 18px;
  }
  .hero--home .hero--home .hero-subtitle {
    font-size: 25px;
    max-width: 550px;
  }
  .hero--home-line {
    width: 260px;
  }
  .hero--home-line--yellow {
    margin-bottom: -50px;
    margin-right: -135px;
  }
  .hero--home-line--blue {
    margin-right: 15px;
  }
}
@media (max-width: 899px) {
  .hero--home {
    height: 100dvh;
    min-height: 600px;
    padding-top: 130px;
  }
  .hero--home-line {
    display: none;
  }
  .hero--home .container {
    height: 100%;
  }
  .hero--home .btn {
    margin-top: auto;
    margin-bottom: 44px;
  }
  .hero--home .hero-title {
    font-size: 50px;
  }
  .hero--home .hero-title span {
    width: 60px;
    height: 5px;
    margin-bottom: 19px;
    margin-left: 4px;
    margin-right: 4px;
  }
  .hero--home .hero-title span::after {
    top: 11px;
  }
  .hero--home .hero-title span::before {
    bottom: 11px;
  }
  .hero--home .hero-subtitle {
    font-size: 20px;
    margin-top: 16px;
  }
}
@media (max-width: 599px) {
  .hero--home .hero-subtitle {
    font-size: 16px;
  }
  .hero--home .hero-title {
    font-size: 32px;
  }
  .hero--home .hero-title span {
    width: 38px;
    height: 3px;
    margin-bottom: 12px;
  }
  .hero--home .hero-title span::after {
    top: 8px;
  }
  .hero--home .hero-title span::before {
    bottom: 8px;
  }
}
.h2 {
  display: block;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 64px;
  line-height: 1;
}
.h2 .subtitle {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  line-height: 1.45;
}
.h2 .subtitle p + p {
  margin-top: 16px;
}
.text-outline {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 1px 0 1px #000, 0 1px 1px #000, -1px 0 1px #000, 0 -1px 1px #000;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1;
}
.has-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 64px;
  margin-bottom: 64px;
}
.home-b1 > .row {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.home-b1-image {
  margin-right: -121px;
  display: block;
  width: calc(100% + 121px);
  max-width: calc(100% + 121px);
}
.home-b1 .text-outline {
  font-size: 83px;
  font-weight: 700;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  left: 83px;
  bottom: 0;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
.home-b1-texts {
  position: relative;
  padding-left: 132px;
  max-width: 510px;
}
.home-b1-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-weight: 700;
  margin-bottom: 8px;
}
.home-b1-title img {
  width: 16px;
  margin-right: 4px;
  margin-top: 2px;
}
.home-b1-text + .home-b1-title {
  margin-top: 24px;
}
.home-b1-text {
  line-height: 1.45;
}
.home-b1-mobile-subtitle {
  display: none;
}
@media (max-width: 1228px) {
  .h2 {
    font-size: 42px;
    margin-bottom: 42px;
  }
  .has-border {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }
  .home-b1 > .row > * {
    width: 100%;
  }
  .home-b1-image {
    width: 100%;
    margin: 42px 0 0 0;
  }
}
@media (max-width: 899px) {
  .h2 {
    font-size: 32px;
    margin-bottom: 38px;
  }
}
@media (max-width: 599px) {
  .h2 {
    font-size: 26px;
    margin-bottom: 38px;
  }
  .home-b1 .text-outline {
    display: none;
  }
  .home-b1-texts {
    padding-left: 0;
  }
  .home-b1-mobile-subtitle {
    display: block;
    margin-bottom: 32px;
    margin-top: -22px;
  }
}
.m-steps--2 {
  background: url(/assets/css/../images/m-steps.png) no-repeat top center;
  padding-top: 120px;
}
@media (max-width: 1228px) {
  .m-steps--2 {
    background: 0 0;
    padding-top: 0;
  }
}
@media (max-width: 599px) {
  .m-steps--2 {
    background: url(/assets/css/../images/m-steps-v.png) no-repeat left 10px center;
    padding-left: 45px;
    background-size: 40px;
  }
}
.features {
  margin-bottom: 36px;
}
.features--mobile {
  display: none;
}
.features .row > * {
  padding-right: 9%;
  margin-bottom: 64px;
}
.features-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.features-item-icon {
  height: 87px;
  margin-bottom: 24px;
}
.features-item-icon img {
  height: 100%;
  width: auto;
  max-width: 100%;
}
.features-item-icon .text-outline {
  font-size: 85px;
  line-height: 1;
}
.features-item-title {
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
}
.features-item-text {
  line-height: 1.45;
}
.features-item-text p {
  margin: 0;
}
.features-item-text p .color-blue {
  font-weight: 700;
}
.features-item-text > p + p {
  margin-top: 8px;
}
@media (max-width: 1228px) {
  .features .row > * {
    padding-right: 4%;
    margin-bottom: 48px;
  }
}
@media (max-width: 899px) {
  .features {
    display: none;
    margin-bottom: 64px;
  }
  .features--mobile {
    display: block;
  }
  .features .features-item-icon .text-outline {
    font-size: 69px;
  }
}
.features-icons {
  margin-bottom: 24px;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
.features-icons .swiper-slide {
  width: 100px;
}
.features-icons .swiper-slide .features-item-icon {
  margin-bottom: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100px;
}
.features-icons .swiper-slide .features-item-icon--text {
  height: auto;
}
.features-icons .slide-navigation {
  pointer-events: none;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}
.features-icons .slide-navigation > * {
  pointer-events: auto;
  height: 100%;
  width: 24px;
}
.features-icons .slide-navigation .swiper-button-disabled {
  opacity: 0;
}
.features-icons .prev {
  background: url(/assets/css/../images/svg/slide-left.svg) no-repeat center center;
  margin-right: 86px;
}
.features-icons .next {
  margin-left: 86px;
  background: url(/assets/css/../images/svg/slide-right.svg) no-repeat center center;
}
.features-main {
  text-align: center;
}
.features-main .swiper-slide {
  background-color: #fff;
}
.features-main .features-item-text p span {
  display: none;
}
.fancybox__toolbar__column.is-right .f-button:not(:last-child) {
  display: none !important;
}
.home-process {
  margin-bottom: 120px;
  position: relative;
}
.home-process .process-item--1 {
  width: 50%;
}
.home-process .process-item--1 .process-item-step {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  margin-bottom: 30px;
}
.home-process .process-item--2 {
  width: 25%;
}
.home-process .process-item--2 .process-item-step {
  margin-top: 30px;
}
.home-process .process-item--3 {
  width: 25%;
}
.home-process .process-item--3 .process-item-step {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  margin-bottom: 30px;
}
.home-process .process-item-content {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.home-process .process-item-image {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.home-process .process-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-process .process-item-image:hover {
  opacity: 0.85;
}
.home-process .process-item .text-outline {
  font-size: 87px;
}
.home-process .process-item-step-title {
  font-weight: 700;
  margin-top: 16px;
}
.home-process-link {
  color: #b6e4fb;
  display: block;
  width: calc(50% - 15px);
  position: absolute;
  bottom: 0;
  right: 0;
}
.home-process-link svg {
  display: block;
  width: 100%;
}
.home-process-link:hover {
  color: #00b2e3;
}
@media (max-width: 1473px) {
  .home-process {
    margin-bottom: 96px;
  }
}
@media (max-width: 899px) {
  .home-process {
    margin-bottom: 64px;
    overflow: hidden;
  }
  .home-process .process-item {
    width: 100%;
  }
  .home-process .process-item .text-outline {
    font-size: 60px;
  }
  .home-process .process-item-step-title {
    margin-top: 8px;
  }
  .home-process .process-item + .process-item {
    margin-top: 30px;
  }
  .home-process .process-item--2 .process-item-content {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .home-process .process-item--2 .process-item-step {
    margin-left: 30px;
    margin-top: auto;
  }
  .home-process .process-item--3 .process-item-content {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .home-process .process-item--3 .process-item-step {
    margin-left: 0;
    margin-right: 30px;
    margin-bottom: 0;
    margin-top: auto;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .home-process .process-item--3 .process-item-image {
    margin-right: -40px;
  }
  .home-process-link {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
  }
}
.production-title {
  width: 100%;
  display: block;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.production-title svg {
  display: block;
  width: 100%;
}
@media (max-width: 1228px) {
  .production-title {
    margin-bottom: 40px;
  }
}
.products {
  margin-bottom: 30px;
}
.products-item {
  border-radius: 8px;
  padding: 24px;
  height: 432px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
}
.products-item--blue {
  background-color: #b6e4fb;
}
.products-item--yellow {
  background-color: #fde5a5;
}
.products-item--red {
  background-color: #ffd3c5;
}
.products-item--gray {
  background-color: #f3f3f5;
}
.products-item-title {
  font-weight: 700;
  opacity: 0.5;
  margin-top: auto;
  transition: all 0.3s ease;
}
.products-item-download {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.products-item-download svg {
  margin-right: 6px;
}
.products-item-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}
.products-item-images {
  transition: all 0.3s ease;
  margin-bottom: 140px;
  width: 261px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.products-item-images img {
  position: relative;
  z-index: 4;
  transition: all 0.3s ease;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.products-item-images img:nth-child(2) {
  margin-top: -95px;
  z-index: 3;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.products-item-images img:nth-child(3) {
  margin-top: -95px;
  z-index: 2;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.products-item-images img:nth-child(4) {
  margin-top: -195px;
  z-index: 1;
}
.products-item:hover {
  margin-top: -100px;
  height: 532px;
}
.products-item:hover .products-item-title {
  -webkit-transform: translateY(-32px);
  transform: translateY(-32px);
  opacity: 1;
}
.products-item:hover .products-item-download {
  opacity: 1;
  visibility: visible;
}
.products-item:hover .products-item-images {
  margin-bottom: 80px;
}
.products-item:hover .products-item-images img:nth-child(2) {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.products-item:hover .products-item-images img:nth-child(3) {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.products-item:hover .products-item-images img:nth-child(4) {
  margin-top: -95px;
}
@media (max-width: 1473px) {
  .products-item {
    height: 335px;
  }
  .products-item-images {
    width: 212px;
    margin-bottom: 80px;
  }
  .products-item-images img:nth-child(4) {
    margin-top: -125px;
  }
  .products-item:hover {
    margin-top: -80px;
    height: 415px;
  }
  .products-item:hover .products-item-images img:nth-child(2) {
    margin-top: -80px;
  }
  .products-item:hover .products-item-images img:nth-child(3) {
    margin-top: -80px;
  }
  .products-item:hover .products-item-images img:nth-child(4) {
    margin-top: -80px;
  }
}
@media (max-width: 1228px) {
  .products .col-3 {
    width: 50%;
  }
  .products .col-3:nth-child(1),
  .products .col-3:nth-child(2) {
    margin-bottom: 30px;
  }
  .products-item {
    height: 100% !important;
    margin: 0 !important;
  }
  .products-item-download {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-top: 16px;
  }
  .products .products-item-images {
    width: 220px;
    margin-bottom: 44px !important;
  }
  .products .products-item-images img:nth-child(2) {
    display: none;
  }
  .products .products-item-images img:nth-child(3) {
    display: none;
  }
  .products .products-item-images img:nth-child(4) {
    margin-top: -75px !important;
  }
  .products-item-title {
    opacity: 1;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}
@media (max-width: 599px) {
  .products .col-3 {
    width: 100%;
  }
  .products-item-title br {
    display: none;
  }
}
.products2 {
  margin-bottom: 100px;
  background-color: #f3f3f5;
  border-radius: 8px;
  padding: 30px;
}
@media (max-width: 767px) {
  .products2 {
    margin-bottom: 70px;
  }
}
.products2-item {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}
.products2-item .title {
  font-weight: 700;
  opacity: 0.5;
  margin-top: auto;
  transition: all 0.3s ease;
}
.products2-item-download {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.products2-item-download svg {
  margin-right: 6px;
}
.products2-item:hover .title {
  opacity: 1;
}
.products2-item .images {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}
.products2-item .images img {
  display: block;
  width: 33.333%;
  max-width: 126px;
}
.products2-item .image {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.products2-item-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.products2-item--1 .title {
  margin-bottom: 20px;
}
.products2-item--1:hover .products2-item-download {
  opacity: 1;
  visibility: visible;
}
.products2-item--1:hover .title {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.products2-item--2 .image {
  margin-bottom: 60px;
}
.products2-item--2 .title {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.products2-item--3 .image {
  margin-bottom: -32px;
}
@media (max-width: 1228px) {
  .products2 {
    background-color: transparent;
    padding: 0;
  }
  .products2 .col-4 {
    width: 50%;
    margin-bottom: 30px;
  }
  .products2 .col-4:first-child {
    width: 100%;
  }
  .products2 .products2-item--2 .title {
    text-align: left;
    margin-bottom: 0;
  }
  .products2 .products2-item .images img {
    max-width: 85px;
  }
  .products2 .products2-item .images {
    margin-bottom: 30px;
  }
  .products2 .products2-item .title {
    opacity: 1;
    -webkit-transform: none !important;
    transform: none !important;
  }
  .products2 .products2-item-download {
    opacity: 1;
    visibility: visible;
    position: static;
  }
}
@media (max-width: 899px) {
  .products2-item .images {
    overflow-x: auto;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 30px);
  }
  .products2 .products2-item-download {
    max-width: 200px;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .products2-item--3 .image {
    margin-bottom: 0;
    margin-top: -50px;
  }
  .products2-item--2 .image {
    margin-bottom: 24px;
  }
}
@media (max-width: 599px) {
  .products .col-3:nth-child(1),
  .products .col-3:nth-child(2),
  .products .col-3:nth-child(3) {
    margin-bottom: 15px;
  }
  .products2-item--1 .title {
    margin-bottom: 8px;
  }
  .products2-item--3 .image {
    margin-bottom: 10px;
    margin-top: -50px;
  }
  .products2-item--2 .image {
    margin-bottom: 32px;
  }
  .products2 .products2-item .images img {
    max-width: 72px;
  }
}
.hero--panel {
  height: 640px;
  padding-top: 194px;
}
.hero--panel .hero-title {
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
  width: 55%;
  position: relative;
}
.hero--panel .hero-title img {
  position: absolute;
  right: 20px;
  top: -55px;
}
.hero--panel .hero-subtitle {
  font-size: 24px;
  line-height: 130%;
  margin-top: 16px;
  width: 50%;
  opacity: 0.5;
}
.hero--panel .btn {
  margin-top: 48px;
}
.hero--panel .container {
  position: relative;
  height: 100%;
}
.hero--panel-image {
  display: block;
  position: absolute;
  bottom: -33px;
  right: -240px;
  width: 60%;
}
.hero--panel--1 {
  background-color: #b6e4fb;
}
.hero--panel--1 .hero-title {
  color: #00b2e3;
}
.hero--panel--2 {
  background-color: #ffeeb1;
}
.hero--panel--2 .hero-title {
  color: #ffb548;
}
.hero--panel--2 .hero-title img {
  right: -50px;
}
.hero--panel--3 {
  background-color: #ffece6;
}
.hero--panel--3 .hero-title {
  color: #fa5f1c;
}
.hero--panel--4 {
  background-color: #f3f3f5;
}
.hero--panel--rulon {
  background-color: #f3f3f5;
}
.hero--panel--rulon .hero--panel-image {
  bottom: -60px;
  right: -30px;
}
.hero--panel--rulon .hero-title img {
  right: 40px;
  top: 0;
}
.hero--panel--prof {
  background-color: #f3f3f5;
}
.hero--panel--prof .hero--panel-image {
  bottom: 90px;
}
.hero--panel--prof .hero-title img {
  right: -160px;
  top: 10px;
}
.hero--panel--fason {
  background-color: #f3f3f5;
}
.hero--panel--fason .hero--panel-image {
  bottom: -67px;
  right: 0;
  pointer-events: none;
}
.hero--panel--fason .hero--panel-image--mobile {
  display: none;
}
.hero--panel--fason .hero-subtitle {
  width: 65%;
}
.hero--panel--service-1 {
  background-color: #b6e4fb;
}
.hero--panel--service-1 .hero-title {
  color: #00b2e3;
}
.hero--panel--service-1 .hero--panel-image {
  bottom: 0;
  right: 0;
  max-width: 542px;
}
.hero--panel--service-2 {
  background-color: #ffeeb1;
}
.hero--panel--service-2 .hero-title {
  color: #ffb548;
}
.hero--panel--service-2 .hero--panel-image {
  bottom: 0;
  right: 0;
  max-width: 542px;
}
.hero--panel--service-3 {
  background-color: #ffece6;
}
.hero--panel--service-3 .hero-title {
  color: #fa5f1c;
}
.hero--panel--service-3 .hero--panel-image {
  bottom: 0;
  right: 0;
  max-width: 542px;
}
@media (max-width: 1473px) {
  .hero--panel-image {
    width: 60%;
  }
  .hero--panel .hero-title {
    font-size: 48px;
  }
  .hero--panel .hero-subtitle {
    font-size: 20px;
  }
  .hero--panel--fason .hero--panel-image {
    width: 90%;
  }
  .hero--panel--service-1 .hero--panel-image,
  .hero--panel--service-2 .hero--panel-image,
  .hero--panel--service-3 .hero--panel-image {
    width: auto;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 1228px) {
  .hero--panel {
    padding-top: 115px;
    height: auto;
    padding-bottom: 50px;
  }
  .hero--panel .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hero--panel-image {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    margin-bottom: 30px;
  }
  .hero--panel .hero-title {
    font-size: 40px;
    width: 100%;
    padding-right: 60px;
  }
  .hero--panel .hero-title img {
    right: 0;
    width: 85px;
  }
  .hero--panel .hero-subtitle {
    font-size: 18px;
    width: 100%;
  }
  .hero--panel .btn {
    margin-top: 30px;
  }
  .hero--panel--rulon .hero--panel-image {
    bottom: 0;
    right: 0;
  }
  .hero--panel--rulon .hero-title img {
    right: auto;
    left: 345px;
  }
  .hero--panel--prof .hero--panel-image {
    bottom: 0;
    right: 0;
    max-width: 600px;
  }
  .hero--panel--prof .hero-title img {
    right: auto;
    left: 300px;
    top: -20px;
  }
  .hero--panel--fason .hero--panel-image {
    display: none;
  }
  .hero--panel--fason .hero--panel-image--mobile {
    display: block;
    width: 100% !important;
    max-width: 480px !important;
    margin-bottom: 34px !important;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
}
@media (max-width: 599px) {
  .hero--panel {
    padding-bottom: 30px;
  }
  .hero--panel .hero-title {
    font-size: 28px;
  }
  .hero--panel .hero-title img {
    top: -42px;
  }
  .hero--panel .hero-subtitle {
    font-size: 16px;
  }
  .hero--panel--2 .hero-title {
    padding-right: 0;
    position: static;
  }
  .hero--panel--2 .hero-title img {
    top: auto;
    right: 20px;
    bottom: 0;
  }
  .hero--panel--rulon .hero-title {
    padding-right: 0;
    position: static;
    margin-top: -80px;
  }
  .hero--panel--rulon .hero--panel-image {
    bottom: 0;
    right: 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    max-width: 300%;
    width: 180%;
    margin-left: -40%;
  }
  .hero--panel--rulon .hero-title img {
    right: 20px;
    top: -40px;
    bottom: auto;
    left: auto;
  }
  .hero--panel--prof .hero-title {
    padding-right: 0;
    position: static;
  }
  .hero--panel--prof .hero--panel-image {
    width: 600px;
  }
  .hero--panel--prof .hero-title img {
    right: auto;
    left: 20px;
    top: -40px;
  }
  .hero--panel--fason .hero-title {
    font-size: 24px;
  }
  .hero--panel--service-1,
  .hero--panel--service-2,
  .hero--panel--service-3 {
    padding-top: 90px;
  }
  .hero--panel--service-1 .hero--panel-image,
  .hero--panel--service-2 .hero--panel-image,
  .hero--panel--service-3 .hero--panel-image {
    width: 100%;
  }
}
.panel-tables {
  margin-bottom: 100px;
}
@media (max-width: 899px) {
  .panel-tables {
    margin-bottom: 64px;
  }
}
.panel-tables .table-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.panel-tables .table-block + .table-block {
  margin-top: 64px;
}
@media (max-width: 899px) {
  .panel-tables .table-block + .table-block {
    margin-top: 32px;
  }
}
.panel-tables .table-block-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.panel-tables .table-block-title .title {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 899px) {
  .panel-tables .table-block-title .title {
    font-size: 18px;
  }
}
.panel-tables .table-block-title .title::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(/assets/css/../images/svg/table-arrow.svg) no-repeat center center, #b6e4fb;
  margin-left: 8px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.2s ease;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.panel-tables .table-block-title .title-simple::after {
  display: none;
}
.panel-tables .table-block-title:hover {
  cursor: pointer;
}
.panel-tables .table-block-title:hover .title::after {
  background: url(/assets/css/../images/svg/table-arrow-white.svg) no-repeat center center, #00b2e3 !important;
}
.panel-tables .table-block-title .subtitle {
  margin-top: 8px;
  opacity: 0.5;
}
.panel-tables .table-block.active .title::after {
  background: url(/assets/css/../images/svg/table-arrow.svg) no-repeat center center, #f3f3f5;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.panel-tables .table-block-content {
  width: 100%;
}
.panel-tables .table-block-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 24px;
}
.panel-tables .table-block-content table th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
.panel-tables .table-block-content table th:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-tables .table-block-content table tr:first-child th {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-tables .table-block-content table td {
  padding: 16px;
  font-size: 16px;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-tables .table-block-content table td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-tables .table-block-content table td[rowspan] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-tables .table-block-content table tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.panel-tables .table-block-content table .table-text-lg {
  font-size: 50px;
  font-weight: 100;
}
.panel-tables .table-block-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.panel-tables .table-block-row .table-block-content {
  width: 66.666%;
  padding-right: 9%;
}
@media (max-width: 1228px) {
  .panel-tables .table-block-row .table-block-content {
    width: 100%;
    padding-right: 0;
  }
}
.panel-tables .table-block-text {
  width: 33.333%;
  padding-right: 9%;
  line-height: 1.45;
  padding-left: 15px;
  margin-top: 24px;
}
.panel-tables .table-block-text p + p {
  margin-top: 16px;
}
@media (max-width: 1228px) {
  .panel-tables .table-block-text {
    margin-top: 32px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.panel-tables .table-scroll {
  overflow-x: hidden;
}
@media (max-width: 899px) {
  .panel-tables .table-scroll {
    overflow-x: auto;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 30px);
  }
  .panel-tables .table-scroll table {
    white-space: nowrap;
  }
}
.panel-krep {
  margin-bottom: 100px;
}
@media (max-width: 899px) {
  .panel-krep {
    margin-bottom: 64px;
  }
}
.panel-krep .krep-image {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.panel-krep .krep-image img {
  display: block;
}
.panel-krep .krep-image img + img {
  display: none;
}
.panel-krep .krep + .krep {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 64px;
  margin-top: 64px;
}
.panel-krep .krep .text-outline {
  font-size: 87px;
  margin-bottom: 40px;
}
.panel-krep .krep-text p + p {
  margin-top: 16px;
}
.panel-krep .krep-text p + .strong,
.panel-krep .krep-text p.lg-blue + p {
  margin-top: 32px;
}
.panel-krep .krep-text .strong {
  font-weight: 700;
}
.panel-krep .krep-text .col-6 {
  margin-top: 16px;
}
.panel-krep .krep-text .row + p {
  margin-top: 32px;
}
.panel-krep .krep-text span.color-blue {
  font-weight: 700;
}
.panel-krep .krep-text p.lg-blue {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-top: 32px;
  color: #00b2e3;
}
@media (max-width: 1228px) {
  .panel-krep .krep-text .row .col-6 {
    width: 100%;
  }
  .panel-krep .krep .text-outline {
    font-size: 50px;
    margin-bottom: 32px;
  }
}
@media (max-width: 899px) {
  .panel-krep .krep .col-6 {
    width: 100%;
  }
  .panel-krep .krep .krep-image {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 32px;
  }
  .panel-krep .krep .krep-image img {
    display: none;
  }
  .panel-krep .krep .krep-image img + img {
    display: block;
  }
}
@media (max-width: 599px) {
  .panel-krep .krep .text-outline {
    font-size: 45px;
  }
}
.panel-form {
  padding: 30px 30px 30px 120px;
  border-radius: 8px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 1473px) {
  .panel-form {
    padding-left: 60px;
  }
}
.panel-form::after {
  content: '';
  position: absolute;
  background-color: #00b2e3;
  height: 100%;
  width: 360px;
  -webkit-transform: skew(-30deg, 0);
  transform: skew(-30deg, 0);
  top: 0;
  left: -150px;
  opacity: 0.2;
}
@media (max-width: 899px) {
  .panel-form {
    margin-bottom: 64px;
  }
}
.panel-form > * {
  position: relative;
  z-index: 2;
}
.panel-form-title {
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
}
.panel-form-actions {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.panel-form-calc {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 24px;
  font-weight: 700;
  line-height: 1;
}
.panel-form-calc svg {
  opacity: 0.5;
  margin-right: 8px;
  transition: all 0.2s ease;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.panel-form-calc:hover svg {
  opacity: 1;
}
.panel-form--1 {
  background-color: #b6e4fb;
}
.panel-form--1 .panel-form-title {
  color: #00b2e3;
}
.panel-form--2 {
  background-color: #ffeeb1;
}
.panel-form--2 .panel-form-title {
  color: #ffb548;
}
.panel-form--2::after {
  background-color: #ffb548;
}
.panel-form--3 {
  background-color: #ffece6;
}
.panel-form--3 .panel-form-title {
  color: #fa5f1c;
}
.panel-form--3::after {
  background-color: #fa5f1c;
}
.panel-form--4 {
  background-color: #f3f3f5;
}
.panel-form--4::after {
  background-color: rgba(0, 0, 0, 0.3);
}
.panel-form img {
  max-width: 379px;
  margin-left: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1228px) {
  .panel-form img {
    width: 260px;
  }
  .panel-form-title {
    font-size: 32px;
  }
}
@media (max-width: 899px) {
  .panel-form {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 24px;
  }
  .panel-form::after {
    left: -220px;
  }
  .panel-form img {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 32px;
    margin-left: 0;
  }
}
@media (max-width: 599px) {
  .panel-form-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .panel-form img {
    margin-left: auto;
    margin-right: auto;
  }
  .panel-form-calc {
    margin-left: 0;
    margin-top: 16px;
  }
  .panel-form-actions {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.object-list {
  margin-bottom: 120px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1473px) {
  .object-list {
    margin-bottom: 90px;
  }
}
@media (max-width: 899px) {
  .object-list {
    margin-bottom: 64px;
  }
}
.object-list-info {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 350px;
  padding-right: 90px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.object-list-slide {
  width: calc(100% - 350px);
}
.object-list-title {
  font-size: 52px;
  font-weight: 700;
}
.object-list-subtitle {
  margin-top: 16px;
}
.object-list .slide-navigation {
  margin-top: auto;
}
.object-list-item {
  position: relative;
  display: block;
}
.object-list-item img {
  height: 205px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all 0.3s ease;
}
.object-list-item span {
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
.object-list-item:hover img {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.object-list-item:hover span {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.object-list .swiper-container {
  padding-top: 30px;
  margin-top: -30px;
}
.object-list .slide-navigation {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}
.object-list .slide-navigation > * {
  height: 100%;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.object-list .slide-navigation > :hover {
  cursor: pointer;
}
.object-list .slide-navigation .swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}
.object-list .prev {
  background: url(/assets/css/../images/svg/slide-left.svg) no-repeat center center, #f3f3f5;
  margin-right: 8px;
}
.object-list .prev:hover {
  background: url(/assets/css/../images/svg/slide-left.svg) no-repeat center center, #b6e4fb;
}
.object-list .next {
  background: url(/assets/css/../images/svg/slide-right.svg) no-repeat center center, #f3f3f5;
}
.object-list .next:hover {
  background: url(/assets/css/../images/svg/slide-right.svg) no-repeat center center, #b6e4fb;
}
@media (max-width: 1228px) {
  .object-list-title {
    font-size: 46px;
  }
  .object-list-subtitle {
    margin-top: 8px;
  }
  .object-list-info {
    width: 320px;
    padding-right: 50px;
  }
  .object-list-slide {
    width: calc(100% - 320px);
  }
  .object-list-item img {
    height: 160px;
  }
}
@media (max-width: 899px) {
  .object-list {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .object-list-info {
    width: 100%;
    padding-right: 0;
  }
  .object-list-slide {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 24px;
  }
  .object-list .slide-navigation {
    display: none;
  }
  .object-list .swiper-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .object-list-item {
    height: auto;
  }
  .object-list-item img {
    height: 175px;
    width: 100%;
    -webkit-transform: none !important;
    transform: none !important;
  }
  .object-list-item span {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
    position: relative;
    margin-top: 16px;
    display: block;
    text-align: center;
  }
}
@media (max-width: 599px) {
  .object-list-slide {
    width: calc(100% + 180px);
    margin-left: -90px;
    margin-right: -90px;
    margin-top: 24px;
  }
  .object-list-info {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .object-list-title {
    font-size: 26px;
  }
}
.rulon-colors p {
  line-height: 1.45;
}
.rulon-colors-title {
  margin-bottom: 40px;
}
.rulon-colors-title .h2 {
  margin-bottom: 0;
}
.rulon-colors .ral {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(8, 1fr);
  max-width: 1372px;
}
.rulon-colors .ral-rulon-mobile {
  display: none;
}
.rulon-colors .ral div {
  position: relative;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}
.rulon-colors .ral div > span {
  opacity: 0;
  visibility: hidden;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  font-size: 12px;
  position: absolute;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px;
  background: inherit;
  line-height: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
  cursor: default;
}
.rulon-colors .ral div > span span {
  color: #fff;
  display: block;
  margin-top: 8px;
  font-size: 16px;
}
.rulon-colors .ral div.dark > span {
  color: rgba(0, 0, 0, 0.5);
}
.rulon-colors .ral div.dark > span span {
  color: #000;
}
.rulon-colors .ral div:hover {
  z-index: 2;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  border-radius: 8px;
}
.rulon-colors .ral div:hover span {
  opacity: 1;
  visibility: visible;
}
.rulon-colors .ral div:nth-child(12) ~ div {
  aspect-ratio: 2/1;
}
.rulon-colors .ral div:nth-child(12) ~ div > span {
  padding: 8px;
}
.rulon-colors .ral div:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 4;
}
.rulon-colors .ral div:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1 / span 4;
}
.rulon-colors .ral div:nth-child(3) {
  grid-column: 1 / span 2;
  grid-row: 5 / span 4;
}
.rulon-colors .ral div:nth-child(4) {
  grid-column: 3 / span 2;
  grid-row: 5 / span 4;
}
.rulon-colors .ral div:nth-child(5) {
  grid-column: 5 / span 1;
  grid-row: 1 / span 2;
}
.rulon-colors .ral div:nth-child(6) {
  grid-column: 6 / span 1;
  grid-row: 1 / span 2;
}
.rulon-colors .ral div:nth-child(7) {
  grid-column: 7 / span 1;
  grid-row: 1 / span 2;
}
.rulon-colors .ral div:nth-child(8) {
  grid-column: 5 / span 1;
  grid-row: 3 / span 2;
}
.rulon-colors .ral div:nth-child(9) {
  grid-column: 6 / span 1;
  grid-row: 3 / span 2;
}
.rulon-colors .ral div:nth-child(10) {
  grid-column: 7 / span 1;
  grid-row: 3 / span 2;
}
.rulon-colors .ral div:nth-child(11) {
  grid-column: 5 / span 1;
  grid-row: 5 / span 2;
}
.rulon-colors .ral div:nth-child(12) {
  grid-column: 5 / span 1;
  grid-row: 7 / span 2;
}
@media (max-width: 1070px) {
  .rulon-colors .col-6 {
    width: 100%;
  }
  .rulon-colors .col-6 + .col-6 {
    margin-top: 20px;
  }
  .rulon-colors .ral {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
  .rulon-colors .ral div {
    aspect-ratio: 1/1 !important;
  }
  .rulon-colors .ral div:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
  .rulon-colors .ral div:nth-child(2) {
    grid-column: 3 / span 2;
    grid-row: 1 / span 2;
  }
  .rulon-colors .ral div:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: 3 / span 2;
  }
  .rulon-colors .ral div:nth-child(4) {
    grid-column: 3 / span 2;
    grid-row: 3 / span 2;
  }
  .rulon-colors .ral div:nth-child(4) ~ div {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 899px) {
  .rulon-colors .ral-rulon {
    display: none;
  }
  .rulon-colors .ral-rulon-mobile {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .rulon-colors .ral div {
    -webkit-transform: none !important;
    transform: none !important;
    border-radius: 0 !important;
  }
  .rulon-colors .ral div > span {
    opacity: 0 !important;
    visibility: hidden !important;
    cursor: pointer;
    padding: 16px !important;
  }
  .rulon-colors .ral div > span span {
    font-size: 14px;
  }
  .rulon-colors .ral div.active > span {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .rulon-colors .ral div:hover {
    cursor: pointer;
  }
  .rulon-colors .ral > div:nth-child(1),
  .rulon-colors .ral > div:nth-child(2),
  .rulon-colors .ral > div:nth-child(3),
  .rulon-colors .ral > div:nth-child(4) {
    width: 50%;
  }
  .rulon-colors .ral .ral-row {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    aspect-ratio: auto !important;
  }
  .rulon-colors .ral .ral-row div {
    width: 25%;
    height: 90px;
    transition: all 0.3s ease;
  }
  .rulon-colors .ral .ral-row div > span {
    position: relative;
    white-space: nowrap;
    pointer-events: none;
  }
  .rulon-colors .ral .ral-row.row-active div {
    width: 15%;
  }
  .rulon-colors .ral .ral-row.row-active div.active {
    width: 55%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.pn-images {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
@media (max-width: 899px) {
  .pn-images {
    margin-bottom: 64px;
  }
}
.pn-images .pn-info {
  line-height: 1.45;
  margin-bottom: 24px;
  padding-right: 250px;
}
.pn-images .pn-info span {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.pn-images img {
  border-radius: 8px;
  display: block;
  margin-right: -200px;
  max-width: calc(100% + 200px);
  width: calc(100% + 200px);
}
.pn-images > div {
  width: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.pn-images > div + div {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.pn-images > div + div .pn-info {
  margin-bottom: 24px;
  margin-top: 24px;
  padding-left: 250px;
  padding-right: 0;
}
.pn-images > div + div img {
  margin-left: -200px;
  margin-right: 0;
}
@media (max-width: 1100px) {
  .pn-images > div {
    width: 100%;
  }
  .pn-images > div + div {
    margin-top: 40px;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .pn-images > div img {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .pn-images > div .pn-info {
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
}
@media (max-width: 599px) {
  .mbr-title-center {
    text-align: center;
  }
  .mbr-title-center .h2 {
    font-size: 20px;
  }
}
.f-e {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.f-e > div {
  width: 25%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
}
@media (max-width: 1473px) {
  .f-e > div {
    width: 33.3333%;
  }
}
@media (max-width: 1228px) {
  .f-e > div {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .f-e > div {
    width: 100%;
  }
}
.f-e img {
  margin-bottom: 24px;
}
.f-e-info {
  line-height: 1.45;
}
.f-e-info span {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}
.objects-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 40px 30px;
}
@media (max-width: 1228px) {
  .objects-row {
    grid-template-rows: repeat(3, 170px);
    gap: 30px 20px;
  }
}
.objects-row > div {
  width: auto;
}
.objects-row > div:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.objects-row > div:nth-child(2) {
  grid-column: 3 / span 1;
  grid-row: 1 / span 1;
}
.objects-row > div:nth-child(3) {
  grid-column: 4 / span 1;
  grid-row: 1 / span 1;
}
.objects-row > div:nth-child(4) {
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
}
.objects-row > div:nth-child(5) {
  grid-column: 1 / span 1;
  grid-row: 3 / span 1;
}
.objects-row > div:nth-child(6) {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}
.objects-row > div:nth-child(7) {
  grid-column: 3 / span 1;
  grid-row: 3 / span 1;
}
.objects-row > div:nth-child(8) {
  grid-column: 4 / span 1;
  grid-row: 2 / span 2;
}
.objects-row .object-item {
  height: 100%;
  width: 100%;
}
.objects-row .object-item img {
  width: 100%;
  border-radius: 8px;
  height: calc(100% - 32px);
  -o-object-fit: cover;
  object-fit: cover;
}
.objects-row .object-item span {
  width: 100%;
  display: block;
  font-weight: 700;
  margin-top: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
}
.objects-row .object-item:hover {
  color: #00b2e3;
}
@media (max-width: 899px) {
  .objects-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  .objects-row > div {
    width: calc(50% - 15px);
  }
  .objects-row > div .object-item {
    height: auto;
  }
  .objects-row > div .object-item img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .objects-row > div .object-item span {
    white-space: inherit;
    overflow: visible;
  }
  .objects-row > div:nth-child(1),
  .objects-row > div:nth-child(4),
  .objects-row > div:nth-child(5),
  .objects-row > div:nth-child(8) {
    width: 100%;
  }
}
.loader {
  font-weight: 700;
  text-align: center;
  margin: 64px auto 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
}
.loader img {
  display: block;
  border-radius: 50%;
  margin-bottom: 24px;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.object-short-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
}
.object-short-info .h2 {
  margin-right: auto;
  margin-bottom: 0;
}
.object-short-info-item {
  margin-left: 32px;
}
.object-short-info-item:last-child {
  width: 15em;
}
.object-short-info-item span {
  opacity: 0.5;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 899px) {
  .object-short-info {
    margin-bottom: 32px;
  }
  .object-short-info .h2 {
    margin-bottom: 24px;
    width: 100%;
  }
  .object-short-info-item {
    margin-left: 0;
  }
  .object-short-info-item + .object-short-info-item {
    margin-left: 32px;
  }
}
.object-main {
  margin-bottom: 100px;
}
@media (max-width: 1228px) {
  .object-main {
    margin-bottom: 64px;
  }
}
@media (max-width: 599px) {
  .object-main {
    margin-bottom: 48px;
  }
}
.object-gallery {
  border-radius: 8px;
  overflow: hidden;
}
.object-gallery img {
  width: 100%;
  height: 640px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 1228px) {
  .object-gallery img {
    height: 480px;
  }
}
.object-gallery .f-thumbs__slide {
  border-radius: 8px;
}
@media (max-width: 599px) {
  .object-gallery {
    border-radius: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
  .object-gallery img {
    height: 280px;
    border-radius: 0;
  }
  .object-gallery .f-carousel__nav {
    display: none;
  }
}
.f-carousel__thumbs {
  --f-thumb-border-radius: 8px;
  --f-thumb-width: 240px;
  --f-thumb-height: 130px;
}
.f-carousel__thumbs.is-modern {
  --f-thumb-clip-width: 120px;
}
@media (max-width: 599px) {
  .f-carousel__thumbs {
    --f-thumb-border-radius: 8px;
    --f-thumb-width: 120px;
    --f-thumb-height: 65px;
  }
  .f-carousel__thumbs.is-modern {
    --f-thumb-clip-width: 40px;
    --f-thumb-extra-gap: 12px;
  }
}
.object-materials {
  margin-bottom: 60px;
}
@media (max-width: 1228px) {
  .object-materials {
    margin-bottom: 24px;
  }
}
.object-materials .title {
  font-size: 87px;
  margin-bottom: 24px;
}
.object-materials .subtitle {
  margin-bottom: 64px;
}
@media (max-width: 599px) {
  .object-materials .title {
    font-size: 56px;
    margin-bottom: 16px;
  }
  .object-materials .subtitle {
    margin-bottom: 0;
  }
}
.mat-items > div {
  margin-bottom: 40px;
}
.mat-items .mat-item-title {
  color: #00b2e3;
}
.mat-items .mat-item-quant {
  margin-bottom: 16px;
  font-weight: 700;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.mat-items .mat-item-image {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  position: relative;
  margin-bottom: 16px;
}
.mat-items .mat-item-image::after {
  content: '';
  position: absolute;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background-color: #f3f3f5;
  transition: all 0.3s ease;
}
.mat-items .mat-item-image img {
  display: block;
  position: relative;
  z-index: 2;
}
.mat-items .mat-item:hover .mat-item-quant {
  opacity: 1;
}
.mat-items .mat-item:hover .mat-item-image::after {
  background-color: #b6e4fb;
}
@media (max-width: 899px) {
  .mat-items > div {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .mat-items > div {
    width: 100%;
  }
  .mat-items .man-item-quant {
    opacity: 1;
  }
}
.hero--pro {
  height: 639px;
  padding-top: 195px;
  color: #fff;
}
.hero--pro-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero--pro > .container {
  position: relative;
  z-index: 2;
}
.hero--pro .hero-title {
  font-size: 57px;
  font-weight: 700;
  line-height: 1;
  max-width: 900px;
}
@media (max-width: 899px) {
  .hero--pro {
    height: 100vh;
    min-height: 600px;
    padding-top: 130px;
  }
  .hero--pro > .container {
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 32px;
  }
  .hero--pro .hero-title {
    font-size: 40px;
    margin-top: auto;
  }
}
@media (max-width: 599px) {
  .hero--pro .hero-title {
    font-size: 28px;
  }
}
@media (max-width: 1228px) {
  .pro-pre > div {
    width: 100%;
    margin-left: 0;
  }
}
.pro-form {
  padding: 67px 117px 67px 50%;
  background: #b6e4fb;
  display: block;
  margin-bottom: 0 !important;
}
.pro-form-image {
  position: absolute;
  left: 30px;
  width: calc(50% - 45px);
  bottom: 0;
  mix-blend-mode: darken;
}
.pro-form::after {
  left: auto;
  right: -150px;
}
.pro-form .panel-form-title {
  color: #00b2e3;
  margin-bottom: 32px;
}
.pro-form-controls {
  margin-bottom: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pro-form-controls > div {
  width: calc(50% - 15px);
}
.pro-form-controls > div + div {
  margin-left: 30px;
}
.pro-form-controls .form-control {
  border-radius: 2px;
}
.pro-form-thx {
  display: none;
  position: static;
}
.pro-form-thx::before {
  content: '';
  position: absolute;
  right: 35px;
  top: 35px;
  height: 79px;
  width: 79px;
  background: url(/assets/css/../images/pro-form-check.png) no-repeat center center;
}
@media (max-width: 1228px) {
  .pro-form {
    padding: 32px 32px 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .pro-form-image {
    position: static;
    width: 100% !important;
    mix-blend-mode: darken;
    -webkit-order: 8 !important;
    -ms-flex-order: 8 !important;
    order: 8 !important;
    margin: 0 !important;
  }
  .pro-form::after {
    left: auto;
    right: -220px;
    -webkit-transform: skew(30deg, 0);
    transform: skew(30deg, 0);
    height: 500px;
  }
  .pro-form-thx {
    position: relative;
    padding-top: 95px;
  }
  .pro-form-thx::before {
    right: auto;
    left: 0;
    top: 0;
  }
}
@media (max-width: 899px) {
  .pro-form .panel-form-title {
    font-size: 30px !important;
  }
  .pro-form-thx .panel-form-title {
    font-size: 26px !important;
    margin-bottom: 16px;
  }
}
@media (max-width: 599px) {
  .pro-form-controls {
    width: 100%;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pro-form-controls > div {
    width: 100%;
  }
  .pro-form-controls > div + div {
    margin-left: 0;
    margin-top: 16px;
  }
  .pro-form::after {
    left: auto;
    right: -320px;
    -webkit-transform: skew(30deg, 0);
    transform: skew(30deg, 0);
    height: 500px;
  }
}
.pro-form-content {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.big-blue-m {
  margin-bottom: 100px;
  font-size: 24px;
  font-weight: 700;
  color: #00b2e3;
  line-height: 1.2;
}
@media (max-width: 899px) {
  .big-blue-m {
    margin-bottom: 64px;
  }
}
.m-steps--2 > div {
  width: 20%;
}
@media (max-width: 1228px) {
  .m-steps > div {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .m-steps > div {
    width: 100%;
  }
  .m-steps > div + div {
    margin-top: 32px;
  }
  .m-steps .features-item-title {
    margin-bottom: 0;
  }
  .m-steps .features-item {
    position: relative;
    padding-left: 95px;
  }
  .m-steps .features-item-icon {
    height: auto;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .m-steps .features-item-icon .text-outline {
    height: auto;
    font-size: 46px;
  }
}
@media (max-width: 899px) {
  .pro-h2-m-center {
    text-align: center;
  }
}
.table-block-title--simple {
  pointer-events: none !important;
}
@media (max-width: 1228px) {
  .shipping-row > * {
    width: 100%;
    margin-left: 0;
  }
}
.tabs {
  margin-bottom: 44px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tabs > li {
  margin-right: 20px;
  margin-bottom: 20px;
}
.tabs > li a {
  border: 2px solid #f3f3f5;
  border-radius: 8px;
  padding: 12px 26px;
  display: block;
  line-height: 1;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}
.tabs > li a:hover {
  color: #000;
  border-color: #b6e4fb;
  cursor: pointer;
}
.tabs > li.active a {
  color: #000;
  border-color: #b6e4fb;
  background: #b6e4fb;
  cursor: default;
}
.delivery-subtitle {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
}
.tab-pane .table-block-content table {
  margin-top: 0 !important;
}
.pro-2 {
  display: block;
  margin-bottom: 100px;
  width: 1725px;
  max-width: 1725px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1725px) {
  .pro-2 {
    max-width: 1400px;
    width: 1400px;
  }
}
@media (max-width: 900px) {
  .pro-2 {
    margin-left: -400px;
  }
}
.pro-2-numbers {
  margin-bottom: 64px;
}
.pro-2-numbers-text {
  line-height: 1.45;
  font-weight: 700;
  max-width: 340px;
}
.pro-2-numbers .text-outline {
  font-size: 87px;
  margin-bottom: 24px;
}
@media (max-width: 599px) {
  .pro-2-numbers .text-outline {
    font-size: 65px;
  }
}
.pro-2-numbers .text-outline span {
  font-size: 30px;
  letter-spacing: 0.05em;
}
.s-mat {
  margin-bottom: 90px;
}
.s-mat .h2 {
  margin-bottom: 30px;
}
@media (max-width: 899px) {
  .s-mat {
    margin-bottom: 64px;
  }
}
.s-mat .partners {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.s-mat .partners .partner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px;
}
.s-mat .partners .partner img {
  display: block;
  margin: 76px auto;
  height: 87px;
}
.s-mat .partners .partner span {
  text-align: center;
  line-height: 1.45;
}
@media (max-width: 899px) {
  .s-mat .partners {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .s-mat .partners .partner img {
    margin: 24px auto;
  }
}
.pro-process__section {
  overflow: hidden;
}
.pro-process {
  margin-bottom: -30px;
  position: relative;
  background: url(/assets/css/../images/svg/pro-bg.svg) no-repeat top 270px center, url(/assets/css/../images/svg/pro-bg.svg) no-repeat bottom 220px center;
  margin-left: -50px;
  padding-left: 50px;
  margin-right: -50px;
  padding-right: 50px;
}
.pro-process .process-item {
  margin-bottom: 30px;
}
.pro-process .process-item--1 {
  width: 50%;
  white-space: nowrap;
}
.pro-process .process-item--1 .process-item-step {
  position: absolute;
  left: calc(100% + 30px);
  top: 0;
}
.pro-process .process-item--2 {
  width: 25%;
  margin-top: 150px;
  white-space: nowrap;
}
.pro-process .process-item--2 .process-item-step {
  position: absolute;
  left: calc(100% + 30px);
  top: 0;
}
.pro-process .process-item--3 {
  width: 50%;
}
.pro-process .process-item--3 .process-item-step {
  position: absolute;
  left: calc(50% + 30px);
  bottom: calc(100% + 30px);
}
.pro-process .process-item--4 {
  width: 25%;
}
.pro-process .process-item--4 .process-item-step {
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  margin-bottom: 30px;
  margin-top: auto;
}
.pro-process .process-item--5 {
  width: 25%;
}
.pro-process .process-item--5 .process-item-step {
  margin-top: 30px;
  margin-left: auto;
}
.pro-process .process-item--6 {
  width: 50%;
  white-space: nowrap;
}
.pro-process .process-item--6 .process-item-step {
  position: absolute;
  left: calc(100% + 30px);
  top: 30px;
}
.pro-process .process-item--7 {
  width: 25%;
  margin-left: 25%;
  white-space: nowrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 899px) {
  .pro-process .process-item--7 {
    white-space: normal;
  }
}
.pro-process .process-item--7 .process-item-image {
  margin-top: auto;
}
.pro-process .process-item--7 .process-item-step {
  position: absolute;
  right: calc(100% + 30px);
  bottom: 60px;
}
.pro-process .process-item--8 {
  width: 25%;
  margin-left: 25%;
  white-space: nowrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.pro-process .process-item--8 .process-item-step {
  position: absolute;
  right: calc(100% + 30px);
  top: 60px;
}
.pro-process .process-item--9 {
  width: 25%;
  white-space: nowrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.pro-process .process-item--9 .process-item-step {
  margin-top: 30px;
}
.pro-process .process-item--10 {
  width: 25%;
  white-space: nowrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.pro-process .process-item--10 .process-item-step {
  margin-top: 30px;
  margin-left: auto;
}
.pro-process .process-item-content {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
}
.pro-process .process-item-image {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.pro-process .process-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pro-process .process-item-image:hover {
  opacity: 0.85;
}
.pro-process .process-item .text-outline {
  font-size: 87px;
}
.pro-process .process-item-step-title {
  font-weight: 700;
  margin-top: 16px;
}
@media (max-width: 1228px) {
  .pro-process .process-item {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .pro-process .process-item-content {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .pro-process .process-item .process-item-image {
    width: calc(50% - 15px);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .pro-process .process-item .process-item-step {
    position: static;
    margin-left: 30px;
    margin-top: 0;
  }
  .pro-process .process-item--10 .process-item-step,
  .pro-process .process-item--2 .process-item-step,
  .pro-process .process-item--4 .process-item-step,
  .pro-process .process-item--6 .process-item-step,
  .pro-process .process-item--8 .process-item-step {
    margin-left: auto;
    margin-right: 30px;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    margin-top: auto;
  }
  .pro-process .process-item--2 .process-item-image {
    width: calc(60% - 15px);
    margin-right: -10%;
    margin-top: -20%;
  }
  .pro-process .process-item--3 {
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .pro-process .process-item--3 .process-item-image {
    width: calc(75% - 15px);
    margin-left: -25%;
  }
  .pro-process .process-item--4 .process-item-image {
    margin-top: -30%;
  }
  .pro-process .process-item--6 .process-item-image {
    margin-top: -20%;
    width: calc(60% - 15px);
    margin-right: -10%;
  }
  .pro-process .process-item--8 .process-item-image {
    margin-top: -20%;
  }
  .pro-process .process-item--9 .process-item-image {
    width: calc(75% - 15px);
    margin-left: -25%;
  }
  .pro-process .process-item--10 .process-item-image {
    margin-top: -20%;
  }
}
@media (max-width: 899px) {
  .pro-process .process-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 599px) {
  .pro-process .process-item .text-outline {
    font-size: 52px !important;
  }
  .pro-process .process-item .process-item-step-title {
    margin-top: 8px;
    font-size: 14px;
  }
  .pro-process .process-item--1 .process-item-image {
    width: 70%;
  }
  .pro-process .process-item--1 .process-item-step {
    white-space: initial;
  }
  .pro-process .process-item--2 .process-item-image {
    margin-top: 0;
  }
  .pro-process .process-item--2 .process-item-step {
    white-space: initial;
  }
  .pro-process .process-item--4 .process-item-image {
    margin-top: -20%;
    width: calc(60% - 15px);
    margin-right: -10%;
  }
  .pro-process .process-item--4 .process-item-step {
    margin-bottom: 0;
  }
  .pro-process .process-item--6 .process-item-step {
    white-space: initial;
  }
  .pro-process .process-item--6 .process-item-image {
    margin-top: 0;
    width: calc(90% - 15px);
    margin-right: -30%;
  }
  .pro-process .process-item--7 .process-item-image {
    width: calc(75% - 15px);
    margin-left: -25%;
  }
  .pro-process .process-item--8 .process-item-image {
    margin-top: -20%;
    width: calc(60% - 15px);
    margin-right: -10%;
  }
  .pro-process .process-item--8 .process-item-step {
    margin-bottom: 0;
  }
  .pro-process .process-item--10 .process-item-content {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .pro-process .process-item--10 .process-item-image {
    margin-top: 0;
    width: 100%;
    margin-right: 0;
  }
  .pro-process .process-item--10 .process-item-step {
    margin-bottom: 0;
    margin-top: 30px;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0;
  }
  .pro-process .process-item--10 .process-item-step > * {
    margin-top: 0;
    margin-bottom: 0;
  }
  .pro-process .process-item--10 .process-item-step > * + * {
    margin-left: 15px;
  }
}
.text a:not([class]) {
  color: #00b2e3;
  border-bottom: 1px solid transparent;
}
.text a:not([class]):active,
.text a:not([class]):hover {
  color: #00b2e3;
  border-color: inherit;
}
.about-slide .swiper-container {
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
}
.about-slide .swiper-slide {
  padding-top: 195px;
  padding-bottom: 80px;
}
.about-slide-actions {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 30px;
  z-index: 2;
}
.about-slide-actions .container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
@media (max-width: 599px) {
  .about-slide-actions .container {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about-slide-actions .container .next,
  .about-slide-actions .container .prev {
    display: none;
  }
}
.about-slide-actions .next,
.about-slide-actions .prev {
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-slide-actions .next:hover,
.about-slide-actions .prev:hover {
  background: #fff;
  color: #00b2e3;
}
.about-slide-actions .slide-pagination {
  margin: 0 25px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-slide-actions .slide-pagination > * + * {
  margin-left: 25px;
}
.about-slide-actions .slide-pagination .swiper-pagination-bullet {
  transition: all 0.3s ease;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.about-slide-actions .slide-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}
.reviews {
  margin-bottom: 100px;
}
@media (max-width: 899px) {
  .reviews {
    margin-bottom: 64px;
  }
}
.letters {
  margin-bottom: 100px;
}
@media (max-width: 899px) {
  .letters {
    margin-bottom: 64px;
  }
}
.docs__container {
  overflow: hidden;
}
.docs-title {
  display: block;
  width: 100%;
  margin-bottom: -75px;
}
@media (max-width: 899px) {
  .docs-title {
    margin-bottom: -15px;
  }
}
.docs .swiper-slide {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 120px;
}
.docs .swiper-slide-active a {
  -webkit-transform: scale(1.75);
  transform: scale(1.75);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.docs a {
  display: block;
  width: 100%;
  width: 205px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.docs a img {
  display: block;
  width: 100%;
}
.docs .slide-navigation {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: calc(50% - 20px);
  z-index: 2;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}
.docs .slide-navigation > * + * {
  margin-left: 460px;
}
.docs .slide-navigation .next,
.docs .slide-navigation .prev {
  color: #00b2e3;
  background: #b6e4fb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: initial;
}
.docs .slide-navigation .next:hover,
.docs .slide-navigation .prev:hover {
  background: #00b2e3;
  color: #fff;
}
@media (max-width: 1228px) {
  .docs .swiper-slide {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .docs .swiper-slide-active a {
    -webkit-transform: scale(1.45);
    transform: scale(1.45);
  }
}
@media (max-width: 899px) {
  .docs .swiper-slide {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .docs .swiper-slide-active a {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .docs .swiper-container {
    margin-left: -320px;
    margin-right: -320px;
  }
}
@media (max-width: 599px) {
  .docs .slide-navigation {
    display: none;
  }
  .docs .swiper-container {
    margin-left: -200px;
    margin-right: -200px;
  }
}
.letters .swiper-slide {
  padding-top: 30px;
  width: 321px;
}
.letters .swiper-slide-active a {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.letters a {
  display: block;
  width: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.letters a:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.letters a img {
  display: block;
  width: 100%;
}
@media (max-width: 899px) {
  .letters .h2 {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .letters .swiper-slide {
    width: 260px;
  }
}
.reviews {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.review-text {
  line-height: 1.45;
}
.review-text p:not(:first-child) {
  margin-top: 24px;
}
.review-text .big-blue {
  color: #00b2e3;
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px !important;
  line-height: 1.2;
}
.review-text .big-blue + p {
  margin-top: 32px;
}
.review-title-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #f3f3f5;
  width: 100%;
  transition: all 0.2s ease;
}
.review-title-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.review-title-item-info {
  font-weight: 700;
}
.review-title-item-info span {
  display: block;
  font-weight: 400;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.5);
}
.swiper-slide-active .review-title-item {
  border-color: #b6e4fb;
  background: #b6e4fb;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.reviews-titles {
  max-width: 468px;
  height: 540px;
  position: relative;
}
.reviews-titles .swiper-container {
  height: 100%;
}
.reviews-titles .swiper-slide {
  padding-right: 30px;
}
.reviews-titles .next {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  height: 208px;
  background: linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
  cursor: pointer;
}
.reviews-titles .prev {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  height: 208px;
  background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0) 100%);
  cursor: pointer;
}
@media (max-width: 899px) {
  .reviews .col-6 {
    width: 100%;
  }
  .reviews .col-6 .h2 {
    text-align: center;
  }
  .reviews-titles .next,
  .reviews-titles .prev {
    display: none;
  }
  .reviews-titles .swiper-slide {
    padding-right: 0;
    width: 280px;
  }
  .review-title-item {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    height: 100%;
  }
  .review-title-item img {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .swiper-slide-active .review-title-item {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .reviews-titles .swiper-container {
    height: auto;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .reviews-titles {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }
}
.pcalc {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 899px) {
  .pcalc {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.pcalc-calc {
  width: 360px;
  margin-left: 100px;
}
@media (max-width: 899px) {
  .pcalc-calc {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.pcalc-calc .form-group {
  margin-bottom: 8px;
}
.pcalc-image {
  width: calc(100% - 460px);
}
@media (max-width: 899px) {
  .pcalc-image {
    width: 100%;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
.pcalc-image img {
  display: block;
  width: calc(100% + 210px);
  max-width: calc(100% + 210px);
  margin-left: -210px;
}
.pcalc .panel-form-calc {
  margin-left: 0;
  margin-top: 16px;
}
.pcalc .panel-form-calc svg {
  opacity: 1;
  color: #00b2e3;
}
.pcalc .panel-form-calc:hover {
  color: #00b2e3;
}
.color-picker {
  position: relative;
  z-index: 4;
  width: 100%;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  max-width: 360px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.color-picker:hover {
  border-color: #b6e4fb;
}
.color-picker.active .color-picker-value::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.color-picker-value {
  height: 48px;
  padding: 0 36px 0 12px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.color-picker-value::after {
  content: '';
  position: absolute;
  height: 24px;
  width: 24px;
  top: calc(50% - 12px);
  right: 12px;
  background: url(/assets/css/../images/svg/table-arrow.svg) no-repeat center center;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.color-picker-value-color {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.color-picker-value-text {
  margin-left: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}
.color-picker-content {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  top: calc(100% + 8px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  left: 0;
  width: 100%;
}
.color-picker.active .color-picker-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.3s ease;
}
.color-picker-colors {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.color-picker-colors div {
  position: relative;
  transition: all 0.3s ease;
  width: 20%;
  aspect-ratio: 1/1;
}
.color-picker-colors div > span {
  opacity: 0;
  visibility: hidden;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  font-size: 12px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.1s linear;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 10px;
  background: inherit;
  line-height: 1;
  -webkit-transform-origin: center;
  transform-origin: center;
  cursor: pointer;
  border-radius: 8px;
}
.color-picker-colors div > span span {
  color: #fff;
  display: block;
  margin-top: 8px;
  font-size: 16px;
  display: none;
}
.color-picker-colors div.dark > span {
  color: rgba(0, 0, 0, 0.5);
}
.color-picker-colors div.dark > span span {
  color: #000;
}
.color-picker-colors div:hover {
  z-index: 2;
}
.color-picker-colors div:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.main-calc-row {
  margin-top: 84px;
}
@media (max-width: 899px) {
  .main-calc-row {
    margin-top: 48px;
  }
}
.main-calc-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 400px;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  margin-left: auto;
}
.main-calc-info .info {
  max-width: calc(100% - 132px);
}
.main-calc-info .info div {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
.main-calc-info .info div span {
  color: #000;
  font-size: 16px;
  display: block;
  margin-top: 8px;
}
.main-calc-info .info div + div {
  margin-top: 32px;
}
.radio-image {
  position: relative;
  display: block;
  line-height: 1.2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  cursor: pointer;
}
.radio-image img {
  display: block;
  margin-bottom: 98px;
  border-radius: 6px;
}
.radio-image input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.radio-image > span {
  border: 2px solid #f3f3f5;
  padding: 24px;
  display: block;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.radio-image > span::after {
  content: '';
  width: 38px;
  height: 38px;
  background: url(/assets/css/../images/svg/check-black.svg) no-repeat center center;
  position: absolute;
  right: 24px;
  top: 24px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.2s ease;
}
.radio-image > span span {
  font-weight: 700;
  opacity: 0.5;
  transition: all 0.2s ease;
}
.radio-image:hover > span {
  border-color: #ffeeb1;
}
.radio-image:hover > span span {
  opacity: 1;
}
.radio-image input:checked + span {
  cursor: default;
  /* background-color: #ffece6;
    border-color: #ffece6; */
  background-color: #ffd3c5;
  border-color: #ffd3c5;
}
.radio-image input:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.radio-image input:checked + span span {
  opacity: 1;
}
.radio-image--wall > span {
  border: 2px solid #ffece6;
}
.radio-image--wall:hover > span {
  border-color: #fa5f1c;
}
.radio-image--wall input:checked + span {
  /* background-color: #ffece6;
    border-color: #ffece6; */
  background-color: #ffd3c5;
  border-color: #ffd3c5;
}
.radio-image--pir > span,
.radio-image--roof > span {
  border: 2px solid #f3f3f5;
}
.radio-image--pir:hover > span,
.radio-image--roof:hover > span {
  border-color: #000;
}
.radio-image--pir input:checked + span,
.radio-image--roof input:checked + span {
  background-color: #f3f3f5;
  border-color: #f3f3f5;
}
.radio-image--minvata > span {
  border: 2px solid #ffeeb1;
}
.radio-image--minvata:hover > span {
  border-color: #ffb548;
}
.radio-image--minvata input:checked + span {
  background-color: #ffeeb1;
  border-color: #ffeeb1;
}
.radio-image--dop-1 img,
.radio-image--dop-2 img,
.radio-image--dop-3 img {
  mix-blend-mode: darken;
}
.radio-image--dop-1 > span {
  border: 2px solid #b6e4fb;
}
.radio-image--dop-1:hover > span {
  border-color: #00b2e3;
}
.radio-image--dop-1 input:checked + span {
  background-color: #b6e4fb;
  border-color: #b6e4fb;
}
.radio-image--dop-2 > span {
  border: 2px solid #ffeeb1;
}
.radio-image--dop-2:hover > span {
  border-color: #ffb548;
}
.radio-image--dop-2 input:checked + span {
  background-color: #ffeeb1;
  border-color: #ffeeb1;
}
.radio-image--dop-3 > span {
  border: 2px solid #ffece6;
}
.radio-image--dop-3:hover > span {
  border-color: #fa5f1c;
}
.radio-image--dop-3 input:checked + span {
  background-color: #ffece6;
  border-color: #ffece6;
}
.main-calc-section-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}
.main-calc-section + .main-calc-section,
.main-calc-section--form {
  margin-top: 64px;
}
.radio-tabs {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.radio-tab {
  margin-bottom: 17px;
  position: relative;
  display: block;
  line-height: 1.2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 1px;
  cursor: pointer;
}
.radio-tab:not(:last-child) {
  margin-right: 17px;
}
.radio-tab input {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.radio-tab > span {
  padding: 0 25px;
  height: 48px;
  border: 2px solid #f3f3f5;
  transition: all 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  line-height: 44px;
  font-weight: 700;
  display: block;
}
.radio-tab:hover > span {
  border-color: #b6e4fb;
  cursor: pointer;
}
.radio-tab input:checked + span {
  border-color: #00b2e3 !important;
  color: #000;
  cursor: default;
}
.main-calc-section .color-picker-colors div {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #f3f3f5;
  margin-bottom: 17px;
  outline: 2px solid #fff;
  outline-offset: -4px;
  position: relative;
}
.main-calc-section .color-picker-colors div:not(:last-child) {
  margin-right: 17px;
}
.main-calc-section .color-picker-colors div::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(/assets/css/../images/svg/color-check.svg) no-repeat center center;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.3s ease;
}
.main-calc-section .color-picker-colors div.active::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.main-calc-section .color-picker-colors div span {
  display: none;
}
.main-calc-section .color-picker-colors div:hover {
  cursor: pointer;
  border-color: #b6e4fb;
}
.calc-form-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.calc-form-row .calc-form {
  width: calc(100% - 140px);
}
.calc-form-row .calc-quantity {
  width: 140px;
  margin-left: 30px;
  position: relative;
}
.calc-form-row .calc-quantity .calc-quantity-content {
  position: relative;
}
.calc-form-row textarea {
  height: 132px;
}
.calc-form-row .col-6 {
  margin-bottom: 16px;
}
.calc-form-row .btn-wrapper {
  margin-top: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.calc-form-row .btn-wrapper .custom_form_error {
  font-size: 14px;
  color: red;
  margin-bottom: 10px;
}
.calc-form-row .btn {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.calc-form-row .calc-quantity .form-group-title {
  position: absolute;
  left: 0;
  top: 0;
}
.calc-form-row .calc-quantity-content {
  height: calc(100% - 22px);
  margin-top: 22px;
}
.calc-form-row .calc-quantity input {
  height: 100%;
  text-align: center;
  padding: 10px;
}
.calc-form-row .calc-quantity .minus,
.calc-form-row .calc-quantity .plus {
  position: absolute;
  width: 40px;
  height: 40px;
  color: #00b2e3;
  background: #b6e4fb;
  border-radius: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: calc(50% - 20px);
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.calc-form-row .calc-quantity .minus:hover,
.calc-form-row .calc-quantity .plus:hover {
  cursor: pointer;
  color: #fff;
  background: #00b2e3;
}
.calc-form-row .calc-quantity .minus {
  bottom: 30px;
}
.calc-form-row .calc-quantity .plus {
  top: 30px;
}
.main-calc-info .pcalc-image {
  width: 132px;
  margin-left: auto;
}
.main-calc-info .pcalc-image img {
  width: 132px;
  height: auto !important;
  max-height: 1000px;
  margin-left: 0;
}
.main-calc-info .main-calc-section-title {
  display: none;
}
@media (max-width: 1473px) {
  .main-calc-row > .col-6:nth-child(1),
  .main-calc-row > .col-6:nth-child(3) {
    width: 60%;
  }
  .main-calc-row > .col-6:nth-child(2) {
    width: 40%;
  }
}
@media (max-width: 1140px) {
  .main-calc-row > .col-6 {
    width: 100% !important;
  }
  .main-calc-info .main-calc-section-title {
    display: block;
    margin-top: 64px;
    width: 100%;
  }
  .main-calc-info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .main-calc-info {
    margin-left: 0;
  }
}
@media (max-width: 899px) {
  .main-calc-section--dop .col-4 {
    width: 100%;
  }
  .main-calc-section--dop .col-4 + .col-4 {
    margin-top: 15px;
  }
  .main-calc-section--dop .col-4 .radio-image img {
    width: 42px;
    margin-bottom: 0 !important;
    margin-right: 20px;
  }
  .main-calc-section--dop .col-4 .radio-image > span {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 599px) {
  .radio-image img {
    margin-bottom: 50px;
  }
  .radio-image {
    height: 100%;
  }
  .radio-image > span {
    padding: 20px;
    height: 100%;
  }
  .radio-tab:not(:last-child) {
    margin-right: 10px;
  }
  .radio-tab {
    margin-bottom: 10px;
  }
  .radio-tab > span {
    padding: 0 15px;
  }
  .main-calc-section .color-picker-colors div:not(:last-child) {
    margin-right: 8px;
  }
  .main-calc-section .color-picker-colors div {
    margin-bottom: 8px;
  }
  .main-calc-section--form .col-6 {
    width: 100%;
  }
  .main-calc-section--form .calc-quantity {
    width: 100%;
    margin-left: 0;
  }
  .main-calc-section--form .calc-form-row .calc-form {
    width: calc(100% + 30px);
    margin-bottom: 16px;
  }
  .main-calc-section--form .calc-form-row .calc-quantity input {
    height: 48px;
  }
  .main-calc-section--form .calc-form-row .calc-quantity .minus {
    bottom: auto;
    top: calc(50% - 12px);
    left: 15px;
    right: auto;
    width: 24px;
    height: 24px;
  }
  .main-calc-section--form .calc-form-row .calc-quantity .minus svg {
    width: 14px;
  }
  .main-calc-section--form .calc-form-row .calc-quantity .plus {
    bottom: auto;
    top: calc(50% - 12px);
    left: auto;
    right: 15px;
    width: 24px;
    height: 24px;
  }
  .main-calc-section--form .calc-form-row .calc-quantity .plus svg {
    width: 14px;
  }
  .main-calc-info {
    width: 325px;
  }
  .main-calc-info .pcalc-image {
    width: 112px;
  }
  .main-calc-info .pcalc-image img {
    width: 116px;
    margin-left: 0;
  }
}
.tab-content {
  width: 100%;
}
.main-calc-row .pro-form-thx {
  margin-top: 50px;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .main-calc-row .pro-form-thx {
    padding-top: 0;
    margin-top: 0;
  }
}
.main-calc-row .pro-form-thx::before {
  right: 75px;
  top: -30px;
}
@media (max-width: 1473px) {
  .main-calc-row .pro-form-thx::before {
    right: 0;
  }
}
@media (max-width: 599px) {
  .main-calc-row .pro-form-thx::before {
    left: auto;
    width: 52px;
    height: 52px;
    background-size: 52px;
    top: -10px;
  }
}
.main-calc-row .pro-form-thx .panel-form-subtitle {
  opacity: 0.5;
  font-size: 24px;
}
@media (max-width: 599px) {
  .main-calc-row .pro-form-thx .panel-form-subtitle {
    font-size: 16px;
  }
}
.main-calc-section-title.js-show {
  display: none;
}
@media (min-width: 1140px) {
  .main-calc-section-title.js-show {
    display: none !important;
  }
}
.main-calc-row .pro-form-thx {
  margin-top: -50px;
}
@media (max-width: 1140px) {
  .main-calc-row .pro-form-thx {
    margin-bottom: 0 !important;
  }
}
.main-calc-row .pro-form-thx .panel-form-title {
  margin-bottom: 16px;
}
.color-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.color-round {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 10px;
  margin-right: 6px;
}
.f-incorrect {
  border: 1px solid red;
}
.object-materials .title.used_panels {
  font-size: 45px;
}
@media (max-width: 600px) {
  .object-materials .title.used_panels {
    font-size: 26px;
  }
}
@media (max-width: 400px) {
  .object-materials .title.used_panels {
    font-size: 21px;
  }
}
.page-404 {
  text-align: center;
  margin: 120px auto;
  width: 100%;
}
.page-404-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
}
.page-404 .title {
  font-size: 184px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .page-404 .title {
    font-size: 78px;
    margin-bottom: 24px;
  }
}
.mat-item-title-margin {
  display: block;
  margin-top: 52px;
}
.object-list-slide.static-images {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.object-list-slide.static-images .object-list-item-slide {
  width: 33.3%;
  margin-right: 30px;
}
@media (max-width: 899px) {
  .object-list-slide.static-images {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 599px) {
  .object-list-slide.static-images {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .object-list-slide.static-images .object-list-item-slide {
    width: 100%;
    margin: 10px 0;
  }
}
.grey-btn:hover {
  background: #f3f3f5;
}
.message_loader {
  font-weight: 700;
  text-align: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.message_loader img {
  display: block;
  border-radius: 50%;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 32px;
}
.loader-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-e {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.p-e > div {
  width: 50%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px;
}
@media (max-width: 1228px) {
  .p-e > div {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .p-e > div {
    width: 100%;
  }
}
.p-e img {
  margin-bottom: 24px;
}
.p-e img:nth-child(2) {
  margin: 0 auto 39px auto;
  max-height: 100px;
  height: 100px;
}
.p-e-info {
  line-height: 1.45;
}
.p-e-info span {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 18px;
}
button,
input {
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  color: inherit;
  background-color: transparent;
}
button {
  cursor: pointer;
}
*,
:after,
:before {
  box-sizing: border-box;
}
blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
html,
li,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-width: 360px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  scroll-behavior: smooth;
  line-height: 1;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
}
body.lock {
  overflow: hidden;
}
* {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.15s ease;
}
button,
input,
select,
textarea {
  font: inherit;
  line-height: inherit;
}
input[type='text']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type='text']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}
.section {
  margin-bottom: 97px;
}
@media (max-width: 1200px) {
  .section {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .section {
    margin-bottom: 64px;
  }
}
.media-item.is-hover .video-preview::after {
  opacity: 0;
}
.menu-services {
  padding: 24px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
}
.menu-services a {
  height: 40px;
  padding-left: 0;
}
.menu-services.menu-services--first {
  left: 0;
}
.menu-services.menu-services--first::after {
  left: 43px;
}
.menu-services__item {
  position: relative;
}
.menu-services__item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 90%;
  z-index: 2;
  display: block;
  width: 100px;
  height: 250%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
@media (hover: hover) {
  .menu-services__item:hover::after {
    display: block;
  }
  .menu-services__item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.menu-dropdown {
  position: absolute;
  top: -26px;
  left: calc(100% + 20px);
  z-index: 3;
  width: 405px;
  padding: 24px 35px 24px 24px;
  border-radius: 8px;
  background-color: #ededef;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.3s ease-out;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}
.menu-dropdown a {
  height: 38px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}
.menu-dropdown a:nth-child(n) {
  margin-top: 0;
}
.menu-dropdown::after {
  content: '';
  position: absolute;
  top: 38px;
  left: -8px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41421 9.41421C0.633164 8.63316 0.633165 7.36683 1.41421 6.58579L8 -1.07487e-06L14.5858 6.58579C15.3668 7.36684 15.3668 8.63316 14.5858 9.41421L8 16L1.41421 9.41421Z' fill='%23EDEDEF' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mobile-menu-link {
  font-size: 16px;
  line-height: 120%;
}
.mobile-menu__inner-link {
  font-size: 14px;
  line-height: 111%;
  color: #545454;
}
.footer {
  margin-top: 97px;
  padding: 60px 0;
  background: url(/assets/css/../images/footer/new-footer-bg.svg) no-repeat bottom center;
}
@media (max-width: 991px) {
  .footer {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: 64px;
    padding: 38px 0;
    background: url(/assets/css/../images/footer/new-footer-bg-mob.svg) bottom right no-repeat;
    background-size: 100% auto;
  }
}
.footer__main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 104px;
}
@media (max-width: 1200px) {
  .footer__main {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__main {
    margin-bottom: 48px;
  }
}
.footer__links {
  width: 100%;
  max-width: 889px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer__links {
    margin-bottom: 38px;
  }
}
@media (max-width: 767px) {
  .footer__links {
    display: block;
  }
}
.footer__group {
  max-width: 285px;
}
.footer__group:last-child {
  max-width: 136px;
}
@media (max-width: 767px) {
  .footer__group:not(:last-child) {
    max-width: 100%;
    margin-bottom: 38px;
  }
}
.footer__link {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}
.footer__link:not(:last-child) {
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  .footer__link:not(:last-child) {
    margin-bottom: 18px;
  }
}
.footer__sublink {
  display: block;
  font-size: 16px;
  line-height: 100%;
}
.footer__sublink:not(:last-child) {
  margin-bottom: 23px;
}
@media (max-width: 767px) {
  .footer__sublink:not(:last-child) {
    margin-bottom: 18px;
  }
}
.footer__info {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: right;
}
@media (max-width: 767px) {
  .footer__info {
    text-align: left;
  }
}
.footer__phone {
  display: block;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #00b2e3;
}
@media (max-width: 767px) {
  .footer__phone {
    font-size: 22px;
  }
}
.footer__adress,
.footer__email {
  display: block;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  font-style: normal;
}
.footer__adress:not(:last-child),
.footer__email:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .footer__adress,
  .footer__email {
    font-size: 22px;
  }
}
.footer__bottom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .footer__bottom {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer__copyright {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.footer__policy {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease-out;
}
@media (hover: hover) {
  .footer__policy:hover {
    border-color: #000;
  }
}
@media (max-width: 767px) {
  .footer__policy {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-bottom: 33px;
  }
}
.footer__developed {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__developed img {
  display: inline-block;
  width: 150px;
  height: auto;
}
@media (max-width: 767px) {
  .footer__developed {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
}
.main {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.nobjects__block {
  margin-bottom: 97px;
}
@media (max-width: 991px) {
  .nobjects__block {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .nobjects__block {
    margin-bottom: 36px;
  }
}
.nobjects__link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  min-width: 264px;
  margin: 0 auto;
  min-height: 46px;
  padding: 15px 25px;
  border: 1px solid #8e8e93;
  border-radius: 2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.nobjects__link:hover {
  color: #fff;
  border-color: #00b2e3;
  background-color: #00b2e3;
}
@media (max-width: 575px) {
  .nobjects__link {
    width: 100%;
    text-align: center;
  }
}
.nobjects__list {
  margin-bottom: 36px;
}
.nobjects__item {
  position: relative;
  display: grid;
  grid-template-columns: 47.3% 48.8%;
  grid-template-rows: auto 1fr;
  gap: 0 3.9%;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 32px 46px 32px 32px;
  background-color: #f3f3f5;
  border-radius: 8px;
  grid-template-areas: 'media title' 'media descr';
}
.nobjects__item:not(:last-child) {
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .nobjects__item {
    display: block;
    padding: 18px 14px 25px;
  }
}
@media (max-width: 767px) {
  .nobjects__item {
    border-radius: 6px;
  }
  .nobjects__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.nobjects__item_link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media (hover: hover) {
  .nobjects__item_link:hover ~ .nobjects__heading {
    text-shadow: 1px 0 0 transparent, 0 1px 0 transparent, -1px 0 0 transparent, 0 -1px 0 transparent;
    color: #00b2e3;
  }
  .nobjects__item_link:hover ~ .nobjects__heading .nobjects__arrow {
    opacity: 1;
  }
}
.nobjects__media {
  position: relative;
  z-index: 5;
  grid-area: media;
  max-width: 613px;
  overflow: hidden;
  aspect-ratio: 614/388;
}
@media (max-width: 991px) {
  .nobjects__media {
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .nobjects__media {
    max-width: 100%;
  }
}
.nobjects__nav {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nobjects__next,
.nobjects__prev {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 51px;
  height: 51px;
  background-color: #fff;
  pointer-events: all;
  transition: background-color 0.2s ease-out;
}
.nobjects__next::after,
.nobjects__next::before,
.nobjects__prev::after,
.nobjects__prev::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.2s ease-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (hover: hover) {
  .nobjects__next:hover,
  .nobjects__prev:hover {
    background-color: #00b2e3;
  }
  .nobjects__next:hover::before,
  .nobjects__prev:hover::before {
    opacity: 0;
  }
  .nobjects__next:hover::after,
  .nobjects__prev:hover::after {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .nobjects__next,
  .nobjects__prev {
    width: 29px;
    height: 29px;
  }
  .nobjects__next::after,
  .nobjects__next::before,
  .nobjects__prev::after,
  .nobjects__prev::before {
    width: 20px;
    height: 20px;
  }
}
.nobjects__prev {
  border-radius: 0 8px 8px 0;
}
.nobjects__prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 6L9 12L15 18' stroke='%2300B2E3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.nobjects__prev::after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 6L9 12L15 18' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.nobjects__next {
  border-radius: 8px 0 0 8px;
}
.nobjects__next::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%2300B2E3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.nobjects__next::after {
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.nobjects__preview {
  position: relative;
  width: 100%;
  height: 100%;
}
.nobjects__preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  opacity: 0.3;
  background-color: #000;
  transition: opacity 0.2s ease-out;
}
.nobjects__preview picture > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  transition: -webkit-filter 0.2s ease-out;
  transition: filter 0.2s ease-out;
  transition: filter 0.2s ease-out, -webkit-filter 0.2s ease-out;
}
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nobjects__video_play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
}
@media (max-width: 767px) {
  .nobjects__video_play {
    width: 40px;
    height: 40px;
  }
}
.nobjects__video_play img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.nobjects__slider {
  width: 100%;
  height: 100%;
}
.nobjects__slide {
  border-radius: 8px;
  overflow: hidden;
}
.nobjects__descr {
  grid-area: descr;
  max-width: 633px;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .nobjects__descr {
    padding-top: 25px;
  }
}
.nobjects__heading {
  grid-area: title;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 25px;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 52px;
  line-height: 106%;
  letter-spacing: 0.03em;
  color: #f3f3f5;
  text-shadow: 1px 0 0 #000, 0 1px 0 #000, -1px 0 0 #000, 0 -1px 0 #000;
  transition: text-shadow 0.2s ease-out, color 0.2s ease-out;
}
@media (max-width: 991px) {
  .nobjects__heading {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .nobjects__heading {
    font-size: 26px;
    text-shadow: unset;
    color: #00b2e3;
  }
}
/* .nobjects__text {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  } */
.nobjects__arrow {
  position: relative;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 18px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.nobjects__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00b2e3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nobjects__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #00b2e3;
  border-bottom: 2px solid #00b2e3;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 767px) {
  .nobjects__arrow {
    opacity: 1;
  }
}
.nobjects__point {
  display: block;
}
.nobjects__point:not(:last-child) {
  margin-bottom: 16px;
}
.nobjects__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
}
@media (max-width: 991px) {
  .nobjects__name {
    font-size: 16px;
  }
}
.nobjects__value {
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
}
@media (max-width: 991px) {
  .nobjects__value {
    font-size: 16px;
  }
}
.media-item.is-hover .nobjects__preview::after {
  opacity: 0;
}
.media-item.is-hover .nobjects__preview picture > img {
  -webkit-filter: blur(0);
  filter: blur(0);
}
.nobjects__wrapper {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .nobjects__wrapper {
    margin-bottom: 36px;
  }
}
.nobjects__show_more {
  display: none;
}
@media (max-width: 991px) {
  .nobjects__show_more {
    display: block;
    text-align: center;
  }
}
.nobjects__pagination {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 8px;
}
.nobjects__pagination a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 38px;
  border-radius: 4px;
  transition: color 0.2s ease-out, background-color 0.2s ease-out;
  font-size: 26px;
  line-height: 100%;
}
.nobjects__pagination a.is-active {
  width: 40px;
  background-color: #00b2e3;
  color: #fff;
  cursor: default;
}
@media (hover: hover) {
  .nobjects__pagination a:hover {
    background-color: #00b2e3;
    color: #fff;
  }
}
@media (max-width: 1200px) {
  .nobjects__pagination a {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .nobjects__pagination {
    display: none;
  }
}
.nobjects-item__main {
  display: grid;
  grid-template-columns: 57.5% 42.5%;
  grid-template-rows: auto 1fr;
  grid-template-areas: 'sliders title' 'sliders descr';
}
.nobjects-item__main .nobjects-item__descr,
.nobjects-item__main .nobjects-item__title {
  padding-left: 47px;
}
@media (max-width: 991px) {
  .nobjects-item__main {
    display: block;
  }
  .nobjects-item__main .nobjects-item__descr,
  .nobjects-item__main .nobjects-item__title {
    padding-left: 0;
  }
  .nobjects-item__main .nobjects-item__title {
    margin-bottom: 19px;
  }
}
.nobjects-item__sliders {
  grid-area: sliders;
}
@media (max-width: 991px) {
  .nobjects-item__sliders {
    margin-bottom: 31px;
  }
}
.nobjects__slider.nobjects-item__full {
  position: relative;
  overflow: hidden;
  height: auto;
}
.nobjects-item__full-slide {
  position: relative;
  width: 100%;
  max-height: 498px;
  aspect-ratio: 789/498;
  margin-bottom: 17px;
}
.nobjects-item__preview {
  overflow: hidden;
}
.nobjects-item__preview-slide {
  position: relative;
  width: 100px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.nobjects-item__preview-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.nobjects-item__preview-slide.swiper-slide-thumb-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #00b2e3;
  border-radius: 8px;
  z-index: 1;
}
.preview-slide-with-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  display: block;
  z-index: 2;
  background: url(/assets/css/../images/icons/video-play.svg) center/contain no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.nobjects__picture {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nobjects__picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.nobjects-item__title {
  grid-area: title;
}
.nobjects-item__descr {
  grid-area: descr;
}
.nobjects-item__title {
  margin-bottom: 41px;
  font-weight: 700;
  font-size: 57px;
  line-height: 100%;
}
@media (max-width: 991px) {
  .nobjects-item__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .nobjects-item__title {
    font-size: 30px;
  }
}
.nobjects-item__point {
  font-size: 22px;
  line-height: 136%;
}
.nobjects-item__point:not(:last-child) {
  margin-bottom: 12px;
}
.nobjects-item__point--add .nobjects-item__name {
  display: inline-block;
  width: 100%;
}
.nobjects-item__name {
  font-weight: 700;
}
.nobjects-item__review {
  display: grid;
  grid-template-columns: 57.5% 42.5%;
  grid-template-rows: auto 1fr;
  grid-template-areas: 'title media ' 'content media';
}
@media (max-width: 991px) {
  .nobjects-item__review {
    display: block;
  }
  .nobjects-item__review .nobjects-item__title {
    margin-bottom: 19px;
  }
}
.nobjects-item__review .nobjects-item__title {
  margin-bottom: 28px;
}
.nobjects-item__content {
  grid-area: content;
  padding-right: 10%;
}
@media (max-width: 991px) {
  .nobjects-item__content {
    padding-right: 0;
  }
}
.nobjects-item__cite {
  margin-bottom: 21px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #00b2e3;
}
@media (max-width: 767px) {
  .nobjects-item__cite {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
.nobjects-item__author {
  font-size: 16px;
  line-height: 145%;
}
.nobjects-item__media {
  grid-area: media;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 585/369;
}
@media (max-width: 991px) {
  .nobjects-item__media {
    margin-bottom: 25px;
  }
}
.descr__block {
  margin-bottom: 97px;
}
@media (max-width: 991px) {
  .descr__block {
    margin-bottom: 64px;
  }
}
.descr__block h2 {
  margin-bottom: 16px;
}
.descr__block p {
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.descr__block p:not(:last-child) {
  margin-bottom: 24px;
}
.request {
  margin-bottom: 97px;
}
@media (max-width: 991px) {
  .request {
    margin-bottom: 64px;
  }
}
.request__form {
  overflow: hidden;
  padding: 49px 83px;
  background-color: #1db4dd;
  border-radius: 8px;
  color: #fcfcfc;
  background: #1db4dd url(/assets/css/../images/request/request-bg.png) no-repeat;
  background-size: 63% auto;
  background-position: right bottom;
}
@media (max-width: 767px) {
  .request__form {
    padding: 35px 20px 50px;
  }
}
@media (max-width: 575px) {
  .request__form {
    margin: 0 -15px;
    padding: 35px 15px 0;
    background: #1db4dd url(/assets/css/../images/request/request-bg-mob.svg) no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    border-radius: 0;
  }
  .request__form::after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 12.5%;
  }
}
.request__title {
  max-width: 700px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .request__title {
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 116%;
  }
}
.request__subtitle {
  max-width: 700px;
  margin-bottom: 27px;
  font-size: 20px;
  line-height: 116%;
}
.request__input {
  display: block;
  width: 100%;
  max-width: 424px;
  min-height: 44px;
  margin-bottom: 21px;
  padding: 0 10px;
  border-bottom: 2px solid #fcfcfc;
  color: #fcfcfc !important;
  background-color: transparent !important;
  font-size: 17px;
  line-height: 128%;
  letter-spacing: -0.03em;
}
.request__innput:-internal-autofill-selected {
  background-color: transparent;
}
.request__input::-webkit-input-placeholder {
  color: inherit;
}
.request__input::-moz-placeholder {
  color: inherit;
}
.request__input:-ms-input-placeholder {
  color: inherit;
}
.request__input::placeholder {
  color: inherit;
}
@media (max-width: 767px) {
  .request__input {
    border-bottom: 1px solid #fcfcfc;
  }
}
@media (max-width: 575px) {
  .request__input {
    font-size: 18px;
    line-height: 244%;
  }
}
.request__submit {
  margin-top: 36px;
  margin-bottom: 20px;
  border-radius: 2px;
  padding: 15px 25px;
  min-width: 240px;
  min-height: 46px;
  background-color: #fff;
  color: #00b2e3;
  border: 1px solid #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
}
@media (hover: hover) {
  .request__submit:hover {
    border-color: #000;
    color: #000;
  }
}
@media (max-width: 575px) {
  .request__submit {
    width: 100%;
  }
}
.request__policy {
  font-size: 11px;
  line-height: 125%;
  letter-spacing: -0.03em;
}
.request__policy span {
  display: block;
  width: 100%;
  opacity: 0.8;
}
.request__policy a {
  display: block;
  text-decoration: underline;
  transition: opacity 0.2s ease-out;
  opacity: 0.8;
}
.request__policy a:hover {
  opacity: 1;
}
@media (hover: hover) {
  .request__policy a:hover {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .request__policy {
    font-size: 14px;
    line-height: 121%;
  }
  .request__policy span {
    display: inline;
  }
  .request__policy a {
    display: inline;
  }
}
.modal_feedback {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
.modal_feedback.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal_feedback.is-active .modal_feedback__container {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .modal_feedback.is-active .modal_feedback__container {
    -webkit-transform: translate(0, 10%);
    transform: translate(0, 10%);
  }
}
.modal_feedback__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal_feedback__container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  overflow-y: auto;
  width: 90%;
  max-width: 655px;
  height: 90%;
  max-height: 503px;
  padding: 49px 47px 57px 47px;
  -webkit-transform: translate(-50%, -40%);
  transform: translate(-50%, -40%);
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  background-color: #fff;
}
@media (max-width: 991px) {
  .modal_feedback__container {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .modal_feedback__container {
    top: unset;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 360px;
    padding: 36px 15px 57px;
    -webkit-transform: none;
    transform: none;
  }
}
.modal_feedback__title {
  width: 80%;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 40px;
  line-height: 108%;
}
@media (max-width: 1200px) {
  .modal_feedback__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .modal_feedback__title {
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 100%;
  }
}
.modal_feedback__subtitle {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 116%;
}
@media (max-width: 767px) {
  .modal_feedback__subtitle {
    margin-bottom: 31px;
    font-size: 16px;
    line-height: 145%;
  }
}
.modal_feedback__close {
  position: absolute;
  top: 57px;
  right: 47px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 1L1 17' stroke='black' stroke-width='1.5' /%3E%3Cpath d='M17 17L1 0.999999' stroke='black' stroke-width='1.5' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  transition: opacity 0.2s ease-out;
}
@media (hover: hover) {
  .modal_feedback__close:hover {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .modal_feedback__close {
    top: 40px;
    right: 30px;
  }
}
.modal_feedback__input {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-bottom: 21px;
  padding: 0 10px;
  background-color: transparent !important;
  color: #000;
  border-bottom: 1px solid rgba(9, 9, 9, 0.2);
}
.modal_feedback__input:-internal-autofill-selected {
  background-color: transparent;
}
.modal_feedback__input::-webkit-input-placeholder {
  font-size: 18px;
  line-height: 127%;
  letter-spacing: -0.03em;
  color: #090909;
}
.modal_feedback__input::-moz-placeholder {
  font-size: 18px;
  line-height: 127%;
  letter-spacing: -0.03em;
  color: #090909;
}
.modal_feedback__input:-ms-input-placeholder {
  font-size: 18px;
  line-height: 127%;
  letter-spacing: -0.03em;
  color: #090909;
}
.modal_feedback__input,
.modal_feedback__input::placeholder {
  font-size: 18px;
  line-height: 127%;
  letter-spacing: -0.03em;
  color: #090909;
}
@media (max-width: 767px) {
  .modal_feedback__input {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 244%;
  }
}
.modal_feedback__submit {
  display: inline-block;
  min-width: 240px;
  min-height: 46px;
  margin-bottom: 14px;
  padding: 15px 25px;
  border-radius: 2px;
  background-color: #00b2e3;
  color: #fff;
  border: 1px solid #00b2e3;
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
@media (hover: hover) {
  .modal_feedback__submit:hover {
    background-color: #fff;
    color: #00b2e3;
  }
}
@media (max-width: 575px) {
  .modal_feedback__submit {
    width: 100%;
  }
}
.modal_feedback__policy {
  font-size: 11px;
  line-height: 125%;
  letter-spacing: -0.03em;
  color: #090909;
}
.modal_feedback__policy a,
.modal_feedback__policy span {
  opacity: 0.8;
}
.modal_feedback__policy a {
  text-decoration: underline;
  transition: opacity 0.2s ease-out;
}
@media (hover: hover) {
  .modal_feedback__policy a:hover {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .modal_feedback__policy {
    font-size: 14px;
    line-height: 121%;
  }
}
.npartners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 50px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
@media (max-width: 1200px) {
  .npartners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .npartners__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 38px;
  }
}
@media (max-width: 575px) {
  .npartners__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.npartners__item {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.npartners__item img {
  display: block;
  width: 100%;
  height: auto;
}
.npartners__name {
  padding: 0 26px 47px;
  font-size: 16px;
  line-height: 145%;
}
@media (max-width: 767px) {
  .npartners__name {
    padding: 0 27px 51px;
  }
}
.nservices {
  margin-bottom: 97px;
}
@media (max-width: 991px) {
  .nservices {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .nservices {
    margin-bottom: 64px;
  }
}
.nservices__wrapper {
  margin-bottom: 97px;
}
@media (max-width: 767px) {
  .nservices__wrapper {
    margin-bottom: 64px;
  }
}
.nservices__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1200px) {
  .nservices__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .nservices__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .nservices__list {
    display: block;
    margin-bottom: 36px;
  }
}
.nservices__item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f3f3f5;
}
@media (max-width: 575px) {
  .nservices__item:not(:last-child) {
    margin-bottom: 14px;
  }
}
@media (hover: hover) {
  .nservices__item:hover .nservices__name {
    color: #000;
  }
}
.nservices__picture {
  display: block;
  aspect-ratio: 321/279;
}
.nservices__picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.nservices__name {
  display: block;
  padding: 38px 21px 32px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  transition: color 0.2s ease-out;
}
.nservices__more {
  display: none;
}
@media (max-width: 575px) {
  .nservices__more {
    display: block;
  }
}
.nservices__inner_title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 145%;
}
@media (max-width: 767px) {
  .nservices__inner_title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 104%;
  }
}
.nservices__inner_title.h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .nservices__inner_title.h3 {
    font-size: 22px;
  }
}
.nservices__inner_title_small {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
}
@media (max-width: 767px) {
  .nservices__inner_title_small {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 104%;
  }
}
.nservices__text {
  max-width: 906px;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.company {
  max-width: 936px;
}
.company__title {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .company__title {
    margin-bottom: 16px;
  }
}
.company__wrapper {
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media (max-width: 767px) {
  .company__wrapper {
    position: relative;
    max-height: 600px;
  }
  .company__wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 130px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 50%, #fff 100%);
  }
}
@media (max-width: 575px) {
  .company__wrapper {
    max-height: 960px;
  }
}
.company__wrapper.is-open::after {
  display: none;
}
.company__wrapper.is-open .company__showall {
  display: none;
}
.company__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #00b2e3;
}
.company__subtitle:not(:last-child) {
  margin-bottom: 25px;
}
.company__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.company__text:not(:last-child) {
  margin-bottom: 25px;
}
.company__text strong {
  display: inline-block;
  width: 100%;
  font-weight: 700;
  color: #00b2e3;
}
.company__name {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 145%;
}
.company__list:not(:last-child) {
  margin-bottom: 25px;
}
.company__list li {
  padding-left: 39px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}
.company__list li:not(:last-child) {
  margin-bottom: 16px;
}
.company__list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 7px;
  width: 9px;
  height: 9px;
  background-color: #00b2e3;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .company__list li {
    padding-left: 19px;
  }
  .company__list li::before {
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
  }
}
.company__showall {
  display: none;
}
@media (max-width: 767px) {
  .company__showall {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 145%;
    text-align: center;
    color: #8e8e93;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease-out;
  }
}
@media (max-width: 767px) and (hover: hover) {
  .company__showall:hover {
    color: #000;
  }
}
.nreviews__title {
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .nreviews__title {
    margin-bottom: 16px;
  }
}
.nreviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 767px) {
  .nreviews__list {
    display: block;
  }
}
@media (max-width: 991px) {
  .nreviews__item .nobjects__video_play {
    width: 51px;
    height: 51px;
  }
}
@media (max-width: 767px) {
  .nreviews__item:not(:last-child) {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .nreviews__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.nobjects__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .nobjects__media {
    margin-bottom: 13px;
  }
}
.nreviews__name {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 114%;
}
@media (max-width: 767px) {
  .nreviews__name {
    margin-bottom: 7px;
    font-size: 20px;
  }
}
.nreviews__person {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}
.confirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
.confirm.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.confirm__overlay {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  cursor: pointer;
}
.confirm__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow-y: auto;
  width: 95%;
  max-width: 655px;
  height: 95%;
  max-height: 297px;
  padding: 95px 47px 77px;
  background-color: #fff;
  border-radius: 8px;
  min-width: 320px;
}
@media (max-width: 575px) {
  .confirm__content {
    top: unset;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 100%;
    max-height: 204px;
    padding: 41px 15px 60px;
    border-radius: 8px 8px 0 0;
  }
}
.confirm__close {
  position: absolute;
  top: 57px;
  right: 47px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  color: inherit;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 1L1 17' stroke='black' stroke-width='1.5' /%3E%3Cpath d='M17 17L1 0.999999' stroke='black' stroke-width='1.5' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  transition: opacity 0.2s ease-out;
}
@media (hover: hover) {
  .confirm__close:hover {
    opacity: 1;
  }
}
@media (max-width: 575px) {
  .confirm__close {
    top: 44px;
    right: 15px;
  }
}
.confirm__thanks {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 40px;
  line-height: 108%;
  color: #00b2e3;
}
@media (max-width: 767px) {
  .confirm__thanks {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .confirm__thanks {
    margin-bottom: 16px;
    font-size: 26px;
    line-height: 100%;
  }
}
.confirm__msg {
  font-weight: 400;
  font-size: 18px;
  line-height: 116%;
  color: #000;
}
@media (max-width: 767px) {
  .confirm__msg {
    font-size: 16px;
    line-height: 145%;
  }
}
.contacts__wrapper {
  display: grid;
  grid-template-columns: 30% 60.4%;
  grid-template-rows: auto auto 1fr;
  gap: 0 9.6%;
  grid-template-areas: 'title title' 'card map' 'adresses map';
  margin-top: 40px;
}
@media (max-width: 991px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: 'title' 'card' 'map' 'adresses';
  }
}
.contacts__title {
  grid-area: title;
}
.contacts__organization_card {
  grid-area: card;
}
.contacts__adresses {
  grid-area: adresses;
}
.contacts__map {
  grid-area: map;
}
@media (max-width: 767px) {
  .content.contacts__content {
    padding-top: 97px;
  }
}
.contacts__title {
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 57px;
  line-height: 100%;
}
@media (max-width: 991px) {
  .contacts__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .contacts__title {
    margin-bottom: 22px;
    font-size: 30px;
  }
}
.contacts__organization_card {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .contacts__organization_card {
    margin-bottom: 21px;
  }
}
.contacts__map.contacts-city {
  margin-top: 0;
}
.contacts__map.contacts-city .map_zone {
  height: 333px;
}
@media (max-width: 575px) {
  .contacts__map.contacts-city .map_zone {
    height: 204px;
  }
}
@media (max-width: 991px) {
  .contacts__map {
    margin-bottom: 30px;
  }
}
.contacts__adresses .contacts-city:first-child {
  margin-top: 0;
}
.contacts__adresses .contacts-city-line {
  gap: 16px 0;
}
.contacts__adresses .contacts-city-line > * {
  margin-bottom: 0;
  gap: 16px 0;
}
.contacts__adresses .contacts-city {
  margin-top: 0;
}
.contacts__adresses .contacts-city:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contacts__adresses .contacts-city:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contacts-city-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 599px) {
  .products__group .products:nth-child(2) {
    display: none;
  }
  .products__group.is-shown .products:nth-child(2) {
    display: block;
  }
}
.products__group_more {
  display: none;
}
@media only screen and (max-width: 599px) {
  .products__group_more {
    display: block;
  }
}
.h2-without-mb {
  margin-bottom: 0;
}

.good_item {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .good_item {
    margin-top: 50px;
  }
}
.good_item__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 28px 66px;
  grid-template-areas: 'title picture' 'descr picture';
}
@media (max-width: 1300px) {
  .good_item__wrapper {
    gap: 20px 30px;
  }
}
@media (max-width: 991px) {
  .good_item__wrapper {
    display: block;
  }
}
.good_item__title {
  grid-area: title;
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  color: #0e0e0e;
  text-wrap: balance;
}
@media (max-width: 1200px) {
  .good_item__title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .good_item__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .good_item__title {
    font-size: 26px;
  }
}
.good_item__picture {
  grid-area: picture;
}
.good_item__picture img,
.good_item__picture picture {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .good_item__picture {
    max-width: 600px;
    margin-bottom: 30px;
  }
}
.good_item__descr {
  grid-area: descr;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #0e0e0e;
}
.good_item__descr p:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .good_item__descr {
    max-width: 673px;
  }
}
@media (max-width: 767px) {
  .good_item__descr {
    font-size: 16px;
    line-height: 145%;
  }
}
.good_item__btn {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 46px;
  margin-top: 40px;
  padding: 5px 25px;
  border-radius: 2px;
  font-size: 16px;
  background: #00b2e3;
  border: 2px solid #00b2e3;
  color: #fff;
  transition: all 0.2s ease-out;
}
@media (hover: hover) {
  .good_item__btn:hover {
    background: #fff;
    color: #00b2e3;
  }
}
@media (max-width: 767px) {
  .good_item__btn {
    width: 100%;
    margin-top: 38px;
  }
}







.partnery-v-1__slider .swiper {
  position: relative;
  overflow: hidden;
}
.partnery-v-1__slider .swiper-button-prev, .partnery-v-1__slider .swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 62px;
  background-color: #b6e4fb;
  background-image: none;
}
.partnery-v-1__slider .swiper-button-prev::after, .partnery-v-1__slider .swiper-button-next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/assets/css/../images/partnery-v-1/prev-icon.svg) center/cover no-repeat;
  -webkit-transition: -webkit-filter ease-out 0.1s;
  transition: -webkit-filter ease-out 0.1s;
  transition: filter ease-out 0.1s;
  transition: filter ease-out 0.1s, -webkit-filter ease-out 0.1s;
}
.partnery-v-1__slider .swiper-button-prev:hover, .partnery-v-1__slider .swiper-button-next:hover {
  background-color: #01b0e3;
  -webkit-transition: background-color ease-out 0.2s;
  transition: background-color ease-out 0.2s;
}
.partnery-v-1__slider .swiper-button-prev:hover::after, .partnery-v-1__slider .swiper-button-next:hover::after {
  -webkit-filter: brightness(0%) invert(100%);
          filter: brightness(0%) invert(100%);
}
.partnery-v-1__slider .swiper-button-next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.partnery-v-1__slider-slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partnery-v-1__slider-slide-item img {
  display: block;
  width: 100%;
  height: auto;
}
.partnery-v-1__slider-slide-item-name {
  min-height: 70px;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #000;
}
.partnery-v-1__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0 0;
}






/*# sourceMappingURL=maps/main.css.map */
/* End */


/* Start:/local/templates/art6/template_styles.css?17333974482998*/
.inverse .header {
    color: #000;
}

.inverse .header .header-in {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.home-process h2{
	font-size:52px;
}
@media (max-width: 1228px){
	.home-process h2{
		font-size:42px;
	}
}
@media (max-width: 899px){
	.home-process h1{
		font-size:32px;
	}
}
@media (max-width: 499px) {
	.home-process h2{
		font-size:26px;
	}
}

.features-home h2{
	font-size:52px;
}
@media (max-width: 1228px){
	.features-home h2{
		font-size:42px;
	}
}
@media (max-width: 899px){
	.features-home h1{
		font-size:32px;
	}
}
@media (max-width: 499px) {
	.features-home h2{
		font-size:26px;
	}
}

.hero--panel h1{
	font-size:57px;
}
@media (max-width: 1228px){
	.hero--panel h1{
		font-size:40px;
	}
}
@media (max-width: 899px){
	.hero--panel h1{
		font-size:32px;
	}
}
@media (max-width: 499px) {
	.hero--panel h1{
		font-size:28px;
	}
}


.pro-pre h2{
	font-size:52px;
}
@media (max-width: 1228px){
	.pro-pre h2{
		font-size:42px;
	}
}
@media (max-width: 899px){
	.pro-pre h1{
		font-size:32px;
	}
}
@media (max-width: 499px) {
	.pro-pre h2{
		font-size:26px;
	}
}
.p-e-info h3 {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 18px;
}
.f-e-info h3 {
    font-weight: 700;
    margin-bottom: 16px;
}
.partner h3{
	font-weight:500;
}

h2.text-outline {
    font-size: 180px;
    text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000;
}
@media (max-width: 1450px) {
	h2.text-outline{
		font-size:170px;
	}
}
@media (max-width: 1370px) {
	h2.text-outline{
		font-size:160px;
	}
}
@media (max-width: 1300px) {
	h2.text-outline{
		font-size:140px;
	}
}
@media (max-width: 1150px) {
	h2.text-outline{
		font-size:120px;
	}
}
@media (max-width: 990px) {
	h2.text-outline{
		font-size:100px;
	}
}
@media (max-width: 800px) {
	h2.text-outline{
		font-size:80px;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
	}
}
@media (max-width: 640px) {
	h2.text-outline{
		font-size:60px;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
	}
}
@media (max-width: 490px) {
	h2.text-outline{
		font-size:50px;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
	}
}
@media (max-width: 410px) {
	h2.text-outline{
		font-size:40px;
    text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
	}
}





.docs h2.text-outline {
    font-size: 115px;
    text-align: center;
}
@media (max-width: 1480px) {
	.docs h2.text-outline{
		font-size:100px;
    	text-align: center;
	}
}
@media (max-width: 1290px) {
	.docs h2.text-outline{
		font-size:80px;
    	text-align: center;
	}
}
@media (max-width: 1150px) {
	.docs h2.text-outline{
		font-size:70px;
    	text-align: center;
	}
}
@media (max-width: 935px) {
	.docs h2.text-outline{
		font-size:60px;
    	text-align: center;
	}
}
@media (max-width: 650px) {
	.docs h2.text-outline{
		font-size:40px;
    	text-align: center;
	}
}
@media (max-width: 500px) {
	.docs h2.text-outline{
		font-size:40px;
    	text-align: center;
	}
}
/* End */
/* /assets/css/main.css?1752589538239650 */
/* /local/templates/art6/template_styles.css?17333974482998 */
