
.flex-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  max-width: 1200px;
  width: 100%;
  padding: 60px 0;
  margin:auto;
}
.space-between {
  justify-content: space-between;
}
.col {
  width: 50%;
}
.card {
  min-width: 450px;
  margin: 20px;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 500px) {
  .card {
    flex-direction: column;
    align-items: center;
    min-width: 90%;
  }
  .card_desc {
    width: 100%;
  }
}
.card img {
  max-width: 250px;
  /* transform: translate(-15%); */
}
.img-placeholder {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.75);
}
h3 {
  font-weight: 400;
}
p {
  font-weight: 700;
}
a {
  color: #888;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

#collaborations p{
  padding-left: 20px;
}