.project-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .project-cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }   
}

@media (min-width: 992px) {
  .project-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  width: auto;
  height: 200px;
  padding: 20px;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px;
  border: 2px solid #17477B;

}
.card h3 {
  margin: 0;
  font-size: 1.2em;
  color: #17477B;

  transition: all 0.2s ease-in;
}
.card:hover {
  cursor: pointer;
}
.card:hover h3 {
  transform: translateX(-8px);
}
.hidden-card {
  display: none;
}
.project-cards-show-more-btn {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background: #17477B;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.project-cards-show-more-btn:hover {
  background: #17477B;
}