/*===============
  Section: Hero  
  =============== */
.hero {
  min-height: 100vh;
  width: 100%;
  background: url("../img/hero/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 64px;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 0 16px;
  margin-bottom: 52px;
}

.hero-content h1 {
  font-size: 78px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-content p {
  margin-top: 0px;
  font-size: 20px;
  letter-spacing: 1px;
}

.hero-content h1 span,
.hero-content p span {
  display: inline;
}

/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-content h1 span,
  .hero-content p span {
    display: block;
  }

  .hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 16px;
    margin-bottom: 52px;
  }

  .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .hero-content p {
    margin-top: 0px;
    font-size: 16px;
    letter-spacing: 1px;
  }
}

/* Mobile: 1px - 767px */
@media (max-width: 767px) {
  .hero-content h1 span,
  .hero-content p span {
    display: block;
  }

  .hero {
    min-height: 50vh;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 12px;
  }
}