        .Card{
            display:inline-block;
            width:22%;
            min-width:235px;
            margin:2px 1%;
            overflow:hidden;
            transition: transform 0.15s;
        }
        .Card:hover{
            transform:scale(1.05);
        }
        .Card img{
            height: 250px;
            border-radius:10px;
        }
        .Card h4, .Card p, .Card .Items, .Card Button{
            margin:5px;
            cursor:pointer;
            color:#000000;
            font-family:"sahel";
            font-weight:normal;
            font-size:12px
        }
        .Card h4{
            font-size:16px;
            display: inline-block;
            text-shadow: 1px 1px white;
            height:50px;
            
        }
        .Card p {
            font-size:13px;
            position:relative;
            text-align:justify;
            direction:rtl;
            height:50px;
            overflow:hidden;
            -webkit-mask-image: -webkit-gradient(linear, left top, left bottom,from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
        }
        .Card .Items{
            display:inline-block;
            padding:5px;
        }
        .Card .Items h5{
            font-family:"Kamran";
            font-size:18px;
            display: inline-block;
        }
        .Card .Items i{
            font-size:14px;
        }
        .Card a{
            padding:3px;
            font-family:"Kamran";
            font-weight:normal;
            font-size:19px;
            float:left;
            width:auto;
            color:#fff;
            border-radius:25px;
            background-color: #19b4ca;
            text-align:center;
            margin-left:0;
        }