/*====================
Counter css 
======================*/

.counter-area {
  padding-bottom: 0px;
  position: relative;
  z-index: 2;
}

.counter-wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.counter-wrapper .col-lg-3{
  margin-bottom:20px
}
.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  line-height: 100px;
  color: #fff;
  border: 5px solid #fff;
  background: var(--color-primary);
  z-index: 1;
}

.counter-box .icon img {
  width: 70px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  font-family: var(--title-font-family);
}

.counter-box .title {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--title-font-family);
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
   .roww{
   width: 50% !important;
 }
}


@media screen and (max-width:480px){


 .counter-box .title{
   margin-top: 5px !important;
 }
}





@media screen and (max-width: 1650px) {
  .counter-box .counter {
    font-size: 46px;
  }
}
@media screen and (max-width: 1500px) {
  .counter-box .counter {
    font-size: 44px;
  }
}
@media screen and (max-width: 1441px) {
  .counter-box .counter {
    font-size: 42px;
  }
}
@media screen and (max-width: 1367px) {
  .counter-box .counter {
    font-size: 40px;
  }
}
@media screen and (max-width: 1281px) {
  .counter-box .counter {
    font-size: 38px;
  }
  .counter-box .title{font-size: 16px;}
}
@media screen and (max-width: 1171px) {
  .counter-box .counter {
    font-size: 36px;
  }
}
@media screen and (max-width: 992px) {
  .counter-box .counter {
    font-size: 34px;
  }
  .counter-box .icon {
    width: 100px;
    height: 100px;
    line-height: unset;
  }
  .counter-box .icon img {
    width: 40px;
  }
  .counter-area {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .counter-box .counter {
    font-size: 32px;
  }
  .counter-box .title{font-size: 14px;}
}
@media screen and (max-width: 600px) {
  .counter-box .counter {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .counter-box .counter {
    font-size: 24px;
  }
}
@media screen and (max-width: 430px) {
  .counter-box .counter {
    font-size: 22px;
  }
  .counter-box .title{font-size: 12px;}
}

