@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap");

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}
.header {
  /* border-bottom: 1px solid #b2b2b3; */
  z-index: 1100;
  background-color: #101010;
  /* font-size: 16px !important; */
}

.navbar {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem !important;
}
.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
}

.nav-link:hover {
  color: red;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: red;
}
@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.824rem !important;
    flex-direction: column;
    background-color: black;
    width: 100%;
    /* border-radius: 10px; */
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 1100;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 0 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #mainload{
    overflow-x: hidden;
  }
}
