/* stylelint-disable */
.section-financial {
  overflow: hidden;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.section-financial .container {
  max-width: 1542px;
  z-index: 5;
}
.section-financial__wrapp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  height: 100%;
}
.section-financial__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-financial__box {
  width: 100%;
  display: grid;
  grid-gap: 24px;
}
.section-financial .editor {
  max-width: 603px;
  justify-content: center;
}
.section-financial__bottom {
  width: 100%;
}
.section-financial__counter {
  display: grid;
  grid-template-columns: repeat(var(--col-counter), 1fr);
}
.section-financial__counter li {
  position: relative;
  z-index: 1;
  counter-increment: list;
  text-align: center;
  color: var(--cl-e);
}
.section-financial__counter li:first-child {
  text-align: left;
}
.section-financial__counter li:last-child {
  text-align: right;
}
.section-financial__counter li.-active {
  color: var(--cl-a);
}
.section-financial__counter li span {
  position: relative;
  padding-left: 30px;
}
.section-financial__counter li span::before {
  content: "0" counter(list);
  position: absolute;
  left: 0;
  z-index: 1;
}
.section-financial__progressbar {
  position: relative;
  height: 28px;
  width: 100%;
  border-radius: 51px;
  background: rgba(41, 41, 41, 0.5);
  overflow: hidden;
}
.section-financial__progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--bg-f);
  border-radius: 51px;
  transition: width 0.2s ease;
}
.section-financial__items {
  position: relative;
}
.section-financial__items .financial-card__item {
  min-height: clamp(190px, 23.021vw, 442px);
  padding: clamp(16px, 1.667vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  background: rgba(41, 41, 41, 0.5);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.section-financial__items .financial-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.section-financial__items .financial-card__icon svg {
  width: clamp(32px, 3.333vw, 64px);
  height: clamp(32px, 3.333vw, 64px);
}
.section-financial__items .financial-card__heading {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.563vw, 16px);
  line-height: 150%;
  color: var(--cl-e);
}
.section-financial__items .financial-card__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-financial__items .financial-card__title {
  font-size: clamp(20px, 2.5vw, 48px);
  line-height: 150%;
  font-weight: 500;
}
.section-financial__items .financial-card__text {
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 150%;
  font-weight: 500;
  color: #FBFBFB;
}
@media (min-width: 768px) {
  .section-financial {
    padding-top: 0 !important;
  }
  .section-financial__box {
    grid-template-columns: 1fr 49%;
  }
  .section-financial__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .section-financial__items .financial-card {
    top: 0;
    position: absolute;
    width: 100%;
    height: clamp(190px, 23.021vw, 442px);
    opacity: 0;
    transform-origin: top;
  }
  .section-financial__items .financial-card.-active {
    pointer-events: auto;
    opacity: 1;
    z-index: 10;
  }
}
@media (min-width: 1761px) {
  .section-financial__inner {
    gap: clamp(30px, 7.292vw, 140px);
  }
}
@media (max-width: 1760px) {
  .section-financial__inner {
    gap: clamp(30px, 3.933vw, 70px);
  }
}
@media (max-width: 1024px) {
  .section-financial {
    padding: 36px 0;
  }
  .section-financial .decor-lines {
    display: flex;
  }
  .section-financial .decor-lines::before {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .section-financial__box {
    grid-template-columns: 100%;
  }
  .section-financial__bottom {
    display: none;
  }
  .section-financial__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
/*# sourceMappingURL=section-financial.css.map */