.stores_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.stores_container > h2 {
  padding-top: 60px;
  padding-bottom: 40px;
  margin: 0;
}

.stores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}

.store {
  width: 90px;
}

@media screen and (max-width: 1422px) {
  .stores_container > h2 {
    font-size: 22px;
  }
}

@media screen and (max-width:1389px) {
  .stores {
    gap: 100px;
  }
}

@media screen and (max-width:1293px) {
  .stores_container > h2 {
    font-size: 20px;
  }
}

@media screen and (max-width:1277px) {
  .store {
    width: 80px;
  }

  .stores {
    gap: 90px;
  }
}

@media screen and (max-width:1179px) {
  .stores {
    gap: 80px;
  }
}

@media screen and (max-width:1124px) {
.store {
    width: 70px;
  }

  .stores {
    gap: 70px;
  }
}

@media screen and (max-width: 1065px) {
  .stores_container > h2 {
    font-size: 18px;
  }
}

@media screen and (max-width:895px) {
  .stores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width:424px) {
  .stores {
    gap: 40px;
  }
}

@media screen and (max-width: 367px) {
  .stores_container > h2 {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
}