#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/Hero.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: -25px;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  line-height: 56px;
}

#hero h1 span {
  border-bottom: 4px solid #485664;
  color: var(--color-primary);
}

#hero h2 {
  color: var(--color-secondary);
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  transition: ease-in-out 0.3s;
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.8);
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 992px) {
  #hero {
    height: calc(100vh - 70px);
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}