#experiences {
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.experience-container {
  /* display: flex;
  flex-direction: column;
  justify-content: space-around; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  /* grid-template-rows: repeat(auto-fit, minmax(auto, 650px)); */
  justify-content: center;
  margin: 0 auto;
  column-gap: 40px;
  row-gap: 20px;
  width: 90%;
}

.experience {
  padding: 30px 20px;
  height: 100%;
  /* border: 1px solid var(--bright-blue); */
  border: 1px solid var(--matte-black);
  border-radius: 15px;
  box-shadow: 10px 10px 5px;
  transition: 0.3s ease-out;
}

.experience:hover {
}

.experience p {
  margin-bottom: 5px;
}

.img-container {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.experience-img {
  height: auto;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 15px;
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  #experiences {
    display: block;
    padding: 20px;
    height: unset;
  }
  /* .experience-container {
    display: flex;
    row-gap: 25px;
    flex-wrap: wrap;
    height: unset;
    margin: 0 auto;
  } */
  .experience {
    border: unset;
    box-shadow: unset;
    padding: 15px;
  }
}
