@media only screen and (max-width: 600px) {
  .headline .background .box {
    display: none;
  }
  .headline .background .image {
    width: 100% !important;
  }
  .headline .front {
    padding-top: 10vh !important;
  }
  .headline .front h1 {
    color: white;
    text-shadow: 0px 0px 5px #493105;
    font-size: 1.5rem;
  }
  .headline .front hr:first-of-type {
    width: 7rem !important;
  }
  .headline .front hr:last-of-type {
    width: 3rem !important;
  }

  .headline .filter {
    display: block !important;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(0, 0, 0, 0.678)
    );
    height: 50vh;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: -50vh;
  }
}

.headline {
  width: 100%;
  height: 50vh;
}

.headline .background {
  width: 100%;
  height: 50vh;
  background-color: #136066;
  display: flex;
}

.headline .background .box {
  width: 20%;
  height: 100%;
  background-color: #382924;
  margin-left: 10%;
}
.headline .background .image {
  width: 70%;
  height: 100%;
  background: url("../assets/cover.jpg");
  background-size: cover;
  background-position: center;
}

.headline .front {
  position: relative;
  height: 50vh;
  top: -50vh;
  z-index: 2;
  padding-left: 12%;
  padding-top: 13vh;
  color: white;
}

.headline .front h3 {
  width: 88%;
  text-transform: uppercase;
  font-weight: lighter;
  margin-bottom: 1rem;
}

.headline .front h1 {
  width: 88%;
  text-transform: uppercase;
  font-weight: bolder;
  font-family: "Roboto", sans-serif;
}
.headline .front hr:first-of-type {
  width: 20rem;
  border: none;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 0.4rem solid #e0be7e;
}
.headline .front hr:last-of-type {
  width: 16rem;
  border: none;
  margin-bottom: 1rem;
  border-bottom: 0.2rem solid #e89d10;
}
.headline .filter {
  display: none;
}
