.container {
  display: flex;
  flex-direction: column;
  align-items: stretch;

  margin: 0 auto;
  width: 100%;
  max-width: 1200px;

  position: relative;
}

.whereToBuyContainer {
  width: 100%;
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: #ffffff;
}

.sloganContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px 0;

  background-color: #35473b;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

.sloganContainer h3 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  text-align: center;

  color: #e6c38a;
}

@media screen and (min-width: 768px) {
  .sloganContainer h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .sloganContainer h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

.locationsContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 30px;

  padding: 30px 15px;

  background-color: #fbf6ed;
}

@media screen and (min-width: 768px) {
  .locationsContainer {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .locationsContainer {
    margin-top: 60px;
  }
}

.mapContainer img {
  width: 100%;
  height: auto;

  max-width: 320px;
}

@media screen and (min-width: 1024px) {
  .mapContainer img {
    max-width: 350px;
  }
}

@media screen and (min-width: 1200px) {
  .mapContainer img {
    max-width: 380px;
  }
}

.informationContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 20px;

  font-family: "Roboto", sans-serif;
  color: #35473b;
}

@media screen and (min-width: 768px) {
  .informationContainer {
    width: auto;
  }
}

.individualInformation {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 480px) {
  .individualInformation {
    align-items: center;
    max-width: 350px;
  }
}

@media screen and (min-width: 768px) {
  .individualInformation {
    align-items: flex-start;
    max-width: 320px;
  }
}

.individualInformation:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
  .individualInformation:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .individualInformation:not(:last-child) {
    margin-bottom: 30px;
  }
}

.individualInformation h6 {
  font-weight: 900;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.9px;
}

@media screen and (min-width: 1024px) {
  .individualInformation h6 {
    font-size: 18px;
    line-height: 35px;
  }
}

.individualInformation p {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;

  margin-bottom: 5px;
}

.individualInformation p strong {
  font-weight: 800;
}

@media screen and (min-width: 480px) {
  .individualInformation p {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .individualInformation p {
    text-align: start;
  }
}

@media screen and (min-width: 1024px) {
  .individualInformation p {
    font-size: 17px;
    line-height: 22px;
  }
}

.individualInformation .cellphoneContainer {
  display: flex;
  align-items: flex-start;
}

.cellphoneContainer .cellphoneNumbersContainer {
  margin-left: 5px;
}

.cellphoneContainer .cellphoneNumbersContainer .cellphoneNumberItem {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cellphoneContainer .cellphoneNumbersContainer .cellphoneNumberItem p {
  margin-bottom: 0;
}

.cellphoneContainer .cellphoneNumbersContainer .cellphoneNumberItem:first-child {
  margin-bottom: 5px;
}

.cellphoneContainer .cellphoneNumbersContainer .cellphoneNumberItem .whatsIcon {
  margin-left: 5px;
  display: inherit;
}

.cellphoneContainer .cellphoneNumbersContainer .cellphoneNumberItem img {
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 768px) {
  .cellphoneContainer .cellphoneNumbersContainer .cellphoneNumberItem img {
    width: 23px;
    height: 23px;
  }
}

.alertContainer {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 30px 0;

  padding: 30px 0;

  background-color: #f0dbb9;
}

@media screen and (min-width: 1024px) {
  .alertContainer {
    margin: 35px 0;
    padding: 40px 0;
  }
}

.alertContainer h4 {
  font-family: "Tiro Devanagari Hindi", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;

  max-width: 400px;

  color: #35473b;
}

@media screen and (min-width: 768px) {
  .alertContainer h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
