.hero-info {
  display: flex;
  width: 100%;
  min-height: 112px;
  padding: 16px 20px;
  background: #690b0c;
  align-items:center;
}

.hero-info__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.hero-info__label {
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  text-transform:uppercase;
}

.hero-info__value {
  font-size: 30px;
  line-height: 67.9px;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.hero-info__divider {
  width: 1px;
  height: 76px;
  margin: 0 30px;
  background: rgba(227, 227, 227, 0.45);
}

@media (max-width: 900px) {
  .hero-info {
    min-height:0;
    padding: 6px 0px;
  }

  .hero-info__content {
    flex-direction: column;
    gap: 0;
  }

  .hero-info__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .hero-info__item {
    justify-content: center;
    min-height:58px;
  }

  .hero-info__label {
    font-size: 13px;
    line-height: 18px;
  }

  .hero-info__value {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 420px) {
  .hero-info__item {
    flex-direction: column;
    gap: 0;
  }

  .hero-info__value {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Large viewport proportional scaling */
@media (min-width: 1765px){
  .hero-info{
  display: flex;
  width: 100%;
  min-height: 6.3492vw;
  padding: 0.907vw 1.1338vw;
  background: #690b0c;
  align-items:center;
}
  .hero-info__item{
  display: flex;
  align-items: center;
  gap: 0.7937vw;
  white-space: nowrap;
}
  .hero-info__label{
  font-size: 0.8503vw;
  line-height: 1.4172vw;
  color: #ffffff;
  text-transform:uppercase;
}
  .hero-info__value{
  font-size: 1.7007vw;
  line-height: 3.8492vw;
  letter-spacing: -0.017vw;
  color: #ffffff;
}
  .hero-info__divider{
  width: 0.0567vw;
  height: 4.3084vw;
  margin: 0 1.7007vw;
  background: rgba(227, 227, 227, 0.45);
}
}
/* End large viewport proportional scaling */
