/* Primary Colours */
/* Secondary Colours */
/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
/* vanilla code */
/* Button font */
.stats-block {
  width: 100%;
  background: #fff;
  color: #182641;
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .stats-block {
    padding: 50px 0;
  }
}
.stats-block-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .stats-block-wrapper {
    gap: 50px;
  }
}
.stats-block__text-block {
  width: 100%;
  font-size: 1.5rem;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
}
@media (min-width: 1024px) {
  .stats-block__text-block {
    max-width: 50%;
    font-size: 1.625rem;
    line-height: 36px;
    font-weight: 400;
    letter-spacing: normal;
    margin-left: auto;
    margin-right: auto;
  }
}
.stats-block__stats {
  display: flex;
  gap: 20px 20px;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .stats-block__stats {
    flex-wrap: nowrap;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.stats-block__stat {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.875rem;
  line-height: 15px;
  font-weight: 400;
  letter-spacing: normal;
  max-width: 200px;
  background: #484dff;
  border-radius: 100%;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  max-width: 150px;
  width: 150px;
  min-height: 150px;
  max-height: 150px;
  height: 150px;
}
@media (min-width: 1024px) {
  .stats-block__stat {
    font-size: 1.125rem;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: normal;
    padding: 30px;
    margin: 0;
    min-width: 225px;
    max-width: 225px;
    width: 225px;
    min-height: 225px;
    max-height: 225px;
    height: 225px;
  }
}
.stats-block__stat:nth-of-type(3n) {
  background-color: #64e4b3;
}
.stats-block__stat:nth-of-type(3n -1) {
  background-color: #c2d6ff;
}
.stats-block__stat span:first-of-type {
  font-size: 2.625rem;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: normal;
}
@media (min-width: 1024px) {
  .stats-block__stat span:first-of-type {
    font-size: 4rem;
    line-height: 70px;
    font-weight: 400;
    letter-spacing: normal;
  }
}