.img-hover {
    position: relative;
    max-width: 1000px;
    list-style: outside none none;
    margin: 30px auto;
    text-align: center;
}

.img-hover figure {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 400px;
    text-align: center;
    cursor: pointer;
    margin: 0;
    background-color: #071133;
}

.img-hover figure img {
    position: relative;
    display: block;
    object-fit: cover;
    max-width: none;
    width: calc(100% + 50px);
    height: 100%;
    max-height: none;
    opacity: 0.4;
    transition: opacity .35s, transform .35s;
    transform: translate3d(-40px, 0, 0);

}

.img-hover figure:hover img {
    transform: translate3d(0px, 0, 0);
    opacity: 0.5;
}

.img-hover figure figcaption {
    text-align: left;
    padding: 2em;
    color: #fff;
    font-size: 1em;
    backface-visibility: hidden;
}

.img-hover figure figcaption div {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
    width: 100%;
    height: 90%;
}

.img-hover figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-hover figure figcaption h2 {
    font-size: 26px !important;
    transform: translate3d(0, 40px, 0);
    transition: opacity .2s, transform .35s, -webkit-transform .35s;
    margin-bottom: 0 !important;
    text-transform: uppercase;
}

.img-hover figure:hover figcaption h2 {
    transform: translate3d(0, 0px, 0);
}

.img-hover figure figcaption p {
    font-size: 18px;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity .2s, transform .35s, -webkit-transform .35s;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.img-hover figure:hover figcaption p {
    opacity: 1;
    transform: translate3d(0, 0px, 0);
}