nav {
  width: 100%;
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--tertiary-bg-color);
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
nav .close {
  display: none;
}
nav .pages {
  display: flex;
  align-items: center;
  gap: 60px;
}
nav .pages .links {
  display: flex;
  gap: 40px;
}
nav .pages .links a {
  display: inline-block;
  padding: 10px 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: var(--font-normal);
}
nav .pages .links a:before {
  content: "";
  background: white;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
nav .pages .links a:hover {
  background-position: 0;
}
nav .pages .links a:hover::before {
  width: 100%;
}
nav .pages .links .services {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
nav .pages .links .services p {
  display: inline-block;
  padding: 10px 10px;
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: var(--font-normal);
  cursor: pointer;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  transition: all 0.3s ease-in-out;
}
nav .pages .links .services .services-dropdown {
  width: 250px;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: 40px;
  padding: 10px 40px;
  background-color: var(--primary-bg-color);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
nav .pages .links .services .services-dropdown a {
  color: white;
}
nav .pages .links .services p:hover {
  background-color: var(--primary-bg-color);
  color: white;
}
nav .pages .links .services p:hover + .services-dropdown {
  visibility: visible;
  opacity: 1;
}
nav .pages .links .services .services-dropdown:hover {
  visibility: visible;
  opacity: 1;
}

.menu {
  background-color: var(--primary-bg-color);
  padding: 0px 25px;
  color: white;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  display: none;
  height: 100px;
}

.transparent {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 70%);
}
.transparent .pages .links a {
  color: var(--primary-bg-color);
}
.transparent .pages .links a:before {
  background: var(--primary-bg-color);
}
.transparent .pages .links .services {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
.transparent .pages .links .services p {
  color: var(--primary-bg-color);
}
.transparent .pages .links .services p:hover {
  background-color: var(--primary-bg-color);
  color: white;
}
.transparent .pages .links .services .services-dropdown a:before {
  background: white;
}
.transparent .pages .links .services p:hover + .services-dropdown {
  visibility: visible;
  opacity: 1;
}
.transparent .pages .links .services .services-dropdown:hover {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--tertiary-bg-color);
    z-index: 100;
  }
  nav {
    position: fixed;
    z-index: 10;
    top: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5%;
    height: 100vh;
    transform: translateX(-100%);
    padding: 25px;
    z-index: 100;
    overflow-y: scroll;
  }
  nav .close {
    align-self: flex-end;
    display: inline;
  }
  nav .pages {
    flex-direction: column;
  }
  nav .pages .links {
    flex-direction: column;
    align-items: center;
    margin-top: 15%;
  }
  nav .pages .links a {
    font-size: var(--font-large);
  }
  nav .pages .links .services p {
    display: none;
  }
  nav .pages .links .services .services-dropdown {
    position: relative;
    top: 0;
    display: block;
    visibility: visible;
    opacity: 1;
  }
  .transparent {
    background: white;
  }
}/*# sourceMappingURL=styles.css.map */