#for_types {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
}

.type {
  width: 250px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  vertical-align: top;
}

.for_type_img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto;
}

.septik_name {
  font: 20px/26px ALSBold;
  margin: 15px 0 5px;
}

.description_septik {
  font: 16px/20px LitteraTextBook, "Open Sans", sans-serif;
  margin: 0;
}

/*Стили для планшетов*/
@media all and (max-width:768px) {
  #for_types {
    gap: 16px;
  }
  .type {
    width: calc(50% - 16px);
  }
  .for_type_img {
    height: 160px;
  }
}

/*Стили для смартфонов*/
@media all and (max-width:425px) {
  #for_types {
    gap: 12px;
  }
  .type {
    width: 100%;
    max-width: 320px;
  }
  .for_type_img {
    height: 200px;
  }
}
