
/** history-section **/

.history-section{
  position: relative;
  background: linear-gradient(rgba(80, 174, 177, 0.12), rgba(80, 174, 177, 0.05));
}

.history-section .content-box{
  position: relative;
  display: block;
  margin-right: -30px;
}

.history-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 5px;
  padding: 35px;
  margin-bottom: 30px;
}

.history-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #142458;
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  border-radius: 5px;
  transition: all 500ms ease;
}

.history-block-one .inner-box:hover:before{
  height: 100%;
}

.history-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 14px;
}

.history-block-one .inner-box h5{
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  transition: all 500ms ease;
}

.history-block-one .inner-box:hover h5,
.history-block-one .inner-box:hover p{
  color: #fff;
}

.history-block-one .inner-box p{
  position: relative;
  display: block;
  transition: all 500ms ease;
}

.history-section .image-box{
  position: relative;
  display: block;
  margin-left: 80px;
}

.history-section .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.history-section .image-box .image img{
  width: 100%;
  border-radius: 5px;
}

.history-section .image-box .image:before{
  position: absolute;
  top: 0;
  left: -85%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.history-section .image-box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}



/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .history-section .image-box{
    margin-left: 0px;
  }

  .history-section .content-box{
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px){
  .history-section{
    padding: 65px 0px 70px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){
  
}









































