/* UVPDomain home page hero */

.hero {
  position: relative;
  min-height: 660px;

  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      90deg,
      rgba(7, 10, 13, 0.90) 0%,
      rgba(7, 10, 13, 0.70) 35%,
      rgba(7, 10, 13, 0.15) 70%,
      rgba(7, 10, 13, 0.05) 100%
    ),
    url("../images/uvpdomain-action-at-a-distance.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  border-bottom: 1px solid var(--line);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .lead {
  max-width: 580px;
}


/* Mobile */

@media (max-width: 768px) {

  .hero {
    min-height: 600px;

    background-position: 65% center;

    background-image:
      linear-gradient(
        90deg,
        rgba(7, 10, 13, 0.95) 0%,
        rgba(7, 10, 13, 0.82) 55%,
        rgba(7, 10, 13, 0.35) 100%
      ),
      url("../images/uvpdomain-action-at-a-distance.png");
  }

}
