.clearFix:after{
  content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;}
button{
  padding: 0;
  border: none;
  background: transparent;
}
.sch_icon{
  width: 20px;
  height: 20px;
  background: transparent;
}

.block_box {
    position: relative;
}

.block_box .thum-pic img {
    width: 100%;
}

.my-section {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}

.wrap-cta{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
}

.wrap-cta.active {
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: opacity .6s, -webkit-transform .6s;
    -webkit-transition: opacity .6s, -webkit-transform .6s;
    -o-transition: transform .6s, opacity .6s;
    transition: transform .6s, opacity .6s;
    transition: transform .6s, opacity .6s, -webkit-transform .6s;
    opacity: 1;
}

.wrap-cta .cta {
    width: 40px;
    border: none;
    color: #000;
    background: transparent;
    cursor: pointer;
    outline: none;
    -webkit-transition: transparent .4s;
    -o-transition: transparent .4s;
    transition: transparent .4s;
}

.cta img {
  width: 100%;
}

.cta:hover .sch_icn{
  animation: sch_ani 1s;
  animation-fill-mode: forwards; 
}

svg.animate-svg {
    display: block;
    max-width: 100%;
    height: 100%;
}

svg .polymorph {
    fill: #333;
    opacity: .3;
}

.polymorph.active{
    fill: #1164AE;
    opacity: 1;
}

.content_outer {
    position: absolute;
    top: 43%;
    left: 40%;
    text-align: center;
}

.content_outer .content{
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    color: #000;
    -webkit-transition: opacity 0.6s 0.2s;
    -o-transition: opacity 0.6s 0.2s;
    transition: opacity 0.6s 0.2s;
    -webkit-transition: opacity .6s .2s, -webkit-transform .6s .2s;
    transition: opacity .6s .2s, -webkit-transform .6s .2s;
    -o-transition: transform .6s .2s, opacity .6s .2s;
    transition: transform .6s .2s, opacity .6s .2s;
    transition: transform .6s .2s, opacity .6s .2s, -webkit-transform .6s .2s;
}

h1 {
    font-size: 14px;
    margin: 0;
}

.content_outer .content .detail{
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: .6em;
    color: #000;
    background: transparent;
    border: 2px solid;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: transparent .4s;
    -o-transition: transparent .4s;
    transition: transparent .4s;
}

.content_outer .content.active {
    z-index: 4;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

@keyframes sch_ani{
    to{
        opacity: 0;
        transform: scale(2) rotate(90deg);
    }
}

