.projects-projects {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: transform .4s;
    padding: 30px 20px;
}

.projects-projects-item {
    position: relative;
    width: 30%;
    height: 200px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 2px;
}

.projects-projects-item:hover {
    cursor: pointer;
}

.projects-projects-item-background {
    transition: all .3s ease;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.projects-projects-item:hover .projects-projects-item-background {
    filter: blur(3px);
}

.projects-projects-item:hover .projects-projects-item-text {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.projects-projects-item:hover .projects-projects-item-text:before {
    transform: translateY(0);
    opacity: 1;
}

.projects-projects-item-text {
    transition: all .3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fafafa;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    transform: translateX(-50%) scale(.85);
    font-size: 16px;
    opacity: 0;
}

.projects-projects-item-text:before {
    transition: all .3s ease;
    content: "";
    display: block;
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: lightyellow;
    transform: translateY(30px);
    opacity: 0;
}

@media screen and (max-width: 576px) {
    .projects-projects-item {
        width: 100%;
    }
}