/* HEADER */
header {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  position: fixed;
  z-index: 2;
  gap: 20px;
  top: 0;
}
header .header_logo {
  width: 180px;
  flex-shrink: 0;
}
.header_logo img {
  width: 120px;
}
nav ul {
  display: flex;
  gap: 30px;
  font-size: 0.8rem;
}
nav li {
  display: flex;
  align-items: center;
  justify-content: center;
}
nav li a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: b;
}
a.nav_action {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
}
nav .nav-redes img {
  width: 15px;
  height: 15px;
}
button.btn_menu_responsive {
  display: none;
  background-color: transparent;
}
.btn_menu_responsive .menu-bar {
  display: block;
  width: 30px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 10px;
  margin: 5px 0;
  transition: .2s all;
}
/* HEADER */
@media (min-width: 1367px) {
}
@media (min-width: 1025px) and (max-width: 1366px) {
}
@media (min-width: 768px) and (max-width: 1024px) {
}
@media (min-width: 481px) and (max-width: 767px) {
}
@media (min-width: 320px) and (max-width: 480px) {
}
@media (max-width: 1024px) {
  button.btn_menu_responsive {
    display: block;
  }
  .nav {
    right: -100%;
    position: fixed;
    background: #ffffff;
    height: calc(100vh - 85px);
    z-index: 2;
    top: 85px;
    transition: 0.2s right;
    box-shadow: -35px 0 50px 0 rgba(0, 0, 0, 0.2);
    height: 100vh;
    width: 60vw;
  }
  .nav.active {
    top: 0;
    right: 0;
    padding: 20px;
    padding-top: 85px;
  }
  .btn_menu_responsive.active .menu-bar{
    margin: 0;
  }
  .btn_menu_responsive.active .menu-bar:first-child {
    transform: rotate(45deg) translate(2px, 2px);
    -webkit-transform: rotate(45deg) translate(2px, 2px);
  }
  .btn_menu_responsive.active .menu-bar:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2px);
    -webkit-transform: rotate(-45deg) translate(2px, -2px);
  }
  .btn_menu_responsive.active .menu-bar:last-child {
    display: none;
  }
  .nav.active .nav-menu {
    flex-direction: column;
  }
  .header_options {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu_mobil {
    position: absolute;
    z-index: 2;
  }
  .nav.active li {
    justify-content: flex-start;
  }
  .nav ul {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0px 20px;
  }
}
@media (max-width: 481px) {
  .nav {
    width: 100vw;
  }
}

