   /* ===================slide ====================*/		
		.slider_container { height:auto; width:100%; background-color:#0336;overflow:hidden; animation-name: fade;animation-duration: 1.5s;}
		  .first-img{ height:320px;width:100%;}
		  .slide_show{ display:none;}
		  .slider-h{ padding:30px;font-weight:bold;}
		  .slider-p{ padding:10px;}
		    .slider-image{ padding:50px;}
		  .slider-image,.first-img{animation-name: fade;animation-duration: 1.5s;}
		  .text{
			  position:absolute;
			  bottom:0%;
			  height:100px;
			  background-color:#000;
			  width:400px;
			  opacity:0.5;
		  }
		  .prev, .next{
			   cursor:pointer;
			   position:absolute;
			   top:50%;
			   width:auto;
			   margin-top:-22px;
			   padding:16px;
			   color:#FFF;
			   font-weight:bold;
			   font-size:18px;
			   transition: 0.6s ease;
		  }
		  .next{ right:0; border-radius:3px 0 0 3px;}
		  .prev:hover, .next:hover{ background-color:#CCC;}
		  
		  @-webkit-keyframes fade {
            from {opacity: .4} 
            to {opacity: 1}
              }

          @keyframes fade {
          from {opacity: .4} 
          to {opacity: 1}
          }
		  
		  @media screen and ( max-width:500px ){
		     .text{ display:none;}
		  }