@import url("../main.css");
header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  display: flex;
  height: 85px;
  justify-content: center;
  padding: 0 calc((100% - 1280px) / 2);
  margin: 0 auto;
  z-index: 99;
}
header > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
header > div .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 100%;
  background-color: var(--color-primary);
}
header > div .logo img, header > div .logo svg {
  height: 100%;
  padding: 10px 0;
}
header > div .information {
  width: 100%;
}
header > div .information .contact {
  display: flex;
  align-items: center;
  gap: 0 5em;
  padding: 0 20px;
  height: 40px;
  background-color: var(--background-color);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
header > div .information .contact > div, header > div .information .contact > a {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
header > div .information .contact > div > div, header > div .information .contact > a > div {
  display: flex;
  gap: 0 0.5em;
}
header > div .information .contact > div span, header > div .information .contact > a span {
  font-size: 12px;
  font-weight: 600;
  color: #FFF;
}
header > div .information .contact > div span br, header > div .information .contact > a span br {
  display: none;
}
header > div .information .contact > div svg, header > div .information .contact > a svg {
  width: 16px;
  height: 16px;
  stroke: #008795;
  stroke-width: 2;
}
header > div .information .contact > div {
  gap: 0 5em;
}
header > div .information #btn-nav {
  display: none;
}
header > div .information nav {
  padding: 0 20px;
  height: 45px;
}
@media (min-width: 800px) {
  header > div .information nav {
    display: flex !important;
  }
}
header > div .information nav #close-nav {
  display: none;
}
header > div .information nav ul {
  display: flex;
  align-items: center;
  gap: 0 5em;
  height: 100%;
  z-index: 100;
}
header > div .information nav ul li {
  list-style: none;
}
header > div .information nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  text-decoration: none !important;
  transition: 0.3s var(--transitionv1) all;
}
header > div .information nav ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: 0.3s var(--transitionv1) all;
}
header > div .information nav ul li a:hover::before, header > div .information nav ul li .active::before {
  width: 100%;
}
header > div .information nav ul li a:hover, header > div .information nav ul li .active {
  font-weight: 600;
  padding-bottom: 5px;
}

@media (min-width: 1920px) {
  header {
    padding: 0 320px;
  }
}
@media (max-width: 800px) {
  header {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
  header > div .information {
    display: flex;
    background-color: var(--background-color);
    justify-content: space-between;
    padding-right: 5%;
    align-items: center;
  }
  header > div .information .contact {
    background-color: transparent;
    box-shadow: unset;
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  header > div .information .contact > div {
    gap: 0 1em;
  }
  header > div .information .contact > div svg, header > div .information .contact > a svg {
    width: 18px;
    height: 18px;
  }
  header > div .information #btn-nav {
    display: block;
    font-size: 2em;
    color: #FFF;
  }
  header > div .information nav {
    display: none;
    width: 100vw;
    position: absolute;
    right: -120vw;
    height: auto;
    min-height: 100vh;
    z-index: 10;
    top: 0;
    background-color: var(--background-color);
    pointer-events: none;
    transition: all 0.8s var(--transitionv1);
  }
  header > div .information nav #close-nav {
    position: absolute;
    left: 5%;
    top: 1em;
    font-size: 2em;
    color: #FFF;
    display: block;
  }
  header > div .information nav ul {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    gap: 2em;
  }
  header > div .information nav ul li a {
    font-size: 22px;
    color: #FFF;
  }
  header > div .information nav ul li a.active, header > div .information nav ul li a:hover {
    color: var(--color-primary);
  }
  header > div .information nav.active {
    pointer-events: all;
    right: 0;
  }
  header.active {
    position: fixed;
  }
}
@media (max-width: 520px) and (max-width: 330px) {
  header > div .information {
    justify-content: flex-end;
  }
}
@media (max-width: 520px) and (max-width: 330px) {
  header > div .information .contact {
    display: none;
  }
}
@media (max-width: 520px) {
  header > div .information .contact > div {
    flex-direction: column;
    gap: 5px 0;
  }
  header > div .information .contact > div span bdi, header > div .information .contact > a span bdi {
    display: none;
  }
  header > div .information .contact > div span br, header > div .information .contact > a span br {
    display: block;
  }
}/*# sourceMappingURL=header.css.map */