
  html, body {
 
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

.slider {
  margin: 0 auto;
width: 100%;

}
.slide_div_img{width:28%;float:left;height:150px;;padding:0px 50px;background-color:#fefefe;}
.slide_div_img img{width:100%;height:100%;padding:20px;margin-top:10px;}
.slide_div_text{float:left;width:62%;padding:0px 60px;height:200px;text-align:justify;background-color:#fefefe;font-size:15px;font-family:proxima nova;line-height:22px;margin-bottom:10px;margin-top:20px;}   /*By Keval....margin-top and margin-bottom wa not there*/

.border{border-left:1px solid darkred; height:250px; float:left; margin-right:30px; margin-top:-30px; }  /*Added by keval...before only border-left:1px solid darkred; and height=150px was there*/
.slide_div_text h3{padding:5px 0;color:#333;}

.slide_viewer {  /*Height for slider*/

  /*height: 150px; */
  height:200px;
  overflow: hidden;
  position: relative;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;

}

.slide:first-child {
  display: block;
}



.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

a.slide_btn {
  color: #474544;
  font-size: 42px;
  margin: 0 0.175em;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slide_btn.active, .slide_btn:hover {
  color: #428CC6;
  cursor: pointer;
}

.directional_nav {
  height: 150px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
 /* top: -150px;*/
  top: -180px;
 
 
}
.directional_nav:hover .previous_btn .next_btn{display:block !important;}
.previous_btn {
  bottom: 0;
  left: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 10px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 20px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 20px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 10px;
  }
  .next_btn {
    right: 10px;
  }
}
@media only screen and (max-width: 499px) {
 .slide_div_text{display:none ;!important;}
 .slide_div_img{width:100%;padding:20px 0;}
}
@media only screen and (min-width: 500px) and (max-width: 900px){
 .slide_div_text{width:50%;padding:0 10px;font-size:12px;margin-top:-1px;}   /*By keval*//*Earlier it was padding:10px 10px;....Margin was not there*/
 .slide_div_img{width:50%;padding:20px 10px;}
}