.ss-areas-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Alphabet */
.ss-alpha-filter {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 50px;
  border: 1px solid #dfe5e8;
  margin: 0 auto 40px;
  max-width: 1024px;
}

.ss-letter {
  margin: 6px;
  font-weight: 500;
  cursor: pointer;
  color: #236495;
  transition: all 0.2s ease;
  font-size: 16px;
  height: 25px;
  width: 25px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 20px;
}

.ss-letter.active {
  background: #236495;
  color: #fff;
}
.ss-letter:first-child {
  width: auto;
  padding: 0 10px;
}
.ss-letter.disabled {
  color: #adadad;
  pointer-events: none;
}

/* Counties */
.ss-county-group {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.ss-county-name {
  color: #236495;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
}
.ss-county-title {
  background: #dce6ee;
  padding: 16px 20px 10px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.ss-toggle-icon {
  transform: rotate(180deg);
  transition: all 0.4s;
}
.ss-county-title.open .ss-toggle-icon {
  transform: rotate(0);
}
.ss-city-list {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border: 1px solid #dce6ee85;
  border-radius: 0 0 8px 8px;
  transition: all 0.3s ease;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}

.ss-city-item {
  width: 25%;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  display: inline-block;
}

.ss-city-item:hover {
  color: #236495;
}
.area-we-serve-block h2 {
  color: #000;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
}
.ss-city-list[style*="opacity: 0"] {
  padding: 0;
}
.area-we-serve-block {
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .ss-alpha-filter {
    max-width: 800px;
    justify-content: center;
    padding: 10px;
  }
  .area-we-serve-block h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .ss-city-item {
    width: 50%;
  }
  .area-we-serve-block h2 {
    font-size: 28px;
  }
  .area-we-serve-block {
    padding-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .ss-city-item {
    width: 100%;
  }
  .area-we-serve-block h2 {
    font-size: 26px;
  }
}
