#hero {
  min-height: 100vh;

  display: flex;

  align-items: flex-start;

  padding-top: 65px;

  background-image:
    linear-gradient(
        90deg,
        rgba(7, 19, 33, 0.88) 0%,
        rgba(7, 19, 33, 0.75) 35%,
        rgba(7, 19, 33, 0.45) 70%,
        rgba(7, 19, 33, 0.30) 100%
    ),
    url("../img/hero.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-container {
  width: min(92%, 1280px);

  margin: 0 auto;

  display: flex;

  align-items: flex-start;

  min-height: auto;

  padding: 0;
}

.hero-content {
  max-width: 700px;

  padding-top: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.hero-content h1 {
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 620px;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  gap: 18px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(7, 19, 33, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body {
  padding-top: 90px;
}

.nav-menu {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #2d8cff;
}

.hero {
  min-height: calc(100vh - 95px);
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-size: 78px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-content p {
  font-size: 24px;
  line-height: 1.8;
  color: #a8b3c2;
}

.hero-buttons {
  margin-top: 10px;
}
