/*inicia preloader*/


/*finpreloader*/



ul{
    list-style: none;
}

a{
    text-decoration: none;
}

header{
    position: sticky;
    top: 0px;
    background-color: #ffffff;
    width: 100%;
    z-index: 1000;
}

section{
    position: relative;
    /*height: calc(100vh - 3rem);*/
    width: 100%;
   
    overflow: hidden;
}
/*section id info-aspel*/
#info-aspel1 {
    width: 40%;
    margin: 75px;
}
#info-aspel2 {
    width: 45%;
    margin: 0 auto;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(241, 241, 241, 0.973);
}

.contenedor{
    max-width: 65rem;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-contenedor{
    flex: 1;
    display: flex;
    align-items: center;
}

.boton-nav{
    flex: 2;
    display: flex;
}

.link-navs{
    flex: 2;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
    color: #003C71;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: .5rem 6rem;
    font-size: .8rem;
    border: 2px solid #003C71;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #69bde7;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.link-navs > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.linki{
    position: relative;
}

.linki > a{
    line-height: 3rem;
    color: #003C71;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.linki > a > i{
    margin-left: .2rem;
}

.linki:hover > a{
    transform: scale(1.1);
}

.dropbajo{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropbajo ul{
    position: relative;
}

.dropbajo-link > a{
    display: flex;
    background-color: #fff;
    color: #022c52;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropbajo-link:hover > a{
    background-color: #003C71;
    color: #fff;
}

.dropbajo-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropbajo-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropbajo-link:first-child:hover ~ .arrow{
    background-color: #3498db;
}

.dropbajo-link{
    position: relative;
}

.dropbajo.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropbajo.second .arrow{
    top: 10px;
    left: -5.5px;
}

.linki:hover > .dropbajo,
.dropbajo-link:hover > .dropbajo{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #295E81;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #295E81;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }

    .boton-nav{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .boton-nav{
        transform: translateX(0);
    }

    #check:checked ~ .boton-nav .linki,
    #check:checked ~ .boton-nav .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .link-navs{
        flex: initial;
        width: 100%;
    }

    .link-navs > ul{
        flex-direction: column;
    }

    .linki{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .linki > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .linki:hover > a{
        transform: scale(1);
        background-color: #50a9d6;
    }

    .dropbajo, .dropbajo.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #003C71;
        display: none;
    }
    
    .linki:hover > .dropbajo,
    .dropbajo-link:hover > .drobajo{
        display: block;
    }

    .linki:hover > a > i,
    .dropbajo-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropbajo-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropbajo.second .dropbajo-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropbajo.second .dropbajo.second .dropbajo-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropbajo-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #69bde7;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .linki:hover .arrow{
        background-color: #50a9d6;
    }

    .dropbajo .dropbajo .arrow{
        display: none;
    }

    .dropbajo-link:hover > a{
        background-color: #3a91bd;
    }

    .dropbajo-link:first-child:hover ~ .arrow{
        background-color: #50a9d6;
    }

    .linki > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropbajo i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}

/*Modificacion DIV servicios*/
div.div-center {
    text-align: center;
}
/*=================================================================================================
                   Seccion NOM035
==================================================================================================*/
.main-video {
    float: left;
    width: 30%;
    padding: 0 20px;
    overflow: hidden;
  }
  .right-video {
    background-color: rgba(230, 230, 230, 0.774);
    float: left;
    width: 70%;
    padding: 10px 15px;
    margin-top: 7px;
  }
  
  @media only screen and (max-width:800px) {
    /* For tablets: */
    .main-video {
      width: 80%;
      padding: 0;
    }
    .right-video {
      width: 100%;
    }
  }
  @media only screen and (max-width:500px) {
    /* For mobile phones: */
    .menu, .main-video, .right-video {
      width: 100%;
    }
  }


/*====================================================================================
                    SECCION YT ASPEL
=======================================================================================*/
.flex-container-yt {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    text-align: center;
    margin-top: 35px;
  }
  
  .flex-item-left-yt {
    padding: 10px;
    flex: 50%;
    margin: 19px;
  }
  
  .flex-item-right-yt {
    padding: 10px;
    flex: 50%;
    margin: 13px;
  }
  
  /* Responsive layout - makes a one column-layout instead of two-column layout */
  @media (max-width: 800px) {
    .flex-container-yt {
      flex-direction: column;
    }
  }


  .video-responsive-yt {
    height: auto;
    overflow: hidden;
    /*padding-bottom: 56.25%;*/
    padding-top: 30%;
    position: relative;
    }
.video-responsive-yt iframe, .video-responsive-yt object, .video-responsive-yt embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    }



/*====================================================================================
                FORMULARIO DE CONTACTO
=========================================================================================*/
  .alert{
    display: block;
    padding: 12px 20px;
    background: #f8d7da;
    color: #721c24;
    margin-bottom: 10px;
    border: 1px solid #f5c6cb;
  }
  .contenedor-contacto{
    width: 90%;
    max-width: 1000px;
    background: #fff;
    padding: 40px;
    margin: 20px auto;
    /*box-shadow: 0px 1px 2px rgba(0, 0, 0, .5);*/
}

.contenedor-contacto h1{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #d1d1d1;
}

.contenido{
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
}

.contenido .info,
.contenido .formulario{
    width: 50%;
}
/*NoSPanC0nt@cT0*/
#spam{display:none;}
/* ========================================================================================
Estilos info
==========================================================================================*/
.info{
    padding-left: 10px;
}

.info .col{
    width: 100%;
    display: flex;
    margin-bottom: 15px;
    font-size: 16px;
    align-items: center;
    flex-wrap: nowrap;
}

.info .col .icono{
    color: #003C71;
    margin-right: 10px;
}

.info .col p{
    color: #999;
}

.info .redes-s{
    width: 107%;
    overflow: hidden;
    padding-left: 70px;
    display: flex;
    flex-wrap: wrap;
}
.info .redes-s a{
    display: flex;
    width: 40px;
    height: 40px;
    background: #003C71;
    color: #fff;
    margin: 5px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .4);
}
.info .redes-s a:hover{
    box-shadow: 0px 3px 8px rgba(0, 0, 0, .4);
    /* background: #000; */
}

/* =======================================================================================
Estilos formulario
=========================================================================================*/
.formulario{
    padding-left: 10px;
}

.formulario input[type='text'],
.formulario textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 20px;
    /*border: 1px solid rgb(216, 0, 0);*/
    border-radius: 15px 15px 15px 15px ;
    color: #1C4199
    font-family: 'Open Sans',sans-serif;
    font-weight: 400;
    outline: 0;
}

.formulario textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 150px;
    max-height: 200px;
}

.formulario input[type='text']:focus,
.formulario textarea:focus{
    border: 1px solid #003C71;
}

.formulario button{
    padding: 12px 30px;
    border: transparent;
    background: #003C71;
    color: #fff;
    cursor: pointer;
    float: right;
}



@media (max-width: 520px){
   .contenedor{
       padding: 40px 20px;
   }

   .contenido .info,
   .contenido .formulario{
       width: 100%;
       padding: 0px;
   }

   .contenido .info{
       margin-bottom: 30px;
   }
}

@media (max-width: 800px){
  
    .contenido .info,
    .contenido .formulario{
        width: 100%;
        padding: 0px;
    }
 
    .contenido .info{
        margin-bottom: 30px;
    }
 }

/*==================================================================================================
acrodeon aspel sae
====================================================================================================*/
.container_fluid {
    width: 85%;
    margin: 0 auto;
    margin-top: 100px;
}  
.container_fluid h2 {
    color: rgb(32, 56, 107);
    /*position: relative;*/
    width: 100%;
}
/*
.container_fluid h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 12px;
    width: 67px;
    height: 2px;
    background-color: rgb(27, 50, 129);
}
*/
.accordion {
    width: 100%;
    padding: 0 5px;
    border: 2px solid rgb(15, 47, 105);
    background-color: rgb(15, 47, 105);
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    margin: 10px 0;
    align-items: center;
    transition: all .5s;
}
.h5-acordion {
    color: #fff;
}
.accordion {
    width: 100%;
    padding: 0 5px;
    border: 2px solid rgb(0, 140, 255);
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    margin: 10px 0;
    align-items: center;
    transition: all .5s;
}
.accordion .icon-sae {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/saemas.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-coi {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/coimas.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-banco {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/bancomas.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-noi {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/noimas.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-prod {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/prodmas.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-facture {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/facturemenos.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-adm {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/admmenos.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.accordion .icon-caja {
    margin: 0 10px 0 0;
    width: 30px;
    height: 30px;
    background: url(../images/acordeon/cajamenos.png) no-repeat 0px 0px rgb(224, 224, 224);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}
.containerx h5 {
    font-size: 22px;
    margin: 0;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: rgb(19, 57, 126);
    transition: all .5s ease-in;
}
.active .icon {
    background: url(../images/acordeon/saemenos.png) no-repeat 0px -0px rgba(219, 219, 219, 0);
}
.active {
    background-color: #0d528b;
    color: white;
}
.active h5 {
    color: #ffffff;
}
.panel {
    padding: 0 15px;
    border-left: 1px solid  #0d528b;
    margin-left: 25px;
    font-size: 14px;
    text-align: justify;
    overflow: hidden;
    max-height: 300;
    transition: all .5s ease-in;
}
.parrafo_titulo {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: #0d528b;
}
.parrafo_descripcion {
    text-justify: auto;
}
.containerx h1 {
    color:  rgb(19, 57, 126);;
}
.containerx p {
    font-size: 22px;
    margin: 0;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: rgb(104, 104, 104);
    text-justify: auto;
}

/*imagen en acordion*/
.panel img {
  display: block;
  float: left;
  margin: 0 15px 10px 0;
  width: 50%;
  height: auto;
}



/*galeria index*/
div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
/*==================================================================================================
imagen de fondo en seccion nomlean
====================================================================================================*/
  section.section-fondo {
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.548),
      rgba(255, 255, 255, 0.5));
      /*url(../images/background/nom035-nomlea.png);*/
      background-attachment: fixed;
  }
/*==================================================================================================
imagen titulo seecion nomlean
====================================================================================================*/
img.img-secnom {
    padding-left: 80px;
}
/*==================================================================================================
Terminos de privacidad
====================================================================================================*/
a.terminospricavy {
    padding-left: 10px;
}

/*==================================================================================================
Seccion Footer Datos Contacto
====================================================================================================*/
.container-form {
    background: #ffffff00;
    margin: 0 0 0rem;
    height: 2rem;
    display: flex;
    /* align-items por defecto tiene el valor `stretch` */
    align-items: start;
  }
  .center-h-form {
    justify-content: center;
  }
  .center-v-form {
    align-items: center;
  }
  .child-form {
    background: #60e0b100;
    padding: 1rem;
    
  }
  .footer-contacto {
      color: #fff;
  }
  
  