.column {
    float: left;
}
@media screen and (max-width: 768px) {
    .column {
        float: none;
        position: relative;
        clear: both;
        width: 100% !important;
    }
}
@media screen and (max-width: 480px) {
    .column {
        width: 100% !important;
    }
}
.cl-4 {
    width: 25%;
}
.cl-3 {
    width: 33.333%;
}
.cl-2 {
    width: 50%;
}
#flowlayout[data-columns]::before {
    content: '3 .column.cl-3';
}
@media screen and (max-width: 450px) {
    #flowlayout[data-columns]::before {
        content: '1 .column';
    }
}
@media screen and (min-width: 451px) and (max-width: 700px) {
    #flowlayout[data-columns]::before {
        content: '2 .column.cl-2';
    }
}
@media screen and (min-width: 701px) and (max-width: 850px) {
    #flowlayout[data-columns]::before {
        content: '3 .column.cl-3';
    }
}
@media screen and (min-width: 851px) {
    #flowlayout[data-columns]::before {
        content: '3 .column.cl-3';
    }
}
#flowlayout .item {
    margin: 0px 15px 40px 15px;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden; 
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
#flowlayout .item a {
    display: block;
}
#flowlayout .image {
    border-radius: 4px;
    overflow: hidden; 
}
#flowlayout .image img {
    max-width: 100%;
    transition:All 0.3s ease-in-out; 
    -webkit-transition:All 0.3s ease-in-out;
    -moz-transition:All 0.3s ease-in-out;
    -o-transition:All 0.3s ease-in-out;  
}
#flowlayout .image:hover img {	
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    -ms-transform:scale(1.1);
}
#flowlayout .title h3 {
    color: #000;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin: 10px 0 10px 0;
}
#flowlayout .title h3 a:hover {
    color: #018a60;
}
#flowlayout .date {
    text-align: right;
    color: #bbb;
}
#flowlayout .date i {
    margin-right: 3px;
}