* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 110vh;
}

a {
  text-decoration: none;
}

header {
  height: 300px;
  background: black url(../img/banner1.jpg) no-repeat left center/cover;
}

.nav-container {
  position: sticky;
  top: 0;
  background: #000000;
  border-bottom: 2px solid #bda628;
}
.nav-container .logo-img {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-container .logo-img img {
  height: 120px;
}
.nav-container nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: auto;
}
.nav-container nav img {
  height: 50px;
  margin-right: 5px;
}
.nav-container nav .logo {
  display: flex;
  align-items: center;
  color: #fff;
  margin-left: 10px;
  text-transform: uppercase;
  padding: 10px;
}
.nav-container nav ul {
  display: flex;
  list-style: none;
  margin-right: 10px;
}
.nav-container nav a {
  display: block;
  margin: 0 5px;
  color: #fff;
  padding: 6px 12px;
}
.nav-container nav a:hover {
  color: #bda628;
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .logo-img {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */