.showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card-container {
  width: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 5vw;
}

.card-container .card {
  position: relative;
  /* cursor: pointer; */
}

.card-container .card .face {
  width: 350px;
  height: 250px;
  transition: 0.3s;
  border-radius: 3px;
  overflow: hidden;
}

.card-container .card .face.face1 {
  position: relative;
  background: #006079;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.card-container .card:hover .face.face1 {
  background: #51d2f5;
  transform: translateY(0);
  transform: scale(1.3);
  z-index: 2;
}

.card-container .card .face.face1 .content {
  opacity: 0.85;
  transition: 0.3s;
}

.card-container .card:hover .face.face1 .content {
  opacity: 1;
}

.card-container .card .face.face1 .content h3 {
  margin: 10px 0 0;
  padding: 0;
  color: #e6f9fe;
  text-align: center;
  font-size: 3rem;
  padding-bottom: 0.8rem;
}

.card-container .card .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 2rem 5rem rgba(80, 80, 80, 0.3);
  transform: translateY(-150px);
  text-align: center;
}

.card-container .card:hover .face.face2 {
  transform: translateY(0);
}

.card-container .card .face.face2 .content p {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container .card .face.face2 .content a {
  margin: 1.5rem 0 0;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 900;
  background-color: #b3ecfb;
  color: #000225;
  padding: 1.2rem 2.4rem;
  border-radius: 11px;
  transition: all 0.3s;
}

.card-container .card .face.face2 .content a:hover {
  background: #00bff2;
  color: #fff;
}

.img {
  width: 100%;
}

.content ul li {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}

/*
  FONT SIZE SYSTEM (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
   
  SPACING SYSTEM (px)
  2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
  */
