/* acacia-walk-score.css */
.walk-score-section .walkscore-container{
    flex-flow: wrap;
    justify-content: center;
}
.walk-score-section .nb-title-wrapper {
  text-align: center;
  margin-bottom: 33px;
  width: 100%;
}
.walk-score-section .nb-title-wrapper h2 {
  text-transform: uppercase;
  margin-right: auto;
  margin-left: auto;
}
.walk-score-text-wrapper .walk-score-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-flow: wrap;
}
.walk-score-section .nb-scores {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  /* background-color: #e0f0ed; */
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
}
.walk-score-section .score-number {
  font-weight: 600;
  font-size: 4.45rem;
  line-height: 1.2;
  text-align: center;
}
.walk-score-section .score-desc {
  font-weight: 600;
  font-size: 1.334rem;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}
.walkscore-bg{
  display: none;
}
@media screen and (max-width: 1024px) {
  .walk-score-section .nb-title-wrapper{
    margin-bottom: 20px;
  }
  .walk-score-section .score-number{
     font-size: 4rem;
  }
  .walk-score-section .score-desc{
    font-size: 1.12rem;
  }
  .walk-score-section .nb-scores{
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .walk-score-section .nb-title-wrapper{
    margin-bottom: 1px;
  }
  .walk-score-section .score-number{
     font-size: 2.333rem;
  }
  .walk-score-section .score-desc{
    font-size: .889rem;
  }
  .walk-score-section .nb-scores{
    width: 150px;
    height: 150px;
  }
}
