.project-list {
    position: relative;
    margin: 0 auto;
}

.project-list div {
    overflow: hidden;
}

.project-list div img {
    margin: 0;
}

.project-list div a {
    float: left;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    border: 5px solid #fff;
}

.project-list div a .title {
    position: absolute;
    bottom: -1px;
    right: -1px;
    text-align: right;
    background: var(--colour-gold);
    padding: 0.5rem 1rem;
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    display: block;
}

.project-list div a .logo {
    position: absolute;
    top: 0;
    left: 0;
    background: #c22126;
    padding: 0.5rem 1rem;
    color: #fff;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.project-list div a .logo img {
    height: 60px;
    width: auto;
}

.project-list div a img {
    position: relative;
    display: block;
    width: 100%;
    opacity: 0.8;
    margin: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 0, 50px);
    transform: translate3d(0, 0, 50px);
}

.project-list div a:hover img {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.project-list div a:hover .title, .project-list div a:hover .logo {
    opacity: 1;
}
