.products {
  padding: 90px 40px;
}

.products__inner {
  max-width: 1150px;
  margin: 0 auto;
}

.products__title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-light-blue);
}

.products__list {
  margin-top: 60px;
  padding: 0 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 70px;
}

.products__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: .5s ease;

}

.products__link:hover {
  opacity: 0.7;
}

.products__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: .5s ease;
}

.products__link:hover .products__img img {
  transform: scale(1.05);
}

.products__name {
  margin-top: 9px;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .products__list {

    gap: 40px 50px;
  }
}

@media screen and (max-width: 750px) {
  .products {
    padding: 6rem 3.3rem;
  }

  .products__title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    padding-bottom: 1rem;
  }

  .products__list {
    margin-top: 1rem;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }

  .products__name {
    margin-top: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
}