.logo {
  width: 5rem;
}
#support {
  background: #f1f1f140;
}
.counter {
  padding: 30px 0px 0px;
  position: relative;
}

.counter .counter-value {
  color: #000;
  background: #ffecef;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  line-height: 130px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px 1px;
  transform: translateX(-50%);
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 1;
}

.counter .counter-content {
  color: rgb(119, 22, 86);
  background: rgb(255, 255, 255);
  text-align: center;
  width: 230px;
  height: 230px;
  padding: 155px 25px 25px;
  margin: 0px auto;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 2px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.counter .counter-content::before {
  content: "";
  background: #ffecef;
  width: 100%;
  height: 90%;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 0px;
  transform: translateX(-50%);
  position: absolute;
  top: -65px;
  left: 50%;
}

.counter h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 21px;
  margin: 0px;
}

.counter.orange .counter-content {
  color: rgb(232, 74, 22);
}

.counter.orange .counter-value {
  background: #fff6d3;
}

.counter.orange .counter-content::before {
  background: #fff6d3;
}

.counter.green .counter-content {
  color: rgb(64, 151, 95);
}

.counter.green .counter-value {
  background: #e4ffee;
}

.counter.green .counter-content::before {
  background: #e4ffee;
}

.counter.blue .counter-content {
  color: rgb(37, 0, 249);
}

.counter.blue .counter-value {
  background: #f4f4ff;
}

.counter.blue .counter-content::before {
  background: #f4f4ff;
}
.icon {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  margin-bottom: 1rem;
  border-radius: 50%;
  padding: 1rem;
}
.icon.pink {
  background-color: #ffecef;
}
.icon.green {
  background-color: #eaf9ff;
}
.icon.yellow {
  background-color: #fef5d2;
}
.icon.blue {
  background-color: #f4f4ff;
}
@media screen and (max-width: 990px) {
  .counter {
    margin-bottom: 40px;
  }
}
