.nav {
  background-color: transparent;
  height: auto;
  position: fixed;
  width: 100%;
  z-index: 20;
  transition: 0.3s;
  top: 0;
}

nav.active {
  background-color: white;
  box-shadow: 0px 0px 16px -8px #d2d2d2;
}
nav.active .component-nav .icon-brand-white {
  display: none;
}
nav.active .component-nav .icon-brand-color {
  display: flex;
}
nav.active .component-nav .content-links .link .title-link {
  color: var(--secondary);
}
nav.active .component-nav .content-links .link .line {
  background-color: var(--secondary);
}
nav.active .component-nav .icon-mask {
  background-color: var(--secondary);
}
nav .component-nav .icon-brand-white {
  display: flex;
}
nav .content-brand {
  height: 100%;
}
@media (max-width: 1100px) {
  nav .content-brand {
    margin-right: auto;
  }
}
nav .togglel {
  cursor: pointer;
  padding: 1rem 0;
  margin-left: 0;
  margin-right: 1rem;
  transition: 0.5s;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  nav .togglel {
    display: none;
  }
}
nav .togglel .line {
  transition: 0.5s;
  width: 2.7rem;
  height: 4px;
  border-radius: 100rem;
  background: rgb(172, 172, 172);
}
nav .togglel .line-2 {
  transition: 0.5s;
  margin-top: 0.5rem;
}
nav .toggle.active .line {
  background: rgb(206, 206, 206);
}
nav .toggle.active .line-1 {
  transform: rotate(45deg);
}
nav .toggle.active .line-2 {
  margin-top: -3px;
  transform: rotate(-45deg);
}
@keyframes toggleLine1 {}
nav .container {
  height: 100%;
}
nav .container .brand-logo {
  width: 3rem;
}
nav .content-nav {
  height: 8rem;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1400px) {
  nav .content-nav {
    height: 6rem;
  }
}
@media (max-width: 500px) {
  nav .content-nav {
    height: 5rem;
  }
}
nav .component-nav {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
nav .component-nav .icon-brand-white,
nav .component-nav .icon-brand-color {
  width: 12rem;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (max-width: 500px) {
  nav .component-nav .icon-brand-white,
  nav .component-nav .icon-brand-color {
    width: 10rem;
  }
}
nav .component-nav .icon-brand-color {
  display: none;
}
nav .component-nav .content-links {
  display: flex;
  gap: 4.4rem;
}
@media (max-width: 1100px) {
  nav .component-nav .content-links {
    position: absolute;
    top: 0;
    height: 0;
    overflow: hidden;
    background: white;
    width: 100vw;
    left: 0;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  nav .component-nav .content-links .title-link {
    font-size: 1.5rem;
    margin: 0.7rem 0;
    color: var(--gray);
  }
}
@media (max-width: 1100px) {
  nav .component-nav .content-links.close {
    animation: hideNav 0.5s ease-in-out forwards;
  }
}
@media (max-width: 1100px) {
  nav .component-nav .content-links.open {
    animation: showNav 0.5s ease-in-out forwards;
  }
}
@keyframes hideNav {
  0% {
    opacity: 1;
    height: 100vh;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}
@keyframes showNav {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100vh;
  }
}
nav .component-nav .icon-mask {
  background-color: white;
}
nav .component-nav .link {
  position: relative;
  display: flex;
  flex-direction: column;
}
nav .component-nav .link .title-link {
  opacity: 0.5;
  font-family: "Poppins-Medium";
  font-size: 1rem;
}
@media (max-width: 1100px) {
  nav .component-nav .link .title-link {
    font-size: 1.5rem;
  }
}
nav .component-nav .link .line {
  position: relative;
  display: flex;
  width: 100%;
  height: 0.1rem;
  background-color: white;
  transition: all 0.3s ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
nav .component-nav .link.active .title-link {
  opacity: 1;
}
nav .component-nav .link.active .line {
  transform: scaleX(1);
}
nav .component-nav .content_icons {
  display: none;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1100px) {
  nav .component-nav .content_icons {
    display: flex;
  }
}
nav .component-nav .content_icons .content_icon_mask .mask {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--secondary);
  display: flex;
}
nav .component-nav .content_icons_mask {
  display: flex;
  gap: 1.2rem;
}
nav .component-nav .content_icons_mask .content_icon_mask {
  display: flex;
}
nav .component-nav .content_icons_mask .content_icon_mask .icon-mask {
  width: 1.3rem;
  height: 1.3rem;
}
nav .component-nav .content_icons_mask .content_icon_mask .icon-mask.icon-facebook {
  transform: scale(0.9);
}
nav.dark .component-nav .icon-brand-white {
  display: none;
}
nav.dark .component-nav .icon-brand-color {
  display: flex;
}
nav.dark .component-nav .link .title-link {
  color: var(--secondary);
}
nav.dark .component-nav .icon-mask {
  background-color: var(--secondary);
}/*# sourceMappingURL=navbar.css.map */