@media only screen and (max-width: 768px) {
  header {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  .nav__links li {
    padding: 0px 10px !important;
  }
  header {
    padding: 15px 2% !important;
  }
}

header li,
header a,
header button {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #edf0f1;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background-color: #24242a;
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: 0.4s;
  font-size: 14px;
}

.logo {
  max-width: 30px;
  cursor: pointer;
}

.nav__links {
  list-style: none;
  margin: 0px;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
  color: #007bff;
  text-decoration: none;
}

button {
  padding: 9px 25px;
  background-color: #0069d9;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

button:hover {
  background-color: #0056b3;
}
