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

body{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
  transform-style: preserve-3d;
}

.container .box{
  position: relative;
  width: 450px;
  height: 300px;
  margin: 60px 0;
  background: #000;
  transform-style: preserve-3d;
}

.container .box:hover{
  box-shadow: 0 50px 80px rgba(0, 0, 0, .3);
}

.container .box .imgBox{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container .box .imgBox img{
  width: 100%;
  height: 100%;
}

.container .box .contentBox{
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  background: #fff;
  transform: translate(10px) scaleY(0);
  padding: 40px 25px;
  transform-origin: top;
  transition: .5s;
  transform-style: preserve-3d;
}

.container .box:hover .contentBox{
  transform: translateZ(10px) scaleY(1);
}