.three-column-cards-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.three-column-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.three-column-card {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1 0 28%;
  width: calc(33% - 2rem);
  overflow: hidden;
}

.three-column-cards-text{
  text-align: center;  
  padding: 0 1rem;
  width: 100%;
}

.three-card-img {
  margin: 0 auto;
  padding: 1.5rem;
  object-fit: cover;
  height: 300px;
  width: 100%;
}

@media (max-width: 768px) {
  .three-column-wrapper {
    flex-direction: column;
    gap:0;
  }
  
  .three-column-card {
    width: 100%;
}

