/* stylelint-disable */
.section-levels {
  overflow: hidden;
}
.section-levels__inner {
  display: flex;
  flex-direction: column;
}
.section-levels__slider .swiper-slide {
  counter-increment: li;
}
.section-levels .level-card {
  position: relative;
  background: linear-gradient(223deg, #363636 0%, #282828 94.9%);
  border-radius: 12px;
}
.section-levels .level-card__counter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  padding: 10px;
  background: var(--body-bg);
}
.section-levels .level-card__counter:before {
  content: counter(li);
  position: absolute;
  background: linear-gradient(225deg, #363636 0%, #282828 98.99%), #292929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 120%;
  font-weight: 500;
  color: var(--cl-f);
}
.section-levels .level-card__top {
  padding-bottom: 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(163, 163, 163, 0.6);
}
.section-levels .level-card__text {
  line-height: 150%;
  font-weight: 500;
  text-align: center;
}
.section-levels .level-card__number {
  line-height: 120%;
  font-weight: 500;
}
.section-levels .level-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.833vw, 12px);
}
.section-levels .level-card__price {
  line-height: 120%;
  font-weight: 500;
  color: var(--cl-g);
}
@media (min-width: 768px) {
  .section-levels__inner {
    gap: 104px;
  }
  .section-levels .level-card {
    padding: 101px clamp(20px, 2.361vw, 34px) 27px;
  }
  .section-levels .level-card__counter {
    width: 132px;
    height: 132px;
    top: -66px;
  }
  .section-levels .level-card__counter:before {
    font-size: 60px;
    width: 109px;
    height: 109px;
  }
  .section-levels .level-card__text {
    font-size: 24px;
  }
  .section-levels .level-card__number {
    font-size: 48px;
  }
  .section-levels .level-card__price {
    font-size: 60px;
  }
}
@media (min-width: 1025px) {
  .section-levels {
    background-color: var(--cl-d);
  }
}
@media (min-width: 1441px) {
  .section-levels__slider {
    width: 100%;
  }
  .section-levels__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
  }
}
@media (max-width: 1440px) {
  .section-levels__slider {
    width: calc(100% + var(--container-offset) * 2);
    padding-right: 24px;
  }
  .section-levels__slider .swiper-container {
    margin-left: calc(var(--container-offset) * -1);
    padding: 0 var(--container-offset);
  }
}
@media (max-width: 767px) {
  .section-levels__inner {
    gap: 64px;
  }
  .section-levels .level-card {
    padding: 57px clamp(20px, 2.361vw, 34px) 14px;
  }
  .section-levels .level-card__counter {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .section-levels .level-card__counter:before {
    font-size: 34px;
    width: 62px;
    height: 62px;
  }
  .section-levels .level-card__text {
    font-size: 14px;
  }
  .section-levels .level-card__number {
    font-size: 28px;
  }
  .section-levels .level-card__price {
    font-size: 35px;
  }
}
/*# sourceMappingURL=section-levels.css.map */