@charset "UTF-8";

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

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

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

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

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

.swiper-button-next: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,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto
}

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto
}

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

.swiper-button-lock {
  display: none
}

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

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

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

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}

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

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

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 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: 4px;
  height: 100%;
  left: 0;
  top: 0
}

.swiper-pagination-lock {
  display: none
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */

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

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

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

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

.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-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

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

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

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

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

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

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

/* CSS Mode */
.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

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

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

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

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

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

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

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

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

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

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

.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-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 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-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

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

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

.swiper-button-prev:after,
.swiper-button-next: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,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --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.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.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: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.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: 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;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

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

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

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

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

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms 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: 200ms transform, 200ms left;
}

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

/* Progress */
.swiper-pagination-progressbar {
  background: 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-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

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

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

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: 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: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

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

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

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

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

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

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.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-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.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,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.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,
.swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

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

.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-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-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

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

.swiper-cards {
  overflow: visible;
}

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

:root {
  --color-green: #1C9524;
  --color-accent: #5A38DB;
  --color-sec--accent: #9747FF;
  --color-text: #303030;
  --color-black: #000000;
  --color-gray: #808080;
  --color-white: #fff;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

img {
  vertical-align: top;
}

html,
body {
  height: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat";
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  background-color: #F4F6FB;
}

body._lock {
  overflow: hidden;
}

.btn-reset {
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  /* overflow-x: hidden; */
}

.main {
  flex: 1 1 auto;
}

[class*=__container]:not(.fancybox__container) {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 65px;
}

@media (max-width: 796px) {
  [class*=__container]:not(.fancybox__container) {
    padding: 0 40px;
  }
}

@media (max-width: 500px) {
  [class*=__container]:not(.fancybox__container) {
    padding: 0 15px;
  }
}

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

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.67%;
}

.col-3 {
  width: 24.99%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 46.47%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.67%;
}

.col-12 {
  width: 100%;
}

.btn {
  padding: 16px 30px;
  font-weight: 600;
  line-height: 140%;
  border-radius: 10px;
  border: 1.5px solid var(--color-sec--accent);
  transition: all 0.3s ease 0s;
  font-family: "Montserrat";
}

@media (max-width: 796px) {
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .btn {
    padding: 14px 20px;
  }
}

.btn--fill {
  color: var(--color-white);
  background-color: var(--color-sec--accent);
  transition: all 0.3s ease 0s;
}

.btn--fill:hover {
  border: 1.5px solid var(--color-accent);
  background-color: var(--color-accent);
}

.btn--stroke {
  color: white;
  color: var(--color-accent);
  /* background-color: var(--color-accent); */
  transition: all 0.3s ease 0s;
  border: 1.5px solid var(--color-accent);
}

.btn--stroke:hover {
  background-color: var(--color-sec--accent);
  border: 1.5px solid var(--color-sec--accent);
  color: var(--color-white);
}

.btn--stock {
  color: var(--color-sec--accent);
  background-color: transparent;
  border: 1.5px solid var(--color-accent);
  transition: all 0.3s ease 0s;
}

.btn--stock:hover {
  color: white;
  background-color: var(--color-accent);
}

.section__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 50px;
}

@media (max-width: 968px) {
  .section__title {
    padding-bottom: 40px;
  }
}

@media (max-width: 796px) {
  .section__title {
    font-size: 24px;
    padding-bottom: 20px;
  }
}

.label {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 45px;
  top: 45px;
  cursor: pointer;
}

.restore-close {
  position: absolute;
  right: 45px;
  top: 45px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .modal-close {
    right: 20px;
    top: 20px;
  }

  .restore-close {
    right: 20px;
    top: 20px;
  }
}

.input {
  height: 44px;
  padding: 10px;
  border: 1px solid #C4C4C4;
  border-radius: 6px;
  outline: none;
  width: 100%;
}

.modal-title {
  /* H3 */
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
}

.modal-body {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}

.restore__body {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;

  &._active {
    opacity: 1;
    visibility: visible;
  }
}

.modal-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

@media (max-width: 600px) {
  .modal-wrapper {
    row-gap: 25px;
  }
}

.modal-content {
  border-radius: 10px;
  padding: 40px;
  width: 650px;
  position: relative;
  background-color: white;
}

.restore__content {
  border-radius: 10px;
  padding: 40px;
  width: 650px;
  position: relative;
  background-color: white;
  display: none;

  &._active {
    display: block;
  }
}

@media (max-width: 600px) {
  .modal-content {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    padding: 20px;
  }

  .restore__content {
    width: 100%;
    height: 100%;
    border-radius: 0px;
    padding: 20px;
  }
}

.modal-legend {
  color: #303030;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
}

.js-error._active {
  display: block;
}

.js-error {
  display: none;
  position: absolute;
  top: 73px;
  left: 0px;
  color: #EF4500;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.js-null {
  display: none;
  position: absolute;
  top: 73px;
  left: 0px;
  color: #EF4500;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.js-null._active {
  display: block;
}

.js-error.js-error-password-old {
  display: none;
  position: absolute;
  top: 73px;
  left: 0px;
  color: #EF4500;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.js-error.js-error-password-old._active {
  display: block;
}

.chart-graph {
  width: 450px;
  min-height: 540px;
  /* margin-bottom: 30px; */
}

@media (max-width: 968px) {
  .chart-graph {
    width: 500px;
  }
}

@media (max-width: 600px) {
  .chart-graph {
    width: 400px;
    height: 530px;
  }
}

.invalid~.checkmark {
  border: 2px solid red;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("Montserrat-Regular-111d9016.woff");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("Montserrat-Bold-851bdf19.woff");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("Montserrat-SemiBold-a17bcb6f.woff");
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("Montserrat-Medium-10171dd6.woff");
  font-display: swap;
}

:root {
  --color-green: #1C9524;
  --color-accent: #5A38DB;
  --color-sec--accent: #9747FF;
  --color-text: #303030;
  --color-black: #000000;
  --color-gray: #808080;
  --color-white: #fff;
}

.header {
  background-color: white;
}

.header__container {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width:1100px) {
  .header__container {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .header__container {
    /* gap: 0px; */
    /* gap: 40px; */
  }
}

@media (max-width: 600px) {
  .header__container {
    /* gap: 0px; */
    gap: 20px;
  }
}

@media (max-width: 1050px) {
  .header__logo img {
    width: 160px;
  }
}

.header__box {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

@media (max-width:1300px) {
  .header__box {
    gap: 50px;
  }
}

@media (max-width:1100px) {
  .header__box {
    gap: 30px;
  }
}

.header__descr {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #4e3b96;
  max-width: 200px;
}

@media (max-width:1050px) {
  .header__descr {
    font-size: 14px;
    line-height: 110%;
  }
}

@media (max-width:970px) {
  .header__descr {
    display: none;
  }
}

.header__tel {
  color: var(--color-text);
  font-weight: 500;
  line-height: 22px;
  opacity: 0.67;
}

@media (max-width: 796px) {
  .header__tel {
    display: none;
  }
}

.header__login {
  /* margin: 0 0 0 auto; */
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;

}

@media (max-width:600px) {
  .header__login {
    gap: 5px;
  }

}

.header__login span {
  color: var(--color-text);
  font-weight: 500;
  font-weight: 500;
  line-height: 23px;
}

@media (max-width:600px) {
  .header__login span {
    font-size: 12px;
  }
}

.hero {
  margin-bottom: 140px;
  /* background-image: url("heronew.jpeg"); */
  background-image: linear-gradient(rgba(244, 246, 251, 0), rgba(244, 246, 251, 1)), url("heronew.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1310px) {
  .hero {
    margin-bottom: 80px;
  }
}

@media (max-width: 968px) {
  .hero {
    margin-bottom: 60px;
  }
}

.hero__container {
  padding-top: 60px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__descr {
  font-size: 18px;
  line-height: 140%;
  max-width: 545px;
}

@media (max-width: 500px) {
  .hero__descr {
    max-width: 255px;
  }
}

.hero__title {
  font-family: Montserrat;
  font-size: 42px;
  font-weight: 500;
  line-height: 140%;
  max-width: 765px;
}

@media (max-width: 796px) {
  .hero__title {
    font-size: 32px;
  }
}

.hero__btns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 600px) {
  .hero__btns a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 796px) {
  .hero__btns {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

.about {
  margin-bottom: 160px;
}

@media (max-width: 1310px) {
  .about {
    margin-bottom: 80px;
  }
}

@media (max-width: 968px) {
  .about {
    margin-bottom: 60px;
  }
}

/* .about__container {
  display: flex;
  -moz-column-gap: 150px;
  column-gap: 150px;
  align-items: flex-start;
}

@media (max-width: 1310px) {
  .about__container {
    flex-direction: column;
  }
} */

.about__container .about__descr:nth-child(3) {
  margin-block: 20px 32px;
}

.about__descr {
  padding-top: 5px;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  max-width: 800px;
}

.about-features {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 28px;
}

.about-features-item {
  padding: 24px;
  background-color: var(--color-white);
  border-radius: 20px;
}

.about-features-item__title {
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.about-features-item__text {
  margin-top: 62px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.3;
}

@media (max-width: 796px) {
  .about__descr {
    font-size: 16px;
  }
}

.completed-projects__container {
  padding-bottom: 100px;
}

@media (max-width: 1310px) {
  .completed-projects__container {
    padding-bottom: 80px;
  }
}

@media (max-width: 968px) {
  .completed-projects__container {
    padding-bottom: 60px;
  }
}

.completed-projects__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.contact-information__container {
  padding-bottom: 150px;
}

@media (max-width: 1310px) {
  .contact-information__container {
    padding-bottom: 80px;
  }
}

@media (max-width: 968px) {
  .contact-information__container {
    padding-bottom: 60px;
  }
}

.contact-information__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

@media (max-width: 1310px) {
  .contact-information__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 796px) {
  .contact-information__wrapper {
    gap: 30px;
  }
}

.contact-information__map {
  width: 85%;
  height: 600px;
}

@media (max-width: 500px) {
  .contact-information__map {
    height: 300px;
  }
}

.contact-information__map ymaps {
  border-radius: 15px;
}

@media (max-width: 796px) {
  .contact-information__map {
    width: 100%;
  }
}

.requisites {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.requisites__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 500px) {
  .requisites__wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.requisites__wrapper a {
  color: var(--accent, #5A38DB);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 500px) {
  .requisites__wrapper a {
    font-size: 14px;
  }
}

.requisites__adress span {
  color: var(--accent, #5A38DB);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 500px) {
  .requisites__adress span {
    font-size: 14px;
  }
}

.requisites__title {
  color: #303030;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
  margin-bottom: 25px;
}

.requisites__caption {
  color: rgba(48, 48, 48, 0.7);
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  /* width: 100px; */
  min-width: 125px;
}

@media (max-width: 500px) {
  .requisites__caption {
    font-size: 14px;
  }
}

.requisites__value {
  color: #303030;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 500px) {
  .requisites__value {
    font-size: 14px;
  }
}

.requisites__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requisites__item {
  display: flex;
  /* align-items: center; */
  gap: 100px;
}

@media (max-width: 600px) {
  .requisites__item {
    gap: 30px;
  }
}

@media (max-width: 370px) {
  .requisites__item {
    gap: 0px;
  }
}

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

@media (max-width: 968px) {
  .stock-status__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.stock-status__title {
  padding-bottom: 0px;
}

.stock-status__container {
  display: flex;
  flex-direction: row;
  padding-top: 80px;
  padding-bottom: 40px;
}

@media (max-width: 968px) {
  .stock-status__container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.stock-status__diagram {
  width: 50%;
}

@media (max-width: 968px) {
  .stock-status__diagram {
    width: 100%;
  }
}

.stock-status__btns {
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 600px) {
  .stock-status__btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stock-status__btns button {
    width: 100%;
  }
}

#chart div {
  white-space: wrap !important;
}

.chart-label {
  width: 410px;
}

.chart-label__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chart-label__item {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 19.6px */
  display: flex;
  gap: 10px;
  align-items: center;
}

.chart-color {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
}

.chart-color-1 {
  background-color: rgb(54, 105, 201);
}

.chart-color-2 {
  background-color: rgb(152, 20, 151);
}

.chart-color-3 {
  background-color: rgb(28, 149, 36);
}

.chart-color-4 {
  background-color: rgb(253, 153, 39);
}

.chart-color-5 {
  background-color: rgb(218, 59, 33);
}

.myChart-wrap {
  margin-bottom: 30px;
}

.chart-tooltip {
  max-width: 200px;
}

.chartjs-tooltip {
  max-width: 150px !important;
  word-wrap: break-word !important;
}

.facilities {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

@media (max-width: 968px) {
  .facilities {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .facilities {
    width: 100%;
  }
}

.facilities__subtitile {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 19.6px */
}

.facilities__value {
  color: var(--accent, #5A38DB);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

@media (max-width: 600px) {
  .facilities__value {
    font-size: 28px;
  }
}

.facilities__wrapper {
  display: flex;
  flex-direction: column;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.stats__list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.stats__descr {
  width: 160px;
}

.stats__item {
  gap: 80px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .stats__item {
    flex-direction: column;
    gap: 10px;
  }
}

.stats__value {
  color: #303030;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
}

.stats__dynamic {
  color: #5A38DB;
}

.projects__title {
  padding-bottom: 0px;
}

@media (max-width: 1200px) {
  .projects__wrapper {
    width: 100%;
  }
}

.projects__container {
  display: flex;
  flex-direction: row;
  padding-bottom: 60px;
}

@media (max-width: 1200px) {
  .projects__container .col-3 {
    display: none;
  }
}

.projects__title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}

@media (max-width: 600px) {
  .projects__title-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.projects__arrow {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 7px;
  color: #303030;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.new-projects__container {
  display: flex;
  flex-direction: row;
  padding-bottom: 140px;
}

@media (max-width: 968px) {
  .new-projects__container {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .new-projects__container .col-3 {
    display: none;
  }
}

@media (max-width: 1200px) {
  .new-projects__wrapper {
    width: 100%;
  }
}

.projects-all__container {
  display: flex;
  flex-direction: row;
  padding-top: 80px;
  padding-bottom: 140px;
}

@media (max-width: 968px) {
  .projects-all__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .projects-all__container .col-1 {
    display: none;
  }

  .projects-all__container .col-9 {
    width: 100%;
  }
}

.projects-all__list {
  padding-bottom: 40px;
}

.history__container {
  display: flex;
  flex-direction: row;
  padding-top: 80px;
  padding-bottom: 140px;
}

@media (max-width: 968px) {
  .history__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .history__container .col-1 {
    display: none;
  }

  .history__container .col-6 {
    width: 80%;
  }
}

@media (max-width: 1200px) and (max-width: 800px) {
  .history__container .col-6 {
    width: 100%;
  }
}

.history__data {
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  /* 28px */
}

.history__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (max-width: 600px) {
  .history__list {
    gap: 30px;
  }
}

.history__info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.history__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.history__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 5px;
}

@media (max-width: 600px) {
  .history__wrapper {
    flex-direction: column;
  }
}

.history__subtitle {
  color: #5A38DB;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  max-width: 460px;
}

@media (max-width: 600px) {
  .history__subtitle {
    font-size: 20px;
  }
}

.history__descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .history__descr {
    font-size: 14px;
  }
}

.history__balance {
  color: #5A38DB;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
}

@media (max-width: 600px) {
  .history__balance {
    font-size: 18px;
  }
}

[data-history=withdrawal-payment] .history__subtitle {
  color: #9747FF;
}

[data-history=withdrawal-payment] .history__balance {
  color: #9747FF;
}

.profile__container {
  padding-top: 80px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: row;
}

@media (max-width: 968px) {
  .profile__container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .profile__container .col-1 {
    display: none;
  }

  .profile__container .col-7 {
    width: 100%;
  }
}

.profile__item {
  display: flex;
  align-items: center;
  gap: 75px;
}

@media (max-width: 700px) {
  .profile__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 400px;
  }
}

.profile__list {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  padding-bottom: 50px;
}

@media (max-width: 400px) {
  .profile__list {
    row-gap: 25px;
  }
}

.profile__value {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: inline-block;
  /* 28px */
}

@media (max-width: 400px) {
  .profile__value {
    font-size: 16px;
  }
}

.profile__heading {
  display: inline-block;
  font-size: 14px;
  width: 150px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 19.6px */
  opacity: 0.5;
}

.detail-project__container {
  padding-top: 80px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: row;
}

@media (max-width: 968px) {
  .detail-project__container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .detail-project__container {
    padding-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .detail-project__container .col-1 {
    display: none;
  }

  .detail-project__container .col-9 {
    width: 100%;
  }
}

.detail-project__title {
  /* h2 */
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 50.4px */
  margin-bottom: 10px;
  max-width: 700px;
}

@media (max-width: 968px) {
  .detail-project__title {
    font-size: 24px;
  }
}

@media (max-width: 450px) {
  .detail-project__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.detail-project__subtitle {
  color: #5A38DB;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 15px;
  display: inline-block;
}

.detail-project__wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 450px) {
  .detail-project__wrap {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.detail-project__text {
  color: black;
  opacity: 0.5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.detail-project__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

@media (max-width: 1400px) {
  .detail-project__row {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .detail-project__row {
    margin-bottom: 30px;
  }
}

.detail-project__slide {
  position: relative;
  height: 0;
  padding-top: 56%;
}

@media (max-width: 500px) {
  .detail-project__slide {
    padding-top: 100%;
  }
}

.detail-project__img {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.detail-project__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 32px;
  background-color: #1C9524;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  gap: 10px;
  color: white;
  cursor: pointer;
  line-height: 140%;
  /* 22.4px */
}

.detail-project__current {
  cursor: initial;
}

.detail-project__participate {
  background-color: #714ED1;
}

.detail-project__wait {
  background-color: #5A38DB;
}

.detail-project__swiper {
  border-radius: 10px;
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .detail-project__swiper {
    margin-bottom: 30px;
  }
}

.detail-project__swiper .swiper-button-next,
.detail-project__swiper .swiper-button-prev {
  width: 14px;
  height: 14px;
}

.detail-project__swiper .swiper-button-prev {
  position: absolute;
  left: 40px;
}

.detail-project__swiper .swiper-button-next {
  position: absolute;
  right: 40px;
}

@media (max-width:600px) {
  .detail-project__swiper .swiper-button-next {
    right: 15px;
  }

  .detail-project__swiper .swiper-button-prev {
    left: 15px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  margin-top: 0px !important;
}

.detail-project__swiper .swiper-pagination {
  /* display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* position: absolute; */
  /* bottom: 30px;  */
  /* flex-wrap: wrap; */
  /* gap: 10px; */
  /* left: 50% !important;
  transform: translateX(-50%) !important;  */
}

.swiper-pagination {
  width: 115px !important;
}

@media (max-width:600px) {
  .swiper-pagination {
    width: 100px !important;
  }
}

.detail-project__swiper .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px)) !important;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px)) !important;
  /* width: 14px;
  height: 14px; */
  transform: scale(1);
  /* padding: 5px; */
  background-color: white;
  /* opacity: 1;
  margin: 0 7px !important;   */
  /* padding: 8px !important; */
  /* cursor: pointer; */
}

@media (max-width:600px) {
  .detail-project__swiper .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px)) !important;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px)) !important;
  }
}

.detail-project__swiper .swiper-pagination-bullet::before {
  /* content: ""; */
  /* position: absolute; */
  /* top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  border-radius: 50%;
  background-color: transparent;  */
}

.swiper-pagination-bullet-active-prev {
  /* width: 14px !important;
  height: 14px !important;  */
  transform: scale(1);
}

.swiper-pagination-bullet-active-next {
  /* width: 14px !important;
  height: 14px !important;  */
  transform: scale(1);
}

.swiper-pagination-bullet-active-prev-prev {
  /* width: 10px !important;
  height: 10px !important; */
  transform: scale(1);
}

.swiper-pagination-bullet-active-next-next {
  /* width: 10px !important;
  height: 10px !important; */
  transform: scale(1);
}

.detail-project__swiper .swiper-pagination-bullet-active {
  /* width: 16px;
  height: 16px; */
  /* padding: 15px !important; */
}

.detail-project__list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
  column-gap: 80px;
  row-gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 968px) {
  .detail-project__list {
    row-gap: 20px;
  }
}

.detail-project__item {
  width: 327px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-project__heading {
  color: #5A38DB;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.detail-project__value {
  color: var(--, #303030);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.project-detail__heading {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.project-detail__value {
  color: #5A38DB;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 56px */
}

.project-detail__list {
  display: flex;
  -moz-column-gap: 80px;
  column-gap: 80px;
  row-gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .project-detail__list {
    row-gap: 20px;
  }
}

.project-detail__item {
  width: 275px;
}

.footer__container {
  padding-bottom: 60px;
  -moz-column-gap: 80px;
  column-gap: 80px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-black);
}

.footer__layer {
  display: flex;
  /* justify-content: space-between; */
  gap: 6.1111%;
}

.footer__container .footer__layer:first-child span {
  flex: 20%;
}

.footer__container .footer__layer:first-child p {
  flex: 65%;
}

.footer__layer span {
  flex: 1;
}

.footer__license a {
  color: inherit;
}

.footer__container hr {
  height: 1px;
  background-color: var(--color-black);
  margin-block: 30px;
}

@media (hover:hover) and (pointer:fine) {
  .footer__license a:hover {
    color: var(--color-accent);
  }
}

@media (max-width: 1325px) {
  .footer__container .footer__layer:first-child {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer__container .footer__layer {
    flex-direction: column;
    gap: 24px;
  }
}

/* @media (max-width: 1310px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
} */


/* .footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__adress {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  /* 19.6px */
/* width: -moz-max-content;
  width: max-content;
} */

/* .footer__name {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; */
/* 19.6px */
/* } */

/* .footer__text {
  color: #000;
  max-width: 856px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; */
/* 19.6px */
/* } */

/* @media (max-width: 1310px) {
  .footer__text {
    max-width: none;
  }
} */

.authorization__container {
  padding-top: 80px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 968px) {
  .authorization__container {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

@media (max-width: 968px) {
  .authorization__form {
    width: 85%;
  }
}

@media (max-width: 600px) {
  .authorization__form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .authorization__difficulties {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .authorization__button {
    width: 100%;
  }
}

.authorization__box {
  display: flex;
  flex-direction: row;
}

@media (max-width: 968px) {
  .authorization__box {
    flex-direction: column;
    gap: 20px;
  }
}

.authorization-js-form {
  border-radius: 10px;
  padding: 40px;
  background-color: white;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .authorization-js-form {
    padding: 20px;
  }
}

.authorization-js-form label {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  width: 100%;
}

.authorization-js-form label:last-child {
  margin-bottom: 40px;
}

.authorization input {
  height: 44px;
  padding: 10px;
  border: 1px solid #C4C4C4;
  border-radius: 6px;
  outline: none;
}

.authorization__subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 40px;
}

@media (max-width: 968px) {
  .authorization__subtitle {
    margin-bottom: 20px;
  }
}

.authorization__telphone {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 33.6px */
  opacity: 0.8;
  color: #5A38DB;
  margin-bottom: 20px;
  display: inline-block;
}

@media (max-width: 600px) {
  .authorization__telphone {
    font-size: 18px;
  }
}

.authorization__descr {
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
}

.authorization__legend {
  /* form text */
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-accent);
}

.authorization__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.authorization-modal__body {
  opacity: 0;
  visibility: hidden;
}

.authorization-modal__body._active {
  opacity: 1;
  visibility: visible;
}

.authorization-modal__content {
  display: none;
}

.authorization-modal__content._active {
  display: block;
}

.authorization-modal-js-form {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.authorization-modal__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.restore__input {
  width: 100%;
  border: 1px solid #C4C4C4;
  height: 44px;
  padding: 10px;
  border-radius: 4px;
  outline: none;
}

@media (max-width: 1200px) {
  .stock__bar {
    z-index: 100;
    width: 90%;
    position: fixed;
    bottom: 1rem;
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.15);
    border-radius: 20px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1200px) and (max-width: 600px) {
  .stock__bar {
    width: 100%;
    bottom: 0px;
  }
}

.bar__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 90px;
  gap: 20px;
}

@media (max-width:600px) {
  .bar__list {
    min-height: 60px;
  }

}

@media (max-width: 1020px) {
  .bar__list {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .bar__list {
    flex-direction: row;
    border-radius: 20px;
    background-color: white;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .bar__list {
    justify-content: space-around;
    gap: 0;
    border-radius: 20px 20px 0px 0px;
  }
}

.bar__link {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #303030;
  opacity: 0.5;
}

.bar__mobile {
  display: none;
}

@media (max-width:450px) {
  .bar__mobile {
    display: block;
  }

  .bar__hidden {
    display: none;
  }

  .bar__item {
    width: 20%;
  }
}

@media (max-width: 1020px) {
  .bar__link span {
    /* display: none; */
  }

  .bar__link {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width:600px) {
  .bar__link {
    gap: 0px;
  }
}

@media (max-width:900px) {
  .bar__link span {
    font-size: 14px;
  }
}


@media (max-width:800px) {
  .bar__list {
    gap: 0px;
    justify-content: space-evenly;
  }
}

@media (max-width: 1200px) {
  .bar__link {
    padding: 20px 14px;
  }
}

@media (max-width: 1200px) {
  .bar__link svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .bar__link svg {
    width: 24px;
    height: 24px;
  }
}

.bar__logout a {
  opacity: 1;
}

.stock-status .bar__check a {
  opacity: 1;
  color: #5A38DB;
}

.stock-status .bar__check svg path {
  stroke: #5A38DB;
}

@media (max-width: 1200px) {
  .stock-status .col-1 {
    display: none;
  }
}

@media (max-width: 1200px) {
  .stock-status .col-9 {
    width: 100%;
  }
}

.projects-all .bar__projects a {
  opacity: 1;
  color: #5A38DB;
}

.projects-all .bar__projects svg path {
  stroke: #5A38DB;
}

.history .bar__history a {
  opacity: 1;
  color: #5A38DB;
}

.history .bar__history svg path {
  stroke: #5A38DB;
}

.profile .bar__profile a {
  opacity: 1;
  color: #5A38DB;
}

.profile .bar__profile svg path {
  stroke: #5A38DB;
}

.detail-project .bar__projects a {
  opacity: 1;
  color: #5A38DB;
}

.detail-project .bar__projects svg path {
  stroke: #5A38DB;
}

.card {
  max-width: 980px;
  background-color: var(--color-white);
  border-radius: 20px;
  min-height: 205px;
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: clamp(1.5rem, 1.3239rem + 0.7512vw, 2rem);
  padding: 24px;
}

@media (max-width: 1200px) {
  .card {
    max-width: none;
  }
}

.card__head {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  padding-bottom: 10px;
}

@media (max-width:1350px) {
  .card__head {
    gap: 20px;
  }

}

@media (max-width: 1300px) {
  .card__head {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .card__head {
    gap: 20px;
  }
}

.card__wrapper {
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.card__box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.card__heading {
  color: #808080;
  font-size: 14px;
  line-height: 120%;
}

.card__stutus {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1C9524;
  font-size: 14px;
  line-height: 14px;
}

@media (max-width: 1024px) {
  .card {
    grid-template-columns: 180px 1fr;
  }

  .card-finance {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .card {
    grid-template-columns: 1fr;
  }

  .card-finance {
    grid-column: auto;
  }
}

.card__img {
  position: relative;
  background-color: #d7d7d7;
  border-radius: 20px;
  height: 180px;
}

.card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: var(--color-green);
  background-color: #E3F5D9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 14px;
}

.card__info {
  display: flex;
  flex-direction: column;
}

.card__info .btn {
  cursor: pointer;
  margin-top: auto;
  width: fit-content;
  border-radius: 32px;
  padding: 12px 24px;
}

.card__title {
  margin-block: clamp(0.5rem, 0.412rem + 0.3756vw, 0.75rem) clamp(0.625rem, 0.493rem + 0.5634vw, 1rem);
  color: var(--color-black);
  line-height: 1.3;
}

.card__status {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-gray);
}

.card[data-type=finding-founding] .card__status {
  color: var(--color-accent);
}

.card[data-type=implemented] .card__status {
  color: var(--color-green);
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(1.125rem, 0.993rem + 0.5634vw, 1.5rem);
}

.card__tags span {
  font-size: 12px;
  color: var(--color-gray);
  border-radius: 20px;
  border: 1px solid #C4C4C4;
  padding: 5px 12px;
}

.card-finance {
  display: flex;
  flex-direction: column;
}

.card-finance__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 1.368rem + 0.5634vw, 1.875rem);
  padding-bottom: 12px;
  margin-inline: clamp(0.625rem, 0.493rem + 0.5634vw, 1rem);
  border-bottom: 1px solid hsl(256 59% 56% / .1);
}

.card-finance__stats-neccessary {
  margin-top: auto;
}

.card-finance__stats-neccessary .card-finance__item {
  border-bottom: 0;
  border-radius: 20px;
  background-color: #E3F5D9;
  color: var(--color-green);
  margin-inline: 0;
  padding-inline: clamp(0.625rem, 0.493rem + 0.5634vw, 1rem);
  padding-top: 12px;
}

.card-finance__stats-neccessary .card-finance__item--neccessary-second {
  background-color: #E5D9F5;
  color: #714ED1;
}

.card-finance__stats-neccessary>*+* {
  margin-top: 4px;
}

.card-finance__stats-neccessary .card-finance__item:first-child {
  margin-top: 16px;
}

.card-finance__stats>*+* {
  padding-top: 12px;
}

.card-finance__item p {
  color: var(--color-gray);
  font-size: 12px;
}

.card-finance__item span {
  white-space: nowrap;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}

.card-finance__stats-neccessary .card-finance__item p,
.card-finance__stats-neccessary .card-finance__item span {
  color: inherit;
}

/* 
@media (max-width: 500px) {
  .card__link {
    padding: 25px 20px 20px 20px;
    row-gap: 15px;
  }
} */

.card__caption {
  max-width: 450px;
  color: var(--color-black);
  line-height: 115%;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 500px) {
  .card__caption {
    font-size: 16px;
    font-weight: 600;
  }
}

.card__bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  /* justify-content: space-between; */

}

@media (max-width: 1350px) {
  .card__bottom {
    gap: 20px;
  }
}

@media (max-width: 1300px) {
  .card__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.card__information {
  width: 440px;
}

@media (max-width: 796px) {
  .card__information {
    width: 100%;
  }
}

@media (max-width: 1300px) {
  .card__information {
    order: 2;
    width: 100%;
  }
}

@media (max-width:550px) {
  .bar__link {
    padding: 10px 15px;
  }

  .bar__link span {
    font-size: 12px;
  }
}

/* @media (max-width:550px) {
  .bar__link {
    padding: 10px 15px;
  }
    .bar__link span {
    font-size: 12px;
  }
}
@media (max-width:445px) {
    .bar__link span {
    font-size: 10px;
  }
}
@media (max-width:390px) {
  .bar__link {
    padding: 10px 10px;
  }
} */
[data-status=notauth][data-type=implemented] .card__stutus {
  display: none;
}

[data-status=notauth][data-type=implemented] .earned {
  display: none;
}

[data-status=notauth][data-type=implemented] .participate {
  display: none;
}

[data-type=finding-funding][data-status=new] .card__stutus {
  display: none;
}

[data-type=finding-funding][data-status=new] .profit {
  display: none;
}

[data-type=finding-funding][data-status=new] .participate {
  display: block;
}

[data-type=finding-funding][data-status=new] .earned {
  display: none;
}

.card[data-type=finding-funding][data-status=new-proccess] .collected {
  display: flex;
}

.card[data-type=finding-funding][data-status=new-proccess] .participate {
  display: block;
}

.card[data-type=finding-funding][data-status=new-proccess] .card__stutus {
  display: none;
}

.card[data-type=finding-funding][data-status=new-proccess] .profit {
  display: none;
}

.card[data-type=finding-funding][data-status=new-proccess] .earned {
  display: none;
}

.card[data-type=finding-funding][data-status=invested] .collected {
  display: flex;
}

.card[data-type=finding-funding][data-status=invested] .participate {
  display: none;
}

.card[data-type=finding-funding][data-status=invested] .card__stutus {
  display: flex;
}

.card[data-type=finding-funding][data-status=invested] .profit {
  display: none;
}

.card[data-type=finding-funding][data-status=invested] .invest {
  display: flex;
}

.card[data-type=finding-funding][data-status=invested] .earned {
  /* opacity: 0;
  visibility: hidden; */
  display: none;
}

.card[data-type=at-work][data-status=invested-completed] .collected {
  display: flex;
}

.card[data-type=at-work][data-status=invested-completed] .participate {
  display: none;
}

.card[data-type=at-work][data-status=invested-completed] .card__stutus {
  display: flex;
}

.card[data-type=at-work][data-status=invested-completed] .profit {
  display: none;
}

.card[data-type=at-work][data-status=invested-completed] .invest {
  display: flex;
  /* margin-left: 80px; */
}

.card[data-type=at-work][data-status=invested-completed] .collected__value {
  color: #1C9524;
}

.card[data-type=at-work][data-status=invested-completed] .earned {
  /* opacity: 0;
  visibility: hidden; */
  display: none;
}

.card[data-type=implemented][data-status=implemented-completed] .collected {
  display: none;
}

.card[data-type=implemented][data-status=implemented-completed] .participate {
  display: none;
}

.card[data-type=implemented][data-status=implemented-completed] .card__stutus {
  display: flex;
}

.card[data-type=implemented][data-status=implemented-completed] .profit {
  display: flex;
}

.card[data-type=implemented][data-status=implemented-completed] .invest {
  display: flex;
}

.card[data-type=implemented][data-status=implemented-completed] .invest__value {
  color: #808080;
}

.card[data-type=implemented][data-status=implemented-completed] .collected__value {
  color: #1C9524;
}

.card[data-type=implemented][data-status=implemented-completed] .card__bottom {
  /* gap: 20px; */
}

.participate {
  display: none;
  margin: 0 0 0 auto;
}

@media (max-width: 1300px) {
  .participate {
    margin: 0 0 0px 0px;
  }
}

@media (max-width: 500px) {
  .participate {
    width: 100%;
    /* display: block; */
  }
}

.participate__link {
  display: block;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  border-radius: 20px;
  background-color: #714ED1;
  padding: 10px 20px;
}

@media (max-width: 500px) {
  .participate__link {
    width: 100%;
    text-align: center;
  }
}

.finance {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin: 0 0 0 auto;
}

@media (max-width: 1300px) {
  .finance {
    flex-direction: row;
    -moz-column-gap: 15px;
    column-gap: 15px;
    align-items: center;
    margin: initial;
  }
}

@media (max-width: 370px) {
  .finance {
    flex-direction: column;
    align-items: flex-start;
  }
}

.amount {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 0 0 auto;
}

.amount__value {
  color: #714ED1;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 500px) {
  .amount__value {
    font-size: 14px;
  }
}

.amount__descr {
  color: #808080;
  font-size: 12px;
  line-height: normal;
}

.profit {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profit__descr {
  color: #808080;
  font-family: "Montserrat";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 116.667% */
}

.profit__value {
  color: #1C9524;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  /* 19.6px */
}

@media (max-width: 500px) {
  .profit__value {
    line-height: normal;
  }
}

.profitability {
  display: flex;
  flex-direction: column;
}

@media (max-width: 500px) {
  .profitability {
    display: none;
  }
}

.profitability__value {
  color: #000;
  font-weight: 500;
  line-height: 18px;
}

.profitability__descr {
  color: #808080;
  font-size: 12px;
  line-height: 14px;
  /* 116.667% */
}

.information {
  display: flex;
  align-items: center;
  /* gap: 15px; */
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 10px;
}

@media (max-width: 796px) {
  .information {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .information {
    gap: 8px;
  }
}

.information__wrapper {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #C4C4C4;
  color: #808080;
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 500px) {
  .information__wrapper {
    padding: 2px 10px;
    font-size: 12px;
  }
}

.collected {
  display: none;
  flex-direction: column;
  gap: 3px;
}

.collected__descr {
  color: #808080;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 116.667% */
}

.collected__value {
  color: #714ED1;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 19.6px */
}

.invest {
  display: none;
  flex-direction: column;
  gap: 3px;
}

.invest__descr {
  color: #808080;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 116.667% */
}

.invest__value {
  color: #1C9524;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 19.6px */
}

.earned {
  flex-direction: column;
  gap: 3px;
  display: flex;
  width: 152px;
  margin: 0 0 0 auto;
}

@media (max-width:1300px) {
  .earned {
    margin: initial;
    width: 100%;
  }

}

.earned__descr {
  color: #808080;
  font-family: "Montserrat";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 116.667% */
}

.earned__value {
  color: #1C9524;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.detail-specification__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 110px;
}

@media (max-width: 968px) {
  .detail-specification__container {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .detail-specification__container .col-3 {
    display: none;
  }

  .detail-specification__container .col-9 {
    width: 100%;
  }
}

.detail-specification__box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

@media (max-width: 968px) {
  .detail-specification__box {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 5px;
  }
}

.detail-specification__title {
  color: #303030;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 50.4px */
}

@media (max-width:796px) {
  .detail-specification__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.detail-specification__descr {
  color: #8A8A8A;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  max-width: 450px;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width:600px) {
  .detail-specification__descr {
    font-size: 16px;
  }

}

.detail-specification__info {
  max-width: 905px;
  line-height: 140%;
}

@media (max-width: 1200px) {
  .detail-specification__info {
    max-width: none;
  }
}

.detail-specification__info p {
  color: #303030;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

.detail-specification__info p:not(:last-child) {
  margin-bottom: 20px;
}

.detail-specification__list {
  margin-top: 48px;
}

.detail-specification__list>*+* {
  padding-top: 12px;
}

.detail-specification__item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 12px;
}

.detail-specification__item span {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.detail-specification__item span:first-child {
  color: var(--color-gray);
}

@media (max-width: 891px) {
  .detail-specification__list {
    background-color: white;
    border-radius: 20px;
    padding: 16px 18px;
    margin-top: 24px;
  }

  .detail-specification__item {
    border-bottom: 0;
    justify-content: start;
  }

  .detail-specification__item span:first-child {
    font-size: 14px;
  }

  .detail-specification__item span:last-child {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .detail-specification__item span {
    font-size: 14px;
  }
}

.detail-finance__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 110px;
}

.detail-finance__title {
  margin-bottom: 50px;
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  color: #303030;
}

.detail-finance .detail-specification__list {
  margin-top: 0;
}

.detail-finance-profit {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.detail-finance-profit__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: #E5D9F5;
  color: #714ED1;
  padding: 16px 32px;
  border-radius: 20px;
  font-size: 18px;
}

.detail-finance-profit__item span {
  font-weight: 500;
}

.detail-finance-profit .detail-finance-profit__item:nth-child(even) {
  background-color: #E3F5D9;
  color: var(--color-green);
}

@media (max-width: 891px) {
  .detail-finance-profit__item p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .detail-finance-profit {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .detail-finance-profit__item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .detail-finance-profit__item {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .detail-finance__container .col-3 {
    display: none;
  }

  .detail-finance__container .col-9 {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .detail-specification__item {
    flex-direction: column;
  }

  .detail-specification__item span {
    width: 100%;
  }
}

.detail-location__container {
  display: flex;
  flex-direction: row;
  padding-bottom: 135px;
}


@media (max-width: 968px) {
  .detail-location__container {
    padding-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .detail-location__container .col-3 {
    display: none;
  }

  .detail-location__container .col-9 {
    width: 100%;
  }
}

.detail-location__descr {
  color: #714ED1;
}

.detail-location__map {
  height: 350px;
  width: 100%;
}

.detail-location__map ymaps {
  border-radius: 15px;
}

.application__body {
  opacity: 0;
  visibility: hidden;
}

.application__body._active {
  opacity: 1;
  visibility: visible;
}

.application__wrapper {
  display: flex;
}

.application__wrapper.hidden {
  display: none;
}

.application__succes {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.application__succes.active {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  opacity: 1;
  visibility: visible;
}

.application__succes h3 {
  color: #303030;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 600px) {
  .application__succes h3 {
    font-size: 24px;
  }
}

.application__succes p {
  color: #303030;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 600px) {
  .application__succes p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .application__btn button {
    width: 100%;
  }
}

.application__content {
  display: none;
}

.application__content._active {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 608px;
}

.checkbox__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox__item {
  padding-left: 24px;
  display: block;
  position: relative;
  cursor: pointer;
  color: #535B6C;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
}

@media (max-width: 600px) {
  .checkbox__item {
    font-size: 13px;
  }
}

.checkbox__item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox__item input:checked~.checkmark {
  background-color: #714ED1;
}

.checkbox__item input:checked~.checkmark::after {
  display: block;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: white;
  border-radius: 3px;
  border: 1px solid #99A0A8;
  transition: all 0.3s ease 0s;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  height: 9px;
  width: 5px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}


.detail-chart__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

@media (max-width:600px) {
  .detail-chart__container {
    padding-bottom: 50px;
  }
}

.detail-chart__wrapper {}

.detail-chart__box {
  display: flex;
  /* gap: 30px; */
  justify-content: space-between;
}

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

.detail-chart__legend {
  margin-bottom: 24px;
  padding: 7px 0px 7px 16px;
  border-radius: 20px;
}

.detail-chart__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-chart__content {
  padding-top: 50px;
}

.detail-chart__name {
  display: flex;
  gap: 10px;
  align-items: center;
}

.detail-chart__circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;

}

.detail-chart__item {
  padding: 7px 0px 7px 16px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;

  &.active {
    background-color: rgba(113, 78, 209, 0.1);
  }
}

.detail-chart__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  color: #303030;
  margin-bottom: 10px;
}

.detail-chart__graph {
  width: 350px;
  height: 350px;

}

@media (max-width:700px) {
  .detail-chart__graph {
    width: 100%;
  }

  .detail-chart__graph>div {
    left: 50%;
    /* top: 50%; */
    transform: translate(-50%, 0);
  }
}


.detail-expenses__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

@media (max-width:600px) {
  .detail-expenses__container {
    padding-bottom: 50px;
  }
}

.detail-expenses__title {
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  color: #303030;
  margin-bottom: 50px;
}

.legend-expenses {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.detail-expenses__list,
.detail-rent__list {
  display: flex;
  flex-direction: column;
}

.detail-expenses__item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #c4c4c4;
}

.detail-expenses__item:first-child {
  padding-top: 0px;
}

.detail-expenses__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-expenses__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #303030;
}

.detail-expenses__date {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #808080;
}

.detail-expenses__summary {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #303030;
}

.detail-rent__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.detail-rent__title {
  margin-bottom: 50px;
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  color: #303030;
}

.legend-rent {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.legend-rent span {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #c4c4c4;
}

.legend-rent .col-1 {
  width: 5.33%;
}

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

.detail-rent__item .col-1 {
  width: 5.33%;
}

.detail-rent__item .legend-rent-square,
.detail-rent__square {
  width: 10%;
}

.legend-rent .legend-rent-square {
  width: 10%;
}

.detail-rent__item {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #c4c4c4;
}

.detail-rent__item:first-child {
  padding-top: 0px;
}

.detail-rent__item:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.detail-rent__item span {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #303030;
}

.legend-expenses span {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #c4c4c4;
}

.detail-expenses__sum {
  display: none;
  color: #C4C4C4;
  font-size: 14px;
  font-weight: 500;
}

.detail-chart__dolya,
.detail-chart__summary,
.detail-chart__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: #303030;
}

.detail-chart__text {
  display: none;
  font-size: 14px;
  line-height: 140%;
  color: #C4C4C4;
  min-width: 60px;
}

.legend-rent-text,
.legend-rent-descr {
  display: none;
  font-size: 14px !important;
  line-height: 140% !important;
  color: #C4C4C4 !important;
  font-weight: 400 !important;
  min-width: 170px;
}

@media (max-width:1200px) {

  .detail-chart__container .holder,
  .detail-expenses__container .holder,
  .detail-rent__container .holder {
    display: none;
  }
}

@media (max-width:996px) {

  .detail-rent__legend .col-3,
  .detail-rent__item .col-3 {
    width: 16.67%;
  }

  .detail-chart__legend {
    display: none;
  }

  .detail-rent__legend .col-4,
  .detail-rent__item .col-4 {
    width: 46.47%;
  }

  .detail-chart__box {
    flex-direction: column;
  }

  .detail-chart__content {
    padding-top: 0px;
    width: 75%;
  }
}

@media (max-width:800px) {
  .detail-chart__item {
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    width: 66.66%;
    background-color: white;
  }

  .detail-chart__dolya,
  .detail-chart__summary {
    display: flex;
    gap: 30px;
  }

  .detail-chart__name {
    width: 100%;
    margin-bottom: 12px;
  }

  .detail-chart__text {
    display: flex;
  }

  .detail-chart__dolya {
    margin-bottom: 6px;
  }

  .detail-chart__dolya,
  .detail-chart__summary {
    padding-left: 24px;
    width: 100%;
  }
}

@media (max-width:700px) {
  .detail-chart__content {
    width: 100%;
  }

  .detail-chart__item {
    width: 100%;
  }
}

@media (max-width:796px) {
  .detail-chart__title {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .detail-expenses__title,
  .detail-rent__title,
  .detail-finance__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width:1200px) {

  .detail-chart__wrapper,
  .detail-expenses__wrapper,
  .detail-rent__wrapper {
    width: 100%;
  }
}

@media (max-width:890px) {

  .legend-expenses,
  .legend-rent {
    display: none;
  }

  .legend-rent-text,
  .legend-rent-descr {
    display: flex;
  }

  .detail-expenses__result,
  .detail-rent__result {
    order: -1;
    background-color: #E7E5F7 !important;
  }

  .legend-rent-text {}

  /* .detail-rent__result {
    gap: 6px;
  } */
  .legend-rent-square,
  .legend-rent-plata {
    margin-bottom: 6px;
  }

  .detail-rent__square,
  .detail-rent__plata {
    margin-bottom: 8px;
  }

  .detail-rent__square,
  .detail-rent__plata,
  .detail-rent__occupie {
    display: flex;
    gap: 24px;
  }

  .detail-expenses__result .detail-expenses__date {
    display: none;
  }

  .detail-expenses__result .detail-expenses__name,
  .detail-rent__result .detail-expenses__name,
  .legend-rent-text {
    color: #C4C4C4 !important;
  }

  .detail-expenses__result .col-1 {
    display: none;
  }

  .detail-expenses__result .detail-expenses__name {
    font-weight: 500;
  }

  .detail-expenses__item,
  .detail-rent__item {
    background-color: white;
    border-radius: 20px;
    padding: 16px 18px;
    border-bottom: none;
    flex-direction: column;
  }

  .detail-expenses__item:first-child,
  .detail-rent__item:first-child {
    padding-top: 16px !important;
  }

  .detail-expenses__item:last-child,
  .detail-rent__item:last-child {
    padding-bottom: 16px !important;
  }

  .detail-expenses__list,
  .detail-rent__list {
    gap: 10px;
  }

  .detail-expenses__name,
  .detail-expenses__summary,
  .detail-expenses__date,
  .detail-rent__name,
  .detail-rent__occupie,
  .detail-rent__plata,
  .legend-rent-square,
  .legend-rent-plata,
  .legend-rent-occupie,
  .detail-rent__square {
    width: 83.33% !important;
  }

  .detail-expenses__summary {
    display: flex;
    gap: 40px;
  }

  .detail-expenses__sum {
    display: block;
  }

  .detail-expenses__name,
  .detail-rent__name {
    margin-bottom: 10px;
  }

  .detail-expenses__date {
    margin-bottom: 20px;
  }
}

@media (max-width:600px) {

  .detail-expenses__name,
  .detail-expenses__summary,
  .detail-expenses__date,
  .detail-rent__name,
  .detail-rent__occupie,
  .detail-rent__plata,
  .detail-rent__square {
    width: 100% !important;
  }

  .detail-chart__dolya,
  .detail-chart__summary {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #303030;
  }

  .legend-rent-square,
  .legend-rent-plata,
  .legend-rent-occupie {
    font-size: 16px;
  }

  .detail-expenses__name,
  .detail-expenses__date,
  .detail-expenses__summary,
  .detail-rent__name,
  .detail-rent__square,
  .detail-rent__plata,
  .detail-rent__occupie {
    font-size: 14px !important;
  }

  .detail-expenses__result .detail-expenses__summary {
    font-size: 16px !important;
  }
}

.detail-hide {
  color: #CCC8ED;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.rent__main>section+section {
  margin-top: clamp(2.5rem, 1.1796rem + 5.6338vw, 6.25rem);
}

.rent__main section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.5rem;
  margin-bottom: clamp(1rem, 0.6479rem + 1.5023vw, 2rem);
}

.rent__main section .section-header span {
  color: var(--color-accent);
  font-weight: 500;
  font-size: clamp(1rem, 0.956rem + 0.1878vw, 1.125rem);
}

.rent__main section h3 {
  font-size: clamp(1.5rem, 1.2359rem + 1.1268vw, 2.25rem);
  font-weight: 500;
  line-height: 1.4;
}

.rent__wrapper {
  display: flex;
  gap: 8.3333%;
  margin-block: clamp(2.1875rem, 1.1972rem + 4.2254vw, 5rem) clamp(1.25rem, -1.3908rem + 11.2676vw, 8.75rem);
}

.rent-hero b {
  display: block;
  font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: clamp(0.75rem, 0.662rem + 0.3756vw, 1rem);
  line-height: 1.4;
}

.rent__main .rent-hero h3 {
  margin-bottom: clamp(0.75rem, 0.662rem + 0.3756vw, 1rem);
}

.rent-hero__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
  font-size: clamp(1rem, 0.956rem + 0.1878vw, 1.125rem);
  color: var(--color-gray);
}

.rent-hero__slider {
  margin-top: clamp(1.875rem, 1.4789rem + 1.6901vw, 3rem);
  height: clamp(24.375rem, 21.5141rem + 12.2066vw, 32.5rem);
  border-radius: 20px;
}

.rent-hero__slider .swiper-slide {
  overflow: hidden;
  border-radius: 20px;
}

.rent-hero__slider .swiper-button-prev,
.rent-hero__slider .swiper-button-next {
  background-color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: scale 300ms ease;
}

.rent-hero__slider .swiper-button-prev:after,
.rent-hero__slider .swiper-button-next:after {
  display: none;
}

.rent-hero__slider .swiper-button-prev svg,
.rent-hero__slider .swiper-button-next svg {
  width: 18px;
  height: 18px;
}

@media (hover:hover) and (pointer: fine) {

  .rent-hero__slider .swiper-button-prev:hover,
  .rent-hero__slider .swiper-button-next:hover {
    scale: 1.1;
  }
}

.rent-hero__slider img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.rent-sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.rent-sidebar__list>*+* {
  margin-top: clamp(1.5rem, 1.2359rem + 1.1268vw, 2.25rem);
}

.rent-sidebar__item {
  line-height: 1.4;
  white-space: nowrap;
}

.rent-sidebar__label {
  display: block;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.rent-sidebar__item>*+* {
  margin-top: 8px;
}

.rent-sidebar__item p,
.rent-sidebar__item a {
  display: block;
  font-size: 1.125rem;
  color: black;
  white-space: nowrap;
}

.rent-sidebar__item b {
  font-size: 1.25rem;
  font-weight: 500;
  color: black;
  white-space: nowrap;
}

.rent-description__text-container {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
}

.rent-description__text-container[aria-expanded=true] {
  display: block;
}

.rent-description__text-container p {
  line-height: 1.4;
}

.rent-description__text-container>p+p {
  margin-top: 1rem;
}

.rent-description button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  margin-top: 10px;
  padding-block: 10px;
  color: var(--color-accent);
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rent-description button[aria-expanded=true] svg {
  rotate: 180deg;
}

.rent-features__item {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 12px;
  line-height: 1.4;
  font-weight: 500;
  border-bottom: 1px solid #C4C4C4;
}

.rent-features__item span {
  flex: 1;
  color: var(--color-gray);
}

.rent-plans__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  gap: clamp(1.5625rem, 0.7923rem + 3.2864vw, 3.75rem);
}

.rent-plans__item a {
  display: block;
}

.rent-plans__item span {
  display: block;
  font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
  color: var(--color-accent);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: clamp(0.875rem, 0.6769rem + 0.8451vw, 1.4375rem);
}

.rent-plans__item img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.rent-location__map {
  width: 100%;
  height: 400px;
}

.rent-footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  padding-block: 40px;
}

.rent-footer__wrapper a {
  color: var(--color-accent);
}

.rent-header .header__tel svg {
  display: none;
}

@media screen and (max-width: 1224px) {
  .rent__wrapper {
    flex-direction: column;
    gap: clamp(1.875rem, 1.0468rem + 3.5336vw, 3.75rem);
  }

  .rent__main {
    width: 100%;
  }

  .rent-sidebar {
    width: 100%;
  }
}

@media screen and (max-width: 570px) {
  .rent-features__item p.col-4 {
    width: 50%;
  }
}

@media screen and (max-width: 796px) {
  .rent-header .header__tel {
    display: block;
    font-size: 1.5rem;
  }

  .rent-header .header__tel span {
    display: none;
  }

  .rent-header .header__tel svg {
    display: block;
  }
}