section.page-hero {
  margin-top: 60px;
}
section.page-hero .page-hero-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.page-hero .page-hero-title h1 {
  font-size: 20px;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
section.page-hero .page-hero-description {
  max-width: 767px;
  margin: auto;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  color: #515C60;
  margin-bottom: 40px;
}

section.stockist-section {
  margin-bottom: 60px;
  margin-top: 50px;
}
section.stockist-section .stockist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
section.stockist-section .stockist-grid .stockist-item {
  background: #F9F5EF;
  padding: 16px;
  border-radius: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}
section.stockist-section .stockist-grid .stockist-item a {
  color: #B72928;
}
section.stockist-section .stockist-grid .stockist-item-name {
  margin-top: 0;
  font-family: Open Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  color: #515C60;
}
section.stockist-section .stockist-grid .stockist-item-address {
  text-align: center;
  font-size: 13px;
}
section.stockist-section .stockist-grid .stockist-item-details {
  display: flex;
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
section.stockist-section .stockist-grid .stockist-item-details svg {
  width: 30px;
  height: 30px;
}
section.stockist-section .stockist-grid .stockist-item-footer {
  display: flex;
  margin-top: auto;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
section.stockist-section .stockist-grid .stockist-item-footer a svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 992px) {
  section.stockist-section .stockist-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  section.stockist-section .stockist-grid {
    grid-template-columns: 1fr;
  }
  section.stockist-section .stockist-grid .stockist-item-footer {
    flex-direction: column;
    align-items: center;
  }
}