@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 */
.section-content {
  padding: calc(clamp(40px, 3.5503vw, 4.8rem) / 2) 0 var(--default-padding);
}
.section-content__list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.4379vw, 6rem);
}
.section-content__box {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4.142vw, 5.6rem);
}
.section-content__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.7751vw, 2.4rem);
}
.section-content__wrapp {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.071vw, 2.8rem);
}
.section-content .editor {
  gap: clamp(20px, 2.071vw, 2.8rem);
}
.section-content .editor ul:not([class]) {
  gap: clamp(20px, 1.7751vw, 2.4rem);
}
.section-content .editor ul:not([class]) li {
  color: var(--cl-u);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: -0.032rem;
}
.section-content .editor .row[data-btn-count="1"] {
  margin-top: clamp(8px, 1.4793vw, 2rem);
}
.section-content__image {
  height: clamp(290px, 54.86vw, 31.6rem);
  width: 100%;
}
.section-content__image img,
.section-content__image picture, .section-content__image svg, .section-content__image .sprite {
  width: 100%;
  height: 100%;
}
.section-content__image:only-of-type {
  grid-column: 1/-1;
  height: clamp(170px, 55.9vw, 32.2rem);
}

.privacy-policy .section-content {
  padding-top: calc(clamp(50px, 7.3964vw, 10rem) - clamp(16px, 1.7751vw, 2.4rem));
}
.privacy-policy .section-content__wrapp .editor > p:not([class]):first-child {
  margin-bottom: calc(clamp(4px, 0.8876vw, 1.2rem) * -1);
}
.privacy-policy .section-content__wrapp .editor p:not([class]) + ul {
  margin-top: calc(clamp(20px, 2.071vw, 2.8rem) * -1);
}
.privacy-policy .section-content__wrapp .editor ul {
  gap: 0.8rem;
}
.privacy-policy .section-content__wrapp .editor ul li {
  font-size: 1.6rem;
  color: var(--cl-j);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.08rem;
}
@media (max-width: 575.98px){
  .section-content__gallery {
    grid-template-columns: 100%;
  }
}
/*# sourceMappingURL=section-default-content.css.map */