/* Projects Styles */

.project-wrap {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: none;
    background: #002F5B;
    position: relative;
    box-sizing: border-box;
}

a.project-image {
    position: relative;
    width: 100%;
    height: 55vw;
    box-sizing: border-box;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all ease 0.3s;
    text-decoration: none;
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 600px) {

    .project-wrap {
        float: left;
        width: 32%;
        margin-right: 1%;
        margin-bottom: 1%;
    }

    a.project-image {
        height: 15vw;

    }
}

.project-image:hover {
    opacity: 0.7;
}

.project-wrap h3 {
    font-size: 20px;
    line-height: 20px;
    padding: 20px;
    position: relative;
    left: 0;
    bottom: 0;
    margin: 0;
    color: #fff;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
}

a.project-wrap:hover {
    text-decoration: none;
}

.proj-gallery img {
    float: left;
    height: 300px;
    margin-right: 10px;
}

.proj-gallery .galTitle {

    position: absolute;
    top: 10px;
    background: rgba(220, 214, 204, 0.9);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
}


