*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif; 
  box-sizing: border-box;
  
}


.wrapper{
  padding: 5px 15%;
}

#card-area{
  padding: 0px 0;
}

.box-area{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 0px;
}

.box { border-radius: 20px; position: relative; overflow: hidden; box-shadow: 15px 15px 15px rgba(77, 71, 71, 0.9); -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px;
}

.box img{
  width: 100%;
  border-radius: 20px;
  display: block;
  transition: transform 0.5s;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.overlay { width: 100%; height: 0; background: linear-gradient(transparent,#1c1c1c 68%); border-radius: 10px; position: absolute; left: 0; bottom: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 40px; text-align: center; font-size: 14px; transition: height 0.5s; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px;
}
.overlay h3 {
font-weight:500;
margin-bottom: 5px;
margin-top: 80%;
font-family: 'Bebas Neue', sans-serif;
font-size: 30px;
letter-spacing: 2px;
}
.overlay a { margin-top: -30px; color: #262626; text-decoration: none; font-size: 14px; background: #fff; border-radius: 50px; text-align: center; padding: 5px 15px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px;
}
.box:hover img{
  transform: scale(1.1);
}
.box:hover .overlay{
  height: 100%;
}


