/* Menu */
header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);

  position: fixed;
  z-index: 99;
  opacity: 0;
  transition: 0.5s;
}
header.loaded {
  opacity: 1;
}
.header__container {
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: 0.35s;
  margin: auto;

  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 500px) {
  .header__container {
    max-width: 100vw;
    margin: 0;
  }
}
header .menu a {
  font-style: normal;
  font-weight: 200;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  width: 128px;
  justify-content: center;
  margin-left: 26px;
  cursor: pointer;
}
header .menu a.active {
  color: #00e1ff;
}
header .menu,
header .submenu {
  display: flex;
  margin: auto;
  align-items: center;
}
.submenu {
  opacity: 1;
  transition: 0.25s;
  transform: translateY(0);
}
.submenu.scroll-down {
  opacity: 0;
  transform: translateY(-30px);
}
.right__submenu {
  display: flex;
}

header .submenu ul li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .submenu {
  color: white;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 80px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
header .submenu a {
  display: block;
  margin: 0 10px;
  color: white;
}
header .right {
  display: flex;
  margin-right: 60px;
  align-items: center;
}
header .menu li a {
  max-width: 128px;
  display: block;
  width: auto;
  margin-right: 26px;
  margin-left: 26px;
  font-weight: 200;
  font-size: 0.9em;
}
#_log {
  color: black;
  background-color: white;
  border-radius: 25px;
  padding: 5px 30px;
}
header .menu li a:hover {
  color: #00e1ff;
}
.submenu li {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.submenu li svg {
  display: none;
}
.submenu li a:hover,
.submenu li a.active {
  color: #00e1ff;
}

.submenu li svg.active path,
.submenu li:hover path {
  fill: #00e1ff;
}
.submenu li a {
  cursor: pointer;
}
.mobile-form {
  display: none;
}
.mobile {
  display: none;
}
.desktop {
  margin-left: 25px;
}
.quote__menu {
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-weight: 300;
  font-size: 25px;
  gap: 15px;
  position: absolute;
  bottom: 275px;
  display: none;
}
.quote__menu:hover,
.quote__menu:hover svg path {
  color: #00e1ff;
  fill: #00e1ff;
}
@media (max-width: 1360px) {
  header {
    justify-content: space-between;
  }
  .mobile {
    display: block;
    margin-left: 26px;
  }
  .desktop {
    display: none;
  }
  header .menu li a {
    font-size: 25px;
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
  }
  .menu {
    position: fixed;
    top: 56px;
    left: -100%;
    display: block;
    padding: 50px 0px;
    text-align: center;
    width: 100%;
    height: 100vh;
    background: #151515;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
  }
  .menu.active {
    left: 0;
  }
  .toggle {
    width: 40px;
    height: 40px;
    background: url("../css/menu.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
    transition: 0.1s;
    filter: invert(1);
    order: 2;
    margin: auto;
    margin-right: 80px;
  }
  .toggle.active {
    background: url("../css/cancelar.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    cursor: pointer;
  }
  header .menu a {
    margin: auto;
    width: 40px;
  }
  .quote__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }
}
@media (max-width: 1020px) {
  header .submenu {
    display: none;
  }
}
@media (max-width: 575px) {
  header .menu a {
    margin-left: 40px;
  }
  header .menu li a {
    max-width: unset;
  }
  .toggle {
    margin-right: 40px;
  }
  header .submenu ul li {
    justify-content: center;
  }

  .submenu li svg {
    display: block;
    margin-bottom: 5px;
  }
  .left__submenu {
    display: none !important;
  }
  .mobile-form {
    display: block;
  }
  .mobile-form.scroll-down {
    display: none;
  }
  .mobile-form div {
    padding: 15px 15px;
    /* text-align: center; */
    color: white;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    cursor: pointer;
    display: none;
  }
  .mobile-form.active div {
    display: block;
  }
  .mobile-form div.mobile-form--cotizar {
    background: linear-gradient(
      153.35deg,
      rgba(1, 226, 255, 0.9) 16.71%,
      rgba(0, 104, 134, 0.9) 155.94%
    );
    display: block;
    text-align: center;
  }
  .mobile-form.active div.close__arrow {
    background-color: transparent !important;
    backdrop-filter: none !important;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 300px) {
  .logo {
    background-image: url("../img/favicon.webp");
    height: 30px;
    width: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    cursor: unset;
    margin-left: 20px;
  }
  .toggle {
    margin: 0px;
    margin-right: 20px;
  }
}
.selector {
  position: relative;
}
.btn__selector {
  color: #fff;
  cursor: pointer;
  width: auto;
  height: 20px;
  margin-right: 26px;
  text-align: center;
  position: relative;
}
.btn__selector:hover {
  color: #00e1ff;
}
.menu__selector {
  position: absolute;
  left: 0%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #fff;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13333);
  display: none;
  border-radius: 5px;
  transform: translateX(-40px);
}
.menu__selector.active {
  display: unset;
}
.menu__selector .opcion {
  padding: 10px 40px;
  cursor: pointer;
}
.menu__selector .opcion:hover {
  color: #00e1ff;
}

.selector2 {
  position: absolute;
  bottom: 200px;
}
.btn__selector2 {
  color: #fff;
  cursor: pointer;
  width: 120px;
  height: 20px;
  text-align: center;
  font-size: 20px;
  margin-right: 26px;
  font-weight: 300;
  margin-top: 50px;
}
.btn__selector2:hover {
  color: #00e1ff;
}
.menu__selector2 {
  position: absolute;
  background: #000;
  color: #fff;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13333);
  display: none;
  border-radius: 5px;
  transform: translateX(-65px) translateY(-50px);
  background: linear-gradient(180deg, #151515 50%, rgba(0, 0, 0) 139.58%);
  top: 0;
}
.menu__selector2.active {
  display: unset;
}
.menu__selector2 .opcion {
  padding: 10px 40px;
  cursor: pointer;
}
.menu__selector2 .opcion:hover {
  color: #00e1ff;
}
@media (max-width: 900px) {
  header .menu li a {
    margin: 0;
  }
  .menu a {
    margin-left: 0;
  }
  header .menu li {
    margin-bottom: 15px;
  }
}
