/* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      padding: 0;
      display: flex;
      align-items: center;
    }

    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.85)
      ); */
      z-index: -1;
    }

    .hero-content {
      margin-left: 100px;
      /* height: 80%; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 4vw;
      max-width: 380px;
      background-color: #fff;
      color: #000;
      opacity: .9;;
    }

    .hero-content-mobile {
      display: none;
    }

    @media screen and (max-width: 768px) {

      .hero {
        position: relative;
        width: 100%;
        height: 300px;
        overflow: hidden;
        padding: 0;
      }
      .hero video {
        position: relative;
        min-width: auto;
        width: 100%;
        height: 300px;
      }

      .hero-content {
        display: none;
      }
      .hero-content-mobile-section {
        display: block;
        padding: 0;
      }
      .hero-content-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 4vh;
        max-width: 850px;
        background-color: #fff;
        color: #000;
      }

    }
/* ===== END HERO SECTION ===== */