body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: block;
    justify-content: center;
    align-items: center;
}
.container-new{
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
}
.box{
    position: relative;
    width: 300px;
    height: 400px;
    background: #000;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.45);
    padding-top: 10px;
}
.box .imgBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.box .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.box:hover .imgBx img{
   /* opacity: 0;*/
    background-color: #ffffffd1;
    border-bottom: 4px solid #171cc563;
    box-shadow: 0 30px 30px rgba(1,1,1,0.2) inset 0 30px 30px rgba(1,1,1,0.3);


}

.box .content{
    position: absolute;
    bottom: 15px;
    left: 5%;
    text-align: center;
    align-content: center;
    align-items: center;
    width: 90%;
    height: 60px;
    background: #ffffff94;
    border-radius: 15px;
    transition: 0.5s;
    overflow: hidden;
    padding-top: 10px;
    box-sizing: border-box;
    /*border-bottom: 2px solid #2196f3;*/
    box-shadow: 0 30px 30px rgba(1,1,1,0.3);
  
}
.box:hover .content{
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: #ffffff94;
    border-radius: 0px;
    /*border-bottom: 2px solid #21f34e;*/
    box-shadow:inset 0 30px 30px rgba(1,1,1,0.3);
}
.box:hover .content h4
{
    /*border-bottom: 2px solid #2196f3;*/
    background-color: #ffffff94;
}
h4{
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
   
}
p{
    color: #000;
    font-family: 'Raleway', sans-serif;
}
.box .content h4{
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
}
.box .content p{
    margin: 10px 0 0;
    padding: 0;
    opacity: 0;
    line-height: 1.2em;
    transition: 0.5s;
    text-align: justify;

}
.box:hover .content p{
    opacity: 1;
    transition-delay: 0.5s;
    padding: 15px;
}
.box:hover .content h4{
    padding: 15px;
    font-weight: bold;
}
.grid-x{
    padding-left: 120px;
    padding-right: 100px;
    padding-top: 50px;
    align-items: center;
}