.home-indicators-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.home-indicators-section-heading {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.home-indicators-section-title-wrapper {
  flex: 1 1 50%;
}

.home-indicators-section-title {
  max-width: 500px;
  font-family: Satoshi, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 112.5% */
  color: #F5F7FC;
}

.home-indicators-section-text {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  gap: 8px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: rgb(240 243 250 / 80%);
}

.home-indicators-section-text p,
.home-indicators-section-item-value p,
.home-indicators-section-item-text p {
  padding: 0;
  margin: 0;
}

.home-indicators-section-text strong {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  color: #F5F7FC;
}

.home-indicators-section-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: custom-counter;
}

.home-indicators-section-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.home-indicators-section-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 320px;
  padding: 32px;
  background: rgb(14 16 21 / 40%);
  backdrop-filter: blur(60px);
  border-radius: 12px;
}

.home-indicators-section-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 10px;
  background-color: rgb(240 243 250 / 8%);
  backdrop-filter: blur(60px);
  border-radius: 50%;
}

.home-indicators-section-item-icon img {

}

.home-indicators-section-item-value {
  font-family: Satoshi, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 114.286% */
  color: #F5F7FC;
  text-transform: capitalize;
}

.home-indicators-section-item-text {
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  color: rgb(240 243 250 / 80%);
}

@media screen and (min-width: 1560px) {
  .home-indicators-section {
    padding-top: 100px;
  }

  .home-indicators-section-title {
    max-width: initial;
  }

}

@media screen and (max-width: 1440px) {
  .home-indicators-section {
    padding-top: clamp(40px, 0px + 8.3333vw, 120px);
    padding-bottom: clamp(40px, 0px + 8.3333vw, 120px);
  }

  .home-indicators-section-title {
    font-size: clamp(40px, 28px + 2.5vw, 64px);
    line-height: 1.12;
  }

  .home-indicators-section-text strong {
    font-size: clamp(20px, 18px + 0.4167vw, 24px);
    line-height: 1.33;
  }

  .home-indicators-section-item-value {
    font-size: clamp(32px, 20px + 2.5vw, 56px);
    line-height: 1.14;
  }

  .home-indicators-section-item-text {
    font-size: clamp(20px, 18px + 0.4167vw, 24px);
    line-height: 1.33;
  }
}

@media screen and (max-width: 768px) {
  .home-indicators-section-heading {
    flex-direction: column;
    gap: 24px;
  }

  .home-indicators-section-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .home-indicators-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-indicators-section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .home-indicators-section-text strong {
    font-size: 20px;
    line-height: 28px;
  }

  .home-indicators-section-item-wrapper {
    padding: 24px;
  }

  .home-indicators-section-item-value {
    font-size: 36px;
    line-height: 44px;
  }

  .home-indicators-section-item-text {
    font-size: 20px;
    line-height: 28px;
  }
}
