/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #hero {
    min-height: 100vh;
    padding: 11.875em 0 7.5em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  #hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 12, 20, 0.82) 0%, rgba(15, 12, 20, 0.58) 42%, rgba(15, 12, 20, 0.38) 100%);
    z-index: -1;
  }
  #hero .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  #hero .hero-content {
    width: 92%;
    max-width: 83.75em;
    margin: auto;
    position: relative;
    z-index: 10;
  }
  #hero .heroText {
    width: 100%;
    max-width: 38.75em;
  }
  #hero .topper {
    font-size: 0.8125em;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 1.38461538em;
    margin-bottom: 2.15384615em;
  }
  #hero .topper:before {
    content: '';
    width: 2.15384615em;
    height: 1px;
    background: var(--primary);
    display: block;
  }
  #hero h1 {
    font-size: clamp(4rem, 11vw, 6.5rem);
    font-weight: 400;
    line-height: .95em;
    color: #fff;
    margin-bottom: 0.28846154em;
    letter-spacing: -0.035em;
  }
  #hero p {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.45em;
    color: #fff;
    max-width: 23.2em;
    font-style: italic;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #hero {
    padding: 13.125em 0 8.125em;
  }
  #hero .hero-content {
    width: 90%;
  }
}
/* Small Desktop */
@media only screen and (min-width: 1300px) {
  #hero {
    min-height: 100vh;
    padding: 14.375em 0 7.5em;
  }
  #hero .hero-content {
    max-width: 85em;
  }
}
