/* business opportunities page template */

#statistics .button {
  font-size: 20px;
  display: block;
  max-width: 30%;
  margin: 30px auto 0;
}
#stats-banner {
  background: var(--lightgrey);
  padding: 40px 30px;
}
  #stats-banner .stats-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 30px;
  }

  #stats-banner .stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-width: 180px;
  }
  #stats-banner .stat i {
    display: inline-block;
    width: 100px;
    height: 100px;
    font-size: 44px;
    color: var(--darkblue);
    line-height: 100px;
    border: 3px solid var(--darkblue);
    border-radius: 50%;
    margin: 0 0 10px;
  }
  #stats-banner .stat span {
    display: block;
    line-height: 1.3;
  }
  #stats-banner .title {
    font-size: 16px;
    font-weight: 600;
  }
@media screen and (max-width: 1024px) {
	#stats-banner {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
    justify-content: center;
  }
  #stats-banner .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #stats-banner h3 {
    flex-basis: 100%;
  }
  #stats-banner .stat {
    margin: 20px 30px;
  }
}
@media screen and (max-width: 580px) {
	
}