@font-face {
  font-family: "BlocklynGrunge";
  src: url("./fonts/BlocklynGrunge.eot");
  src: url("./fonts/BlocklynGrunge.eot?#iefix") format("embedded-opentype"), url("./fonts/BlocklynGrunge.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BlocklynGrunge";
  src: url("./fonts/BlocklynGrunge-Italic.eot");
  src: url("./fonts/BlocklynGrunge-Italic.eot?#iefix") format("embedded-opentype"), url("./fonts/BlocklynGrunge-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/* Checkout */
body {
  background-color: white;
}

.b07 {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  flex-flow: row wrap;
  padding-top: 100px;
  padding-bottom: 3rem;
}
.b07__head {
  flex-basis: 100%;
  flex-grow: 1;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 70px 20px 50px 20px;
  position: relative;
}
.b07__head h2 {
  font-family: "Anton", "Inter", "Roboto", Arial, sans-serif;
  font-style: italic;
  color: #87c540;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  flex-grow: 1;
}
.b07__head:after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  height: 45px;
  background: url(../img/grunge-top.png) repeat-x top;
  background-size: contain;
  z-index: 2;
}
.b07__blocks {
  flex-basis: 100%;
  flex-grow: 1;
  background: #ddd;
  display: flex;
  flex-flow: row wrap;
}
.b07__block-heading {
  font-size: 28px;
  text-transform: uppercase;
  z-index: 2;
  font-weight: bold;
}
.b07__block-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url(../img/b07.png) no-repeat center;
  background-size: cover;
  transition: transform 0.5s, opacity 0.5s;
  opacity: 0.7;
}
.b07__block {
  flex-basis: 33.333%;
  flex-grow: 1;
  background: #000;
  height: 500px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
  padding: 25px;
  transform: translate3d(0, 0, 0);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: text-shadow 0.5s;
}
@media (max-width: 768px) {
  .b07__block {
    flex-basis: 100%;
  }
}
.b07__block--active, .b07__block:hover {
  text-shadow: 0 0 15px rgb(0, 0, 0);
}
.b07__block--active .b07__block-img, .b07__block:hover .b07__block-img {
  transform: scale(1.01);
  opacity: 1;
}
