/* Collective walk score css */
.walk-score-section .walkscore-container{
    padding-top: 48px;
    padding-bottom: 48px;
  flex-flow: wrap;
    justify-content: center;
}
.walkscore-bg{
  display: none;
}
.walk-score-section .nb-title-wrapper {
  text-align: center;
  margin-bottom: 33px;
  width: 100%;
}
.walk-score-section .nb-title-wrapper h2 {
  text-transform: capitalize;
}
.walk-score-text-wrapper .walk-score-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-flow: wrap;
}
.walk-score-text-wrapper .score-inner{
    position: relative;
    margin-bottom: 48px;
    width: 100%;
    text-align: center;
    max-width: 264px;
}
.walk-score-text-wrapper .score-inner::after{
    content: "";
    position: absolute;
        bottom: -20px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid;
}
.bg-default .nb-title-wrapper .section-title {
    color: #494949;
}
.bg-default .nb-scores {
    color: #494949;
}
.walk-score-section .nb-scores {
  width: 360px;
  height: 226px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.walk-score-section .score-number {
  font-weight: 400;
  font-size: 4.45rem;
  line-height: 1;
  text-align: center;
}
.walk-score-section .score-desc {
  font-weight: 500;
  font-size: 1.334rem;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.2;
}

@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: 150px;
  }
}
@media screen and (max-width: 767px) {
  .walk-score-section .nb-title-wrapper{
    margin-bottom: 0px;
  }
  .walk-score-section .score-number{
     font-size: 2.667rem;
  }
  .walk-score-section .score-desc{
    font-size: 1rem;
  }
  .walk-score-section .nb-scores{
    width: 149px;
    height: 159px;
  }
}