
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Bebas+Neue&display=swap');

/* .bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.abel-regular {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
} */


:root{
    --tituloprimero: Bebas Neue, sans-serif;
    --fontnormal: Abel, sans-serif;

    --bgNav:#d77015;
    --bgNavEstatica:#09a0ce;
    --bgTituloCajaDescripcion:#21b47d;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fontnormal);
    list-style: none;
  
}

body{
    width: 100%;
    max-width: 1920px;
    background: #eeeeee;

}
.load{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display:grid;
  -webkit-mask: conic-gradient(from 15deg,#0000,#000);
  animation: l26 1s infinite steps(12);
}
.loader,
.loader:before,
.loader:after{
  background:
    radial-gradient(closest-side at 50% 12.5%,
     #f03355 96%,#0000) 50% 0/20% 80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%,
     #f03355 96%,#0000) 0 50%/80% 20% repeat-x;
}
.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}
.loader:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {transform:rotate(1turn)}
}

h1 , h2, h3, h4, h5, h6{
    font-family: var(--tituloprimero);
}

.main{
    width: 100%;
    max-width: 1920px;
    display: block;
    position: relative;
    overflow: hidden;
}
.empresa-mobile{
    width: 100%;
    height: 80px;
    display: none;
    background: var(--bgNavEstatica);
    position:relative;
    align-items: center;
    justify-content: space-between;
}
.empresa-mobile img{
    width: 140px;
    height: 60px;
    display: block;
    padding-top: 10px;
    margin-left: 10px;
}
.numeros-contacto{
    width: 200px;
    height: 60px;
    display: flex;
   font-size: 13px;
    color: white;
    align-items: center;
    flex-wrap: wrap;
}
.numeros-contacto p{
    width: 100%;
    text-align: right;
    margin-bottom: 0px;
    margin-right: 10px;
}
.nav-estatica{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}
.icono-numeros{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.caja{
    display: flex;
    height: 100%;
    align-items: center;
}
.caja-icono{
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.caja-icono i{
    font-size: 30px;
    color: var(--bgNavEstatica);
}
.tituloCajaDescripcion{
    display: inline-block;
    background: var(--bgTituloCajaDescripcion);
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
}
.parrafoCajaDescripcion{
    margin-bottom: 2px;
    margin-top: 2px;
}
.navegacion{
    width: 80%;
    height: 50px;
    background: var(--bgNav);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* position: fixed; */
    z-index: 2;
    clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
    margin: auto;
    /* box-shadow: 2px 10px 5px rgba(0, 0, 0, 0.1); */
}
.icono-mobile{
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: var(--bgNavEstatica);
    border-radius: 0px 5px 5px 0px;
    padding: 5px;
    position: fixed;
    top: 0em;
    left: 0em;
    z-index: 3;
}
.icono-mobile i{
    font-size: 20px;
    color: white;
    cursor: pointer;
   
}
.logonav{
    width: 150px;
    height: 60px;
    display: block;
    margin-left: 2em;
}
.logonav img{
    width: 100%;
    height: 80%;
}
.link a{
    color: #e2e2e2;
    font-size: 14px;
    margin: 0 10px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 10px;
    text-decoration: none;
}

.social{
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.social a{
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e2e2e2;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    transition: all 0.3s ease;
}
#facebook{
    background: #3b5998;
    color: #e2e2e2;
    border: 1px solid #3b5998;
}
#instagram{
    background: #e1306c;
    color: #e2e2e2;
    border: 1px solid #e1306c;
} 
#twitter{
    background: #1da1f2;
    color: #e2e2e2;
    border: 1px solid #1da1f2;
}
.social-vertical{
    width: 40px;
    display: none;
    flex-direction: column;
    position: fixed;
    right: 10px;
    top: 10em;
    z-index: 3;
}
.social-vertical a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #e2e2e2;
    font-size: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    z-index: 3;
}
.link-mobil{
    width: 300px;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: -1000px;
    background: var(--bgNavEstatica);
    color: white;
    padding: 1em;
    z-index: 3;
    transition: all 1s ease;
}
.link-mobil i{
    font-size: 30px;
    color: white;
    cursor: pointer;
    position: absolute;
    top: .5em;
    right: .5em;
}
.logo-mobile{
    width: 200px;
    height: 60px;
    display: block;
    margin-top: 2em;
}
.logo-mobile img{
    width: 100%;
    height: 100%;
}
.link-mobil ul{
    width: 100%;
    display: block;
    margin-top: 3em;
}
.link-mobil ul a{
    color: white;
    font-size: 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}
.link-mobil ul li{
    padding: 10px;
    margin-bottom: 10px;
}

.carousel .slide{
    margin-top: 3em;
     height: 80vh;
}

/* footer carousel */
.footerCarousel{
    width: 80%;
    height: 350px;
    background: black;
    display: flex;
    position: relative;
    margin-top: -7em;
    margin-left: auto;
    margin-right: auto;
    
}
.cajaImagenFooterCarousel{
    width: 300px;
    height: 100%;
    display: block;
    background: var(--bgNav);
    position: relative;
   
}
.cajaImagenFooterCarousel img{
    width: 380px;
    height: 280px;
    position: absolute;
    top: 4em;
    right: -4em;
    z-index: 1;
}
.cajaDescripcionFooterCarousel{
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
}
.cajaDescripcionFooterCarousel h1{
    font-size: 60px;
    color: var(--bgNavEstatica);
}

.caja-imagen-pagina{
    width: 100%;
    height: 700px;
    display: block;
    position: relative;
}
.caja-imagen-pagina img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.tituloPagina{
    position: absolute;
    top: 20%;
    left: 5%;
    transform: translate(-30%, -10%);
    color: white;
    font-size: 60px;
    font-family: var(--tituloprimero);
    text-align: center;
    letter-spacing: 4px;
    display: inline-block;
    background: var(--bgNav);
    padding:  10px 40px;
    border-radius: 10px;
}
/* fin footer carousel */
.separadorSeccionDerecha{
    width: 100%;
    height: 300px;
    background: white;
    color: white;
    text-align: center;
    margin-top: 10em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.separadorSeccionDerecha h2{
    font-size: 70px;
    color: var(--bgNavEstatica);
    font-family: var(--tituloprimero);
    letter-spacing: 4px;
}
.imagenPerfilDerecha{
    width: 250px;
    height: 300px;
    position: absolute;
    top: -20px;
    right: -10px;
}

.nosotros{
    width: 100%;
    max-width: 1920px;
    height: 400px;
    display: flex;
    position: relative;
    background:linear-gradient(40deg,rgba(0, 0, 0, 0.84),rgba(6, 1, 87, 0.73)), url('../img/nosotros/3.jpg');
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
}
.cajaNosotros{
    width: 80%;
    height: 200px;
    display: block;
    color: white;
}
.cajaNosotros article{
    padding: 30px;
    border: 1px solid var(--bgNavEstatica);
}
.cajaNosotros article p{
    font-size: 20px;
    color: var(--bgNavEstatica);
}
.blanquita{
    color: white;
    font-family: var(--tituloprimero);
    text-decoration: underline;
    letter-spacing: 3px;
}
.mision , .vision{
    width: 100%;
    max-width: 1920px;
    height: 400px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-evenly;
}
.cajaImagenMision , .cajaImagenVision{
    width: 200px;
    height: 200px;
    display: block;
    position: relative;
}
.cajaImagenMision::before {
    content: '';
    position: absolute;
    top: -5em;
    left: -3em;
    width: 140%;
    height: 140%;
    background: var(--bgNavEstatica);
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
    opacity: 0.8;
    z-index: -1;
}
.cajaImagenMision img{
    position: absolute;
    top: -5em;
    left: -3em;
    width: 120%;
    height: 120%;
    z-index: 2;
    margin-left: 3em;
}
.cajaDescripcionMision {
    width: 60%;
    height: 250px;
    display: block;
    position: relative;
    background: white;
    padding: 2em;
    font-size: 20px;
}


.cajaImagenVision::before {
    content: '';
    position: absolute;
    top: -5em;
    left: -3em;
    width: 140%;
    height: 140%;
    background: var(--bgNav);
clip-path: polygon(32% 0, 100% 0, 100% 90%, 12% 100%);
    opacity: 0.8;
    z-index: -1;
}
.cajaImagenVision img{
    position: absolute;
    top: -4em;
    left: -8em;
    width: 120%;
    height: 120%;
    z-index: 2;
    margin-left: 3em;
}
.cajaDescripcionVision {
    width: 60%;
    height: 250px;
    display: block;
    position: relative;
    background: white;
    padding: 2em;
    font-size: 20px;
}
.seccionServicios{
    width: 100%;
    max-width: 1920px;
    height: 400px;
    display: block;
    position: relative;
}
.seccionServicios img{
    width: 100%;
    height: 100%;
    display: block;
}
.servicios{
    width: 80%;
    height: 400px;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    margin: auto;
    justify-content: space-evenly;
    align-items: center;
    padding: 3em;
    background: white;
}
.caja-servicios{
    width: 26%;
    height: 200px;
    display: flex;
}
.img-caja-servicios{
    width: 110px;
    height: 110px;
    display: flex;
    position: relative;
    background: rgba(128, 128, 128, 0.25);
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.img-caja-servicios img{
    width: 80px;
    height: 80px;
    display: block;

}
.descripcion-caja-servicios{
    width: 80%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 20px;
    color: black;
    padding-left: 10px;
}
.descripcion-caja-servicios a{
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}
.descripcion-caja-servicios a:hover{
    color: var(--bgNavEstatica);
}
.seccion-mapas{
    width: 100%;
    max-width: 1920px;
    height: 400px;
    display: block;
    position: relative;
    background: linear-gradient(40deg, rgb(0, 0, 0), rgba(87, 1, 43, 0.73));
}
.mapas{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
}
.mapas h1{
    text-align: center;
    color: var(--bgNavEstatica);
    margin-top: 2em;
}
.mapas h2{
    text-align: center;
    color: black;
    margin-top: 1em;
}
.mapa{
    width: 50%;
    height: 300px;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}
.mapa iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.descripcion-mapa{
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
}
#imagenOperaciones{
    width: 180px;
    height: 140px;
    position: absolute;
    bottom: -4em;
    right: 10em;
    z-index: 2;
}

#imagenOperaciones1{
    width: 200px;
    height: 160px;
    position: absolute;
    bottom: -5em;
    right: 1em;
    z-index: 2;
}
.seccion-contacto{
    width: 100%;
    max-width: 1920px;
    height: 400px;
    display: block;
    position: relative;
    background: linear-gradient(40deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.73)) ,url('../img/contacto/boletin\ de\ ayuda.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.seccion-contacto h3{
    position: absolute;
    left: 25px;
    z-index: 2;
    top: 2em;
    color: white;
    font-size: 60px;
}
.seccion-contacto h4{
    position: absolute;
    left: 25px;
    z-index: 2;
    top: 4.5em;
    color: var(--bgNav);
    font-size: 40px;
    font-family: var(--tituloprimero);
    letter-spacing: 4px;
}
#btnContactanos{
    position: absolute;
    bottom: 8em;
    left: 2em;
    z-index: 2;
}

/* footer */
.footer{
    width: 100%;
    max-width: 1920px;
    height: 400px;
    display: block;
    background: var(--bgNavEstatica);
}
.footer-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.footer-logo{
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3em;
    margin-left: 2em;
}
.footer-logo img{
    width: 250px;
    height: 67px;
}
.footer-text{
    width: 300px;
    height: 200px;
    display: block;
    margin-top: 1em;
}
.footer-text ul li{
    width: 100%;
    display: block;
    padding: .5em;
    color: black;
    font-size: 20px;
}
.footer-text ul li a{
    color: black;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 3px;
}
.footer-text ul li a i{
    width: 30px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    color: var(--bgNavEstatica);
    height: 30px;
    border: 1px solid var(--bgNavEstatica);
    border-radius: 5px;
    margin-right: 10px;
    background: white;
    padding-top: 7px;
}
.footer-direccion{
    width: 300px;
    height: 200px;
    display: flex;
    margin-top: .5em;
    justify-content: center;
    font-size: 20px;
    letter-spacing: 2px;
}
.footer-privacidad{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.separador-footer{
    width: 100%;
    height: 50px;
    display: block;
    position: absolute;
    background: #4548e3;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    bottom: 0;
    left: 0;
}
.btn-pagina{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 1em;
    right: .5em;
    z-index: 3;
    cursor: pointer;
    background: #0f3a47;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    border-radius: 10px;
    
}
.btn-pagina i{
    padding-bottom: 10px;
}
.btn-pagina span{
    position: fixed;
    bottom: .4em;
    right: 2.3em;
    color: white;
    font-size: 12px;
}
@keyframes flechaSubir {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
    
}
.btn-pagina:hover i{
    
    animation: flechaSubir 0.5s ease-in-out infinite;
    
}

h1, p, h1 a, p a, 
.aos-animate h1, .aos-animate p, .aos-animate h1 a, .aos-animate p a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    color: inherit;
}

@media screen and (max-width: 1000px) {
    .logonav{
        display: none;
    }
    .social{
        display: none;
    }
    .icono-mobile{
        display: flex;
    }
    .social-vertical{
        display: flex;
    }
    .icono-numeros{
        width: 100%;
    }
    
}


@media screen and (max-width: 800px) {
   .caja-icono {
       width: 40px;
   } 
   .caja-icono i {
       font-size: 15px;
   }
   .navegacion{
       display: none;
   }
   .footerCarousel{
    width: 98%;
    margin-top: 5em;
   }
   .imagenPerfilDerecha{
    width: 185px;
    height: 157px;
    top: 142px;
   }
    .nosotros{
         height: 500px;
    }
    .cajaNosotros article p{
        font-size: 15px;
    }
    .seccionServicios{
        height: 300px;
    }
    .servicios{
        width: 100%;
        padding: 0em;
        padding-top: 2em;
        height: 700px;
    }
    .caja-servicios{
        width: 50%;
    }
    .mapas{
        flex-wrap: wrap;
    }
    #btnContactanos{
        bottom: 3em;
    }
      #imagenOperaciones{
        display: none;
    }
    #imagenOperaciones1{
        display: none;
    }

    .footer{
        position: relative;
        height: 500px;
    }
    .footer-logo{
        width: 150px;
        height: 150px;
        position: absolute;
        top: 4em;
        left: 2em;
    }

    .footer-text{
        width: 250px;
        position: absolute;
        top: 3em;
        right: 1em;
    }
    .footer-privacidad{
        position: absolute;
        bottom: 5em;
        right: 1em;
        z-index: 3;
    }
  
  
}


@media screen and (max-width: 600px) {
    .nav-estatica{
        justify-content: end;
    }
    .icono-numeros{
        width: 90%;
        justify-content: end;
        flex-wrap: wrap;
    }
    .caja{
        width: 50%;
    }
    .caja-icono{
        display: none;
    }
    .empresa-mobile{
        display: flex;
        margin-bottom: 1em;
    }
    #cajaNumerosNormal{
        display: none;
    }
    .nav-estatica{
        justify-content: space-between;
    }
    .icono-numeros{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
      
    }
    #cajaCorreosNormal{
        margin-left: 1em;
    }
    #cajaHorariosNormal{
        width: 35%;
    }
    .footerCarousel{
        width: 100%;
    }
    .cajaImagenFooterCarousel{
        width: 20px;
    }
    .cajaImagenFooterCarousel img{
        width: 300px;
        height: 190px;
        position: absolute;
        top: 17em;
        right: -15em;
    }
    .imagenPerfilDerecha{
        width: 170px;
        height: 128px;
        top: 180px;
        right: -10px;
    }
    /* .nosotros{
        align-items: start;
    } */
    .cajaNosotros{
     width: 90%;
    }
    .mision{
        height: 600px;
    }
    .vision{
        height: 810px;
    }
    .servicios{
        height: 1270px;
    }
    .caja-servicios{
        width: 70%;
    }
    .seccion-mapas{
        height: 701px;
    }
  .mapa{
    width: 100%;
    height: 300px;
  }
  .descripcion-mapa{
    background: black;
  }
  .seccion-contacto h3{
    font-size: 40px;
  }
  .seccion-contacto h4{
    font-size: 30px;
  }
  #btnContactanos{
    bottom: 6em;
  }

  .footer-text{
    width: 185px;
    top: 8em;
  }

  
}

