@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 */
/* stylelint-disable */
.contacts-section {
  padding: var(--default-padding) 0;
}
.contacts-section__box {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.contacts-section__list {
  gap: 8rem;
  display: flex;
  flex-direction: column;
}
.contacts-section__item {
  display: grid;
  grid-template-columns: 100%;
  gap: clamp(40px, 3.8462vw, 5.2rem);
}
.contacts-section__item .editor:first-of-type {
  grid-column: 1/-1;
}
.contacts-section__item[data-count-cols="4"] {
  grid-template-columns: auto 1fr auto;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.contacts-section__item[data-count-cols="3"], .contacts-section__item[data-count-cols="2"] {
  max-width: 70.5rem;
  align-self: center;
  width: 100%;
  -moz-column-gap: min(8.8757vw, 12rem);
       column-gap: min(8.8757vw, 12rem);
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 3.8462vw, 5.2rem);
}
.contacts-section__item[data-count-cols="3"] .editor, .contacts-section__item[data-count-cols="2"] .editor {
  gap: clamp(20px, 2.3669vw, 3.2rem);
}
.contacts-section__item[data-count-cols="3"] .editor p:not([class]):first-of-type, .contacts-section__item[data-count-cols="2"] .editor p:not([class]):first-of-type {
  color: var(--cl-l);
  font-size: clamp(20px, 1.7751vw, 2.4rem);
  line-height: clamp(28px, 2.9586vw, 4rem);
  letter-spacing: -1.2px;
}
.contacts-section__item[data-count-cols="3"] .editor:nth-child(2):last-of-type, .contacts-section__item[data-count-cols="2"] .editor:nth-child(2):last-of-type {
  grid-column: 1/-1;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
}
.contacts-section__item[data-count-cols="3"] .editor[data-type=list], .contacts-section__item[data-count-cols="2"] .editor[data-type=list] {
  grid-column: 1/-1;
}
.contacts-section .social {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.contacts-section .social__link {
  width: 5.4rem;
  height: 5.4rem;
  display: flex;
  border-radius: 100%;
  border: 0.1rem solid rgba(0, 0, 0, 0.15);
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.contacts-section .social__link i {
  width: 100%;
  height: 100%;
}
.contacts-section .social__link svg,
.contacts-section .social__link img, .contacts-section .social__link .sprite {
  transition: all 0.3s;
  width: 2rem;
  max-height: 3.2rem;
  height: auto;
}
.contacts-section .social {
  justify-content: center;
  gap: 2rem;
}
.contacts-section .social__link {
  width: clamp(54px, 4.5118vw, 6.1rem);
  height: clamp(54px, 4.5118vw, 6.1rem);
}
@media (min-width: 1024px){
  .contacts-section__list {
    padding: 0 min(11.3166vw, 15.3rem);
  }
}
@media (max-width: 1023.98px){
  .contacts-section__item[data-count-cols="3"], .contacts-section__item[data-count-cols="2"] {
    max-width: 100%;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 1023.98px) and (min-width: 576px){
  .contacts-section__item[data-count-cols="3"] .editor[data-type=editor], .contacts-section__item[data-count-cols="2"] .editor[data-type=editor] {
    width: -moz-fit-content;
    width: fit-content;
  }
  .contacts-section__item[data-count-cols="3"] .editor[data-type=editor]:first-of-type, .contacts-section__item[data-count-cols="2"] .editor[data-type=editor]:first-of-type {
    justify-self: center;
  }
  .contacts-section__item[data-count-cols="3"] .editor[data-type=editor]:last-of-type, .contacts-section__item[data-count-cols="2"] .editor[data-type=editor]:last-of-type {
    justify-self: end;
  }
}
@media (max-width: 767.98px){
  .contacts-section__item[data-count-cols="4"] {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contacts-section__item[data-count-cols="4"] .editor:first-of-type {
    margin-bottom: 12px;
  }
  .contacts-section__item[data-count-cols="4"] .editor:last-of-type {
    grid-column: 1/-1;
  }
}
@media (max-width: 575.98px){
  .contacts-section__item[data-count-cols="4"] {
    grid-template-columns: 100%;
  }
  .contacts-section__item[data-count-cols="3"] .editor p:not([class]):first-of-type, .contacts-section__item[data-count-cols="2"] .editor p:not([class]):first-of-type {
    letter-spacing: -1px;
  }
  .contacts-section__item[data-count-cols="3"] .editor[data-type=editor], .contacts-section__item[data-count-cols="2"] .editor[data-type=editor] {
    width: 292px;
    margin: 0 auto;
  }
  .contacts-section__item[data-count-cols="3"], .contacts-section__item[data-count-cols="2"] {
    grid-template-columns: 100%;
  }
}
@media (hover: hover){
  .contacts-section .social__link:hover {
    background: var(--bg-c);
    border-color: var(--bg-c);
  }
}
@media (hover: none){
  .contacts-section .social__link:active {
    background: var(--bg-c);
    border-color: var(--bg-c);
  }
}
/*# sourceMappingURL=section-contacts.css.map */