

.dif_banner {
    position: relative;
}
.slideInLeft {
    position: absolute;
    color: #fff;
    top: 50%;
    width: 800px;
    left: 50%;
    font-size: 18px;
    height: 60px;
    padding:0 200px;
    margin-top: -30px;
    margin-left:-600px;
    box-sizing: content-box;
-webkit-box-sizing: content-box;
   -moz-box-sizing: content-box;
   -ms-box-sizing: content-box;
   -o-box-sizing: content-box;
   
 }   
.slideInLeft h2 {
    font-weight: normal;
    font-size: 28px;
    line-height: 35px;
}
.slideInLeft h5 {font-weight: normal; }
.animated {
  animation: slideLeft .5s ease;
    -webkit-animation: slideLeft .5s ease;
    -moz-animation: slideLeft .5s ease;
   -ms-animation: slideLeft .5s ease;

}
@keyframes slideLeft {
	0%{
		left:-50%;
	}
	100%{
		left:50%;
	}
}
@-webkit-keyframes slideLeft {
	0%{
		left:-50%;
	}
	100%{
		left:50%;
	}
}
