/* SWIPER CSS */
/**
 * Swiper 14.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 9, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  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;
}
/* Auto Height */
.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;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0)
    );
  }
  .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:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-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-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .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& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &: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-vertical > .swiper-pagination-bullets,
.swiper-pagination-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-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
  .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-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.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-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.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-vertical > &,
  &.swiper-scrollbar-vertical {
    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;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.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-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .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-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &: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;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.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;
  }
}
/* SWIPER CSS END */

.banner {
  background-color: #021735;
  /* min-height: 512px; */
  padding-top: 44px;
}
.banner__gray {
  background: #dee2ea;
}
.banner-inner {
  display: flex;
  position: relative;
  padding-top: 45px;
  padding-bottom: 66px;
}
.banner-inner::before {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  left: 0;
  right: 0;
  background: #c0c5d4;
}
.banner-info {
  width: 60%;
}
.banner-title {
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
.banner-title__green {
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 57.6px */
  text-transform: uppercase;
}
.banner-title__green {
  color: #73d678;
}
.banner-title__dark {
  color: #021735;
}
.banner-description {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.822px;
}
.banner-description__dark {
  color: #021735;
}
.banner-img {
  position: absolute;
  right: 0;
  width: 50%;
}
.banner-img2 {
  width: 35%;
  margin-top: -25px;
}
.banner-img img {
  width: 100%;
}

.content {
  background-image: url("/upload/landing_assets/cropwise1/sect-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: white;
  padding-top: 80px;
}

.social {
  width: 60%;
  margin-bottom: 104px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 54px;
  border-left: 5px solid #0089f3;
}
.social-text-cropwise {
  color: #212121;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 30px;
}
.social-text-cropwise span,
.social-text-cropwise a {
  color: #0089f3;
}
.social-buttons {
  display: flex;
}
.social-button {
  display: block;
  width: 165px;
  height: 45px;
  border-radius: 3px;
  text-decoration: none;
  color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 11px;
}
.social-button__tg {
  background: linear-gradient(90deg, #4690c7 15.15%, #5da4db 92.95%);
}
.social-button__vk {
  background: linear-gradient(90deg, #1c69c0 15.15%, #4073ae 92.95%);
}
.social-button__wa {
  background: linear-gradient(90deg, #2dc768 15.15%, #26d066 92.95%);
}
.social-button img {
  width: 23px;
  height: 23px;
  margin-right: 5px;
}
.social-button span {
  color: #f7f7f7;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.schema {
  margin-bottom: 111.5px;
}

.links-wrap {
  background: #f2f4fa;
  padding-top: 124px;
  padding-bottom: 132px;
}
.links-inner {
  display: flex;
}
.link {
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  background-color: white;
  text-decoration: none;
}
.link:first-of-type {
  margin-right: 20px;
}
.link:last-of-type {
  margin-left: 20px;
}
.link > img {
  width: calc(100% - 20px);
  -webkit-box-shadow: 20px -20px 0px 0px rgba(2, 23, 53, 1);
  -moz-box-shadow: 20px -20px 0px 0px rgba(2, 23, 53, 1);
  box-shadow: 20px -20px 0px 0px rgba(2, 23, 53, 1);
}
.link-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 20px;
  padding-left: 30px;
}
.link-title {
  color: #021735;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.link-button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  border-radius: 26px;
  background: #0089f3;
  width: 150px;
  height: 52px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.link-button img {
  height: 12px;
  width: auto;
  margin-left: 12px;
}

.section-full-width {
  overflow-x: hidden;
}
.video {
  background: #021735;
  margin-bottom: 50px;
}
.video-info {
  display: flex;
  justify-content: space-between;
  padding-top: 120px;
  padding-bottom: 120px;
}
.video-title {
  color: #fff;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;

  padding-left: 53px;
  padding-top: 8px;
  padding-bottom: 22px;
  border-left: 5px solid #0089f3;
}
.video-description {
  color: #fff;
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 21.159px;
  padding-top: 8px;
}

.video-inner {
  /* display: flex;
  flex-wrap: nowrap; */
  max-width: 100%;
  padding-top: 70px;
  padding-bottom: 80px;
  overflow: hidden;
}
.video-inner-swiper {
  /* width: 75%;
  overflow: visible; */
  overflow: visible;
  /* width: 75% !important;
  margin: 0 auto !important; */
}
.video-inner .swiper-wrapper {
  /* width: 100%;
  display: flex;
  overflow: visible; */
}
.swiper-slide-zindex {
  z-index: 100;
}
.image-item,
.video-item {
  /* width: 25%; */
  width: 100%;
  height: fit-content;
  position: relative;
  z-index: 5;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s;
}
.video-item {
  cursor: pointer;
}
.swiper-slide-active .video-item,
.video-item-active {
  border-radius: 0.325rem;
  transform: scale(1.4);
  transition: transform 0.3s;
  z-index: 10;
}
.swiper-slide-active {
  z-index: 101;
}
.swiper-slide-noscale {
  z-index: 100;
}
.swiper-slide-noscale .video-item {
  transform: scale(1);
}
.image-item img,
.video-item img {
  width: 100%;
}
.video-item__big {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: relative;

  width: 30%;
}
.video-item__big iframe {
  width: 100%;
}
.video-item__big > img {
  height: 100%;
  position: absolute;
  top: 0;
}
.video-play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
}
.video-play-img {
  width: 98px;
  height: 98px;
  background-image: url("/upload/landing_assets/cropwise1/play.svg");
  background-size: contain;
  background-position: 50%;
}
.video-play span {
  color: #fff;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
}

/* VIDEO SLIDER CONTROLS */
.video-inner-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-top: 21px;
  background: white;
}

.video-slider-prev,
.video-slider-next {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  border: 1px solid #021735;
  background: #fff;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: 0.2s;
}
.video-slider-prev svg,
.video-slider-next svg {
  height: 1.25rem;
  width: 1.25rem;
}

.video-slider-prev:hover,
.video-slider-next:hover {
  border: 1px solid #73d678;
  transition: 0.2s;
}
.video-slider-next {
  transform: rotate(180deg);
}

.video-slider-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content !important;
}

.video-slider-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 3px;
  margin: 0 6px !important;
  background: #021735;
  opacity: 1;
  border-radius: unset !important;
  margin: 0 !important;
  transition: 0.2s;
}
.video-slider-pagination .swiper-pagination-bullet:hover {
  background: #0089f3;
}

.video-slider-pagination .swiper-pagination-bullet-active {
  background: #73d678; /* фирменный зеленый Syngenta */
}
/* VIDEO SLIDER CONTROLS END */

/* VIDEO SLIDER */
/* .video-inner {
  max-width: 100%;
  overflow: visible;
}

.video-inner .swiper-wrapper {
  align-items: center;
}

.video-inner .swiper-slide {
  overflow: visible;
  display: flex;
  justify-content: center;
}

.image-item,
.video-item {
  width: 100%;
  height: fit-content;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.swiper-slide-active .video-item {
  transform: scale(1.4);
  z-index: 10;
  border-radius: 0.325rem;
}

.image-item img,
.video-item img {
  display: block;
  width: 100%;
}

.video-item__big {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  position: relative;
  width: 30%;
}

.video-item__big iframe {
  width: 100%;
}

.video-item__big > img {
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-play {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  position: absolute;
  inset: 0;

  cursor: pointer;
}

.video-play-img {
  width: 98px;
  height: 98px;
  background: url("/upload/landing_assets/cropwise1/play.svg") center/contain
    no-repeat;
}

.video-play span {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
} */
/* VIDEO SLIDER END */

.banner-img-mobile {
  display: none;
}
.schema-img-mobile,
.schema-item {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  justify-content: center;
  align-items: center;
  display: none;
}
.overlay.active {
  display: flex;
}
.modal {
  display: none;
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: flex;
  flex-direction: column;
  background: rgba(2, 23, 53, 0.9);
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
}
.modal-inner-block {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: black;
}
.modal-video-decor {
  width: 65vh;
  height: 65vh;
  position: absolute;
  background: #73d678;
  bottom: -17.5px;
  right: -17.5px;
  border-radius: 0.25rem;
  z-index: 2;
}
.modal-video {
  width: 100%;
  min-height: 70vh;
  max-width: 960px;
  border: 1px solid white;
  background: black;
  display: none;
  position: relative;
  z-index: 5;
}
.modal-video.active {
  display: block;
}
.modal-close {
  position: absolute;
  top: -17.5px;
  right: -17.5px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #73d678;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.modal-close svg {
  fill: #021735;
  width: 13px;
  height: 13px;
}

.custom-textbackzzz-buttons {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 991px) {
  .mobile-fullwidth {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .modal-inner-block {
    max-width: 100%;
    height: 100vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-video {
    min-height: 540px;
    max-width: 100%;
  }
  .modal-close {
    right: 10px;
    top: 10px;
  }
  .modal-video-decor {
    display: none;
  }
  .banner {
    background: linear-gradient(to bottom, #021735 80%, white 80%);
  }
  .banner-inner {
    padding-top: 40px;
    flex-wrap: wrap;
  }
  .banner-inner::before {
    display: none;
  }
  .banner-img {
    width: 100%;
    position: relative;
    margin-top: 0;
  }
  .banner-img img {
    padding-left: 8vw;
  }
  .banner-info {
    width: 100%;
  }
  .banner-title {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 30px */
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .banner-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.822px;
    margin-bottom: 30px;
  }
  .banner-title__green {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 30px */
    text-transform: uppercase;
  }

  .banner-img-mobile {
    display: block;
    padding-left: 0 !important;
  }
  .banner-img-desktop {
    display: none;
  }

  .content {
    padding-top: 0;
    background-image: none;
  }

  .social {
    width: 100%;
    padding-left: 0;
    border: none;
    padding-bottom: 0;
    margin-bottom: 60px;
  }
  .social-text-cropwise {
    color: #021735;
    font-family: "Noto Sans Display";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;

    border-left: 5px solid #0089f3;
    padding-left: 20px;
  }
  .social-buttons {
    flex-wrap: wrap;
  }
  .social-button {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .social-button span {
    color: #f7f7f7;
    font-family: "Noto Sans Display";
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
  }

  .schema {
    margin-bottom: 70px;
  }
  .schema-img {
    display: none;
  }
  .schema-img-mobile {
    display: block;
    margin-bottom: -5px;
  }
  .schema-item {
    display: block;
    padding: 20px;
    border: 2px solid #0089f3;
    border-radius: 5px;
    background: #f2f4fa;
  }
  .schema-lines {
    min-height: 20px;
    display: flex;
    justify-content: center;
  }
  .schema-lines span {
    border-left: 2px solid #0089f3;
    background: #0089f3;
    min-height: 20px;
    margin-right: 4px;
  }
  .schema-lines span:last-child {
    margin-right: 0;
  }
  .schema-item-title {
    color: #0089f3;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.758px;
  }
  .schema-item-description {
    color: #021735;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.159px;
  }

  .links-wrap {
    padding-bottom: 50.5px;
    padding-top: 80.5px;
  }
  .links-inner {
    flex-wrap: wrap;
  }
  .link {
    width: 100%;
    margin-bottom: 50.5px;
  }
  .link:last-of-type {
    margin-left: 0;
  }
  .link-title {
    color: #021735;
    font-family: "Noto Sans Display";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }
  .link-button {
    width: 125.806px;
    height: 26.126px;
  }
  .link-button span {
    color: #fff;
    text-align: center;
    font-family: "Noto Sans Display";
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 12.655px;
  }
  .link-button img {
    width: 3.907px;
    height: 6.327px;
    margin-left: 7.07px;
  }

  .video-info {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .video-title {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;

    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .video-description {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 21.159px;
    text-align: left;
    margin-bottom: 60.5px;
  }
  .video-description br {
    display: none;
  }

  .video-item {
    transform: scale(1) !important;
  }
  .video-item__big {
    margin-right: 0;
    margin-left: 0;
    width: 50%;
    position: absolute;
    left: 25%;
    right: 25%;
    bottom: -20px;
    top: -20px;
  }

  .video-inner {
    position: relative;
  }

  .video-play-img {
    width: 58px;
    height: 58px;
    background-repeat: no-repeat;
  }
  .video-play span {
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
  }

  .custom-textbackzzz-buttons {
    flex-direction: column;
  }

  .custom-textbackzzz-buttons a,
  .custom-textbackzzz-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .modal-video {
    min-height: 70vw;
    max-height: 70vw;
  }
  .image-item {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .modal-video {
    min-height: 70vw;
    max-height: 70vw;
  }
}
