header {
  background-color: rgba(var(--secondary-color));
  min-height: 50px;
  box-shadow: 0px 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.nav-logo {
  padding-right: 30px;
}

.nav-center {
  display: inline-flex;
  justify-content: center;
  height: 70px;
}

.navbar-content {
  align-items: center;
  box-shadow: 50px;
  display: flex;
  gap: 1px;
  height: 140px;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 3px;
  margin: auto;
  max-width: 2080px;
  width: 100%;
}

.title h1 {
  color: rgba(var(--primary-color));
  font-family: "Ancizar Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: normal;
  font-weight: 800;
  text-align: center;
  padding-right: 100px;
  flex: 1 1 100%;
}

.anav {
  display: flex;
  align-items: center;
  font-size: 17px;
  gap: 1rem;
  height: 30px;
  justify-content: center;
  letter-spacing: 2px;
  list-style: none;
  margin-left: 4px;
  transition: left 0.3s;
}

.anav a {
  border: 2px solid transparent;
  color: rgba(var(--primary-color));
  font-family: "Ancizar Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.anav a:hover {
  color: #ff0000;
  border-top-color: rgba(var(--primary-color));
  border-bottom-color: rgba(var(--primary-color));
}

.hover-items {
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0 rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 220px;
  min-width: 160px;
  position: absolute;
  z-index: 1;
  margin-top: 10px;
  transition: 3s ease-in-out;
}

.hover-items a {
  color: #000;
  display: block;
  padding: 12px 16px;
  border: 0;
}
.hover-items a:hover {
  color: #ff0000;
  background: rgba(var(--dark-color), 0.1);
}

.dropdown:hover .hover-items {
  display: block;
  z-index: 9999;
}
