@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);



.card1 {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  padding: 30px 50px;
  background: #fff;
  cursor: pointer;
  margin-right: 30px;
}

.card1:hover {
  height: 320px;
}

.imgbox1 {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-80px);
  z-index: 99;
}

.rahul {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}

.content1 {

  padding-top: 60px;
  text-align: center;
  transform: translateY(-450px);
  opacity: 0;
  transition: 0.3s;
  font-size: 12px;
}

.card1:hover > .content1 {
  opacity: 1;
  transform: translateY(-180px);
}

.content1 h4 {
  color: red;
}