* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;

  /* prevents content hiding behind fixed navbar */
  padding-top: 70px;
}

/* TOP BANNER */
.top-banner {
  width: 100%;
  background: #000;
}

.top-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: #111;
  padding: 0 30px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 9999;

  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* LEFT SIDE LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ff7b00;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff7b00;
  transition: 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {

  body {
    padding-top: 62px;
  }

  .navbar {
    padding: 0 18px;
    height: 62px;
  }

  .nav-links {
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 14px;
  }

}
