/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero {
    /* Centers button */
    text-align: center;
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 25.95vw, 22.75em) 1rem clamp(17.5rem, 25.95vw, 26.75em) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* changes at tablet */
    gap: 3rem;
  }
  #hero .cs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #hero .cs-topper {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
    display: inline-block;
    position: relative;
  }
  #hero .cs-topper:before {
    /* left yellow line */
    content: "";
    /* 70px - 100px */
    width: clamp(4.375rem, 5vw, 6.25rem);
    height: 2px;
    margin-right: 1.75rem;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
  }
  #hero .cs-topper:after {
    /* right yellow line */
    content: "";
    /* 70px - 100px */
    width: clamp(4.375rem, 5vw, 6.25rem);
    height: 2px;
    margin-left: 1.75rem;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
  }
  #hero .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 5.4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    max-width: 59.375rem;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 4vw, 1.5rem) 0;
    color: #fff;
    position: relative;
    width: 15ch;
  }
  #hero .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 auto 0;
    margin-bottom: 2.25rem;
    color: #fff;
  }
  #hero .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.41;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #hero .cs-trees {
    position: absolute;
    bottom: -4px;
    width: 100%;
    height: auto;
    left: 0;
    display: flex;
    align-items: flex-end;
  }
  #hero .cs-trees img {
    width: 100%;
    height: auto;
  }
  #hero .dark {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero {
    padding: clamp(2.5rem, 25.95vw, 12.75em) 1rem 25vw 1rem;
  }
}
/* Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
  #hero .cs-background {
    background: url("/assets/images/hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero .cs-background img {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero .cs-background:before {
    opacity: 0.5;
  }
  body.dark-mode #hero .cs-background {
    background: url("/assets/images/hero-bg.webp");
  }
  body.dark-mode #hero .light {
    display: none;
  }
  body.dark-mode #hero .dark {
    display: flex;
    -webkit-filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.5));
    filter: drop-shadow(0px 0px 0px rgba(255, 255, 255, 0.5));
  }
}

/*# sourceMappingURL=critical.css.map */
