/* SECTION: BANNER */
.banner {
  height: 36rem;
  z-index: 0;
}

.banner + section {
  z-index: 1;
}

.banner .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner .background-mobile {
  display: none;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 88, 39, 0) 15.37%, #035827 109.27%);
}

.banner .deco-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: 12rem;
  z-index: 2;
}

.banner .deco-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  z-index: 3;
  margin-bottom: -1px;
}

.banner .content-container {
  position: absolute;
  bottom: 4.5rem;
  left: 5rem;
  z-index: 4;
}

.banner .content-container .nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
}

.banner .content-container .nav-container > * + * {
  margin-left: 0.5rem;
}

.banner .content-container .nav-container a,
.banner .content-container .nav-container span {
  color: var(--white, #fff);
  font-family: Lexend;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.00219rem;
  text-transform: uppercase;
}

.banner .content-container .nav-container a:first-of-type {
  opacity: 0.7;
}

.banner .content-container h2 {
  max-width: 70rem;
  color: var(--text-text-grey-0, #fff);
  font-family: Lexend;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.09025rem;
  text-transform: uppercase;
}

.banner .heading-mobile,
.banner .deco-3-container {
  display: none;
}

@media (max-width: 767px) {
  .banner {
    height: 28.0625rem;
  }

  .banner .background {
    display: none;
  }

  .banner .background-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .banner .overlay {
    z-index: 3;
    background: linear-gradient(180deg, rgba(3, 88, 39, 0) 15.37%, #035827 109.27%);
  }

  .banner .deco-1 {
    height: 6rem;
    z-index: 2;
  }

  .banner .deco-2 {
    display: none;
  }
	
   .banner .deco-3-container {
	   display: block;
		position: absolute;
		bottom: 0;
		left: 0;
	   width: 100%;
	    height: 2.3125rem;
	   overflow: hidden;
    z-index: 3;
   }

  .banner .deco-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38.0625rem;
    height:100%;
    transform: translate(-8rem, 0);
  }

  .banner .content-container {
    width: 22rem;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 4rem;
  }

  .banner .content-container .nav-container {
    margin-bottom: 0.62rem;
  }

  .banner .content-container .nav-container > * + * {
    margin-left: 0.38rem;
  }

  .banner .content-container .nav-container a,
  .banner .content-container .nav-container span {
    color: var(--text-text-grey-0, #fff);
    font-family: Lexend;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.03125rem;
  }

  .banner .content-container h2 {
    color: var(--text-text-grey-0, #fff);
    font-family: Lexend;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.0625rem;
    text-transform: uppercase;
  }

  .banner .heading-desktop {
    display: none;
  }

  .banner .heading-mobile {
    display: block;
    color: var(--text-text-grey-0, #fff);
    font-family: Lexend;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.0625rem;
    text-transform: uppercase;
  }
}