/* bespoke-hero component */
.bespoke-hero-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.bespoke-hero-background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.bespoke-hero-background:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  */
  backdrop-filter: blur(5px);
}
.bespoke-hero-background-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.bespoke-hero-background-image picture {
  width: 100%;
  height: 100%;
  display: block;
}
.bespoke-hero-background-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.bespoke-hero-content {
  padding: 50px 10px;
  text-align: center;
  position: relative;
  z-index: 5;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
.bespoke-hero-title {
  margin-bottom: 7px;
  font-size: 26px;
  line-height: 39px;
}
.bespoke-hero-text {
  font-size: 16px;
  line-height: 24px;
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 769px) {
  .bespoke-hero-content {
    padding-bottom: 60px;
  }
  .bespoke-hero-title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 44px;
  }
  .bespoke-hero-text {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (min-width: 1200px) {
  .bespoke-hero-content {
    padding-top: 82px;
    padding-bottom: 83px;
  }
  .bespoke-hero-title {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 59px;
  }
  .bespoke-hero-text {
    font-size: 24px;
    line-height: 36px;
  }
}