.effect-container{
    display: block;
    overflow: hidden;
}
.effect.style1{
    display: block;
    position: relative;
}
.effect.style1:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all .45s ease-in-out;
    -moz-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}
.effect.style1:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all .45s ease-in-out;
    -moz-transition: all .45s ease-in-out;
    -ms-transition: all .45s ease-in-out;
    -o-transition: all .45s ease-in-out;
    transition: all .45s ease-in-out;
}

.effect.style1:hover:before {
    right: 50%;
    left: 50%;
    background: rgba(255,255,255,0.2);
}
.effect.style1:hover:after {
    top: 50%;
    bottom: 50%;
    background: rgba(255,255,255,0.2);
}

.effect.style2{
    display: block;
    position: relative;
}
.effect.style2:before,
.effect.style2:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    opacity: 0;
}
.effect.style2:after{
    left: inherit;
    right: 0;
    width: 0%;
    background-color: rgba(0,0,0,0.3);
    -webkit-transition: all 0.1s ease 0s;
    -o-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
}
.effect.style2:hover:before{
    width: 0%;
    opacity: 1;
}
.effect.style2:hover:after{
    width: 100%;
}


.effect.style3{
    display: block;
    position: relative;
}

.effect.style3:before{
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    right: 25px;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(0, 1);
}
.effect.style3:after {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    right: 25px;
    z-index: 3;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(1, 0);
}
.effect.style3:hover:before,
.effect.style3:hover:after{
    transform: scale(1);
    -webkit-transition: all .45s ease-out 0s;
    -moz-transition: all .45s ease-out 0s;
    -o-transition: all .45s ease-out 0s;
    transition: all .45s ease-out 0s;
}

.effect.style4{
    overflow: hidden;
    position: relative;
    display: block;
}

.effect.style4:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
    z-index: 1;
}

.effect.style4:hover:before{
    opacity: 1;
    filter: alpha(opacity=100);
}
.effect.style4 img{
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}
.effect.style4:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.effect.style4 a{
    z-index: 10;
}
.effect.style5 {
    display: block;
    position: relative;
    overflow: hidden;
}
.effect.style5:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    content: '';
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,135deg) translate3d(0,100%,0);
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.effect.style5:hover:before {
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,135deg) translate3d(0,-100%,0);
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: initial;
}

/* style06 */
.effect.style6:before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.45);
    -moz-transition:all 300ms ease-out;
    -o-transition:all 300ms ease-out;
    -webkit-transition:all 300ms ease-out;
    transition:all 300ms ease-out;
    -ms-transition:all 300ms ease-out;
}
.effect.style6:hover:before{
    opacity: 1;
}

/* style07 */
.effect.style7:before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    -moz-transition:all 300ms ease-out;
    -o-transition:all 300ms ease-out;
    -webkit-transition:all 300ms ease-out;
    transition:all 300ms ease-out;
    -ms-transition:all 300ms ease-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.effect.style7:hover:before{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/* style08 */
.effect.style8:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.45);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
    z-index: 1;
}

.effect.style8:hover:before{
    opacity: 1;
    filter: alpha(opacity=100);
}
.effect.style8 img{
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}
.effect.style8:hover img{
    -webkit-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    -o-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
}

/* style09 */
.effect.style9{
    display: block;
    position: relative;
}
.effect.style9:before{
    width: 100%;
    height: 100%;
    background-color: rgba(253, 223, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0;
    -moz-transition:all 300ms ease-out;
    -o-transition:all 300ms ease-out;
    -webkit-transition:all 300ms ease-out;
    transition:all 300ms ease-out;
    -ms-transition:all 300ms ease-out;
}
.effect.style9:hover:before{
    opacity: 1;
}

.effect.style10{
    display: block;
    position: relative;
}
.effect.style10:before{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-top-width: 5px;
    border-top-style: solid;
    border-top-color: #fff;
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: #fff;
    transform: scale(0, 1);
    z-index: 1;
}
.effect.style10:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: #fff;
    border-right-width: 5px;
    border-right-style: solid;
    border-right-color: #fff;
    transform: scale(1, 0);
    z-index: 1;
}
.effect.style10:hover:before,
.effect.style10:hover:after{
    transform: scale(1);
    -moz-transition:all 500ms ease-out;
    -o-transition:all 500ms ease-out;
    -webkit-transition:all 500ms ease-out;
    transition:all 500ms ease-out;
}
/* style11 */
.effect.style11:before{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
    -moz-transition:all 300ms ease-out;
    -o-transition:all 300ms ease-out;
    -webkit-transition:all 300ms ease-out;
    transition:all 300ms ease-out;
    -ms-transition:all 300ms ease-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.effect.style11:hover:before{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
/* [effect-style12] */
.effect.style12 img{
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}
.effect.style12:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.effect.style12 a{
    z-index: 10;
}