.products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 0;
}
.products > div {
  flex-basis: calc(33.3333333333% - 20px);
  margin: 10px;
}
.products-item {
  border: solid 1px var(--dark-gray-color);
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products-item-header {
  display: block;
  font-family: "Druk Text Wide Cyr", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.products-item-text {
  font-size: 14px;
}
.products-item-elements {
  display: flex;
  margin: 0 -10px 20px;
}
.products-item-elements > div {
  flex-basis: calc(33.3333333333% - 20px);
  margin: 0 10px;
  font-size: 14px;
}
.products-item-elements > div a {
  font-weight: 500;
}
.products-item-elements.t2 > div {
  flex-basis: calc(50% - 20px);
}
.products-item-title {
  font-family: "Druk Text Wide Cyr", sans-serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.products-item-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products-item-icons > div {
  flex-shrink: 0;
}
.products-item-icon {
  width: 40px;
  height: 40px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.products-item-number {
  width: 34px;
  height: 32px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

@media screen and (max-width: 1279px) {
  .products-item-elements, .products-item-elements.t2 {
    flex-wrap: wrap;
  }
  .products-item-elements > div, .products-item-elements.t2 > div {
    flex-basis: calc(100% - 20px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .products {
    flex-wrap: wrap;
  }
  .products > div {
    flex-basis: calc(50% - 20px);
  }
}
@media screen and (max-width: 800px) {
  .products {
    flex-wrap: wrap;
  }
  .products > div {
    flex-basis: calc(100% - 20px);
  }
}

/*# sourceMappingURL=style.css.map */
