/* line Animation */

@keyframes lineW{
    0%{
        height:10%;
    }
    50%{
height: 80%;
}
}

@keyframes lineH{
    0%{
        width: 10%;
    }
    100%{
width: 70%;
}
}

/* preloader Animation */
@keyframes preloader {
    100% { transform: scale(1.5); }
  }


.border-shape-preloader {
    position: absolute;
    top: -153px;
    right: 46px;
}

.shape-preloader {
    background-color:transparent;
    overflow: hidden;
    width:22px;
    height: 20px;
    bottom: 0;
    left: 0;
    z-index: 100000;
    border-radius: 100%;
    border: 3px solid #0099E2;
    animation: preloader .6s ease-in-out alternate infinite;
}


@keyframes rotate{
    0%{ transform: rotate(0deg); }
      100%{ transform: rotate(360deg); }	
  }
.t1_about_thumb.shape-rotate img{
    animation: rotate 10s infinite linear; 
}


