.projects-section-big {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.6rem;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 3rem;
    flex-wrap: wrap;
}

.card {
    height: 100%;
    width: 20%;
    border: black solid 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    text-align: center;
}

.card-img-box {
  width: 300px;
  height: 150px;
  border: 4px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}