

.counter-up{
  padding: 0 50px;
  position: relative;
  display: flex;
  align-items: center;
}
.counter-up::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #262431;
}
.counter-up .content{
  z-index: 1;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding-bottom: 70px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 759px) and (max-width: 4000px){
.counter-up .content .box{
  border: 1px dashed rgba(255,255,255,0.6);
  width: 20%;
  height: 100px;
  margin-top: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 20px;
}

.content .box .counter{
  font-size: 30px;
  font-weight: 500;
  color: #f2f2f2;
  font-family: sans-serif;
}
.content .box .text{
  font-weight: 400;
  color: #ccc;
  text-align: center;
}
}

@media screen and (min-width: 300px) and (max-width: 760px) {	
.counter-up .content .box{
  border: 1px dashed rgba(255,255,255,0.6);
  width: 40%;
  height: 200px;
  margin-top: 50px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  padding: 20px;
}

.content .box .counter{
  font-size: 40px;
  font-weight: 500;
  color: #f2f2f2;
  font-family: sans-serif;
}
.content .box .text{
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
}
}