* {
  box-sizing: border-box;
}

body {
  font-family: Lato, sans-serif;
}

.range__products1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  column-gap: 16px;
}

.range__product-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: flex-end;
  height: 100%;
}

.range__image1 {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 15;
  object-fit: cover;
}

.range__product-name1 {
  margin-top: 15px;
  display: block;
  font-family: "Mulish Regular", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #2a2e34;
}

.range__product__picture1 {
  display: none;

}

.range__product__picture1:first-child {
  display: block;
}

@media only screen and (max-width: 990px) {
  .range__products1 {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }

  .range__product-name1 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 450px) {
  .range__products1 {
    -moz-column-gap: 3px;
    column-gap: 3px;
  }
}