/* counter area css
============================================================================================ */
 .counter-area {
  text-align: center;
  background: #3ac551;
  padding: 150px 0;
}

.counter-area h1 {
  font-size: 35px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}
.counter-area h1 b{
  font-size: 55px;
  font-weight: 700;
}

.counter-wraper {
  text-align: center;
} 
.conuter-wraper p {
  color: #fff;
  margin-top: 30px;
  padding: 0 120px;
}

.incremental-counter .num {
  display: inline-block;
  font-size: 70px;
  color: #fff;
  height: 80px;
  width: 80px;
  border: 3px solid #fff;
  line-height: 80px;
  margin: 5px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
}

.incremental-counter .num::before {
  display: none;
}


/* counter responsive style
============================================================================================ */

@media (max-width: 991px) {
    .conuter-wraper p {
      padding: 0 80px;
    }
    .incremental-counter .num {
      font-size: 50px;
      height: 70px;
      width: 70px;
      line-height: 70px;
    }
  }
  
  @media (max-width: 767px) {
    .conuter-wraper p {
      padding: 0;
    }
    .incremental-counter .num {
      font-size: 50px;
      height: 70px;
      width: 70px;
      line-height: 70px;
    }
  }
  
  @media (max-width: 425px) {
    .counter-area h1 {
      font-size: 28px;
    }
    .counter-area h1 b {
      font-size: 40px;
    }
  }
  
  