@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 */
.gallery-section {
  padding: var(--default-padding) 0;
}
.gallery-section__box {
  display: grid;
  grid-template-columns: clamp(250px, 31.7308vw, 42.9rem) 1fr;
  gap: clamp(20px, 2.145vw, 2.9rem);
}
.gallery-section__box .editor {
  gap: 2rem;
}
.gallery-section__box .editor .text-24 {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.8rem;
}
.gallery-section__box .editor [class*=text-] {
  color: var(--cl-j);
}
.gallery-section__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.071vw, 2.8rem);
}
.gallery-section__bottom {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
.gallery-section__icon {
  width: 5.4rem;
  height: 5.4rem;
  display: flex;
  overflow: hidden;
  border-radius: 100%;
  grid-column: 1/2;
  grid-row: 1/3;
}
.gallery-section__icon i {
  width: 100%;
  height: 100%;
}
.gallery-section__icon i svg {
  width: 100%;
  height: 100%;
}
.gallery-section__wrapp {
  gap: 0.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
}
.gallery-section__text {
  color: var(--cl-j);
  font-family: var(--font-family);
  font-size: clamp(20px, 1.7751vw, 2.4rem);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(24px, 2.071vw, 2.8rem);
  letter-spacing: -0.1rem;
  align-self: end;
}
.gallery-section__video {
  width: 100%;
  border-radius: clamp(8px, 1.4793vw, 2rem);
  overflow: hidden;
}
.gallery-section__video video,
.gallery-section__video img,
.gallery-section__video picture, .gallery-section__video svg, .gallery-section__video .sprite {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-section__subtext {
  color: var(--cl-o);
  font-family: var(--font-family);
  font-size: clamp(15px, 1.1834vw, 1.6rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: -0.1rem;
}
@media (min-width: 768px){
  .gallery-section__video {
    height: clamp(188px, 34.3195vw, 46.4rem);
  }
}
@media (max-width: 767.98px){
  .gallery-section__box {
    grid-template-columns: 100%;
  }
  .gallery-section__video {
    aspect-ratio: 891/464;
  }
}
@media (max-width: 575.98px){
  .gallery-section__bottom {
    flex-direction: column;
  }
}
/*# sourceMappingURL=section-video.css.map */