/*------------------------------------*\
   Applications Archive Page
\*------------------------------------*/
.applications-inner{
    height: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
}
.applications-inner .applications-featured-image{
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.applications-inner .applications-featured-image:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: 0.5s ease-in-out;
}
.applications-inner .applications-featured-image:hover:after{
    transform: scale(1);
    background: #0c0c0c40;
}
.applications-inner .applications-add{
    margin-top: -50px;
}
.applications-inner .applications-add a{
    width: 100%;
}
article.applications:after{
    content: '';
    display: block;
    clear: both;
    float: none;
}