/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1426 {
    /* Centers button */
    text-align: center;
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 25.95vw, 16em) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1426 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1426 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    opacity: 0.28;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #hero-1426 .cs-background:after {
  /* Gradient Overlay */
  content: "";
  width: 100%;
  height: 100%;
background: linear-gradient(
  to right,
  rgba(10, 10, 10, 0.70) 38%,
  rgba(10, 10, 10, 0.60) 50%,
  rgba(10, 10, 10, 0) 100%
);
  position: absolute;
  display: block;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  }

   #hero-1426 .cs-mobile-image {
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
   }
   #hero-1426 .cs-desktop-video {
        display: none;
    }
  #hero-1426 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #hero-1426 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  #hero-1426 .logo {
max-width: 100%;
  }
  #hero-1426 .cs-content {
    width: 100%;
    max-width: 734px;
  }
  #hero-1426 .cs-topper {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    line-height: 1.2em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--secondary);
    display: inline-block;
    position: relative;
  }
  #hero-1426 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 64px);
    max-width: 780px;
    margin: auto;
    margin-bottom: 24px;
  }
  #hero-1426 .highlight {
    color: var(--primary);
  }
  #hero-1426 .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: center;
    width: 100%;
    margin: 0 auto 0;
    margin-bottom: 48px;
    max-width: 518px;
    color: #fff;
  }
  #hero-1426 .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:24px;
  }
}
                                
@media only screen and (min-width: 1024px) {
  #hero-1426 .cs-mobile-image{
    display: none;
  }
  #hero-1426 .cs-container{
    flex-direction: row;
    flex-wrap: nowrap;
    text-align: left;
  }
  #hero-1426 .cs-title{
    margin-left: 0;
  }
  #hero-1426 .cs-text{
    margin: 0 auto 48px 0;
    text-align: left;
  }
  #hero-1426 .cs-button-group{
    justify-content: flex-start;
  }
  #hero-1426 .cs-desktop-video{
    display: block;
  }
}