.block-subheader {
  width: 100%;
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding-top: 200px;
  padding-bottom: 100px;
  max-width: 100%;
}
.block-subheader .container {
  position: relative;
  z-index: 10;
}
.block-subheader .container h1 {
  font-size: 5rem;
  color: white;
  margin: 0;
}
@media (max-width: 1024px) {
  .block-subheader .container h1 {
    font-size: 4rem;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .block-subheader .container h1 {
    text-align: center;
    font-size: 3rem;
  }
}
.block-subheader .container .post-title {
  font-size: 3rem;
  color: white;
  max-width: 800px;
  margin: 0;
}
@media (max-width: 1024px) {
  .block-subheader .container .post-title {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .block-subheader .container .post-title {
    text-align: center;
  }
}
.block-subheader .container .post-date {
  font-size: 1.5rem;
  color: #00AFF0;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 1024px) and (max-width: 768px) {
  .block-subheader .container .post-date {
    text-align: center;
  }
}
.block-subheader .container .back-to-shop {
  font-size: 2rem;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #00AFF0;
}
@media (max-width: 1024px) {
  .block-subheader .container .back-to-shop {
    font-size: 1.5rem;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .block-subheader .container .back-to-shop {
    text-align: center;
    margin-inline: auto;
    display: block;
  }
}
.block-subheader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 35, 60, 0.1)), to(#08233C)), -webkit-gradient(linear, left top, right top, from(rgba(8, 35, 60, 0.1)), to(rgba(8, 35, 60, 0.1)));
  background: linear-gradient(-90deg, rgba(8, 35, 60, 0.1) 0%, #08233C 100%), linear-gradient(to right, rgba(8, 35, 60, 0.1) 0%, rgba(8, 35, 60, 0.1) 100%);
  z-index: 1;
}
.block-subheader .background__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block-subheader .background__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}