html,
body {
  overflow-x: hidden;
}

.nav-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
}

.img-logo img {
  height: 40px;
}

.active {
  color: #ec870e !important;
}

.mobile-menu-logo {
  display: none;
}

@media (max-width: 600px) {
  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }

  .hamburger-menu span {
    background-color: #ffffff;
    height: 3px;
    width: 100%;
    transition: 0.4s ease-in-out;
    border-radius: 4px;
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .nav-links {
    background-color: rgba(15, 15, 15, 0.98);
    z-index: 999;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    right: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }

  .nav-links.show-mobile {
    transform: translateX(0);
  }

  .nav-links li {
    list-style: none;
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    color: aliceblue;
    text-decoration: none;
    font-size: 2rem;
    font-family: "Titillium Web", sans-serif;
    font-weight: 500;
    width: 85%;
    padding: 12px 0;
    border-radius: 8px;

    transition: all 0.3s ease;
    display: inline-block;
  }

  .nav-links a:hover {
    color: #ec870e;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links a.active {
    color: #ffffff !important;
    background-color: #ec870e;
  }

  .mobile-menu-logo {
    display: block;
    position: absolute;
    top: 4%;
    left: 15%;
    transform: translateX(-50%);
    margin: 0 !important;
  }

  .mobile-menu-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
  }
}
