@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800&family=Roboto&display=swap');

.bmi-banner {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #FFFFFF -10.65%, #C3EAF2 103.46%);
  position: relative;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 10px;
  padding: 30px 60px;
  color: #000;
}

.bmi-banner__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: #999;
  text-decoration: none;
}

.bmi-banner__close:hover {
  color: #929498;
}

.bmi-banner__header {
  margin-bottom: 10px;
}

.bmi-banner__header div {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 27px;
  color: #000;
  text-align: center;
}

.bmi-banner__header div .bb-highlight {
  color: #0C7872;
  font-weight: 700;
}

.bmi-banner__header .small {
  font-size: 0.9rem;
  color: #000;
  margin-left: 6px;
}

.bmi-banner__cards {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  gap: 25px;
  opacity: 0.85;
}

.bmi-banner__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px 25px 20px 20px;
}

.bmi-banner__card img {
  width: 100%;
  height: auto;
}

.bmi-banner__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bmi-banner__card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.bmi-banner__card-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.bmi-banner__card-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.bmi-banner__card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.bmi-banner__card-text {
  font-size: 15px;
  line-height: 22.5px;
  color: #000;
}

.bmi-banner__footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 25px;
}

.bmi-banner__footer-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
}

.bmi-banner__footer span {
  margin: 0;
  font-size: 15px;
  line-height: 22.5px;
}

.bmi-banner__footer a {
  color: #0C7872;
  text-decoration: none;
}

.bmi-banner__cta-button {
  background: #00a6b2;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 15px;
  cursor: pointer;
}

