.eco-counter-container {
    background-image: url(../img/background-golden-dragon-desktop.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 1.5rem;
    margin: 1rem;
    overflow: hidden;
}
.eco-counter-logo-container, .eco-counter-text-container{
    display: flex;
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
    align-items: center;
}
.eco-counter-logo-container{
      background-size: cover;
    background-image: url(../img/background-golden-dragon-fire.webp);
}
.eco-counter-display {
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: #FFF;
    padding: 3rem;
    flex-wrap: wrap;
}
.eco-counter-unit {
  position: relative;
  width:6rem;
  height:6rem;
  border-radius:.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #FE4C25, #ff7f14, #ff8f14);
  box-shadow: 1px 7px 8px rgba(0, 0, 0, 1.7);
  font-weight:bolder;
  font-size:.8rem;
}

.eco-counter-unit::before,
.eco-counter-unit::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 8px;
  height: 20px;
  border-radius: 4px;
  background-color: #1e2a4a;
}

.eco-counter-unit::before {
  left: 10px;
}

.eco-counter-unit::after {
  right: 10px;
}

.eco-counter-value {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size:2rem;
}

.eco-counter-label {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  top:20%;
}

@media (max-width: 1140px) {
  .eco-counter-display {
    gap: 1rem;
    padding: 0.5rem;
  }
  .eco-counter-container img{
  width:70%;
  }
}
@media (max-width: 767px) {
}