/*=================
  BANNER
=================*/

.banner .image {
  display: grid;
  align-content: center;
  min-height: 550px;
  position: relative;
}

.banner .image::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0px;
  left: 0px;
}
.banner p.font-copy {
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
}
.banner .detail {
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: 2;
}

.banner .container {
  padding: var(--space-7) var(--space-3) var(--space-8);
  position: relative;
  z-index: 3;
  text-align: center;
}
.banner .container h1 {
  max-width: 100%;
  text-wrap: balance;
  color: var(--color-n-white);
 
 
}

/*=================
  RESPONSIVE
=================*/

@media only screen and (max-width: 1200px) {
  .banner .container h1 {
    max-width: 800px;
  }
}

@media only screen and (max-width: 992px) {
  .banner .image {
    min-height: 450px;
  }
  .banner .detail {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .banner .container {
    padding: var(--space-6) var(--space-3);
  }
  .banner .container h1 {
    font-size: 6rem;
    padding-left: var(--space-2);
    border-left: 6px solid var(--color-p);
  }
}

@media only screen and (max-width: 578px) {
  .banner .image {
    min-height: 380px;
  }
}
