div.work_tile {
    position: relative;
}

div.work_tile div.description {
    z-index: 2;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    padding-left: 6%;
    padding-right: 6%;
    padding-bottom: 6%;
    width: 100%;
}

div.work_tile div.description h1 {
    margin-bottom: 2%;

    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;

    color: #222222;

    transition: 200ms;
    transition-timing-function: ease-in-out;
}

div.work_tile div.description h2 {
    font-weight: 400;
    font-size: 16px;

    color: #222222;

    transition: 200ms;
    transition-timing-function: ease-in-out;
}

div.work_tile a {
    display: block;

    text-decoration: none;
}

div.work_tile a:hover h1 {
    color: #ffffff;
}

div.work_tile a:hover h2 {
    color: #ffffff;
}

div.work_tile a:hover div.background {
    opacity: 0.2;
}


div.work_tile div.background {
    width: 100%;

    transition: 200ms;
    transition-timing-function: ease-in-out;
}

div.work_tile div.background video {
    width: 100%;   
}

div.work_tile div.background img {
    width: 100%;
}




@media only screen and (max-width: 768px) {

    div.work_tile div.description h1 {
        /*font-size: 10px;*/
    }

    div.work_tile div.description h2 {
        /*font-size: 20px;*/
    }
}