@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&display=swap');
:root {
  --rojo: #E7312A;
  --negro: #000;
  --blanco: #fff;
  --texto: #333333;
  --verde: #b6f842;
  --azul: #222d4f;
  --gris: #3b435f;
  --gris_uno: #7c7e7f;
  --gris_dos: #bfbbb8;
  --verde: #096C41;
  --verde_dos: #32a16d;

  --general: "SUSE Mono", sans-serif;
  --titulos: "Oswald", sans-serif;
  
  --all: all 0.3s ease-in-out;
}
*, html{
  margin: 0px;
  padding: 0px;
  box-sizing:border-box;
  font-family: var(--general);
}
html{
  overflow-x:hidden;
}
body{
  font-size:20px;
  background-color: var(--verde) !important;
  color: #000;

  overflow-x: hidden;
  overflow-y: auto;

  min-height: 100vh;
  width: 100%;
}
/*****LOADER*****/
.loader-section{
  width: 100%;
  height: 100vh;
  max-width: 100%;
  position: fixed;
  background-color: var(--verde);
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:999;
  transition: all 1s 1s ease-out;
  opacity:1;
}
.loaded{
  opacity:0;
  z-index:-1;
}
.loader{
  width: 48px;
  height: 48px;
  border: 5px solid var(--blanco);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*****FIN LOADER*****/
.flex_inicio{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  color: var(--blanco);
}
.flex_column{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex_principal{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
  padding: 50px;
}
.titulo{
  font-family: var(--titulos);
}
.general{
  font-family: var(--general);
}
.space_2{
  letter-spacing: 2px;
}
.space_5{
  letter-spacing: 5px;
}
.contenido_uno{
  width: 20%;
}
.contenido_dos{
  text-align: center;
  flex: 0.45;
}
.logo{
  height: 160px;
  margin: 20px 0;
}
.flex_mensaje{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  color: var(--blanco);
  text-decoration: none;
  transition: var(--all);
}
.flex_mensaje:hover{
  color: var(--verde_dos);
}
.flex_mensaje div{
  margin-left: 5px;
}
.coming{
  margin: auto;
  display: table;
}
.texto-escribiendo {
  display: block;
  overflow: hidden; /* Oculta el texto no visible */
  white-space: nowrap; /* Evita saltos de línea */
  width: 0; /* Ancho inicial */
  border-right: 3px solid var(--verde_dos); /* Simula el cursor */
  animation:
    escribir 5s steps(30, end) infinite, /* Animación de escritura */
    cursor-blink 0.7s steps(1, end) infinite; /* Animación del cursor */
}
#cl{clear: both;}
.max_width{
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.padding_width{
  padding: 100px 20px;
}

@keyframes escribir {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes cursor-blink {
  50% { border-color: transparent; }
}
.avion{
  height: 70px;
  margin-bottom: 15px;
}
.car_img{
  border-radius: 25px;
  background-image:url('../img/slider.jpg');
  background-size:cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center;
  /*background-size: 100%;*/
  height: 350px;
}
.car_fondo{
  border-radius: 25px;
  height: 350px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  text-align: center;
}
.idiomas{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  margin: 15px 0;
}
.idiomas img{
  height: 35px;
  transition: var(--all);
}
.idiomas img:hover{
  opacity: 0.8;
}
@media screen and (max-width: 1500px) {
  .contenido_dos{
    flex: 0.8;
  }
}
@media screen and (max-width: 1200px) {
  .flex_inicio{
    height: auto;
  }
  .flex_principal{
    flex-direction: column;
    padding: 40px 20px;
  }
  .contenido_uno{
    width: 60%;
  }
  .contenido_dos{
    flex: 1;
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .contenido_dos{
    width: 100%;
  }
  .flex_principal{
    flex-direction: column;
    padding: 30px 15px;
  }
}
@media screen and (max-width: 450px) {
  .contenido_uno{
    width: 90%;
  }
}