.stores-list {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

.city-title {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  background: #fff;
  display: inline-block;
  width: 100%;
  margin: 0;
}

.city-title:before {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  right: 0;
  height: 3px;
  background: #444;
  z-index: 1;
}

.city-title span {
  background: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  font-family: "Roboto Slab", Sans-serif;
}

.stores-container {
  padding: 0 20px;
}

.store-item {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.store-left {
  flex: 1;
  text-align: center;
  padding-right: 20px;
}

.store-left h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #454545;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 16px;
}

.store-left .store-image {
  margin-top: 20px;
}

.store-left img {
  max-height: 110px;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
}

.store-right {
  flex: 1;
  padding-top: 5px;
}

.list-custom__content {
  font-size: 15px;
  line-height: 1;
  white-space: pre-line;
  font-family: Roboto, Sans-serif;
  font-weight: 400;
}

.list-custom__content p {
  margin: 3px 0;
  color: #333;
}

.list-custom__content strong {
  font-weight: bold;
  color: #000;
}

.list-custom__content a {
  color: #d3a3da;
  text-decoration: none;
}

.list-custom__content a:hover {
  text-decoration: underline;
}

.store-separator {
  text-align: center;
  margin: 30px 0;
  font-size: 24px;
  color: #666;
  line-height: 1;
}

.store-separator:before {

  content: '';
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.store-separator:after {
  content: '';
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
}



@media (max-width: 768px) {
  .store-item {
    flex-direction: column;
  }

  .store-left {
    flex: 0 0 100%;
    width: 100%;
  }

  .store-right {
    flex: 0 0 100%;
    width: 100%;
  }



}