.achievement-wrapper {
  padding-top: 30px;
  position: relative;
}
.achievements-header {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.achievement {
  position: relative;
  width: 25rem;
  height: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}
.achievement-img {
  max-width: 100%;
  max-height: 100%;
}

.achievement-text {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: #f1f1f1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: 0.4s all ease;
  width: 100%;
  height: 100%;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px 0px 20px;
}

.achievement-img:hover + .achievement-text {
  opacity: 1;
}

.achievement-text:hover {
  opacity: 1;
}
/* .achievement-img:hover {
    opacity: 0.5 !important;
  } */

.achievement-img-slider {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
