/* TOP BAR CSS */
.navigation-bar {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.5s;
  border-bottom: 1px solid var(--border-color);
}

.navigation-bar.hidden {
  top: -120px;
}

/* products dropdown css */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 1.1vw;
  background-color: #fff;
  min-width: 12vw;
  top: 100%;
  left: -15%;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown .dropdown-content a {
  color: #7a7a7a;
  padding: 7px 16px;
  text-decoration: none;
  display: block;
  font-size: 17px;
  line-height: 23px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

nav {
  padding: 0 2vw;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background-color: #fff;
}

.nav-logo {
  width: 33%;
}

.nav-logo img {
  width: 60%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2vw;
  width: calc(100% - 66%);
}

.nav-links a {
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30.08px;
  color: #7a7a7a;
  text-decoration: none;
}

.nav-links a i {
  font-size: 35px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-button {
  width: 33%;
  display: flex;
  justify-content: flex-end;
  padding-right: 2vw;
}
.nav-button a {
  text-decoration: none;
}

.nav-button .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  background-color: var(--primary-color);
  padding: 0.8vw 1vw;
  text-transform: uppercase;
  border-radius: 1.1vw;
  cursor: pointer;
}

.nav-button .contact-button i {
  color: #fff;
  font-size: 1.5vw;
  margin-right: 0.5rem;
}

.nav-button span {
  font-size: 1.3;
  color: #fff;
}

.navigation-bar .menu-icon {
  display: none;
}

/* MEDIA QUERIES FOR MOBILE */
@media (max-width: 768px) {
  .navigation-bar {
    height: 67px;
  }

  .nav-links,
  .nav-button {
    display: none;
  }

  .nav-logo {
    width: 70%;
    height: 100%;
  }

  .nav-logo img {
    width: 65%;
    height: 100%;
    object-fit: contain;
  }
}
