.aim-card {
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aim-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.aim-card .aim-card-front {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /*
             img {
                  opacity: 1;
                  transition: opacity .3s ease-in-out;
             }
  */
}
.aim-card .aim-card-front h3 {
  margin: 0px;
  text-transform: uppercase;
  /*
                  opacity: 1;
                  transition: opacity .3s ease-in-out;
  */
}
.aim-card .aim-card-front img + h3 {
  margin-top: 1.5rem;
}
.aim-card .aim-card-back {
  background-color: #382F2D;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 300ms ease;
}
.aim-card .aim-card-back h3 {
  color: #FFDA00;
  text-transform: uppercase;
  margin: 0px;
}
.aim-card .aim-card-back h3 + p {
  margin-top: 1.5rem;
}
.aim-card .aim-card-back p:last-of-type {
  margin-bottom: 0px;
}
.aim-card:hover .aim-card-back {
  display: flex;
  opacity: 1;
  transition: opacity 300ms ease;
}

.box-shadow {
  box-shadow: 0px 1px 32px rgba(0, 0, 0, 0.08), 0px 28px 32px -20px rgba(0, 0, 0, 0.11);
}
