@media (min-width: 992px) {
    .quicklink-tile {
    margin-right: 0.6em;
    }
}

.inner-tile {
    display: block;
    background-color: #444;
    overflow: hidden;
    text-align: center;
    min-height: 120px;
    border-right: 5px solid white;
    border-bottom: 5px solid white;
}

.link-block {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

a.link-block:hover {
    border: none;
}

.tile-background {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out;
}

.inner-tile:focus .tile-background, .inner-tile:active .tile-background, .inner-tile:hover .tile-background {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.inner-tile:focus .tile-content, .inner-tile:active .tile-content, .inner-tile:hover .tile-content {
    height:45%;
}

span.tile-text {
    font-family: "Encode Sans Compressed",sans-serif;
    text-shadow: 0 0 14px rgba(0,0,0,.9);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.tile-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 32px 0;
    background: rgba(65,62,68,.7);
    width: 100%;
    height: 100%;
}