/* Menus */

figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0 0;
    /* min-width: 320px;
    max-width: 480px; */
    max-height: 360px;
    width: 100%;
    height: auto;
    background: transparent;
    text-align: center;
    cursor: pointer;
}

figure a {
    text-decoration: none;
}

figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.6;
    margin: 0 auto;
}

figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

figure figcaption::before,
figure figcaption::after {
    pointer-events: none;
}

figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

figure h2 {
    word-spacing: -0.05px;
    font-weight: 300;
    margin: 0;
}

figure h2 span {
    font-weight: 800;
    text-transform: uppercase;
}

figure.effect-hera {
    background: black;
}

figure.effect-hera h2 {
    font-size: 158.75%;
}

figure.effect-hera h2 {
    position: absolute;
    color: white;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
}

figure.effect-hera:hover h2 {
    opacity: 0.9;
    -webkit-transform: translate3d(-50%, -50%, 0) scale3d(1.2, 1.2, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(1.2, 1.2, 1);
}