/* Hero Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2149 {
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: clamp(18.75rem, 54vw, 25rem) 1rem clamp(3.75rem, 7.5vw, 6.25rem) 1rem;
  }
  #hero-2149 .cs-container {
    width: 100%;
    margin: auto;
    display: flex;
    max-width: 80rem;
    align-items: center;
    justify-content: center;
  }
  #hero-2149 .cs-content {
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
  }
  #hero-2149 .cs-topper-hero {
    z-index: 1;
    display: block;
    color: #F2F2F2;
    font-weight: 700;
    line-height: 1.2em;
    position: relative;
    white-space: nowrap;
    text-align: inherit;
    letter-spacing: 0.1em;
    max-width: fit-content;
    margin-bottom: 0.25rem;
    padding: 0.25rem 0.75rem;
    text-transform: uppercase;
    font-family: var(--subFont);
    font-size: clamp(0.6525rem, 1.5vw, 1rem);
  }
  #hero-2149 .cs-topper-hero:before {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    z-index: -1;
    height: 100%;
    opacity: 0.98;
    display: block;
    position: absolute;
    border-radius: 0.25rem;
    background: var(--primary);
  }
  #hero-2149 .cs-title {
    max-width: 30ch;
    font-size: clamp(1.892rem, 5vw, 3.8125rem);
    font-size: clamp(2.4375rem, 5vw, 3.8125rem);
  }
  #hero-2149 .cs-title,
  #hero-2149 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #hero-2149 .cs-text {
    opacity: 0.8;
    max-width: 65ch;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
  #hero-2149 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-2149 .cs-background {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -2;
    height: 100%;
    display: block;
    position: absolute;
  }
  #hero-2149 .cs-background:before {
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
  #hero-2149 .cs-background img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-2149 .cs-topper-hero:before {
    transition: 0.4s;
    background: var(--secondary);
  }
}