/* Work */
.work-video {
    padding: 0px !important;
    margin: 0px !important;
    height: 450px;
    min-height: 450px;
}
@media (max-width: 576px) {
    .work-video {
        min-height: 250px;
        padding: 0px;
        margin: 0px;
    }
}

.work-video:hover .outer {
    padding: 0px;
    margin: 0px;
    background-color: rgba(0, 0, 0, 0.2);
}

.work-video .outer, .work-video:hover .outer {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.work-video .outer .middle .inner .work-name {
    display: block;
    text-align: center;
    vertical-align: middle;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.work-video .outer .middle .inner .work-name:hover {
    text-decoration: none;
}

.work-video:hover .outer .middle .inner .work-name {
    opacity: 1;
}

@media (max-width: 576px) {
    .work-video .outer .middle .inner .work-name {
        opacity: 1;
    }
}

.work-video .outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.work-video .outer .middle {
    display: table-cell;
    vertical-align: middle;
}

.work-video .outer .middle .inner {
    margin-left: auto;
    margin-right: auto;
    width: 400px;
    /*whatever width you want*/
}
@media (max-width: 576px) {
    .work-video .outer .middle .inner {
        width: 90%;
    }
}
