html {
  font-size: 62.5%;
}
.business-block {
  margin: 10rem auto;
}
.bb-container {
  background-color: #fff;
  max-width: 138.4rem;
  margin: 0rem auto;
  padding: 0rem;
}
.bb-list {
  display: flex;
  justify-content: space-between;
}
.bb-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 15%;
  background-color: var(--soft-grey);
  border-radius: 16px;
  min-height: 110px;
}
.bb-header {
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: bold;
  font-size: 45px;
  line-height: 56px;
  color: #F63D7E;
  margin-bottom: 4.9rem;
  letter-spacing: 0px;
  word-spacing: 0.6px;
}
.bb-header--small {
  color: #333333;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
}
@media (max-width: 1450px) {
  .bb-container {
    max-width: 1192px;
  }
}

@media (max-width: 1280px) {
  .bb-container {
    margin: 0rem auto;
    padding: 0 4.4rem;
  }
  .bb-header {
    font-size: 36px;
    line-height: 19px;
    max-width: 350px;
    margin-bottom: 3.2rem;
  }
  .bb-header--small {
    font-size: 20px;
    line-height: 20px;
  }
  .bb-list {
    flex-wrap: wrap;
    padding-top: 19px;
  }
  .bb-item {
    flex-basis: 32%;
    margin-bottom: 31px;
    min-height: 119px;
  }
}
@media (max-width: 1000px) {
  .bb-container {
    max-width: 100%;
    padding: 6.5rem 4.4rem 3.4rem;
  }
}
@media (max-width: 800px) {
  .business-block {
    margin: 5rem auto;
  }
  .bb-header {
    text-align: center;
    margin: 0 auto;
    line-height: 49px;
  }
}



@media (max-width: 640px) {
  .bb-container {
    max-width: 360px;
    padding: 0rem 2rem 0rem;
  }
  .bb-item {
    flex-basis: 48%;
    min-height: fit-content;
    margin-bottom: 17px;
    height: 82px;
  }
  .bb-item__img {
    width: 73%;
  }
  .bb-header {
    line-height: 43px;
  }
}

