.counter-section{
  /*height: 100vh;*/
  width: 100%;
}

.counter-section .main-title{
  color: #ffffff;
  margin-bottom: 100px;
  text-align: center;
}

.counter-count{
  text-align: center;
}

.counter-count .count{
  background: rgba(255, 255, 255, 0.2);
  border: 5px solid var(--color2);
  border-radius: 100%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-size: 47px;
  font-weight: 700;
  justify-content: center;
  height: 180px;
  margin: 0 auto 20px;
  width: 180px;
}

.counter-count h3{
  font-size: 24px;
  color: var(--color2);
}

.row{
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.col-sm-3{
	margin: 55px;
}

@media (max-width: 1200px){
  .counter-count .count{
    height: 120px;
    font-size: 32px;
    width: 120px;
  }
  
  .row{
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
	flex-direction: column;
	}

	.col-sm-3 {
		margin: 25px;
	}

}