.pro {
    width: 44%;
    height: 300px;
    text-align:center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    float: left;
    cursor: pointer;
    margin: 20px 2.5%;
    padding: 0 0 50px;
}

.pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.pro img {
    height: 100%;
}

.pro strong{
    background: #f7f7f7;
    width: 100%;
    font-size: 17px;
    color: #964646;
    display: inline-block;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .pro{
        width: 100%;
        height: auto !important;
        margin: 10px 0 30px;
        padding: 0;
    }
    .pro img{
        width: 100% !important;
        height: auto !important;
    }
}
