
/*====================
30. Counter css 
======================*/

.counter-area {
  position: relative;
  z-index: 2;
}

.counter-wrapper{
  background-image: url(../img/shape/shape-3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: -150px;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
}

.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: var(--color-white);
  border: 5px solid var(--color-white);
  background:  var(--theme-color);
  z-index: 1;
}

.counter-box .icon img{
  width: 70px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}
