/* HERO  */

#hero {
  height: calc(100vh - 100px);
  background-color: rgb(150, 150, 150);
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  position: relative;
}

#hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(transparent 35%, var(--color_black_800) 80%);
  z-index: -1;
}

#hero video,
#hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

#hero.hero-has-image img {
  filter: brightness(0.5);
}

.hero-top-bar {
  background-color: var(--color_white);
  color: var(--color_black);
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 6rem;
  justify-content: end;
  height: 100%;
}

#hero .ast-container,
#hero .ast-full-width {
  height: 100%;
}

.hero-cta-wrapper {
  display: flex;
  gap: 12px;
}

.hero-content h1 {
  text-align: center;
  color: var(--color_white);
  font-size: 40px;
  font-weight: 500;
  line-height: 70px;
}

.hero-content h1>span {
  font-size: 77px;
  font-weight: 600;
}

.hero-content p {
  color: var(--color_white_opacity_80);
  max-width: 344px;
  margin: 0 auto 3rem;
  text-align: center;
}

.hero-content p>span {
  color: var(--color_white);
}

.deadline-text {
  display: flex;
  color: blue;
  margin-top: -35px;
  margin-bottom: 25px;
  gap: 10px;
  align-items: center;
  line-height: 1.2;
}

.backed-by {
  margin-top: 1.5em;
}

.backed-by .section-primary-title {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  margin-bottom: 5px !important;
  margin-top: 10px;
}

.backed-by .company-logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 450px;
}

.backed-by .company-logos img {
  width: calc(33.33% - 10px);
  margin: 0;
  border-radius: 0;
}


@media screen and (max-width: 575px) {
  .backed-by {
    padding-right: 70px;
  }

  .hero-content h1 {
    font-size: 20px;
    text-align: start;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-content h1>span {
    font-size: 25px;
  }

  .hero-content p {
    margin: 0 auto 1.5rem 0;
    line-height: 1.4;
  }

  .hero-cta-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .hero-cta-wrapper>a {
    flex: 1;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* / HERO  */