
/** funfact-section **/

.funfact-section{
  position: relative;
}

.funfact-block-one .inner-box{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E7E7;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 30px;
  min-height: 120px;
  text-align: center;
  background: #fff;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
}

.funfact-block-one .inner-box:hover{
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.15);
}

.funfact-block-one .inner-box .count-outer{
  position: relative;
  display: block;
  font-size: 42px;
  line-height: 48px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.funfact-block-one .inner-box p{
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
  margin: 0;
}

.funfact-section.alternat-2 .funfact-block-one .inner-box{
  background: #fff;
  border-color: #fff;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.06);
}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .funfact-section.pb_90{
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){

}











































