/* HEADER */
.header {
  background: #0b2c4d;
  padding: 16px 60px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  height: 48px;
}

/* HERO WITH IMAGE */
.hero {
  min-height: 85vh;
  background:
    linear-gradient(rgba(11,44,77,0.75), rgba(11,44,77,0.75)),
    url("../img/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}
