.box{
    position: relative;
    width: 350px;
    height: 180px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
    transition: 0.5s;
    margin: 120px auto 0 auto;
}

.box:hover{
    height: 420px;
}

.imgBx{
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background-color: #000;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,.35);
    overflow: hidden;
    transition: .5s;
}

.box:hover .imgBx{
    width: 250px;
    height: 250px;
}

.imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box .content{
    position: absolute;
    top: 64%;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.box:hover .content{
    top: 52%;
}

.box .content h2{
    font-size: 1.3em;
    font-weight: 600;
    color: #555;
    line-height: 1.2em;
}

.box .content h2 span{
    font-size: .9em;
    font-weight: 500;
    opacity: .7;
}

.box .content .details{
    padding: 80px;
    text-align: center;
    width: 100%;
    /* transition: .3s; */
    transform: translateY(150px);
}

.box:hover .content .details {
    transform: translateY(-80px);
}

.box .content .details .data{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.box .content .details .hidden{
    opacity: 0;
    transition: .2s ease;
}

.box:hover .content .details .hidden{
    opacity: 1;
    transition: .8s ease;
}

.box .content .details .data h3{
    font-size: 1em;
    color: #555;
    line-height: 1.2em;
    font-weight: 600;
} 

.box .content .details .data h3 span{
    font-style: 0.85em;
    font-weight: 400;
    opacity: .5;
}

@media screen and (max-width: 1040px) {
    .box-center{
        width: 100%;
    }
}