nav {
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
}

nav a {
  text-decoration: none;
  color: inherit;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: black;
}

nav ul li {
  margin-right: 8px;
}

nav img {
  height: 60px;
}

.contactanos {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 8px 24px 8px 24px;
  width: 203px;
  border-radius: 11px;
  background-color: black;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}

.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 5px;
  transition: all 0.3s ease;
}

.nav-active {
  transform: translateX(0%);
  display: flex !important;
  z-index: 3000;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    left: 0px;
    height: Calc(100% - 80px);
    top: 60px;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    opacity: 0.9;
  }

  .nav-links li {
    opacity: 0;
    margin: 16px;
  }

  .burger {
    display: block;
    cursor: pointer;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    display: flex;
    font-size: 1em;
  }

  .contactanos {
    font-family: "Inter", sans-serif;
    font-size: 0.8em;
    width: 180px;
    padding: 8px 16px 8px 16px;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  nav {
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 1em;
    margin: 0 auto;
    padding-left: 10%;
    padding-right: 10%;
  }

  nav img {
    height: 60px;
  }
  .nav-links {
    top: 60px;
  }

  .contactanos {
    font-family: "Inter", sans-serif;
    font-size: 0.8em;
    width: 203px;
  }
}

@media (min-width: 1441px) {
  nav {
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 1.4em;
    padding-left: 10%;
    padding-right: 10%;
  }
  .nav-links {
    top: 80px;
  }
  nav img {
    height: 80px;
  }

  nav ul li {
    margin-right: 24px;
  }

  .contactanos {
    font-family: "Inter", sans-serif;
    font-size: 0.6em;
    width: 300px;
    padding: 16px 32px 16px 32px;
  }
}
