.elementor .projects-gallery{selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

selector > .elementor-element {
  width: 100%;
  margin: 0;
}

selector img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  selector {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
  }

  selector img {
      height: 280px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  selector {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  selector img {
      height: 250px;
  }
}\n}