@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
.items-section {
  padding: var(--default-padding) 0;
  overflow: hidden;
}
.items-section__wrapp {
  gap: clamp(28px, 10.2071vw, 13.8rem);
  display: flex;
  flex-direction: column;
}
.items-section__box {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.4763vw, 4.7rem);
}
.items-section__box > .editor {
  z-index: 2;
  position: relative;
}
.items-section__inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.items-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 8.7278vw, 11.8rem);
}
.items-section__item {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  padding: 4.3rem 1rem 4.4rem 3.8rem;
  min-height: 20.8rem;
  height: 100%;
  width: clamp(330px, 25.8876vw, 35rem);
  background: var(--gr-b);
  border-radius: 26.6rem/23.4rem;
  overflow: hidden;
}
.items-section__item::before {
  content: attr(data-count);
  display: block;
  color: rgba(33, 35, 36, 0.1);
  font-family: var(--font-family);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.12rem;
}
.items-section__item .editor {
  gap: 0;
}
.items-section__item .editor p {
  color: var(--cl-n);
  line-height: 2.2rem;
  letter-spacing: -0.1rem;
  font-size: 1.5rem;
}
.items-section__item .editor p strong {
  color: var(--cl-b);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: -0.12rem;
}
.items-section__item:nth-child(even) {
  justify-self: end;
}
.items-section__image {
  z-index: -1;
  pointer-events: none;
}
.items-section__image img,
.items-section__image picture, .items-section__image svg, .items-section__image .sprite {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px){
  .items-section__item .editor p:has(strong) {
    padding-right: 0;
  }
  .items-section__item .editor p {
    padding-right: 1.5rem;
  }
  .items-section__image {
    position: absolute;
    bottom: calc(clamp(5px, 2.2189vw, 3rem) * -1);
    left: 50%;
    width: min(81.8047vw, 110.6rem);
    height: min(49.4822vw, 66.9rem);
  }
}
@media (min-width: 1024px){
  .items-section__box > .editor .main-button {
    opacity: 0;
    transition-timing-function: linear !important;
    transform: translateY(50px);
  }
  .items-section__image {
    transform: translateX(-50%);
  }
}
@media (max-width: 1023.98px) and (min-width: 768px){
  .items-section__image {
    transform: translate(-50%, -15%);
  }
}
@media (max-width: 767.98px){
  .items-section__box {
    gap: var(--default-gap);
  }
  .items-section__list {
    grid-template-columns: 100%;
    gap: 16px;
  }
  .items-section__item {
    padding: 4.3rem 5rem 4.4rem 5.1rem;
    width: 75%;
  }
  .items-section__image {
    align-self: center;
    width: clamp(372px, 61.59vw, 47.3rem);
    height: clamp(410px, 67.84vw, 52.1rem);
    margin-bottom: -15%;
    display: none;
  }
}
@media (max-width: 575.98px){
  .items-section__box > .editor .main-button {
    width: -moz-fit-content;
    width: fit-content;
    flex-grow: 0;
    margin: 0 auto;
  }
  .items-section__item {
    width: 100%;
  }
  .items-section__image {
    margin-bottom: -25%;
  }
}
/*# sourceMappingURL=section-items.css.map */