

/* Start:/local/templates/main/css/main.css?1781681322161101*/
:root {
  --text-gray: #C2C2C2;
  --green: #DDFF0E;
  --black: #000;
  --bg-gray-dark: hsl(0, 0%, 10%);
  --gray-for-white: #8F8F8F;
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --gap: max(10px, 4rem);
  --container-width: 176rem;
}

.grid-12, .grid-11, .grid-10, .grid-9, .grid-8, .grid-7, .grid-6, .grid-5, .grid-4, .grid-3, .grid-2, .grid-1 {
  position: relative;
  min-height: 1px;
  display: inline-block;
  vertical-align: top;
  margin-right: -4px;
}

.contacts-sec__city, .portfolio-menu__link, .work-pagination__link__text, .work__footer-menu__group a, .work-header__left a, .work-item__category, .work-item__more, .logo-item__overlay .more-link, .home-top--sec-2 .more-link, .top-panel-title, .top-panel-lang, h5, .h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.contacts-sec__left .contacts-sec__block a, .work__footer-menu__group a, .work-item h3 a, .home-top--sec-2 .more-link, .home-top--sec-2 h2 a, .icon-arrow-down, .main-menu a, .top-panel-title a, .top-panel-lang {
  transition: all 0.3s ease;
}
.contacts-sec__left .contacts-sec__block a:hover, .work__footer-menu__group a:hover, .work-item h3 a:hover, .home-top--sec-2 .more-link:hover, .home-top--sec-2 h2 a:hover, .icon-arrow-down:hover, .main-menu a:hover, .top-panel-title a:hover, .top-panel-lang:hover {
  color: rgb(141.6582278481, 145.4050632911, 146.3417721519) !important;
}

.contacts-sec__city, .portfolio-menu__link {
  position: relative;
  padding-bottom: 10px;
}
.contacts-sec__city:after, .portfolio-menu__link:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.contacts-sec__city:hover:after, .portfolio-menu__link:hover:after {
  background-color: #010101;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

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

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

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

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

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

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

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

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

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

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

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

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

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

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

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) 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: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

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

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

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

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

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

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

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

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

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

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

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

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

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 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-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: 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: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

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

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

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

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

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

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

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

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

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

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

.fancybox__slide.has-image {
  overflow: hidden;
}

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

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

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

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

.is-loading .fancybox__content {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 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;
  -webkit-user-select: none;
          user-select: none;
}

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

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

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

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

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

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

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

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

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

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

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

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 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;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

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

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

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

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

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

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

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

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

.f-thumbs__track {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 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: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

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

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

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

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

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

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

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

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

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

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 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;
  -webkit-user-select: none;
          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;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

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

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

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

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

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

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

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

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

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

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

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

.swiper-3d {
  perspective: 1200px;
}

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

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.btn {
  font-family: var(--font);
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: none;
  font-size: max(12px, 1.4rem);
  line-height: 1.3;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1.7em 2.5em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.1s ease, color 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background: #FFF;
  color: var(--black);
  border-radius: 50px;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transform: scale3d(1, 1, 1);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  background: var(--green);
}
.btn:active {
  background: var(--green);
  transform: scale3d(0.98, 0.98, 1);
}
.btn:focus {
  outline: none;
}
.btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.btn--black {
  background: #000;
  color: #FFF;
}
.btn--black:hover {
  background: var(--green);
  color: var(--black);
}
.btn--black:active {
  background: var(--green);
  color: var(--black);
  transform: scale3d(0.98, 0.98, 1);
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #FFF;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
          user-select: none;
  background: none;
  outline: none;
  cursor: pointer;
  color: #FFF;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
  .play-btn:hover {
    background: #FFF;
    color: #000;
  }
}
.play-btn:active {
  background: #FFF;
  color: #000;
}
.play-btn svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

textarea {
  overflow: hidden;
}

.input {
  position: relative;
  display: block;
  cursor: auto;
  margin-top: 24px;
  border-bottom: 1px solid var(--text-gray);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}
.input:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scale3d(0, 1, 1);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.input:focus-within:after {
  transform: scale3d(1, 1, 1);
}
.input:focus-within .input__label {
  font-size: 12px;
  top: -16px;
}
.input:focus-within + .input__descr {
  opacity: 1;
}
.input:has(.error):after {
  transform: scale3d(1, 1, 1);
  background: red;
}
.input:has(.error) .input__label {
  color: red;
}
.input:has(.input__text:not(:placeholder-shown)) .input__label {
  font-size: 12px;
  top: -16px;
}

.input__text {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  -webkit-appearance: none;
  border: none;
  padding: 4px 0 14px;
  overflow: visible;
  background: transparent;
  color: #FFF;
  letter-spacing: 0;
}
.input__text:focus {
  outline: none;
}

.input__label {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 0;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.3);
  transform-origin: left center;
  transition: all 0.2s ease;
  transform: translate3d(0, 0, 0);
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

.input__req {
  position: absolute;
  top: -6px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

.input__descr {
  color: var(--text-gray);
  opacity: 0.5;
  font-size: 12px;
  line-height: 1.2;
  padding-top: 4px;
  transition: opacity 0.3s ease;
}

textarea.input__text {
  resize: vertical;
}

.btn-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 1024px) {
  .btn-checkboxes {
    gap: 6px;
  }
}
@media (max-width: 1024px) {
  .btn-checkboxes {
    gap: 4px;
  }
}

.btn-checkbox {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  background: #FFF;
  color: var(--black);
  border-radius: 40px;
  padding: 1em 1.2em;
  -webkit-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .btn-checkbox {
    font-size: 12px;
    padding: 0.8em 0.8em;
  }
}
@media (max-width: 680px) {
  .btn-checkbox {
    font-size: 10px;
  }
}
@media (hover: hover) {
  .btn-checkbox:hover {
    background: #d6d6d6;
  }
}
.btn-checkbox:has(:checked) {
  background: var(--green);
}
.btn-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.style-check-ios {
  position: relative;
  display: block;
  margin-top: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.25;
  transform: translate3d(0, 0, 0);
}
@media (max-width: 680px) {
  .style-check-ios {
    font-size: 12px;
  }
}
.style-check-ios input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.style-check-ios input:checked + span:before {
  background: var(--green);
}
.style-check-ios input:checked + span:after {
  transform: translate(16px, 0);
}
.style-check-ios input.error + span:before {
  background: #FF2A6A;
}
.style-check-ios input.error + span:before, .style-check-ios input.error + span:after {
  animation: ckecboxError 0.3s linear 3;
}
.style-check-ios span {
  position: relative;
  display: block;
  padding-left: 44px;
  -webkit-user-select: none;
          user-select: none;
  text-align: left;
  color: var(--text-gray);
}
.style-check-ios span:before {
  content: "";
  width: 36px;
  height: 20px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0px;
  transition: all 0.3s ease;
  background: var(--text-gray);
  transform: translate3d(0, 0, 0);
}
.style-check-ios span:after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  z-index: 2;
  background: var(--black);
}
.style-check-ios a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(221, 255, 14, 0.3);
  transition: all 0.3s ease;
}
.style-check-ios a:hover {
  text-decoration-color: var(--green);
}

@keyframes ckecboxError {
  from {
    translate: 0px 0px;
  }
  33% {
    translate: -4px 0;
  }
  66% {
    translate: 4px 0;
  }
  to {
    translate: 0px 0px;
  }
}
.input-file {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.3;
}
@media (hover: hover) {
  .input-file:hover .input-file__link {
    color: var(--green);
  }
}
.input-file input {
  position: absolute;
  opacity: 0;
  left: 0;
  visibility: hidden;
}

.input-file__link {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-gray);
  transition: color 0.3s ease;
}
.input-file__link svg {
  width: 16px;
  height: auto;
  flex-shrink: 0;
  stroke: currentColor;
}

.input-file__descr {
  padding-top: 0.3em;
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  opacity: 0.5;
  width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/local/templates/main/css/../fonts/inter-cyr.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/local/templates/main/css/../fonts/inter-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.hidden {
  display: none;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: calc(var(--container-width) + 80px);
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1250px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.s-def {
  padding: max(60px, 15rem) 0;
}
.s-def:not(.s-def--top) + .s-def:not(.s-def--important) {
  padding-top: 0;
}
.s-def--bottom {
  padding-top: 0;
}
.s-def--top {
  padding-bottom: 0;
}

.grid-1 {
  width: 8.3333333333%;
}

.grid-2 {
  width: 16.6666666667%;
}

.grid-3 {
  width: 25%;
}

.grid-4 {
  width: 33.3333333333%;
}

.grid-5 {
  width: 41.6666666667%;
}

.grid-6 {
  width: 50%;
}

.grid-7 {
  width: 58.3333333333%;
}

.grid-8 {
  width: 66.6666666667%;
}

.grid-9 {
  width: 75%;
}

.grid-10 {
  width: 83.3333333333%;
}

.grid-11 {
  width: 91.6666666667%;
}

.grid-12 {
  width: 100%;
}

@media (max-width: 1840px) {
  .grid-1_xxl {
    width: 8.3333333333%;
  }
  .grid-2_xxl {
    width: 16.6666666667%;
  }
  .grid-3_xxl {
    width: 25%;
  }
  .grid-4_xxl {
    width: 33.3333333333%;
  }
  .grid-5_xxl {
    width: 41.6666666667%;
  }
  .grid-6_xxl {
    width: 50%;
  }
  .grid-7_xxl {
    width: 58.3333333333%;
  }
  .grid-8_xxl {
    width: 66.6666666667%;
  }
  .grid-9_xxl {
    width: 75%;
  }
  .grid-10_xxl {
    width: 83.3333333333%;
  }
  .grid-11_xxl {
    width: 91.6666666667%;
  }
  .grid-12_xxl {
    width: 100%;
  }
  .hidden_xxl {
    display: none;
  }
  .visible_xxl {
    display: block;
  }
}
@media (max-width: 1550px) {
  .grid-1_xl {
    width: 8.3333333333%;
  }
  .grid-2_xl {
    width: 16.6666666667%;
  }
  .grid-3_xl {
    width: 25%;
  }
  .grid-4_xl {
    width: 33.3333333333%;
  }
  .grid-5_xl {
    width: 41.6666666667%;
  }
  .grid-6_xl {
    width: 50%;
  }
  .grid-7_xl {
    width: 58.3333333333%;
  }
  .grid-8_xl {
    width: 66.6666666667%;
  }
  .grid-9_xl {
    width: 75%;
  }
  .grid-10_xl {
    width: 83.3333333333%;
  }
  .grid-11_xl {
    width: 91.6666666667%;
  }
  .grid-12_xl {
    width: 100%;
  }
  .hidden_xl {
    display: none;
  }
  .visible_xl {
    display: block;
  }
}
@media (max-width: 1250px) {
  .grid-1_xls {
    width: 8.3333333333%;
  }
  .grid-2_xls {
    width: 16.6666666667%;
  }
  .grid-3_xls {
    width: 25%;
  }
  .grid-4_xls {
    width: 33.3333333333%;
  }
  .grid-5_xls {
    width: 41.6666666667%;
  }
  .grid-6_xls {
    width: 50%;
  }
  .grid-7_xls {
    width: 58.3333333333%;
  }
  .grid-8_xls {
    width: 66.6666666667%;
  }
  .grid-9_xls {
    width: 75%;
  }
  .grid-10_xls {
    width: 83.3333333333%;
  }
  .grid-11_xls {
    width: 91.6666666667%;
  }
  .grid-12_xls {
    width: 100%;
  }
  .hidden_xls {
    display: none;
  }
  .visible_xls {
    display: block;
  }
}
@media (max-width: 1024px) {
  .grid-1_l {
    width: 8.3333333333%;
  }
  .grid-2_l {
    width: 16.6666666667%;
  }
  .grid-3_l {
    width: 25%;
  }
  .grid-4_l {
    width: 33.3333333333%;
  }
  .grid-5_l {
    width: 41.6666666667%;
  }
  .grid-6_l {
    width: 50%;
  }
  .grid-7_l {
    width: 58.3333333333%;
  }
  .grid-8_l {
    width: 66.6666666667%;
  }
  .grid-9_l {
    width: 75%;
  }
  .grid-10_l {
    width: 83.3333333333%;
  }
  .grid-11_l {
    width: 91.6666666667%;
  }
  .grid-12_l {
    width: 100%;
  }
  .hidden_l {
    display: none;
  }
  .visible_l {
    display: block;
  }
}
@media (max-width: 768px) {
  .grid-1_m {
    width: 8.3333333333%;
  }
  .grid-2_m {
    width: 16.6666666667%;
  }
  .grid-3_m {
    width: 25%;
  }
  .grid-4_m {
    width: 33.3333333333%;
  }
  .grid-5_m {
    width: 41.6666666667%;
  }
  .grid-6_m {
    width: 50%;
  }
  .grid-7_m {
    width: 58.3333333333%;
  }
  .grid-8_m {
    width: 66.6666666667%;
  }
  .grid-9_m {
    width: 75%;
  }
  .grid-10_m {
    width: 83.3333333333%;
  }
  .grid-11_m {
    width: 91.6666666667%;
  }
  .grid-12_m {
    width: 100%;
  }
  .hidden_m {
    display: none;
  }
  .visible_m {
    display: block;
  }
}
@media (max-width: 680px) {
  .grid-1_s {
    width: 8.3333333333%;
  }
  .grid-2_s {
    width: 16.6666666667%;
  }
  .grid-3_s {
    width: 25%;
  }
  .grid-4_s {
    width: 33.3333333333%;
  }
  .grid-5_s {
    width: 41.6666666667%;
  }
  .grid-6_s {
    width: 50%;
  }
  .grid-7_s {
    width: 58.3333333333%;
  }
  .grid-8_s {
    width: 66.6666666667%;
  }
  .grid-9_s {
    width: 75%;
  }
  .grid-10_s {
    width: 83.3333333333%;
  }
  .grid-11_s {
    width: 91.6666666667%;
  }
  .grid-12_s {
    width: 100%;
  }
  .hidden_s {
    display: none;
  }
  .visible_s {
    display: block;
  }
}
@media (max-width: 480px) {
  .grid-1_xs {
    width: 8.3333333333%;
  }
  .grid-2_xs {
    width: 16.6666666667%;
  }
  .grid-3_xs {
    width: 25%;
  }
  .grid-4_xs {
    width: 33.3333333333%;
  }
  .grid-5_xs {
    width: 41.6666666667%;
  }
  .grid-6_xs {
    width: 50%;
  }
  .grid-7_xs {
    width: 58.3333333333%;
  }
  .grid-8_xs {
    width: 66.6666666667%;
  }
  .grid-9_xs {
    width: 75%;
  }
  .grid-10_xs {
    width: 83.3333333333%;
  }
  .grid-11_xs {
    width: 91.6666666667%;
  }
  .grid-12_xs {
    width: 100%;
  }
  .hidden_xs {
    display: none;
  }
  .visible_xs {
    display: block;
  }
}
@media (max-height: 1280px) {
  .grid-1_xl {
    height: 8.3333333333%;
  }
  .grid-2_xl {
    height: 16.6666666667%;
  }
  .grid-3_xl {
    height: 25%;
  }
  .grid-4_xl {
    height: 33.3333333333%;
  }
  .grid-5_xl {
    height: 41.6666666667%;
  }
  .grid-6_xl {
    height: 50%;
  }
  .grid-7_xl {
    height: 58.3333333333%;
  }
  .grid-8_xl {
    height: 66.6666666667%;
  }
  .grid-9_xl {
    height: 75%;
  }
  .grid-10_xl {
    height: 83.3333333333%;
  }
  .grid-11_xl {
    height: 91.6666666667%;
  }
  .grid-12_xl {
    height: 100%;
  }
  .hidden_xl {
    display: none;
  }
  .visible_xl {
    display: block;
  }
}
@media (max-height: 1024px) {
  .grid-1_l {
    height: 8.3333333333%;
  }
  .grid-2_l {
    height: 16.6666666667%;
  }
  .grid-3_l {
    height: 25%;
  }
  .grid-4_l {
    height: 33.3333333333%;
  }
  .grid-5_l {
    height: 41.6666666667%;
  }
  .grid-6_l {
    height: 50%;
  }
  .grid-7_l {
    height: 58.3333333333%;
  }
  .grid-8_l {
    height: 66.6666666667%;
  }
  .grid-9_l {
    height: 75%;
  }
  .grid-10_l {
    height: 83.3333333333%;
  }
  .grid-11_l {
    height: 91.6666666667%;
  }
  .grid-12_l {
    height: 100%;
  }
  .hidden_l {
    display: none;
  }
  .visible_l {
    display: block;
  }
}
@media (max-height: 768px) {
  .grid-1_m {
    height: 8.3333333333%;
  }
  .grid-2_m {
    height: 16.6666666667%;
  }
  .grid-3_m {
    height: 25%;
  }
  .grid-4_m {
    height: 33.3333333333%;
  }
  .grid-5_m {
    height: 41.6666666667%;
  }
  .grid-6_m {
    height: 50%;
  }
  .grid-7_m {
    height: 58.3333333333%;
  }
  .grid-8_m {
    height: 66.6666666667%;
  }
  .grid-9_m {
    height: 75%;
  }
  .grid-10_m {
    height: 83.3333333333%;
  }
  .grid-11_m {
    height: 91.6666666667%;
  }
  .grid-12_m {
    height: 100%;
  }
  .hidden_m {
    display: none;
  }
  .visible_m {
    display: block;
  }
}
@media (max-height: 600px) {
  .grid-1_s {
    height: 8.3333333333%;
  }
  .grid-2_s {
    height: 16.6666666667%;
  }
  .grid-3_s {
    height: 25%;
  }
  .grid-4_s {
    height: 33.3333333333%;
  }
  .grid-5_s {
    height: 41.6666666667%;
  }
  .grid-6_s {
    height: 50%;
  }
  .grid-7_s {
    height: 58.3333333333%;
  }
  .grid-8_s {
    height: 66.6666666667%;
  }
  .grid-9_s {
    height: 75%;
  }
  .grid-10_s {
    height: 83.3333333333%;
  }
  .grid-11_s {
    height: 91.6666666667%;
  }
  .grid-12_s {
    height: 100%;
  }
  .hidden_s {
    display: none;
  }
  .visible_s {
    display: block;
  }
}
section {
  position: relative;
}

.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.flex {
  display: flex;
  justify-content: space-between;
}

*, *:after, *:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, div, span {
  max-height: 5000em;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
  position: relative;
}

img {
  border: none;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@view-transition {
  navigation: auto;
}
html {
  font-size: 0.522vw;
}
@media (width > 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  font-size: max(14px, 2.2rem);
  font-weight: normal;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: -0.04em;
}
@media (max-width: 680px) {
  body {
    font-size: 14px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.more-link {
  font-size: 14px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: normal;
  line-height: 1.2;
}

h1, .headline, .h1 {
  line-height: 1;
  font-weight: 300;
  font-size: max(var(--min-fz, 24px), 8rem);
}

h2, .h2 {
  font-size: max(var(--min-fz, 22px), 5.5rem);
}

.h3-big {
  font-size: max(var(--min-fz, 21px), 4.8rem);
  line-height: 1.2;
}

h3, .h3 {
  font-size: max(var(--min-fz, 20px), 3.6rem);
}

h4, .h4 {
  font-size: max(var(--min-fz, 18px), 3rem);
}

h5, .h5 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
}

.text {
  font-size: max(var(--min-fz, 14px), 2.2rem);
}

.text-small {
  font-size: max(var(--min-fz, 14px), 1.8rem);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: max(12px, 1.4rem);
  font-weight: bold;
  -webkit-user-select: none;
          user-select: none;
}
@media (hover: hover) {
  .arrow-link:hover {
    color: var(--green);
  }
  .arrow-link:hover svg {
    transform: translate3d(2px, 0, 0);
  }
}
.arrow-link:active {
  color: var(--green);
}
.arrow-link:active svg {
  transform: translate3d(2px, 0, 0);
}
.arrow-link svg {
  width: calc(1em + 2px);
  height: auto;
  fill: currentColor;
  transition: transform 0.3s ease;
  margin-top: -0.1em;
}

@media (hover: hover) {
  .arrow-link--hover-gray:hover {
    color: var(--text-gray);
  }
}
.arrow-link--hover-gray:active {
  color: var(--text-gray);
}

.link-hover-green {
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .link-hover-green:hover {
    color: var(--green);
  }
}
.link-hover-green:active {
  color: var(--green);
}

.link-hover-gray {
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .link-hover-gray:hover {
    color: var(--text-gray);
  }
}
.link-hover-gray:active {
  color: var(--text-gray);
}

.small-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.25;
}

::selection {
  color: #010101;
  background-color: #DDFF0E;
}

::-moz-selection {
  color: #010101;
  background-color: #DDFF0E;
}

.user-content {
  text-wrap: pretty;
}
.user-content ul, .user-content ol {
  list-style: none;
  padding-right: 20px;
}
.user-content ul li, .user-content ol li {
  margin-bottom: 1em;
  line-height: 1.4;
}
.user-content ul li:last-child, .user-content ol li:last-child {
  margin-bottom: 0;
}
.user-content h1, .user-content .h1, .user-content h2, .user-content .h2, .user-content h3, .user-content .h3, .user-content h4, .user-content .h4, .user-content h5, .user-content .h5 {
  margin-top: max(30px, 5rem);
  margin-bottom: max(12px, 2.5rem);
}
.user-content h1:first-child, .user-content .h1:first-child, .user-content h2:first-child, .user-content .h2:first-child, .user-content h3:first-child, .user-content .h3:first-child, .user-content h4:first-child, .user-content .h4:first-child, .user-content h5:first-child, .user-content .h5:first-child {
  margin-top: 0;
}
.user-content h1:last-child, .user-content .h1:last-child, .user-content h2:last-child, .user-content .h2:last-child, .user-content h3:last-child, .user-content .h3:last-child, .user-content h4:last-child, .user-content .h4:last-child, .user-content h5:last-child, .user-content .h5:last-child {
  margin-bottom: 0;
}
.user-content p, .user-content ul, .user-content ol, .user-content table, .user-content img {
  margin-bottom: 1.2em;
}
.user-content p:last-child, .user-content ul:last-child, .user-content ol:last-child, .user-content table:last-child, .user-content img:last-child {
  margin-bottom: 0;
}
.user-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.s-sec-white {
  background: #FFF;
  color: var(--black);
}

.title-margined {
  text-wrap: pretty;
}
.title-margined::first-letter {
  padding-left: 3em;
}
@media (max-width: 680px) {
  .title-margined::first-letter {
    padding-left: 0;
  }
}

.title-enter-anim span {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.link-arrow-underlined {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .link-arrow-underlined:hover {
    color: var(--green);
  }
  .link-arrow-underlined:hover svg {
    translate: 0.2em 0;
  }
}
.link-arrow-underlined:active {
  color: var(--green);
}
.link-arrow-underlined:active svg {
  translate: 0.2em 0;
}
.link-arrow-underlined span {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  text-underline-offset: 0.3em;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.link-arrow-underlined svg {
  height: 1em;
  width: auto;
  flex-shrink: 0;
  stroke: currentColor;
  transition: translate 0.3s ease, opacity 0.3s ease;
}

.center-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(15px, 3.5rem);
  padding-top: max(40px, 10rem);
  position: relative;
  z-index: 10;
}
@media (max-width: 480px) {
  .center-actions .btn {
    padding: 1.7em 1.7em;
  }
}

.half-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 680px) {
  .half-text {
    grid-template-columns: 1fr;
  }
}

body {
  background: var(--bg-gray-dark);
  color: #FFF;
}

.site-wrap {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
  transform-origin: right center;
  background: var(--black);
}

.site-wrap.transformed {
  transform: translate3d(-700px, 0px, 0) scale(0.9);
}
@media (max-width: 1024px) {
  .site-wrap.transformed {
    transform: translate3d(-500px, 0px, 0);
  }
}
@media (max-width: 680px) {
  .site-wrap.transformed {
    transform: translate3d(-340px, 0px, 0);
  }
}
.site-wrap.transformed .site-wrap__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.site-wrap.opened {
  position: absolute;
  overflow: hidden;
  transition: transform 0.5s ease;
}
@media (max-width: 1024px) {
  .site-wrap.opened {
    position: relative;
    height: auto !important;
  }
}

.site-wrap__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.5);
}
.site-wrap__overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.site-content {
  position: relative;
  top: 0;
  left: 0;
}

.aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: auto;
}

.aside__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  min-height: 100%;
  padding: 70px;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #FFF;
}
@media (max-width: 1024px) {
  .aside__content {
    width: 500px;
    padding: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 680px) {
  .aside__content {
    width: 340px;
    padding: 25px;
    padding-bottom: 50px;
    padding-bottom: 25px;
  }
}

.aside__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 5;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: var(--bg-gray-dark);
  transition: background 0.3s ease;
}
@media (max-width: 680px) {
  .aside__close {
    top: 5px;
    right: 5px;
  }
}
@media (hover: hover) {
  .aside__close:hover {
    background: var(--green);
  }
  .aside__close:hover svg {
    stroke: var(--black);
  }
}
.aside__close:active {
  background: var(--green);
}
.aside__close:active svg {
  stroke: var(--black);
}
.aside__close svg {
  width: 16px;
  height: 16px;
  stroke: #FFF;
  transition: stroke 0.3s ease;
}

.aside__title {
  line-height: 1;
  font-size: 55px;
  max-width: 8em;
}
@media (max-width: 1024px) {
  .aside__title {
    font-size: 45px;
  }
}
@media (max-width: 680px) {
  .aside__title {
    font-size: 24px;
  }
}

.aside__form .style-check-ios {
  margin-top: 24px;
}

.aside__form__title {
  margin-top: 40px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .aside__form__title {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 12px;
  }
}

.aside__form__actions {
  display: flex;
  align-items: center;
  gap: 20px 30px;
  padding-top: 40px;
}
@media (max-width: 1024px) {
  .aside__form__actions {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 20px;
  }
}

.aside__bottom {
  margin-top: auto;
  padding-top: 45px;
}

.aside__mess-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.aside__messengers {
  display: flex;
  font-size: 28px;
  gap: 1em;
}
@media (max-width: 1024px) {
  .aside__messengers {
    font-size: 22px;
  }
}
.aside__messengers a {
  color: var(--green);
}

body.noscroll {
  overflow: hidden;
}

.top-panel {
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 40px 0;
  transition: all 0.5s ease, margin 0s;
  margin-right: var(--scrollbar-width, var(--fancybox-scrollbar-compensate));
}
@media (max-width: 768px) {
  .top-panel {
    padding: 20px 0;
  }
}
.top-panel.hidden_top {
  transform: translate(0, -100%);
}
.top-panel.--fixed {
  transform: none !important;
}
.top-panel.minimal {
  background-color: rgb(0, 0, 0);
  padding: 15px 0;
}
@media (max-width: 680px) {
  .top-panel.minimal {
    padding: 5px 0;
  }
}
.top-panel__left {
  vertical-align: middle;
}
.top-panel__left img {
  display: block;
  width: 263px;
  height: auto;
  max-width: 100%;
}
@media (max-width: 1550px) {
  .top-panel__left img {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .top-panel__left img {
    width: 120px;
  }
}
.top-panel__right {
  vertical-align: middle;
  text-align: right;
}
.top-panel .menu-overlay-logo-white {
  display: block;
}
.top-panel .menu-overlay-logo-black {
  display: none;
}
.top-panel.aside-opened {
  opacity: 0 !important;
  visibility: hidden;
  transform: translate(0, -100%);
}

.top-panel__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-panel-white.top-panel {
  background: transparent;
  transition: all 0.5s ease;
}
.top-panel-white.minimal {
  background-color: #FFF;
}
.top-panel-white .top-panel-lang, .top-panel-white .top-panel-title {
  color: #000;
}
.top-panel-white .menu-btn figure {
  background-color: #000;
}
.top-panel-white .menu-btn figure:after {
  background-color: #000;
}
.top-panel-white .menu-btn figure:before {
  background-color: #000;
}
.top-panel-white .menu-overlay-logo-white {
  display: none;
}
.top-panel-white .menu-overlay-logo-black {
  display: block;
}

.top-panel-lang {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  font-size: 12px;
  margin-right: 30px;
}

.top-panel-title {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  font-size: 14px;
  margin-right: 30px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .top-panel-title {
    display: none;
  }
}
.top-panel-title a svg {
  stroke: currentColor;
  margin-left: 0.1em;
}

.top-panel-title--it {
  font-style: italic;
}

.menu-overlay {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  pointer-events: none;
  transition: all 0.2s ease;
}
.menu-overlay.menu-open {
  opacity: 1;
  pointer-events: auto;
}

.main-menu {
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px 0 20px;
  max-width: 1800px;
  margin: auto;
}
.main-menu a {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 40px;
  margin: 5px 0;
  position: relative;
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  -webkit-tap-highlight-color: transparent;
}
.main-menu a:nth-child(1) {
  transition: color 0.3s ease, transform 0.3s 0s, opacity 0.3s 0s;
}
.main-menu a:nth-child(2) {
  transition: color 0.3s ease, transform 0.3s 0.1s, opacity 0.3s 0.1s;
}
.main-menu a:nth-child(3) {
  transition: color 0.3s ease, transform 0.3s 0.2s, opacity 0.3s 0.2s;
}
.main-menu a:nth-child(4) {
  transition: color 0.3s ease, transform 0.3s 0.3s, opacity 0.3s 0.3s;
}
.main-menu a:nth-child(5) {
  transition: color 0.3s ease, transform 0.3s 0.4s, opacity 0.3s 0.4s;
}
.main-menu a:nth-child(6) {
  transition: color 0.3s ease, transform 0.3s 0.5s, opacity 0.3s 0.5s;
}
.main-menu .btn {
  margin-top: 15px;
  transform: translate3d(0, 30px, 0);
  opacity: 0;
  transition: color 0.3s ease, transform 0.3s 0.5s, opacity 0.3s 0.5s;
}

.menu-open .main-menu a {
  transform: translate(0px, 0);
  opacity: 1;
}
.menu-open .main-menu .btn {
  transform: translate(0px, 0);
  opacity: 1;
}

.menu-bottom {
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 20px 20px 20px;
  max-width: 1800px;
  margin: auto;
}
.menu-bottom span {
  display: inline-block;
  margin-right: 100px;
  font-size: 14px;
  color: #747879;
}
@media (max-width: 680px) {
  .menu-bottom span {
    margin-right: 0;
  }
}

.menu-btn {
  vertical-align: middle;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 30;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  display: none;
}
@media (max-width: 1024px) {
  .menu-btn {
    display: inline-block;
  }
}
.menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.menu-btn figure {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 3px;
  background-color: #FFF;
  transition: all 0.3s ease;
}
.menu-btn figure:before, .menu-btn figure:after {
  content: "";
  width: 28px;
  height: 3px;
  position: absolute;
  left: 0;
  background-color: #FFF;
  transition: all 0.3s ease;
}
.menu-btn figure:before {
  top: -7px;
}
.menu-btn figure:after {
  bottom: -7px;
}
.menu-btn.active figure {
  transform: rotate(45deg);
  background-color: #FFF;
}
.menu-btn.active figure:after {
  background-color: #FFF;
  transform: scale(0.5);
  opacity: 0;
}
.menu-btn.active figure:before {
  background-color: #FFF;
  transform: rotate(-90deg);
  top: 0;
}

.s-footer-promo {
  background: #000;
  color: #FFF;
  padding: 75px 0;
  overflow: hidden;
}
@media (max-width: 680px) {
  .s-footer-promo {
    padding: 50px 0;
  }
}

.footer-promo__title {
  display: block;
  position: relative;
  font-size: 18.6rem;
  left: -0.06em;
  line-height: 0.85;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 480px) {
  .footer-promo__title {
    font-size: 18rem;
  }
}
.footer-promo__title sup {
  position: relative;
  font-size: 0.3em;
  top: -0.6em;
  font-weight: 300;
}

.footer-promo__btn-wrap {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.footer-promo__btn {
  background: #FFF;
  color: var(--black);
  border-radius: 200px;
  height: clamp(90px, 11vw, 210px);
  width: clamp(300px, 45vw, 850px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, scale 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
}
@media (hover: hover) {
  .footer-promo__btn:hover {
    background: var(--green);
  }
}
.footer-promo__btn:active {
  background: var(--green);
  scale: 0.96 0.96;
}

.breadcrumbs {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.breadcrumbs__list li {
  display: flex;
  align-items: center;
  color: var(--text-gray);
  gap: 8px;
}
.breadcrumbs__list li:first-child {
  color: #FFF;
}
.breadcrumbs__list li:last-child svg {
  display: none;
}
.breadcrumbs__list li svg {
  position: relative;
  width: 0.5833em;
  height: auto;
  stroke: var(--text-gray);
  top: 0;
}
@media (max-width: 1550px) {
  .breadcrumbs__list li svg {
    top: 0;
  }
}

.breadcrumbs__item {
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  max-width: 30em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  font-weight: bold;
}
@media (hover: hover) {
  .breadcrumbs__item:hover {
    color: var(--green);
  }
}
.breadcrumbs__item:active {
  color: var(--green);
}

.site-footer {
  --f-sizer: 10px;
  background: #000;
  color: #FFF;
  padding-bottom: calc(var(--f-sizer) * 5);
}
@media (max-width: 1550px) {
  .site-footer {
    --f-sizer: 8px;
  }
}
@media (max-width: 1250px) {
  .site-footer {
    --f-sizer: 6px;
  }
}
@media (max-width: 680px) {
  .site-footer {
    padding-bottom: 30px;
    text-align: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--f-sizer) * 7) calc(var(--f-sizer) * 10);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-grid__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--f-sizer) * 5);
}
@media (max-width: 680px) {
  .footer-grid__left {
    grid-template-columns: 1fr;
    gap: calc(var(--f-sizer) * 7);
  }
}

.footer-city__name {
  font-size: calc(var(--f-sizer) * 6);
  line-height: 1;
  margin-bottom: 0.8em;
}
@media (max-width: 768px) {
  .footer-city__name {
    margin-bottom: 0.3em;
  }
}

.footer-city__phone {
  display: inline-block;
  white-space: nowrap;
  font-size: calc(var(--f-sizer) * 4);
  margin-bottom: 0.2em;
}

.footer-city__address {
  color: var(--text-gray);
  font-size: clamp(12px, var(--f-sizer) * 1.8, 18px);
  font-style: normal;
}

.footer-cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .footer-cont {
    align-items: center;
  }
}

.footer-cont__title {
  font-size: clamp(12px, var(--f-sizer) * 1.4, 14px);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 1em;
}

.footer-cont__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.8em;
  font-size: calc(var(--f-sizer) * 4);
  white-space: nowrap;
  line-height: 0.8;
}

.footer-socials {
  margin-top: calc(var(--f-sizer) * -1.1);
}
@media (max-width: 768px) {
  .footer-socials {
    margin-top: 0;
  }
}

.footer-mails {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: calc(var(--f-sizer) * 4) calc(var(--f-sizer) * 4);
  padding-top: calc(var(--f-sizer) * 4);
}
@media (max-width: 768px) {
  .footer-mails {
    justify-content: flex-start;
    gap: calc(var(--f-sizer) * 6);
    padding-top: calc(var(--f-sizer) * 6);
  }
}
@media (max-width: 680px) {
  .footer-mails {
    justify-content: center;
  }
}

.footer-privacy-note {
  color: var(--text-gray);
  font-size: clamp(12px, var(--f-sizer) * 1.8, 18px);
  padding-top: 24px;
  max-width: 40em;
}
@media (max-width: 1550px) {
  .footer-privacy-note {
    padding-top: 18px;
  }
}
.footer-privacy-note a {
  text-decoration: underline;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--f-sizer) * 7) calc(var(--f-sizer) * 10);
  padding-top: calc(var(--f-sizer) * 4.5);
  margin-top: calc(var(--f-sizer) * 4.5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    padding-top: calc(var(--f-sizer) * 3.5);
    margin-top: calc(var(--f-sizer) * 3.5);
  }
}

.footer-bottom__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px calc(var(--f-sizer) * 5);
}
@media (max-width: 680px) {
  .footer-bottom__left {
    grid-template-columns: 1fr;
  }
}

.footer-bottom__text {
  color: var(--text-gray);
  font-size: 12px;
}

.footer-bottom__right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-bottom__right {
    order: -1;
  }
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  font-size: clamp(12px, var(--f-sizer) * 1.8, 18px);
  line-height: 1.25;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .footer-bottom__links {
    justify-content: center;
  }
}
.footer-bottom__links a {
  text-transform: uppercase;
  font-weight: bold;
}

.footer-bottom__assocs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom__assoc {
  display: block;
}
.footer-bottom__assoc--arda {
  width: 98px;
}
@media (max-width: 1024px) {
  .footer-bottom__assoc--arda {
    width: 60px;
  }
}
.footer-bottom__assoc img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-bottom__docs-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8em;
}
@media (max-width: 680px) {
  .footer-bottom__docs-links {
    align-items: center;
  }
}
.footer-bottom__docs-links .link-hover-green {
  max-width: 20em;
}

@font-face {
  font-family: "soul";
  src: url("/local/templates/main/css/../fonts/soul.ttf") format("truetype"), url("/local/templates/main/css/../fonts/soul.woff") format("woff"), url("/local/templates/main/css/../fonts/soul.svg#soul") format("svg");
  font-weight: normal;
  font-style: normal;
}
i {
  font-family: "soul" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-right:before {
  content: "\e900";
}

.icon-arrow-down:before {
  content: "\e901";
}

.icon-arrow-down-line:before {
  content: "\e902";
}

.icon-arrow-right {
  margin-left: 20px;
}

.icon-arrow-down {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  font-size: 20px;
  cursor: pointer;
  margin: auto;
  width: 20px;
  transition: all 0.3s ease;
}

.modal {
  display: none;
  width: 520px;
  max-width: 100%;
  padding: 55px 50px;
  background: #FFF;
  border-radius: 25px;
  color: var(--black);
  box-shadow: 0px 45px 75px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .modal {
    padding: 35px 28px;
    width: 400px;
  }
}

.modal__title {
  font-size: 44px;
  margin-bottom: 0.4em;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .modal__title {
    font-size: 28px;
  }
}

.modal__descr {
  font-size: 16px;
}
@media (max-width: 1024px) {
  .modal__descr {
    font-size: 14px;
  }
}
.modal__descr strong {
  font-size: 20px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .modal__descr strong {
    font-size: 16px;
  }
}

.modal__bottom {
  margin-top: 60px;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .modal__bottom {
    margin-top: 30px;
    font-size: 16px;
  }
}

.modal__messengers {
  display: flex;
  font-size: 28px;
  gap: 0 1em;
  margin-top: 6px;
}
@media (max-width: 1024px) {
  .modal__messengers {
    font-size: 22px;
  }
}

.fancybox__container {
  --fancybox-zIndex: 200;
}

.fancybox__backdrop {
  --fancybox-bg: rgba(0, 0, 0, 0.7);
}

.fancybox__slide {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 680px) {
  .fancybox__slide {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.fancybox__slide.has-iframe .fancybox__content, .fancybox__slide.has-youtube .fancybox__content {
  padding: 0;
  width: 100% !important;
  max-width: 1800px !important;
  aspect-ratio: 16/9;
  height: auto !important;
  max-height: 90vh;
}

.fancybox__nav {
  --f-button-svg-stroke-width: 2;
  --f-button-next-pos: 5px;
  --f-button-prev-pos: 5px;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 42px;
  --f-button-height: 42px;
  --f-button-border-radius: 50%;
  --f-button-color: #000;
  --f-button-hover-color: #FFF;
  --f-button-bg: var(--green);
  --f-button-hover-bg: #b81e26;
  --f-button-active-bg: #b81e26;
  --f-button-svg-width: 16px;
  --f-button-svg-height: 16px;
  --f-button-svg-stroke-width: 3;
  position: absolute;
  top: -10px;
  right: -10px;
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .fancybox__content > .f-button.is-close-btn {
    top: -2px;
    right: -2px;
    width: 36px;
    height: 36px;
  }
}

.fancybox__toolbar {
  padding: 2px;
}

.fancybox__toolbar__column {
  gap: 2px;
}

.f-button:not(.is-close-btn) {
  border-radius: 10px;
  --f-button-color: var(--black);
  --f-button-bg: var(--yellow);
  --f-button-hover-color: var(--black);
  --f-button-hover-bg: var(--yellow-hover);
  --f-button-active-bg: var(--yellow-active);
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.3;
}

.fancybox__infobar {
  text-shadow: none;
  color: var(--black);
}

.modal-thanks {
  width: 800px;
}

.modal-error {
  box-shadow: 0 0 0 5px red;
}

.modal-note {
  width: 600px;
  padding: 20px;
  padding-top: 30px;
}
.modal-note .btn--black {
  border-radius: 10px;
}

.modal-note__title {
  margin-bottom: 0.3em;
}

.modal-note__descr {
  font-size: max(12px, 1.6rem);
}
.modal-note__descr p {
  margin-bottom: 1em;
}
@media (max-width: 480px) {
  .modal-note__descr p {
    margin-bottom: 0.5em;
  }
}
.modal-note__descr p:last-child {
  margin-bottom: 0;
}
.modal-note__descr mark {
  background: transparent;
  color: #FF0002;
  font-weight: bold;
}

.modal-note__descr__big {
  font-size: max(14px, 1.8rem);
}

.modal-note__official {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 25px 0;
}
@media (max-width: 480px) {
  .modal-note__official {
    flex-direction: column;
    align-items: flex-start;
  }
}

.modal-note__hh {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  background: #181818;
  border-radius: 10px;
  padding: 12px;
  color: #FFF;
  width: 240px;
  line-height: 1.2;
  flex-shrink: 0;
}
@media (hover: hover) {
  .modal-note__hh:hover {
    background: #272727;
  }
}
@media (max-width: 680px) {
  .modal-note__hh {
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    gap: 8px;
    width: 190px;
  }
}
.modal-note__hh .modal-note__check {
  width: 13px;
}

.modal-note__hh__img {
  width: 48px;
  height: auto;
}
@media (max-width: 680px) {
  .modal-note__hh__img {
    width: 30px;
  }
}

.modal-note__mail__val {
  display: block;
  white-space: nowrap;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (max-width: 680px) {
  .modal-note__mail__val {
    font-size: 20px;
  }
}
.modal-note__mail__val .modal-note__check {
  width: 0.7em;
  height: auto;
}

.modal-note__mail__descr {
  opacity: 0.4;
  line-height: 1.2;
  font-size: 16px;
}
@media (max-width: 680px) {
  .modal-note__mail__descr {
    font-size: 12px;
  }
}

body {
  margin-right: var(--scrollbar-width, 0);
}
body.aside-opened {
  overflow: hidden;
}

.aside-panels__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.5);
}
.aside-panels__overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.aside-panel {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  width: 700px;
  height: 100%;
  overflow: auto;
  background: var(--bg-gray-dark);
  width: 700px;
  transform: translate3d(700px, 0, 0);
  pointer-events: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .aside-panel {
    width: 90%;
    transform: translate3d(100%, 0, 0);
  }
}
.aside-panel.opened {
  transform: translate3d(0px, 0, 0);
  pointer-events: all;
}

.aside-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 5;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: var(--bg-gray-dark);
  transition: background 0.3s ease;
}
@media (max-width: 680px) {
  .aside-panel__close {
    top: 5px;
    right: 5px;
  }
}
@media (hover: hover) {
  .aside-panel__close:hover {
    background: var(--green);
  }
  .aside-panel__close:hover svg {
    stroke: var(--black);
  }
}
.aside-panel__close:active {
  background: var(--green);
}
.aside-panel__close:active svg {
  stroke: var(--black);
}
.aside-panel__close svg {
  width: 16px;
  height: 16px;
  stroke: #FFF;
  transition: stroke 0.3s ease;
}

.note-panel {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 50;
  bottom: 10px;
  right: 10px;
  background: #FFF;
  padding: 26px;
  color: var(--black);
  font-size: 16px;
  border-radius: 10px;
  width: 320px;
  max-width: calc(100% - 20px);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .note-panel {
    font-size: 10px;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.note-panel.active {
  display: flex;
}

.note-panel__title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 480px) {
  .note-panel__title {
    font-size: 20px;
  }
}

.note-panel__close {
  margin-top: 50px;
}
@media (max-width: 480px) {
  .note-panel__close {
    margin-top: 24px;
  }
}

.note-panel__text {
  font-size: 14px;
}
@media (max-width: 480px) {
  .note-panel__text {
    font-size: 12px;
  }
}
.note-panel__text a {
  text-decoration: underline;
}

.anim--fadeIn {
  opacity: 0;
  will-change: opacity;
  transition: opacity 1.6s ease;
}
.anim--fadeIn.animated {
  opacity: 1;
}

.anim--fadeZoomIn {
  opacity: 0;
  transform: scale3d(0.8, 0.8, 1);
  will-change: opacity, transform;
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--fadeZoomIn.animated {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.anim--fadeSlideIn {
  opacity: 0;
  translate: 0 50px;
  will-change: opacity, translate;
  transition: opacity 1.6s ease, translate 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--fadeSlideIn.animated {
  opacity: 1;
  translate: 0 0px;
}

.anim--clipImg .anim--clipImg__frame {
  clip-path: inset(50%);
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  will-change: clip-path, transform;
  transition: clip-path 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim--clipImg.animated .anim--clipImg__frame {
  clip-path: inset(0%);
}

.anim.animated .anim--fadeIn {
  opacity: 1;
}
.anim.animated .anim--fadeZoomIn {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.anim--slides-enter .swiper-slide {
  opacity: 0;
  translate: 100px 0;
  transition: opacity 1s ease, translate 1s ease;
}
.anim--slides-enter .swiper-slide:nth-child(1) {
  transition-delay: 0.1s;
}
.anim--slides-enter .swiper-slide:nth-child(2) {
  transition-delay: 0.2s;
}
.anim--slides-enter .swiper-slide:nth-child(3) {
  transition-delay: 0.3s;
}
.anim--slides-enter .swiper-slide:nth-child(4) {
  transition-delay: 0.4s;
}
.anim--slides-enter .swiper-slide:nth-child(5) {
  transition-delay: 0.5s;
}
.anim--slides-enter .swiper-slide:nth-child(6) {
  transition-delay: 0.6s;
}
.anim--slides-enter .swiper-slide:nth-child(7) {
  transition-delay: 0.7s;
}
.anim--slides-enter .swiper-slide:nth-child(8) {
  transition-delay: 0.8s;
}
.anim--slides-enter .swiper-slide:nth-child(9) {
  transition-delay: 0.9s;
}
.anim--slides-enter .swiper-slide:nth-child(10) {
  transition-delay: 1s;
}
.anim--slides-enter.animated .swiper-slide {
  opacity: 1;
  translate: 0 0;
}

.slider-btn {
  width: max(40px, 6.5rem);
  height: max(40px, 6.5rem);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: color 0.3s ease, scale 0.1s ease, opacity 0.2s ease, border 0.3s ease;
}
@media (hover: hover) {
  .slider-btn:not(:disabled):hover {
    color: #FFF;
    border: 1px solid white;
  }
}
.slider-btn:not(:disabled):active {
  color: #FFF;
  scale: 0.95;
  border: 1px solid white;
}
.slider-btn svg {
  stroke: currentColor;
  display: block;
  width: 100%;
  height: auto;
}
.slider-btn:disabled {
  opacity: 0.3;
  color: currentColor;
  cursor: auto;
}

.slider-btns {
  display: flex;
  align-items: center;
  gap: max(5px, 0.8rem);
}

.home-top {
  position: relative;
  color: white;
}
.home-top.black-text {
  color: #010101;
}
.home-top.black-text h1 {
  color: #010101;
}
.home-top.black-text .bg-overlay {
  background: #FFF;
}
.home-top--sec-2 {
  height: 100vh;
  max-height: 1100px;
}
.home-top--sec-2 h2 {
  max-width: 15em;
  margin-bottom: 0.4em;
}
.home-top--sec-2 p {
  margin-bottom: 1em;
  max-width: 28em;
  text-wrap: pretty;
}
.home-top .container {
  display: flex;
  align-items: center;
}

.home-top--sec-1 {
  position: relative;
  height: 100svh;
  min-height: 70rem;
  max-height: 1300px;
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.home-top--sec-1 h1 {
  max-width: 18em;
  text-wrap: pretty;
}
@media (max-width: 680px) {
  .home-top--sec-1 h1 {
    font-size: 34px;
  }
}
.home-top--sec-1 h1::first-letter {
  padding-left: 3em;
}
@media (max-width: 680px) {
  .home-top--sec-1 h1::first-letter {
    padding-left: 0;
  }
}

.home-top-ratings {
  display: flex;
  justify-content: space-between;
  gap: 21rem;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 40px;
  right: 40px;
  padding-bottom: max(20px, 4rem);
}
@media (max-width: 1024px) {
  .home-top-ratings {
    left: 20px;
    right: 20px;
  }
}
@media (max-width: 1024px) {
  .home-top-ratings {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .home-top-ratings {
    gap: 10px;
  }
}

.home-top-ratings__title {
  line-height: 1.4;
  opacity: 0.4;
  max-width: 10em;
}
@media (max-width: 768px) {
  .home-top-ratings__title {
    display: none;
  }
}

.home-top-rating:nth-child(2) {
  margin-left: auto;
}
@media (max-width: 768px) {
  .home-top-rating:nth-child(2) {
    margin: initial;
  }
}

.home-top-rating__title {
  text-transform: uppercase;
  font-size: max(20px, 6rem);
  line-height: 1;
  margin-bottom: 0.1em;
}

.home-top-rating__descr {
  color: #858585;
  font-size: max(12px, 1.6rem);
  line-height: 1.4;
  max-width: 18em;
}

.home-top-rating__link {
  display: inline;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .home-top-rating__link:hover {
    color: #FFF;
  }
  .home-top-rating__link:hover span {
    text-decoration-color: rgb(255, 255, 255);
  }
}
.home-top-rating__link:active {
  color: #FFF;
}
.home-top-rating__link:active span {
  text-decoration-color: rgb(255, 255, 255);
}
.home-top-rating__link span {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 0.3em;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.home-top-rating__link svg {
  width: 1em;
  height: auto;
  flex-shrink: 0;
  vertical-align: middle;
  stroke: currentColor;
}

.home-top__bg {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-bg {
  z-index: -2;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .home-bg {
    object-position: calc(50% - 200px) center;
  }
}

.bg-overlay {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.home-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-basic-grid {
  background-color: #FFF;
  color: var(--black);
}

.s-basic-grid--black {
  background: #000;
  color: #FFF;
}

.basic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 100px;
}
@media (max-width: 1024px) {
  .basic-grid {
    gap: 40px 60px;
  }
}
@media (max-width: 768px) {
  .basic-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.basic-grid__left {
  position: relative;
}
.basic-grid__left .h2 {
  max-width: 14em;
  text-wrap: pretty;
}
.basic-grid__left .zhaldak {
  margin-top: 20px;
}
.basic-grid__left .zhaldak strong {
  display: block;
}
.basic-grid__left .zhaldak small {
  display: block;
}

.basic-grid__sticky {
  position: sticky;
  top: 100px;
}

.home-digital {
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .home-digital {
    margin-top: 50px;
  }
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 20px;
}
@media (max-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .logos-grid {
    display: flex;
    overflow: auto;
    margin-left: -20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
  }
  .logos-grid::-webkit-scrollbar {
    display: none;
  }
}

.logo-item {
  position: relative;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .logo-item {
    width: 120px;
  }
}
.logo-item img {
  display: block;
  width: 100%;
  height: auto;
}

.logo-item__order {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.logo-item__overlay {
  position: absolute;
  color: #FFF;
  padding: 20px 15px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1550px) {
  .logo-item__overlay {
    display: none;
  }
}
.logo-item__overlay:hover {
  opacity: 1;
}
.logo-item__overlay h4 {
  font-size: 18px;
  text-transform: uppercase;
}
.logo-item__overlay p {
  margin-top: 10px;
  font-size: 12px;
}
.logo-item__overlay .more-link {
  display: inline-block;
  margin-top: 20px;
  white-space: nowrap;
}
.logo-item__overlay .more-link .icon-arrow-right {
  margin-left: 4px;
}

.works-sec {
  background-color: #FFF;
}

.works-sec--portfolio {
  padding-bottom: 80px;
}

.work-item-wrapper {
  padding: 0 15px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .work-item-wrapper {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 680px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

.work-item {
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.work-item:hover .work-item__img {
  transform: scale(1.1);
}
.work-item:hover .work-item__content {
  transform: none;
  opacity: 1;
}
.work-item:hover h3 {
  transform: none;
  opacity: 1;
}
.work-item:hover .work-item__description {
  transform: none;
  opacity: 1;
}
.work-item:hover .work-item__more {
  transform: none;
  opacity: 1;
}
.work-item__img {
  width: 100%;
  height: auto;
  aspect-ratio: 860/580;
  display: block;
  object-fit: cover;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  .work-item__img {
    height: auto;
  }
}
.work-item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 25px;
  color: #FFF;
  transition: all 0.5s ease;
  background-color: #010101;
  transform: scale(1);
  opacity: 0;
}
@media (max-width: 1024px) {
  .work-item__content {
    padding: 10px 0 0 0;
    background-color: #FFF;
    transform: none;
    opacity: 1;
    color: #010101;
    position: relative;
    bottom: inherit;
    top: inherit;
    left: inherit;
    right: inherit;
    height: auto;
  }
}
.work-item h3 {
  position: relative;
  z-index: 2;
  max-width: 450px;
  margin-bottom: 0.4em;
  transform: translate(0, 15px);
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 1024px) {
  .work-item h3 {
    margin-bottom: 0.5em;
    transform: none;
    opacity: 1;
  }
}
.work-item__description {
  position: relative;
  z-index: 2;
  font-size: max(14px, 1.8rem);
  max-width: 30em;
  margin-bottom: 2.5em;
  transform: translate(0, 15px);
  transition: all 0.5s ease 0.1s;
  opacity: 0;
}
@media (max-width: 1024px) {
  .work-item__description {
    margin-bottom: 1em;
    transform: none;
    opacity: 1;
  }
}
.work-item__more {
  position: relative;
  z-index: 2;
  font-size: 14px;
  transform: translate(0, 15px);
  transition: all 0.5s ease 0.2s;
  opacity: 0;
}
@media (max-width: 1024px) {
  .work-item__more {
    font-size: 12px;
    transform: none;
    opacity: 1;
  }
}
.work-item__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  position: absolute;
  top: 25px;
  left: 25px;
}
@media (max-width: 1024px) {
  .work-item__cats {
    position: relative;
    top: inherit;
    left: inherit;
    margin-bottom: 10px;
  }
}
.work-item__category {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .work-item__category {
    font-size: 12px;
  }
}

.work-item.anim {
  opacity: 0;
  transform: scale3d(0.94, 0.94, 1);
  transition: all 1s ease;
  transform-origin: center bottom;
}
.work-item.anim.animated {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.works-sec__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(20px, 3.5rem);
  padding-top: max(50px, 12rem);
  position: relative;
  z-index: 10;
}

.home-promo-sec {
  background: url("/local/templates/main/css/../images/home-promo-bg.jpg") center top no-repeat #010101;
  background-size: cover;
  padding: 345px 0;
  color: #FFF;
}
@media (max-width: 1024px) {
  .home-promo-sec {
    padding: 200px 0;
  }
}
@media (max-width: 768px) {
  .home-promo-sec {
    padding: 100px 0;
  }
}
@media (max-width: 680px) {
  .home-promo-sec {
    padding: 50px 0;
  }
}
.home-promo-sec h2 {
  margin-bottom: 0.4em;
  max-width: 750px;
}
.home-promo-sec p {
  max-width: 650px;
}

.s-home-services .title-margined {
  margin-bottom: 1em;
}

.home-services-circles {
  display: flex;
}
@media (max-width: 768px) {
  .home-services-circles {
    flex-direction: column;
    align-items: center;
  }
}

.home-services-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 64rem;
  height: 64rem;
  border: 1px solid #000;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: -8rem;
  padding-top: 28rem;
  padding-left: 8rem;
  padding-right: 8rem;
}
@media (max-width: 1024px) {
  .home-services-circle {
    margin-right: -5rem;
    padding-top: 18rem;
  }
}
@media (max-width: 768px) {
  .home-services-circle {
    margin-right: initial;
    width: max(320px, 100rem);
    height: max(320px, 100rem);
    margin-bottom: min(-40px, -10rem);
    padding-top: max(80px, 30rem);
  }
}
@media (hover: hover) {
  .home-services-circle:hover .home-services-circle__descr {
    opacity: 0.5;
    translate: 0 0px;
  }
}
@media (max-width: 768px) {
  .home-services-circle:last-child {
    margin-bottom: initial;
  }
}
.home-services-circle .h3 {
  max-width: 7em;
  margin-bottom: 1em;
}

.home-services-circle__descr {
  --min-fz: 10px;
  max-width: 23em;
  opacity: 0;
  translate: 0 4px;
  font-size: max(14px, 1.8rem);
  transition: opacity 0.3s ease, translate 0.3s ease;
}
@media (max-width: 1024px) {
  .home-services-circle__descr {
    opacity: 0.5;
    translate: 0 0px;
  }
}
@media (max-width: 768px) {
  .home-services-circle__descr {
    font-size: 12px;
  }
}

.home-facts {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 10rem;
  margin-top: max(50px, 10rem);
}
@media (max-width: 1024px) {
  .home-facts {
    gap: 20px;
    grid-template-columns: 5fr 8fr;
  }
}
@media (max-width: 480px) {
  .home-facts {
    grid-template-columns: 5fr 7fr;
  }
}

.home-fact__val {
  font-size: 38rem;
  line-height: 0.9;
}

.home-fact__descr {
  --min-fz: 12px;
}
@media (max-width: 480px) {
  .home-fact__descr {
    --min-fz: 12px;
  }
}

.home-fact--big .home-fact__val {
  font-size: 60rem;
}
@media (max-width: 480px) {
  .home-fact--big .home-fact__val {
    font-size: 50rem;
  }
}
.home-fact--big .home-fact__descr {
  max-width: 20em;
}

.s-clients .title-margined {
  margin-bottom: 1em;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--gap);
}
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

.clients__spheres {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(14px, 1.6rem);
}
@media (max-width: 768px) {
  .clients__spheres {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.clients__spheres .link-arrow-underlined {
  --min-fz: 12px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .clients__spheres .link-arrow-underlined {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .clients__spheres .link-arrow-underlined:hover {
    color: inherit;
  }
  .clients__spheres .link-arrow-underlined:hover span {
    text-decoration-color: currentColor;
  }
  .clients__spheres .link-arrow-underlined:hover svg {
    opacity: 1;
  }
}
.clients__spheres .link-arrow-underlined span {
  text-decoration-color: transparent;
}
.clients__spheres .link-arrow-underlined svg {
  opacity: 0;
}

.clients-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1550px) {
  .clients-wall {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.clients-wall__img {
  width: 35rem;
  height: auto;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 1550px) {
  .clients-wall__img {
    width: 100%;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px var(--gap);
}
@media (max-width: 680px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-grid__left {
  position: relative;
}

.faq-grid__left__sticky {
  position: sticky;
  top: 90px;
}

.faq-grid__left__actions {
  display: flex;
  align-items: center;
  gap: max(10px, 4rem);
  padding-top: max(20px, 6rem);
}
@media (max-width: 480px) {
  .faq-grid__left__actions .btn {
    padding: 1.7em 1.7em;
  }
}

.faq-item {
  padding: max(10px, 2rem) 0 max(20px, 4rem) 0;
  border-bottom: 1px solid #000;
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-item:last-child {
  border: none;
  padding-bottom: 0;
}
.faq-item.active .faq-item__answer {
  grid-template-rows: 1fr;
}
.faq-item.active .faq-item__head figure {
  rotate: 45deg;
}

.faq-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: max(20px, 4rem);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .faq-item__head:hover {
    color: #666;
  }
}
.faq-item__head:active {
  color: #666;
}
.faq-item__head figure {
  position: relative;
  width: max(20px, 4rem);
  height: max(20px, 4rem);
  flex-shrink: 0;
  transition: rotate 0.6s ease;
  top: max(4px, 1rem);
}
.faq-item__head figure:before, .faq-item__head figure:after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  height: 4px;
  width: 100%;
  background: currentColor;
}
@media (max-width: 1250px) {
  .faq-item__head figure:before, .faq-item__head figure:after {
    height: 2px;
  }
}
.faq-item__head figure:after {
  rotate: 90deg;
}

.faq-item__question {
  max-width: 20em;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding-top: max(20px, 4rem);
  transition: grid-template-rows 0.6s ease;
}
.faq-item__answer .user-content {
  overflow: hidden;
  max-width: 45em;
}
.faq-item__answer .user-content h1, .faq-item__answer .user-content .h1, .faq-item__answer .user-content h2, .faq-item__answer .user-content .h2, .faq-item__answer .user-content h3, .faq-item__answer .user-content .h3, .faq-item__answer .user-content h4, .faq-item__answer .user-content .h4, .faq-item__answer .user-content h5, .faq-item__answer .user-content .h5 {
  margin-bottom: max(6px, 1rem);
}

.s-reviews {
  overflow: hidden;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: max(30px, 5rem);
}
@media (max-width: 768px) {
  .reviews {
    display: block;
  }
}

.reviews__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .reviews__left {
    margin-bottom: 30px;
  }
}
.reviews__left .slider-btns {
  position: absolute;
  bottom: 0;
  right: 5rem;
}
@media (max-width: 1024px) {
  .reviews__left .slider-btns {
    display: none;
  }
}
.reviews__left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  right: -30px;
  height: 1000px;
  width: 50vw;
  background: linear-gradient(to left, transparent, #000 100px);
  pointer-events: none;
}
@media (max-width: 768px) {
  .reviews__left:before {
    display: none;
  }
}

.reviews__title {
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .reviews__title {
    margin-bottom: 1em;
  }
}

.reviews__rating {
  display: flex;
  gap: max(15px, 3rem);
}

.reviews__rating__img {
  display: block;
  flex-shrink: 0;
  width: max(70px, 20rem);
  height: auto;
  aspect-ratio: 1/1;
  align-self: start;
  border-radius: max(5px, 1rem);
}
@media (max-width: 768px) {
  .reviews__rating__img {
    width: 100px;
  }
}

.reviews__rating__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.reviews__rating__descr {
  color: var(--text-gray);
  font-size: max(var(--min-fz, 10px), 1.8rem);
  max-width: 16em;
}

.reviews__slider {
  overflow: visible;
  width: 340px;
  margin: initial;
}
@media (max-width: 1250px) {
  .reviews__slider {
    width: 240px;
  }
}
@media (max-width: 768px) {
  .reviews__slider {
    margin-left: auto;
    margin-right: auto;
  }
}
.video-review {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
          user-select: none;
}
@media (hover: hover) {
  .video-review:hover .video-review__stage:after {
    opacity: 0.1;
  }
  .video-review:hover .play-btn {
    background: #FFF;
    color: #000;
  }
}

.video-review__tags {
  display: flex;
  margin-bottom: 8px;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap;
  color: var(--text-gray);
}
@media (max-width: 1250px) {
  .video-review__tags {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.video-review__stage {
  position: relative;
  aspect-ratio: 340/600;
  background: var(--bg-gray-dark);
  border-radius: 10px;
  overflow: hidden;
}
.video-review__stage:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #000;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.video-review__stage .play-btn {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  right: 10px;
}
@media (max-width: 1250px) {
  .video-review__stage .play-btn {
    width: 50px;
    height: 50px;
  }
}

.video-review__video {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.swiper-slide-active .video-review__stage:after {
  opacity: 0.3;
}

.video-review__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 20px;
  color: var(--text-gray);
}
@media (max-width: 1250px) {
  .video-review__bottom {
    padding-top: 12px;
  }
}

.video-review__title {
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1250px) {
  .video-review__title {
    font-size: 14px;
  }
}

.video-review__descr {
  line-height: 1.3;
  font-size: 16px;
}
@media (max-width: 1250px) {
  .video-review__descr {
    font-size: 11px;
  }
}

.penbrain {
  background: url("/local/templates/main/css/../images/about-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #FFF;
  text-align: center;
  display: flex;
  align-items: center;
  height: 100vh;
}

.brain {
  background: #000;
  color: #FFF;
  text-align: center;
  padding: 100px 0;
}

.about-lists {
  margin-top: 50px;
}

.about-people {
  background: #000;
  color: #FFF;
}
.about-people__text {
  position: absolute;
  bottom: 60px;
  left: 10px;
}
@media (max-width: 680px) {
  .about-people__text {
    bottom: 20px;
  }
}
.about-people__big-block {
  margin-bottom: 10px;
}
.about-people__big-block img {
  display: block;
}
.about-people__big-block p {
  font-size: 16px;
}
@media (max-width: 680px) {
  .about-people__big-block p {
    font-size: 12px;
  }
}
.about-people__big-block h4 {
  margin-bottom: 0.35em;
}
@media (max-width: 680px) {
  .about-people__big-block h4 {
    font-size: 18px;
  }
}
.about-people__big-text-block {
  text-align: center;
}
@media (max-width: 680px) {
  .about-people__big-text-block {
    margin-bottom: 30px;
  }
}
.about-people__big-text-block .about-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.about-people__big-text-block h3 {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 680px) {
  .about-people__big-text-block h3 {
    margin-top: 30px;
  }
}
.about-people__big-text-block h3:before {
  content: "";
  position: absolute;
  width: 50px;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: 3px solid white;
}
@media (max-width: 680px) {
  .about-people__big-text-block h3:before {
    top: -20px;
  }
}
.about-people__big-text-block h5 {
  margin-top: 60px;
}
@media (max-width: 680px) {
  .about-people__big-text-block h5 {
    margin-top: 10px;
  }
}
.about-people__small-block {
  margin-bottom: 10px;
}
.about-people__small-block img {
  display: block;
}
.about-people__small-block p {
  font-size: 14px;
}
@media (max-width: 680px) {
  .about-people__small-block p {
    font-size: 12px;
  }
}
.about-people__small-block h4 {
  font-size: 24px;
  margin-bottom: 0.35em;
}
@media (max-width: 1024px) {
  .about-people__small-block h4 {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .about-people__small-block h4 {
    font-size: 18px;
  }
}

.work-top {
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #dadada;
  color: #FFF;
}
.work-top:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}
@media (max-width: 768px) {
  .work-top:before {
    opacity: 1;
  }
}
.work-top .container {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.work-top.black-text {
  color: #010101;
}
.work-top.black-text:before {
  background: rgba(255, 255, 255, 0.6);
}
.work-top__title {
  max-width: 15em;
  margin-bottom: 20px;
}
.work-top__descr {
  max-width: 30em;
  text-wrap: pretty;
}
@media (max-width: 1550px) {
  .work-top__descr {
    font-size: 16px;
  }
}
@media (max-width: 1250px) {
  .work-top__descr {
    font-size: 14px;
  }
}
.work-top__link {
  margin-top: 20px;
}

.work-top__bg {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.work-header {
  background: #FFF;
  color: var(--black);
  padding: 100px 0;
}
@media (max-width: 680px) {
  .work-header {
    padding: 70px 0;
  }
}
.work-header__left {
  padding-right: 20px;
}
.work-header__left h2 {
  max-width: 14em;
  text-wrap: pretty;
}
.work-header__left a {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.work-header__left a:hover {
  background: #DDFF0E;
  color: #010101;
}

.work-header-social {
  margin-top: 50px;
}
@media (max-width: 680px) {
  .work-header-social {
    margin-bottom: 50px;
  }
}
.work-header-social__title {
  display: block;
  padding-left: 10px;
  font-size: 14px;
  color: #a0a0a0;
}

.work-done {
  background: #FFF;
  color: var(--black);
  padding-bottom: 100px;
}
.work-done .container {
  padding: 0;
}
.work-done__block {
  padding: 20px;
}
.work-done__block img {
  display: block;
}
.work-done__block video {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.work-done__text {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1550px) {
  .work-done__text {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 1024px) {
  .work-done__text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 680px) {
  .work-done__text {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .work-done__authors {
    margin: 40px 0;
  }
}

.work-meta-sec {
  background: #FFF;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .work-meta-sec {
    padding-bottom: 50px;
  }
}
.work-meta-sec .container {
  padding: 0;
}

.work-thanks {
  padding: 20px;
}
@media (max-width: 1024px) {
  .work-thanks {
    margin-bottom: 30px;
  }
}
.work-thanks__img img {
  max-width: 100%;
  height: auto;
}
.work-thanks__text {
  padding-left: 30px;
}
@media (max-width: 680px) {
  .work-thanks__text {
    padding-left: 0;
  }
}
.work-thanks__title {
  margin-bottom: 20px;
}

.work-authors {
  padding: 20px;
}
@media (max-width: 1024px) {
  .work-authors {
    margin-bottom: 30px;
  }
}
.work-authors__title {
  margin-bottom: 20px;
}

.work-author {
  margin-bottom: 25px;
  padding-right: 20px;
}
.work-author__name {
  font-size: 20px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .work-author__name {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .work-author__name {
    margin-bottom: 0;
  }
}
.work-author p {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .work-author p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .work-author p {
    margin-bottom: 0;
    font-size: 16px;
  }
}

.work-pagination {
  background: #000;
  padding-top: 50px;
}

.work__footer-menu {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px var(--gap);
}
@media (max-width: 680px) {
  .work__footer-menu {
    grid-template-columns: 1fr;
  }
}

.work__footer-menu__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.work__footer-menu__group a {
  color: #FFF;
  font-size: 14px;
}

.work-pagination__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 680px) {
  .work-pagination__links {
    gap: 10px;
  }
}

.work-pagination__link__wrapper:first-child .work-pagination__link {
  justify-content: flex-start;
}
.work-pagination__link__wrapper:first-child .icon-arrow-right {
  transform: rotate(180deg);
}

.work-pagination__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  aspect-ratio: 860/580;
  padding: 30px;
  background: var(--bg-gray-dark);
}
@media (max-width: 680px) {
  .work-pagination__link {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .work-pagination__link {
    padding: 5px;
  }
}
@media (hover: hover) {
  .work-pagination__link:hover .work-pagination__link__img {
    opacity: 0.4;
  }
}
.work-pagination__link:active .work-pagination__link__img {
  opacity: 0.4;
}

.work-pagination__link__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}

.work-pagination__link__text {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  position: relative;
  z-index: 2;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .work-pagination__link__text {
    font-size: 10px;
  }
}
.work-pagination__link__text .icon-arrow-right {
  margin-left: 0;
}

.s-work-blocks {
  background: #FFF;
  color: var(--black);
  padding: 100px 0;
}
@media (max-width: 680px) {
  .s-work-blocks {
    padding: 60px 0;
  }
}

.work-block {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .work-block {
    margin-bottom: 20px;
  }
}
.work-block:last-child {
  margin-bottom: 0;
}

.work-block-title-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 100px 0;
}
@media (max-width: 680px) {
  .work-block-title-text {
    margin: 60px 0;
    gap: 20px;
  }
}
.work-block-title-text:first-child {
  margin-top: 0;
}
.work-block-title-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 680px) {
  .work-block-title-text {
    grid-template-columns: 1fr;
  }
}
.work-block-title-text h2 {
  max-width: 14em;
  text-wrap: pretty;
}

.work-block-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 680px) {
  .work-block-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.work-block-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 860/538;
  background: #eee;
  object-fit: cover;
}

.work-block-gallery--big {
  grid-template-columns: 1fr;
}
.work-block-gallery--big img {
  aspect-ratio: initial;
}

.work-block--video video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .work-block--video video {
    margin-bottom: 20px;
  }
}
.work-block--video video:last-child {
  margin-bottom: 0;
}

.s-work-cta {
  background: #FFF;
  color: var(--black);
  padding-bottom: 70px;
}
@media (max-width: 1550px) {
  .s-work-cta {
    padding-bottom: 50px;
  }
}
@media (max-width: 680px) {
  .s-work-cta {
    padding-bottom: 40px;
  }
}

.work-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.work-cta__text {
  max-width: 30em;
  margin-bottom: 0.8em;
  font-size: 25px;
  line-height: 1.25;
  text-wrap: pretty;
}
@media (max-width: 1550px) {
  .work-cta__text {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .work-cta__text {
    font-size: 18px;
  }
}

.s-portfolio-menu {
  background: #FFF;
  color: var(--black);
  padding: 150px 0 70px 0;
}
@media (max-width: 1550px) {
  .s-portfolio-menu {
    padding: 130px 0 50px 0;
  }
}
@media (max-width: 768px) {
  .s-portfolio-menu {
    padding: 80px 0 30px 0;
  }
}

.portfolio-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}
@media (max-width: 680px) {
  .portfolio-menu {
    grid-template-columns: 1fr;
  }
}

.portfolio-menu__group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}

.portfolio-menu__link {
  display: inline-block;
  font-size: 14px;
  padding-bottom: 0.7em;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .portfolio-menu__link {
    font-size: 12px;
  }
}
.portfolio-menu__link.active:after {
  background-color: #010101;
}

.contacts-top {
  background: url("/local/templates/main/css/../images/contacts-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #FFF;
}
.contacts-top h2 {
  margin-bottom: 20px;
}
.contacts-top p {
  max-width: 26em;
}
.contacts-top .container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}

.contacts-sec {
  background: #FFF;
  color: var(--black);
  padding: 170px 0;
}
@media (max-width: 768px) {
  .contacts-sec {
    padding: 100px 0;
  }
}
@media (max-width: 680px) {
  .contacts-sec {
    padding: 50px 0;
  }
}
.contacts-sec__city {
  margin-right: 60px;
  font-size: 14px;
}
.contacts-sec h2 {
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .contacts-sec__left {
    margin-bottom: 50px;
  }
}
.contacts-sec__left address {
  font-style: normal;
}
.contacts-sec__block {
  margin-top: 50px;
  padding-right: 15px;
}
.contacts-sec #map, .contacts-sec #map2 {
  width: 100%;
  height: 500px;
}

.contacts-city {
  margin-bottom: 40px;
}
.contacts-city:last-child {
  margin-bottom: 0;
}

.s-intro {
  position: relative;
  color: #FFF;
}

.s-intro__bg {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.s-intro__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .s-intro__bg:after {
    background: rgba(0, 0, 0, 0.8);
  }
}

.s-intro__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-intro__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro {
  min-height: clamp(600px, 100vh, 1100px);
  display: flex;
  flex-direction: column;
  padding-top: clamp(110px, 20vh, 240px);
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .intro {
    min-height: auto;
  }
}
.intro:not(:has(.intro__footer)) {
  padding-bottom: 40px;
}

.intro__title {
  font-weight: 300;
  line-height: 1;
  font-size: 150px;
  font-size: clamp(42px, 8vw, 150px);
  margin-bottom: clamp(20px, 0.3em, 45px);
  max-width: 7em;
}

.intro__title--small {
  font-size: clamp(42px, 6vw, 120px);
}

.intro__descr {
  font-size: clamp(14px, 1.1vw, 22px);
  max-width: 33em;
  text-wrap: pretty;
}

.intro__actions {
  padding-top: 50px;
}

.intro__footer {
  flex: 1;
  position: relative;
  padding-top: 40px;
  display: flex;
  align-items: flex-end;
}

.intro__sticky {
  position: sticky;
  bottom: 0;
  width: 100%;
}

.s-intro--white {
  background: #FFF;
  color: var(--black);
}
.s-intro--white .s-intro__bg:after {
  background: none;
}
@media (max-width: 768px) {
  .s-intro--white .s-intro__bg:after {
    background: rgba(255, 255, 255, 0.8);
  }
}

.intro-ratings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1550px) {
  .intro-ratings {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .intro-ratings {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .intro-ratings {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.intro-rating {
  display: flex;
  gap: 20px;
  padding: 26px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
          user-select: none;
  transition: background 0.3s ease, scale 0.05s ease;
}
@media (max-width: 1550px) {
  .intro-rating {
    gap: 15px;
    padding: 15px;
  }
}
@media (hover: hover) {
  .intro-rating:hover {
    background: rgba(204, 204, 204, 0.1);
  }
}
.intro-rating:active {
  background: rgba(204, 204, 204, 0.2);
  scale: 0.98;
}

.intro-rating__img {
  display: block;
  width: 70px;
  height: auto;
  border-radius: 10px;
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 1550px) {
  .intro-rating__img {
    width: 50px;
  }
}

.intro-rating__val {
  position: relative;
  font-size: 130px;
  line-height: 0.78;
  margin-right: 0.05em;
}
@media (max-width: 1550px) {
  .intro-rating__val {
    font-size: 100px;
  }
}
@media (max-width: 1024px) {
  .intro-rating__val {
    font-size: 80px;
  }
}
.intro-rating__val strong {
  display: block;
  font-weight: normal;
}
.intro-rating__val svg {
  position: absolute;
  top: 0.13em;
  right: -0.08em;
  width: 0.19em;
  height: auto;
}

.intro-rating__right {
  padding-top: 2px;
}

.intro-rating__title {
  margin-bottom: 0.8em;
}
@media (max-width: 680px) {
  .intro-rating__title {
    margin-bottom: 0.4em;
  }
}

.intro-rating__descr {
  font-size: 18px;
  text-wrap: pretty;
  line-height: 1.5;
  max-width: 15em;
}
@media (max-width: 1840px) {
  .intro-rating__descr {
    font-size: 16px;
  }
}
@media (max-width: 1550px) {
  .intro-rating__descr {
    font-size: 12px;
  }
}

.rating-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 40px;
  color: #FFF;
}
@media (max-width: 480px) {
  .rating-aside {
    padding: 25px;
  }
}
.rating-aside .arrow-link {
  margin-top: auto;
}

.rating-aside__img {
  display: block;
  width: 260px;
  height: auto;
  margin-bottom: 70px;
  border-radius: 10px;
}
@media (max-width: 1550px) {
  .rating-aside__img {
    width: 180px;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .rating-aside__img {
    width: 150px;
    margin-bottom: 30px;
  }
}

.rating-aside__title {
  font-size: 55px;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 1550px) {
  .rating-aside__title {
    font-size: 40px;
  }
}

.rating-aside__descr {
  color: var(--text-gray);
  font-size: 20px;
  padding-bottom: 30px;
}
@media (max-width: 1550px) {
  .rating-aside__descr {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .rating-aside__descr {
    font-size: 14px;
  }
}
.rating-aside__descr p {
  margin-bottom: 1em;
}
.rating-aside__descr p:last-child {
  margin-bottom: 0;
}

.s-service {
  overflow: hidden;
}
.s-service .title-margined {
  margin-bottom: max(50px, 10rem);
}

.s-service__title {
  margin-bottom: 0.7em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service {
  --service-border-color: rgba(194, 194, 194, 0.3);
  --service-border-hover-color: var(--bg-gray-dark);
  --service-list-color: var(--text-gray);
  --service-hover-bg-color: var(--bg-gray-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1px solid var(--service-border-color);
  border-radius: 10px;
  padding: 30px 35px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, scale 0.05s ease, opacity 0.6s ease, translate 0.6s ease;
  min-height: 410px;
}
@media (max-width: 1550px) {
  .service {
    padding: 25px;
    min-height: 350px;
  }
}
@media (max-width: 1024px) {
  .service {
    padding: 20px;
    padding-bottom: 12px;
    min-height: initial;
  }
}
@media (hover: hover) {
  .service:hover {
    background: var(--service-hover-bg-color);
    border-color: var(--service-border-hover-color);
  }
  .service:hover .arrow-link {
    opacity: 1;
  }
}
.service:active {
  background: var(--service-hover-bg-color);
  border-color: var(--service-border-hover-color);
  scale: 0.98;
}
.service:active .arrow-link {
  opacity: 1;
}
.service .arrow-link {
  opacity: 0;
}
@media (max-width: 1024px) {
  .service .arrow-link {
    opacity: 1;
    font-size: 12px;
  }
}
.service.anim {
  opacity: 0;
  translate: 0 10px;
}
.service.animated {
  opacity: 1;
  translate: 0 0;
}

.service__title {
  line-height: 1;
  margin-bottom: 0.8em;
  font-size: clamp(20px, 1.9vw, 36px);
}

.service__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: auto;
  padding-top: 40px;
}
@media (max-width: 1024px) {
  .service__bottom {
    padding-top: 25px;
  }
}

.service__list {
  color: var(--service-list-color);
  font-size: clamp(12px, 1.1vw, 20px);
  line-height: 1.2;
  list-style: none;
}
.service__list li {
  margin-bottom: 0.8em;
}
.service__list li:last-child {
  margin-bottom: 0;
}

.service__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-align: center;
  border: 1px solid #FFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 1550px) {
  .service__counter {
    bottom: 15px;
    right: 15px;
    font-size: 12px;
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 1024px) {
  .service__counter {
    display: none;
  }
}

.s-sec-white .service {
  --service-border-color: rgba(143, 143, 143, 0.3);
  --service-border-hover-color: rgba(143, 143, 143, 0.3);
  --service-list-color: var(--gray-for-white);
  --service-hover-bg-color: #FAFAFA;
}

.s-services-logos {
  overflow: hidden;
}

.s-service__subtitle {
  margin-bottom: 0.3em;
}

.logos-slider {
  overflow: visible;
}
.logos-slider .swiper-slide {
  width: 252px;
  aspect-ratio: 1/1;
  transition: opacity 0.6s ease, translate 0.6s ease;
}
@media (max-width: 1024px) {
  .logos-slider .swiper-slide {
    width: 160px;
  }
}
.logos-slider.anim .swiper-slide {
  opacity: 0;
  translate: 15px 0;
}
.logos-slider.anim .swiper-slide:nth-child(1) {
  transition-delay: 0.1s;
}
.logos-slider.anim .swiper-slide:nth-child(2) {
  transition-delay: 0.2s;
}
.logos-slider.anim .swiper-slide:nth-child(3) {
  transition-delay: 0.3s;
}
.logos-slider.anim .swiper-slide:nth-child(4) {
  transition-delay: 0.4s;
}
.logos-slider.anim .swiper-slide:nth-child(5) {
  transition-delay: 0.5s;
}
.logos-slider.anim .swiper-slide:nth-child(6) {
  transition-delay: 0.6s;
}
.logos-slider.anim .swiper-slide:nth-child(7) {
  transition-delay: 0.7s;
}
.logos-slider.anim .swiper-slide:nth-child(8) {
  transition-delay: 0.8s;
}
.logos-slider.anim .swiper-slide:nth-child(9) {
  transition-delay: 0.9s;
}
.logos-slider.anim .swiper-slide:nth-child(10) {
  transition-delay: 1s;
}
.logos-slider.anim .swiper-slide:nth-child(11) {
  transition-delay: 1.1s;
}
.logos-slider.anim .swiper-slide:nth-child(12) {
  transition-delay: 1.2s;
}
.logos-slider.anim .swiper-slide:nth-child(13) {
  transition-delay: 1.3s;
}
.logos-slider.anim .swiper-slide:nth-child(14) {
  transition-delay: 1.4s;
}
.logos-slider.anim .swiper-slide:nth-child(15) {
  transition-delay: 1.5s;
}
.logos-slider.anim .swiper-slide:nth-child(16) {
  transition-delay: 1.6s;
}
.logos-slider.anim .swiper-slide:nth-child(17) {
  transition-delay: 1.7s;
}
.logos-slider.anim .swiper-slide:nth-child(18) {
  transition-delay: 1.8s;
}
.logos-slider.anim .swiper-slide:nth-child(19) {
  transition-delay: 1.9s;
}
.logos-slider.anim .swiper-slide:nth-child(20) {
  transition-delay: 2s;
}
.logos-slider.animated .swiper-slide {
  opacity: 1;
  translate: 0px 0;
}

.logos-slider__logo {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.s-services-complex .title-margined {
  margin-bottom: max(30px, 5rem);
}
.s-services-complex .half-text {
  margin-bottom: max(30px, 6rem);
}

.services-complex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 94rem;
}
@media (max-width: 680px) {
  .services-complex {
    height: 320rem;
    flex-direction: column;
  }
}

.services-complex__circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
@media (max-width: 680px) {
  .services-complex__circles {
    display: none;
  }
}

.services-complex__circles--v {
  display: none;
}
@media (max-width: 680px) {
  .services-complex__circles--v {
    display: block;
  }
}

.services-complex__item {
  position: relative;
  z-index: 2;
}
.services-complex__item .h3 {
  max-width: 8em;
  margin-bottom: 1em;
}
.services-complex__item .text-small {
  max-width: 25em;
  color: var(--text-gray);
  --min-fz: 10px;
}

.s-sec-white .services-complex__item .text-small {
  color: var(--gray-for-white);
}

.s-services-works .title-margined {
  margin-bottom: max(30px, 5rem);
}

.s-services-facts .title-margined {
  margin-bottom: max(50px, 10rem);
}

.services-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(40px, 15rem) max(30px, 4rem);
}
@media (max-width: 680px) {
  .services-facts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .services-facts {
    grid-template-columns: 1fr;
  }
}

.services-fact strong {
  display: block;
  font-weight: normal;
  margin-bottom: 0.9em;
  font-size: max(var(--min-fz, 22px), 4.8rem);
}
@media (max-width: 480px) {
  .services-fact strong {
    margin-bottom: 0.5em;
  }
}
.services-fact .text {
  color: var(--text-gray);
  max-width: 24em;
}

.s-pencase-intro {
  padding-top: clamp(110px, 20vh, 240px);
  padding-bottom: 25px;
}

.pencase-intro {
  margin-bottom: 0.3em;
}

.pencase-intro__title {
  font-weight: 300;
  line-height: 1;
  font-size: 150px;
  font-size: clamp(42px, 8vw, 150px);
  margin-bottom: clamp(20px, 0.3em, 45px);
}

.pencase-intro__descr {
  font-size: clamp(20px, 4.3vw, 80px);
  font-weight: normal;
  line-height: 1;
}
.pencase-intro__descr div {
  display: block;
  text-align: right;
}
@media (max-width: 680px) {
  .pencase-intro__descr div {
    display: inline;
    text-align: left;
  }
}

.pencase-intro__descr span {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.s-pencases-grid {
  padding-top: 75px;
}

.s-pencases-grid__title {
  text-align: center;
  margin-bottom: 1em;
}

.pencases-grid {
  display: flex;
  justify-content: center;
  gap: var(--gap);
}
@media (max-width: 768px) {
  .pencases-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.pencases-grid:has(:hover) .pencase-item:not(:hover) .pencase-item__title, .pencases-grid:has(:hover) .pencase-item:not(:hover) .pencase-item__descr, .pencases-grid:has(:hover) .pencase-item:not(:hover) .pencase-item__bottom {
  opacity: 0.3;
}

.pencase-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 60px 30px 30px 30px;
  min-height: 640px;
  max-width: 560px;
  border: 1px solid rgba(194, 194, 194, 0.3);
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, scale 0.05s ease, opacity 0.6s ease, translate 0.6s ease;
}
@media (max-width: 1550px) {
  .pencase-item {
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .pencase-item {
    padding: 25px;
    min-height: initial;
  }
}
@media (hover: hover) {
  .pencase-item:hover {
    background: var(--bg-gray-dark);
    border-color: var(--bg-gray-dark);
  }
  .pencase-item:hover .pencase-item__big {
    opacity: 1;
  }
}
.pencase-item:active {
  background: var(--bg-gray-dark);
  border-color: var(--bg-gray-dark);
  scale: 0.98;
}
.pencase-item.anim-start, .pencase-item.anim {
  opacity: 0;
  translate: 0 10px;
}
.pencase-item.animated {
  opacity: 1;
  translate: 0 0;
}

.pencase-item__title {
  margin-bottom: 1em;
  transition: opacity 0.3s ease;
}

.pencase-item__descr {
  color: var(--text-gray);
  transition: opacity 0.3s ease;
}

.pencase-item__big {
  white-space: nowrap;
  font-size: clamp(90px, 7vw, 130px);
  line-height: 1;
  margin-top: auto;
  padding: 0.7em 0;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .pencase-item__big {
    padding: 0.5em 0;
  }
}

.pencase-item__bottom {
  display: flex;
  justify-content: space-between;
  transition: opacity 0.3s ease;
}

.pencase-item__counter {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.s-pencase {
  background: #FFF;
  color: var(--black);
}
.s-pencase .container {
  display: flex;
  flex-direction: column;
  padding-top: clamp(110px, 20vh, 240px);
  padding-bottom: 50px;
  min-height: 100dvh;
}
@media (max-width: 1024px) {
  .s-pencase .container {
    min-height: initial;
  }
}

.pencase__title {
  text-align: center;
  margin-bottom: 1em;
}

.pencase__main {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pencase-input {
  font-size: 20px;
  line-height: 1.3;
  font-family: var(--font);
  color: var(--black);
  background: #FFF;
  border: 1px solid var(--text-gray);
  border-radius: 10px;
  width: 100%;
  height: 4em;
  padding: 1em 1.5em;
}
@media (max-width: 680px) {
  .pencase-input {
    font-size: 16px;
  }
}
.pencase-input::placeholder {
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-gray);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media (max-width: 680px) {
  .pencase-input::placeholder {
    font-size: 16px;
  }
}
.pencase-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color, #000);
}

textarea.pencase-input {
  resize: vertical;
  height: auto;
}

.pencase__result {
  margin-top: 20px;
  font-size: 16px;
}
.pencase__result::placeholder {
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-gray);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media (max-width: 680px) {
  .pencase__result::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 680px) {
  .pencase__result {
    margin-top: 15px;
  }
}

.pencase-bottom {
  margin-top: auto;
  padding-top: 50px;
  text-align: center;
  color: var(--text-gray);
}
@media (max-width: 680px) {
  .pencase-bottom .small-title {
    font-size: 10px;
  }
}

.pencase-counter {
  font-size: 30px;
  color: #808080;
}
@media (max-width: 680px) {
  .pencase-counter {
    font-size: 20px;
  }
}

.pencase__link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  border: none;
  background: none;
}
.pencase__link-btn:hover {
  color: var(--black);
}

.pencase__wa-form {
  --color: #25D366;
  position: relative;
}
.pencase__wa-form .pencase-input {
  border-color: var(--color);
}
.pencase__wa-form .pencase__link-btn {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 20px;
  color: var(--color);
  -webkit-tap-highlight-color: transparent;
}

.pencase__tg-form {
  --color: #24A1DE;
}
.pencase__tg-form .pencase-input {
  border-color: var(--color);
}
.pencase__tg-form .pencase__link-btn {
  display: flex;
  width: 100%;
  color: var(--color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.pencase__tg-form__row {
  display: flex;
  align-items: center;
  gap: 5px 30px;
}
@media (max-width: 680px) {
  .pencase__tg-form__row {
    flex-direction: column;
  }
}

.pencase__tg-form__or {
  color: var(--text-gray);
  font-size: 20px;
  white-space: nowrap;
}

.s-text-page-intro {
  background: #FFF;
  color: var(--black);
  padding-top: clamp(110px, 20vh, 240px);
  padding-bottom: clamp(70px, 12vh, 100px);
}
@media (max-width: 680px) {
  .s-text-page-intro {
    padding-top: 110px;
    padding-bottom: 50px;
  }
}

.text-page__h1 {
  font-size: 150px;
  font-size: clamp(32px, 8vw, 150px);
  font-weight: 300;
  line-height: 1;
}

.s-text-page-links {
  background: #FFF;
  color: var(--black);
}
.s-text-page-links .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
.s-text-page-links .arrow-link {
  white-space: initial;
}

.s-text-page {
  background: #FFF;
  color: var(--black);
}

.text-page {
  font-size: clamp(14px, 1.1vw, 20px);
}

.text-page-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px clamp(40px, 6vw, 100px);
  margin-bottom: clamp(50px, 6vw, 100px);
}
@media (max-width: 768px) {
  .text-page-block {
    grid-template-columns: 1fr;
  }
}
.text-page-block:last-child {
  margin-bottom: 0;
}

.text-page-block--small-margin {
  margin-bottom: clamp(25px, 3vw, 40px);
}

@media (max-width: 768px) {
  .text-page__intro-spacer {
    display: none;
  }
}

.text-page-typo ul, .text-page-typo ol {
  padding-left: 1em;
}
.text-page-typo ul li, .text-page-typo ol li {
  margin-bottom: 0.5em;
}
.text-page-typo ul li:last-child, .text-page-typo ol li:last-child {
  margin-bottom: 0;
}
.text-page-typo h1, .text-page-typo .h1, .text-page-typo h2, .text-page-typo .h2, .text-page-typo h3, .text-page-typo .h3, .text-page-typo h4, .text-page-typo .h4, .text-page-typo h5, .text-page-typo .h5 {
  margin-top: 50px;
  margin-bottom: 25px;
}
@media (max-width: 680px) {
  .text-page-typo h1, .text-page-typo .h1, .text-page-typo h2, .text-page-typo .h2, .text-page-typo h3, .text-page-typo .h3, .text-page-typo h4, .text-page-typo .h4, .text-page-typo h5, .text-page-typo .h5 {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}
.text-page-typo h1:first-child, .text-page-typo .h1:first-child, .text-page-typo h2:first-child, .text-page-typo .h2:first-child, .text-page-typo h3:first-child, .text-page-typo .h3:first-child, .text-page-typo h4:first-child, .text-page-typo .h4:first-child, .text-page-typo h5:first-child, .text-page-typo .h5:first-child {
  margin-top: 0;
}
.text-page-typo h1:last-child, .text-page-typo .h1:last-child, .text-page-typo h2:last-child, .text-page-typo .h2:last-child, .text-page-typo h3:last-child, .text-page-typo .h3:last-child, .text-page-typo h4:last-child, .text-page-typo .h4:last-child, .text-page-typo h5:last-child, .text-page-typo .h5:last-child {
  margin-bottom: 0;
}
.text-page-typo p, .text-page-typo ul, .text-page-typo ol, .text-page-typo table {
  margin-bottom: 0.75em;
}
.text-page-typo p:last-child, .text-page-typo ul:last-child, .text-page-typo ol:last-child, .text-page-typo table:last-child {
  margin-bottom: 0;
}
.text-page-typo a {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  text-underline-offset: 0.3em;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .text-page-typo a:hover {
    text-decoration-color: rgb(0, 0, 0);
  }
}
.text-page-typo a:active {
  text-decoration-color: rgb(0, 0, 0);
}
.text-page-typo strong {
  font-weight: bold;
}
.text-page-typo small {
  font-size: 0.8em;
}

.s-service-targets .h2 {
  max-width: 20em;
  margin-bottom: max(30px, 8rem);
  text-wrap: pretty;
}

.service-targets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px var(--gap);
}
@media (max-width: 768px) {
  .service-targets {
    grid-template-columns: 1fr;
  }
}

.service-target {
  padding-right: max(20px, 6rem);
}
.service-target .h3-big {
  margin-bottom: 0.5em;
}

.service-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px var(--gap);
}
@media (max-width: 768px) {
  .service-case-grid {
    grid-template-columns: 1fr;
  }
}

.service-case-grid__left .h2 {
  padding-right: 30px;
  position: sticky;
  top: 90px;
}

.service-case-grid__right {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .service-case-grid__right {
    grid-column: span 1;
  }
}

.service-case {
  display: block;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .service-case:hover {
    opacity: 0.7;
  }
}

.service-case__cats {
  display: flex;
  flex-wrap: wrap;
  font-size: max(10px, 1.4rem);
  gap: 0.7em;
  margin-bottom: max(8px, 1.5rem);
  color: var(--gray-for-white);
}

.service-case__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 860/580;
}

.service-case__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px var(--gap);
  padding-top: max(10px, 2rem);
}
@media (max-width: 480px) {
  .service-case__bottom {
    grid-template-columns: 1fr;
  }
}

.service-case__title {
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}
.service-case__title svg {
  position: relative;
  stroke: currentColor;
  width: 0.5em;
  height: auto;
  top: 0.1em;
}

.service-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px var(--gap);
}
@media (max-width: 680px) {
  .service-steps-grid {
    grid-template-columns: 1fr;
  }
}

.service-steps-grid__left .h1 {
  position: sticky;
  top: 90px;
}

.service-steps-grid__right {
  grid-column: span 2;
}
@media (max-width: 680px) {
  .service-steps-grid__right {
    grid-column: span 1;
  }
}

.service-steps {
  counter-reset: ss;
}
.service-steps .faq-item {
  counter-increment: ss;
}
.service-steps .faq-item__head {
  padding-left: 15rem;
  position: relative;
}
.service-steps .faq-item__head:before {
  content: counter(ss, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: max(12px, 2.8rem);
}
.service-steps .user-content {
  padding-left: 15rem;
  max-width: initial;
}
.service-steps .user-content p, .service-steps .user-content ul, .service-steps .user-content ol {
  max-width: 38em;
}

.s-test {
  padding-top: 200px;
  padding-bottom: 100px;
  overflow: hidden;
}

.previews-slider {
  overflow: visible;
}
.previews-slider .swiper-slide {
  width: 320px;
}
@media (max-width: 480px) {
  .previews-slider .swiper-slide {
    width: 200px;
  }
}

.preview {
  position: relative;
  border-radius: 5px;
  background: var(--bg-gray-dark);
  width: 100%;
  aspect-ratio: 9/16;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
@media (hover: hover) {
  .preview:hover {
    background: hsl(0, 0%, 20%);
  }
}
.preview img, .preview video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories .fancybox__slide {
  padding: 20px 0px !important;
}
.stories .fancybox__backdrop {
  --fancybox-bg: rgba(0, 0, 0, 0.95);
}

.modal-stories {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: none;
  overflow: hidden;
  padding: 0;
  justify-content: center;
  border-radius: 0;
  pointer-events: none;
}
.modal-stories .f-button.is-close-btn {
  right: 10px;
  top: 10px;
}

.stories-slider {
  width: 100%;
  pointer-events: none;
}
.stories-slider > .swiper-wrapper {
  display: inline-flex;
  width: auto;
  pointer-events: all;
}
@media (max-width: 680px) {
  .stories-slider > .swiper-wrapper {
    display: flex;
    width: 100%;
  }
}
.stories-slider > .swiper-wrapper > .swiper-slide {
  display: flex;
  align-items: stretch;
  aspect-ratio: 9/16;
  width: calc((100dvh - 40px) / 16 * 9);
  max-width: calc(100% - 40px);
  height: auto;
  padding: 0;
}
.stories-slider .swiper-slide-active .storie {
  scale: 1;
}
.stories-slider .swiper-slide-active .storie:after {
  opacity: 0;
  visibility: hidden;
}

.storie {
  aspect-ratio: 9/16;
  background: hsl(0, 0%, 20%);
  max-width: 100%;
  max-height: 100%;
  scale: 0.8;
  transition: scale 0.3s ease;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 680px) {
  .storie {
    scale: 0.95;
  }
}
.storie:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.storie .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  top: 0;
  left: 0;
  width: 100%;
  bottom: initial;
  margin-top: 10px;
  margin-left: 6px;
  width: calc(100% - 12px);
}
.storie .swiper-pagination .swiper-pagination-bullet {
  display: block;
  background: #FFF;
  opacity: 1;
  flex: 1 1 0%;
  border-radius: 4px;
  height: 8px;
  width: auto;
  margin: 0;
}
.storie .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.storie .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active ~ .swiper-pagination-bullet {
  opacity: 0.5;
}

.story-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.story-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-slider-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
  z-index: 5;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease;
}
@media (hover: hover) {
  .story-slider-nav:hover:not(.swiper-button-disabled) {
    background: rgba(0, 0, 0, 0.15);
  }
}
.story-slider-nav:active:not(.swiper-button-disabled) {
  background: rgba(0, 0, 0, 0.3);
}
.story-slider-nav:focus:not(.swiper-button-disabled) {
  outline: none;
  box-shadow: none;
}
.story-slider-nav.swiper-button-disabled {
  cursor: default;
}

.story-slider-nav--prev {
  left: 0;
}

.story-slider-nav--next {
  right: 0;
}
/* End */
/* /local/templates/main/css/main.css?1781681322161101 */
