.hello-section {
  width: 100%;
  height: 50vh;
  position: relative;
}

.hello-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hello-section__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hello-section__content-box {
  width: max-content;
  padding: 24px;
  background-color: rgba(255, 255, 242, 0.6);
}

.hello-section__title {
  font-size: 40px;
  font-weight: 600;
}

.hello-section__title-china {
  color: #ff0000;
}

.hello-section__title-central-asia {
  color: #0000ff;
}

.hello-section__statistics {
  width: 100%;
  margin-inline: auto;
  padding-block: 60px;
}

.hello-section__statistics-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hello-section__statistics-item {
  flex: 0 1 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  padding: 16px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 1px 2px 0.5px;
}

.hello-section__statistics-item-number {
  font-size: 40px;
  font-weight: 600;
}

.hello-section__statistics-item-text {
  font-weight: 600;
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .hello-section__content-box {
    margin-inline: auto;
  }

  .hello-section__title {
    font-size: 32px;
  }

  .hello-section__statistics {
    padding-inline: 16px;
  }

  .hello-section__statistics-item {
    flex: 0 1 calc(50% - 16px);
  }
}
