/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #ececee;
}

.logo {
  max-width: 10rem;
}

.nav-list {
  list-style-type: none;
  display: flex;
  gap: 1.5rem;

}

.nav-list a {
  text-decoration: none;
  color: black;
  transition: all 0.7 ease;
}

.nav-list a:hover {
  color: rgb(0, 2, 126);
  font-size: 1.03em;
}


.abrir-menu, .cerrar-menu {
  display: none;
}

@media screen and (max-width: 550px) {
  .abrir-menu, .cerrar-menu {
      display: block;
      border: 0;
      font-size: 2rem;
      background-color: transparent;
      cursor: pointer;
  }

  .abrir-menu {
      color: #1c1c1c;
  }

  .cerrar-menu {
      font-size: 2.5rem;
      color: #ececee;
      display: block;
  }

  .nav-list {
      flex-direction: column;
      align-items: end;
  }
  .nav {
      opacity: 0;
      visibility: hidden;
      display: flex;
      flex-direction: column;
      align-items: end;
      gap: 1rem;
      position: fixed;
      top: 0;
      right: 100px;
      bottom: 0;
      /* background-color: #1c1c1c; */
      background-color: #000136;
      padding: 2rem;
      box-shadow: 0 0 0 100vmax rgba(0,0,0,.5);
      transition: all 0.4s;
      z-index: 3;
      height: 200vh;
  }

  .nav-active {
      opacity: 1;
      visibility: visible;
      display: flex;
      right: 0;
      transition: all 0.7s;
  }

  /* .nav.visible {
      opacity: 1;
      visibility: visible; 
  } */

  .nav-list a {
      color: #ececee;
  }

  .nav-list a:hover {
    color: #cccccc;
}
  
}

/*=============== LOADER  ===============*/
/* Barras que simulan la espera hasta la carga de la página */
.contenedor-loader {
	display: block;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255,255,255,0.7);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 1.5s ease-in-out;

}

.loader {
	height: 95px;
	display: flex;
	align-items: center;
}

.linea {
	width: 6px;
	height: 95px;
	background-color: #05156f;
	margin: 0 3px;
	border-radius: 3px;
	animation: loader1 0.7s infinite; 
}

.linea:nth-child(2) {
   animation-delay: .1s;
}
.linea:nth-child(3) {
   animation-delay: .2s;
}
.linea:nth-child(4) {
   animation-delay: .3s;
}
.linea:nth-child(5) { 
   animation-delay: .4s;
}
.linea:nth-child(6) {
   animation-delay: .5s;
}
.linea:nth-child(7) {
   animation-delay: .3s;
}
.linea:nth-child(8) {
   animation-delay: .2s;
}

@keyframes loader1 {
	0% { height: 0;}
	50% { height: 95px;}
	100% { height: 0;}
}

/*=============== END LOADER  ===============*/


/*=============== Estilos del slider ===============*/
.slideshow {
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-top: 2%;
  margin-bottom: 3%;
  height: 32vi;
}

.slider li, ul {
  list-style: none;
  width: 100%;
  height: 80%;
  padding: 0;
}

.slider li, a {
  text-decoration: none;
}

.slider img {
  padding: 0;
  width: 100%;
}

.slider .caption {
  position: relative;
  width: 45%;
  padding: 2%;
  justify-items: center;
  color: #1d1d1d;
  text-shadow: 1px 1px 3px rgb(255, 255, 255);
  background-color: rgba(192, 223, 235, 0.4);
}

.slider .izq-1 {
  margin-left: 9%; 
}

.slider .tope-1 {
  margin-top: -30%;
}

.slider .izq-2 {
  margin-left: 53%; 
}

.slider .tope-2 {
  margin-top: -25%;
}

.slider .caption h2 {
  font-family: 'BebasNeue', sans-serif;
  font-size: 1.5vi;
}

.slider .caption p {
  /* text-shadow: 2px 2px 2px rgb(0, 0, 0); */
  text-shadow: 0 0 0 rgb(0, 0, 0);
  font-size: 0.9vi;
  color: #272727;
  width: 90%;
  text-align: center;
  margin-bottom: 2.5%;
}

.parrafo-sec {
  display: none;
}

.slider .caption a {
  font-size: 1.5vi;
}

.pagination {
  position: absolute;
  /* margin-top: -3%; */
  margin-top: 5%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.7vi;

}

.pagination li {
  font-size: 1.2vi;
  /* margin: 2px 2px; */
  color: grey;
  cursor: pointer;

}

.left, .right {
  position: absolute;
  top: 45%;
  height: 20%;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 2.5vi;
  cursor: pointer;
  z-index: 2;

}

.left {
  left: 10px;
}

.right {
  right: 10px;
}

.btn {
  position: relative;
  padding: 1% 5px;
  text-decoration: none;
  color: #fff;
  font-size: 2vi;
  letter-spacing: 10px;
  width: 12em;
  text-align: center;
  letter-spacing: 0;
  transition: all 0.6s ease;
  z-index: 2;
}

.btn-2 {
  border: 0.3vi solid;
}

.btn-2:hover {
  background-color: #ffffff70;
  box-shadow: 0 0 20px var(--color);
  border-color: var(--color);
  color: #fff;
}

.btn-2 span:nth-child(n) {
  position: absolute;
  width: 1.3vi;
  height: 1.3vi;
  border: 0.2vi solid;
  transition: all 0.6s ease;
}

.btn-2 span:nth-child(1) {
  right: 10%;
  top: -0.8vi;
  background-color: #fff;
}

.btn-2 span:nth-child(2) {
  left: 10%;
  bottom: -0.8vi;
}

.btn-2:hover span:nth-child(1) {
  right: 80%;
  transform: rotate(90deg);
  color: var(--color);
  background-color: var(--color);
}

.btn-2:hover span:nth-child(2) {
  left: 80%;
  transform: rotate(90deg);
  color: var(--color);
}


@media only screen and (max-width: 500px) and (min-width:5px) {
  .slideshow {
    width: 100%;
    height: 100vi;
    margin-bottom: 20%;
  }

  .slider img {
    width: 100%;
  }
  .slider .caption h2 {
    font-size: 5.5vi;
    margin-bottom: 5%;
  }

  .slider .izq-1, .slider .izq-2  {
      margin: auto;
  }

  .slider .caption p {
     display: none;
  }

  .parrafo-sec {
    display: block;
    padding: 0 3%;
  }

  .slider .caption a {
    font-size: 4vi;
  }

  .pagination {
    display: none;
  }
  
  .slider .caption {
    margin-top: -10%;
    width: 100%;
    padding: 0;
  }

  .btn {
    font-size: 5vi;
  }

  .left, .right {
    font-size: 6vi;
    top: 8%;
  }
}

/*=============== final Estilos del slider ===============*/

.contenedor-gral {
  max-width: 1200px;
  margin: auto;
  margin-top: 5%;
}

.sticky-footer {
  padding: 0;
  flex-shrink: 0;
  background-color: #b9b9b9 !important;
  width: 100%;
}

.marg {
  margin-top: 5%;
}

footer.sticky-footer .copyright {
  line-height: 1;
  font-size: 0.8rem;
}

/* body.sidebar-toggled footer.sticky-footer {
  width: 100%;
} */

.ft-pie {
  display: flex;
  flex-wrap: wrap;
  text-justify: auto;
  /* background-color: rgb(221, 219, 219); */
  padding: 3%;
}

.imagenCAEL2 {
  width: 25%;
}

.logo-pie {
  width: 30%; 
  text-align: right;
}

.t-pie {
  margin-left: 3%; 
  max-height: max-content;
}

.c-tecnicas {
  margin: 20px 0; 
}

@media only screen and (max-width: 500px) and (min-width:5px) {
  .ft-pie {
    display: block;
    justify-self: center;
  }
  .logo-pie {
    width: 100%; 
    margin: auto;
    text-align: center;
  }
  
}