@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  list-style: none;
}
html {
  overflow-x: hidden;
}
a,
.join {
  cursor: pointer;
}
.join {
  color: #00a3ff;
}
.active {
  color: #aaa;
}
body {
  background-color: #000;
  overflow-x: hidden;
}
img {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}
a {
  text-decoration: none;
}
/* Loader */

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #00a3ff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10000;
  clip-path: circle(141.2% at 100% 0);
  transition: 0.3s ease-in-out;
}
.loader2 {
  clip-path: circle(0% at 100% 0);
}
/* Menu */
/* Menu */
.logo {
  background-image: url(../img/logoFrame.svg);
  height: 20px;
  width: 328px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  cursor: unset;
  background-position-y: 75%;
}
header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);

  position: fixed;
  z-index: 1000;
  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;
}
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: #00a3ff;
}
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: #00a3ff;
}
.submenu li a:hover,
.submenu li a.active {
  color: #00a3ff;
}
.submenu li a {
  cursor: pointer;
}
.mobile {
  display: none;
}
.desktop {
  margin-left: 25px;
}
@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;
    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: scroll;
  }
  .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;
  }
}
@media (max-width: 575px) {
  header .menu a {
    margin-left: 40px;
  }
  .toggle {
    margin-right: 40px;
  }
  .submenu {
    display: none !important;
  }
}
.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: #00a3ff;
}
.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: #00a3ff;
}
.btn__selector2 {
  color: #fff;
  cursor: pointer;
  width: 120px;
  height: 20px;
  text-align: center;
  font-size: 20px;
  margin-right: 26px;
}
.btn__selector2:hover {
  color: #00a3ff;
}
.menu__selector2 {
  position: fixed;
  background: #000;
  color: #fff;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13333);
  display: none;
  border-radius: 5px;
  transform: translateX(-65px);
  background: linear-gradient(180deg, #151515 50%, rgba(0, 0, 0) 139.58%);
}
.menu__selector2.active {
  display: unset;
}
.menu__selector2 .opcion {
  padding: 10px 40px;
  cursor: pointer;
}
.menu__selector2 .opcion:hover {
  color: #00a3ff;
}
@media (max-width: 900px) {
  header .menu li a {
    margin: 0;
  }
  .menu a {
    margin-left: 0;
  }
  header .menu li {
    margin-bottom: 15px;
  }
}
/* Heading */
.heading {
  padding-top: 50px;
  /* height: 100vh; */
  width: 100vw;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  color: white;
  flex-wrap: wrap;
  background-image: url(./aircraft.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.heading.loaded {
  background: none;
}
.heading video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}
.heading .content {
  padding-top: 325px;
  padding-bottom: 150px;
}
.heading:before {
  position: absolute;
  content: "";
  height: 60%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(to bottom, transparent, #000 80%);
  background: linear-gradient(to bottom, transparent, #000 80%);
}
.heading .title {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.heading h1 {
  width: 100%;
  font-size: 2.5em;
  font-weight: 600;
  padding-bottom: 0.5em;
  position: relative;
  padding-right: 0.5em;
  padding-left: 0.5em;
}
.heading span {
  color: #00b6cf;
  width: 100%;
  text-align: center;
  font-size: 1.75em;
  text-transform: uppercase;
  padding-bottom: 0.5em;
  font-weight: 600;
  position: relative;
}
.btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25px;
}
.btns p {
  padding: 10px 20px;
  position: relative;
  background: linear-gradient(180deg, #00e0ff 0%, #0096ab 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  transition: color 0.2s;
}
.p__new {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.btns p.unselected {
  background: white;
  color: black;
}
.p__request {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.btns a {
  padding: 5px 15px;
  background: #00b6cf;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-wrap: unset;
  gap: 0.5em;
  border-radius: 20px;
  color: white;
}
.btns a p {
  text-transform: uppercase;
}
.btns .new {
  background: white;
  color: black;
}
.description {
  color: white;
}
.description h2 {
  max-width: 750px;
  font-size: 40px;
  line-height: 120%;
  margin: auto;
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}
.description p {
  max-width: 840px;
  font-size: 20px;
  font-weight: 300;
  line-height: 120%;
  margin: auto;
  text-align: center;
  padding: 0px 20px;
}
.table {
  color: white;
  width: 1080px;
  margin: 100px auto;
  display: block;
}
h2.hide,
.table.hide {
  display: none;
}
/* .table .svg {
  transform: translateY(25%);
} */
.table-container {
  display: block;
  width: 100vw;
  overflow: none;
  white-space: nowrap;
  overflow-x: auto;
  background-color: #000;
  /* background-color: red; */
  position: relative;
  z-index: 20;
  overflow-y: none;
  height: 1600px;
}
.thead .tr {
  background-color: #1d1c1c;
  margin-bottom: 25px;
  display: flex;
  border-radius: 10px;
  padding: 0 40px;
}
.thead .tr .th {
  width: 30%;
  padding: 8px 0;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  margin: 7px 0px;
  border-radius: 8px;
}
.thead .tr .th:nth-child(1) {
  width: 40%;
  text-align: start;
  margin: 7px 0;
}
.tbody,
.tbody2 {
  padding: 0px 40px;
}
.tbody .tr,
.tbody2 .tr {
  display: flex;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.6);
}
.tbody .tr:nth-child(20),
.tbody .tr:nth-child(21),
.tbody2 .tr:nth-child(19),
.tbody2 .tr:nth-child(20) {
  border: none;
}
.tbody .tr .td,
.tbody2 .tr .td {
  background-color: #1d1c1c;
  width: 30%;
  padding: 15px 0;
  text-align: center;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tbody .tr .td:nth-child(1),
.tbody2 .tr .td:nth-child(1) {
  background-color: #000;
  width: 40%;
  text-align: start;
  justify-content: flex-start;
  white-space: break-spaces;
}
.tbody .tr .td:nth-child(2),
.tbody2 .tr .td:nth-child(2) {
  background-color: #000;
}
.tbody .tr:nth-child(21) .td,
.tbody2 .tr:nth-child(20) .td {
  background-color: black;
  color: #00a3ff;
  border: none;
}
.table p {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
}
.minimum {
  font-size: 0.75em;
}
.terms {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  color: #3b82f6;
  font-size: 0.75em;
  display: block;
}
.modal-quote,
.modal-quote2 {
  position: fixed;
  top: calc(50% - 215px);
  margin: 0 auto;
  left: 0;
  right: 0;
  max-width: 750px;
  padding: 5px;
  display: none;
  color: black;
  max-height: 80vh;
  z-index: 20;
}
.modal-quote.active,
.modal-quote2.active {
  display: unset;
}
.modal-quote svg,
.modal-quote2 svg {
  cursor: pointer;
}
.modal-quote h2,
.modal-quote2 h2 {
  padding: 10px 10px 30px;
  font-weight: 500;
}
.form__modal,
.form__modal2 {
  width: 90%;
  height: 90%;
  background-color: white;
  margin: auto;
  padding: 30px 20px;
  overflow-y: scroll;
}
.modal-quote .button,
.modal-quote2 .button {
  background: #00b6cf;
  color: white;
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  padding: 15px 30px;
  cursor: pointer;
  font-size: 16px;

  border-radius: 4px;
  margin: 0px auto 20px;
}
.modal-quote .button svg,
.modal-quote2 .button svg {
  padding-left: 10px;
}
@media (max-width: 730px) {
  .modal-quote,
  .modal-quote2 {
    top: 75px;
  }
}
.grid__form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
.grid__form input {
  border: none;
  outline: none;
  border-bottom: 1px solid black;
  width: 100%;
  padding: 10px;
  margin: 0 0 30px 0;
}
.grid__form .input {
  width: 280px;
}
.grid__form .two {
  width: 140px;
}
@media (max-width: 725px) {
  .grid__form .input {
    width: 100%;
  }
}
input .none {
  display: none;
}
.quote div,
.quote .button {
  margin-bottom: 1px;
}
.button__quote {
  background-color: #00b6cf;
  color: white;
  outline: none;
  border: none;
  width: 160px;
  height: 49px;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 18px;
  /* border-radius: 4px; */
}
.blur-modal,
.blur-modal2 {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0005;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}
.blur-modal.active,
.blur-modal2.active {
  display: unset;
}
/* Animacion */
.animation {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.animation p {
  text-align: center;
  font-size: 3em;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  mix-blend-mode: difference;
  position: relative;
  z-index: 2;
  text-shadow: 3px 3px 20px #0006;
  padding: 0 5px 0 10px;
}
img.phone-1 {
  /* transform: translateY(-15%) translateX(-5%); */
  transform: translateY(-100vh) translateX(-5%);
  /* opacity: 0; */
}
img.phone-2 {
  /* transform: translateY(0) translateX(5%); */
  transform: translateY(100vh) translateX(5%);
  /* opacity: 0; */
}
/* .animation-container {
  overflow-y: hidden;
} */
.animation img {
  display: block;
  position: absolute;
  width: 80%;
  max-width: 1200px;
  object-fit: cover;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 800px) {
  .animation img {
    width: 150vw;
  }
  img.phone-1 {
    transform: translateY(-100vh) translateX(-15%);
  }
  img.phone-2 {
    transform: translateY(100vh) translateX(-10%);
  }
}
@media (max-width: 690px) {
  .animation p {
    font-size: 2em;
  }
}
@media (max-width: 490px) {
  .animation p {
    font-size: 1.5em;
  }
}
/* Footer */
.contenedor__footer {
  background-color: #151515;
  width: 100%;
}
.footer {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  background-color: #151515;
  padding-bottom: 50px;
  justify-content: center;
  display: flex;
  justify-content: center;
  margin: auto;
  flex: 1;
  padding-top: 35px;
}
.nav__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  align-items: flex-start;
  max-width: 1300px;
}
.numbers p {
  text-align: left;
}
/* .numbers p {
  text-align: right;
} */
.nav__footer div {
  width: 230px;
  /* margin: 10px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 30px 30px 0;
}
.nav__footer div:nth-child(4) {
  width: 250px;
}
.nav__footer div h4 {
  margin-bottom: 15px;
  font-size: 18px;
}
.nav__footer ul li a {
  cursor: pointer;
  font-weight: 200;
  color: #ccc;
}
.nav__footer ul li a:hover {
  color: #00a3ff;
}
.nav__footer p {
  font-weight: 200;
  color: #ccc;
}
.faces__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  padding-top: 50px;
}
.faces__footer svg {
  margin-left: 5px;
  margin-right: 5px;
}
.faces__footer svg:hover {
  transform: scale(1.2);
}
.copy__footer {
  width: 80%;
  margin: auto;
  text-align: center;
  max-width: 1300px;
}
.numbers a {
  cursor: pointer;
  font-weight: 200;
  color: #ccc;
  text-decoration: none;
}
.numbers a:hover {
  color: #00a3ff;
}
.contact-us a {
  cursor: pointer;
  font-weight: 200;
  color: #ccc;
  text-decoration: none;
}
.contact-us a:hover {
  color: #00a3ff;
}
.contact-us span {
  display: block;
  padding-bottom: 5px;
}
.numbers p span {
  font-weight: 400;
}
.white {
  color: #fff;
}
.nav__footer ul li {
  padding-bottom: 5px;
}
@media (max-width: 610px) {
  /* .nav__footer div {
    width: 50%;
    margin: 0;
  } */
  .nav__footer div {
    width: 250px;
  }
  .footer {
    font-size: 16px;
  }
}
/* @media (max-width: 570px) {
  .nav__footer {
    justify-content: flex-start;
  }
} */
@media (max-width: 313px) {
  .nav__footer div {
    width: 90%;
  }
}
.modal_ok {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
}
@media (max-width: 450px) {
  .modal_ok {
    flex-wrap: wrap;
  }
  .modal_ok svg {
    transform: scale(0.75);
  }
}
