.project-path{
    width: 100%;
    background-color: #FCFCFC;
    margin-top: 40px;
}

.project-path:first-child{
    margin-top: 0;
}

.project-path .image{
    overflow: hidden;
}

.project-path .image img{
    transition: all 0.5s;
}

.project-path h3{
    font-size: 32px;
    line-height: 42px;
    color: #333;
    position: relative;
    margin: 0;
    padding-bottom: 30px;
    transition: all 0.5s;
}

.project-path h3:after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    content: '';
    background-color: #00937D;
}

.project-path .article{
    width: 50%;
    padding-top: 60px;
    max-width: 600px;

}

.project-path .article p{
    font-size: 18px;
    line-height: 34px;
    color: #333;
    margin-top: 40px;
}

.project-path.project-path-l .image{
    float: left;
}

.project-path.project-path-l .article{
    float: right;
    padding-right: 20px;
}

.project-path.project-path-r .image{
    float: right;
    overflow: hidden;
}

.project-path.project-path-r .article{
    float: left;
    padding-left: 20px;
}

.project-items:hover .image img{
    transform: scale(1.1);
}

.project-items:hover h3{
    color: #00937D;
}

.project-items{
    transition: all 0.3s;
}

.project-items:hover{
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .project-path .article{
        width: 100%;
        max-width: initial;
        padding: 15px!important;
    }
    .project-path h3{
        font-size: 18px;
        line-height: 28px;
        padding-bottom: 15px;
    }
    .project-path .article p{
        font-size: 14px;
        line-height: 24px;
        margin-top: 15px;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        white-space: normal;
    }
    .project-path h3:after{
        height: 2px;
    }
    .project-path{
        margin-top: 15px;
    }
}