.card{
    height: 300px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 250ms ease-in-out;
}
.card img{
    height: 100%;
}
.card_content{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.403) 35%);
    transform: translateY(calc(100%  - 108px));
    transition: 250ms ease-in-out;
}
.card:hover .card_content{
    transform: translateY(0);
}
.card:hover{
    transform: scale(1.1);
}
.content_head{
    position: relative;
}
.content_head::after{
    content: '';
    height: 3px;
    width: 50%;
    background-color: #ffffff;
    position: absolute;
    bottom: -15px;
}

.content_head h5,h6 {
    color: white;
}