.project {
    padding: 0 0 60px;
}

.project .row {
    margin: 0 -10px;
}

.project .col-md-4 {
    padding: 0 10px;
    margin-top: 60px;
}

.project .project-items {
    background-color: #f4f4f4;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.project .project-items .image {
    position: relative;
}


.project .project-items .image:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.project .project-items .image p {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    z-index: 2;
    margin-top: -25px;
    margin-left: -100px;
    text-align: center;
    font-size: 22px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    opacity: 0;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.project a:hover .project-items .image p {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}


.project a:hover .project-items .image:after {
    opacity: 1;
}

.project a:hover .project-items {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.project .article {
    padding: 10px 20px 20px;
}

.project .article h3 {
    font-size: 18px;
    color: #111;
    line-height: 28px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 0 5px;
}

.project .article p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.project a:hover .article h3 {
    color: #00A54F;
}