.b-hover-animation {
    display: block;
    margin-bottom: 40px;
}
.b-hover-animation:before {
    content: "";
    display: table;
    clear: both;
}
.b-hover-animation:after {
    content: "";
    display: table;
    clear: both;
}
.b-hover-animation .b-item {
    position: relative;
    float: left;
    width: 300px;
    height: 200px;
    margin: 0 0 0 25px;
    padding: 0;
}
.b-hover-animation .b-item:first-child {
    margin-left: 0;
}
.b-hover-animation .b-item span {
    position: absolute;
    bottom: -20px;
    left: 0;
    z-index: -1;
    display: block;
    width: 300px;
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
}
.b-hover-animation.b-text-animation .b-figure {
    width: 300px;
    height: 200px;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
}
.b-hover-animation.b-text-animation .b-figure:hover + span {
    bottom: -36px;
    opacity: 1;
}
.b-hover-animation.b-zoom-in.v1 .b-figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-zoom-in.v1 .b-figure:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.b-hover-animation.b-zoom-in.v2 .b-figure img {
    width: 300px;
    height: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-zoom-in.v2 .b-figure:hover img {
    width: 350px;
}



.b-hover-animation.b-zoom-out.v1 .b-figure img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: .9s ease-in-out;
    transition: .9s ease-in-out;
}
.b-hover-animation.b-zoom-out.v1 .b-figure:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.b-hover-animation.b-zoom-out.v2 .b-figure img {
    width: 400px;
    height: auto;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-zoom-out.v2 .b-figure:hover img {
    width: 300px;
}
.b-hover-animation.b-slide.v1 .b-figure img {
    margin-left: 30px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-slide.v1 .b-figure:hover img {
    margin-left: 0;
}
.b-hover-animation.b-rotate.v1 .b-figure img {
    -webkit-transform: rotate(15deg) scale(1.4);
    transform: rotate(15deg) scale(1.4);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-rotate.v1 .b-figure:hover img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}
.b-hover-animation.b-blur.v1 .b-figure img {
    -webkit-filter: blur(3px);
    filter: blur(3px);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-blur.v1 .b-figure:hover img {
    -webkit-filter: blur(0);
    filter: blur(0);
}
.b-hover-animation.b-gray-scale.v1 .b-figure img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-gray-scale.v1 .b-figure:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.b-hover-animation.b-sepia.v1 .b-figure img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.b-hover-animation.b-sepia.v1 .b-figure:hover img {
    -webkit-filter: sepia(0);
    filter: sepia(0);
}
/* Blur + Gray Scale */

.hover10 .b-figure img {
    -webkit-filter: grayscale(0) blur(0);
    filter: grayscale(0) blur(0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover10 .b-figure:hover img {
    -webkit-filter: grayscale(100%) blur(3px);
    filter: grayscale(100%) blur(3px);
}
/* Opacity #1 */

.hover11 .b-figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover11 .b-figure:hover img {
    opacity: .5;
}
/* Opacity #2 */

.hover12 .b-figure {
    background: #1abc9c;
}
.hover12 .b-figure img {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover12 .b-figure:hover img {
    opacity: .5;
}
/* Flashing */

.hover13 .b-figure:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}
@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}
@keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}
/* Shine */

.hover14 .b-figure {
    position: relative;
}
.hover14 .b-figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.hover14 .b-figure:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
/* Circle */

.hover15 .b-figure {
    position: relative;
}
.hover15 .b-figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.hover15 .b-figure:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Generalized Animation Classes */
.br-zoom-out{overflow: hidden; cursor: pointer;}
.br-zoom-out img{transform: scale(1.08); transition: .9s ease-in-out;}
.br-zoom-out:hover img{transform: scale(1);}

.br-zoom-in{overflow: hidden; cursor: pointer;}
.br-zoom-in img{transform: scale(1); transition: .9s ease-in-out;}
.br-zoom-in:hover img{transform: scale(1.08);}