/*!**********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./slicing/src/scss/wt-components/project-hero-banner.scss ***!
  \**********************************************************************************************************************************************************************************************************/
.project-hero-banner {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  right: 1.6rem;
  padding: 0.8rem 1.6rem 0.8rem 4rem;
  color: rgb(var(--white));
  background-color: rgba(var(--primary-color), 0.8);
  transition: background-color 0.3s ease-in;
}
@media only screen and (min-width: 768px) {
  .project-hero-banner {
    width: 80%;
    max-width: 40rem;
    left: 50%;
    top: 50%;
    padding: 3rem 3rem 3rem 9rem;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 992px) {
  .project-hero-banner {
    width: 100%;
    padding: 4rem 4rem 4rem 11rem;
  }
}
.project-hero-banner:hover {
  text-decoration: none;
  background-color: rgba(var(--primary-color), 1);
  transition: background-color 0.3s ease-in;
}
.project-hero-banner::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../../images/icon-bruggetje.svg);
  background-repeat: no-repeat;
  background-size: 3rem;
  background-position: center;
}
@media only screen and (min-width: 768px) {
  .project-hero-banner::before {
    width: 7rem;
    top: 1rem;
    background-size: 7rem;
    background-position: top center;
  }
}
.project-hero-banner h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgb(var(--white));
}
@media only screen and (min-width: 768px) {
  .project-hero-banner h3 {
    font-size: 3.7rem;
    line-height: 4rem;
  }
}
