/*========= FUNCTIONS ==========*/
/*========= MIXINS ==========*/
.about-title {
  text-align: center;
}
.about-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.about-item {
  list-style: none;
  margin-bottom: 0;
}
.about-item_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-item_icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}
.about-item_icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-item_name {
  font-family: var(--font_m);
  font-size: clamp(20px, 0.021875 * 100vw + 13px, 55px);
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0%;
  color: var(--accent_secondary);
}
.about-item_desc {
  margin-top: 10px;
  text-align: center;
  margin-bottom: 0;
  color: var(--text);
}

@media (max-width: 992px) {
  .about-block {
    padding: 20px 0 !important;
  }
  .about-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
  .about-item_icon {
    width: 50px;
    height: 50px;
  }
}/*# sourceMappingURL=block.css.map */