.project-box {
    width: calc((73.95vw - 4.68vw) / 3);
    margin-right: 1.56vw;
    margin-bottom: 2.91vw;
}

.project-thumbnail {
    width: 100%;
    height: 15.2vw;
    overflow: hidden;
}

.project-thumbnail img{
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    object-fit: cover;
    transition: all .25s;
}

.project-thumbnail img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.project-name {
    margin-top: .52vw;
}

.project-name a{
    font-size: calc(16px * .75);
    color: #2E2828;
    font-weight: bold;
    line-height: calc(19px * .75);
    text-decoration: none;
    text-transform: uppercase;
    transition: all .15s;
}

.project-name a:hover {
    color: #D2A460;
}

.project-info {
    margin-top: .26vh;
    font-size: calc(12px * .75);
    line-height: calc(14px * .75);
    color: #727272;
    text-transform: uppercase;
}

.no-project {
    width: 100%;
    font-style: italic;
    text-align: center;
}

#lazy-load-element {
    display: none;
}

@media only screen and (max-width: 565px) {
    .project-box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 7.01vw;
    }

    .project-thumbnail {
        height: auto;
    }

    .project-thumbnail img{
        height: auto;
        filter: grayscale(0%);
    }

    .project-name {
        margin-top: 3.89vw;
        font-size: 16px;
        line-height: 19px;
    }

    .project-info {
        margin-top: 1.29vh;
        font-size: 12px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 566px) and (max-width: 767px) {
    .project-box {
        width: calc((73.95vw - 4.68vw) / 2);
    }

    .project-thumbnail {
        height: 17.37vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project-box {
        width: calc((73.95vw - 4.68vw) / 2);
    }

    .project-thumbnail {
        height: 22.37vw;
    }
}

@media only screen and (min-width: 1600px) {
    .project-name a{
        font-size: calc(16px * 1);
        line-height: calc(19px * 1);
    }

    .project-info {
        font-size: calc(12px * 1);
        line-height: calc(14px * 1);
    }
}