#projects-filter {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding: 5px;
}
#projects-filter a{
    margin: 0 2px;
}
div#product-container {
    margin: 0px 0 40px 12px;
    overflow: hidden;
    position: relative;
    width:100%;
}

/*.project-item:after {
    content: "\f110";
    position: absolute;
    left: 50%;
    top: 40%;
    font-size: 60px;
    transform: translate(-50%, -50%);
    font-family: FontAwesome;
    animation: a 2s infinite linear;
}*/
.project-item {
    background: #fff url(loading.gif) no-repeat center center scroll;
    box-sizing: border-box;
    overflow: hidden;
    width: calc((100% - 60px) / 6);
    height: 190px;
    cursor: pointer;
    float: left;
    margin: 10px 10px 10px 0px;
    box-shadow: 0 0 3px 2px rgba(0,0,0,0.1);
    /*background: #fff;*/
    position: relative;
}
.project-item:nth-child(6n+0){
    margin-right: 0px;
}

.project-item img{
    height:100%;
    width: 100%;
    border: 1px solid #ddd !important;
    padding: 5px !important;;
    border-radius: 3px !important;;
    margin-bottom: 10px !important;;
    transition:all 500ms linear;
}
.project-item img:hover{
    -moz-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25);
}
.tick_image{
    height: 48px;
    left: -5px;
    position: relative;
    top: -45px;
    width: 48px;
}
.act{
    background: red;
    color: #fff;
}
.placeholder {
    margin: 10px 0 0;
    width: 250px;
    height: 250px;
    float: left;
    background: #eee;
    border: 2px dashed #bbb;
    display: block;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
.thumb {
    max-width: 300px;
    height: 150px;
}
.thumb img{
    width: 100%;
    height: 200px;
}
.more-details{
    padding: 5px 15px;
    background: #3498db;
    color: #fff;
    top: 100%;
    position: absolute;
    right: 25%;
}
.project-item:hover
.more-details{
    top: 40%;
    transition:all .5s;
}
.more-details:hover{
    background: #fff;
    color:#3498db;
    transition: all .4s;
}
.gallery-title{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: -55px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.project-item a:hover .gallery-title{
    margin-bottom: 0;
}