:root {
    --ancho--principal: 70%;
    --color--primario: rgba(18,48,102,0.6);
    --color--secundario: rgb(92, 177, 222);
    --color--gradiente1: linear-gradient(90deg, rgba(116, 116, 244, 0.8) 0%, rgba(252,252,252,1) 100%);
    --color--texto: white;
    --color--texto-alternativo: black;
    --color--etiqueta: rgb(112, 188, 228);
    --color--descripcion: rgb(108, 130, 142);
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

a:link,  a:hover{
    color: var(--color--texto-alternativo);
    text-decoration: none;
}

body{
    background: #8e9eab;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

p{
    padding: 0% 2%;
}
/*************CARRUSEL*************/
#container-slider
{
    position: relative;
    display: block;
    width: 100%;
}
#slider {
    position: relative;
    display: block;
    width: 100%;
    height: 40vh;
    min-height: 500px;
}
#slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2; 
}
#container-slider .arrowNext {
    left: initial;
    right: 50px !important;
}
.content_slider{
    padding: 15px 30px;
    color: #FFF;
    width: 100%;
    height: 100%;
}
.content_slider div{
    text-align: center;
}
.content_slider h2{
    font-family: 'arial';
    font-size: 30pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.content_slider p {
    font-size: 15pt;
    font-family: 'arial';
    color: #FFF;
    margin-bottom: 20px;
}
#slider li .content_slider{
    background: rgba(0, 0, 0, 0.50);
    padding: 10px 125px;
}
.content_slider{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnSlider{
    color: #FFF;
    font-size: 15pt;
    font-family: 'arial';
    letter-spacing: 1px;
    padding: 10px 50px;
    border: 1px solid #CCC;
    background: rgba(13, 13, 13, 0.55);
    border-radius: 31px;
    text-decoration: none;
    transition: .5s all;
}
.btnSlider:hover{
    background: #111;
    border: 1px solid #111;
}
.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 49.5%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
}
.listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: auto;
    margin: 0 5px;
}
.listslider li a {
    background: #CCC;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}
.item-select-slid {
    background: #FFF  !important;
}
/*************Fin CARRUSEL*************/

/*************HOME*************/
.quienes_somos-seccion {
    background-image: url(../IMG/quienes_somos.jpg);
    background-size: cover;
    padding: 1.5% 0;
}

.quienes_somos{
    background-color: var(--color--primario);
    width: 40%;
    margin-top: 90px;
    margin: auto;
    color: var(--color--texto);
}

.quienes_somos h2{
    text-align: center; 
    z-index: 10000;
}

.mision_vision {
    align-items: center;
    text-align: center;
    margin: auto;
    width: 95%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.mision{
    background-color: var(--color--primario);
    width: 35%;
    color: var(--color--texto);
    display: inline-block;
    vertical-align: top;
    margin: auto;
    text-align: justify;
    min-height: auto;
}

.mision h2{
    text-align: center; 
}

.vision{
    background-color: var(--color--primario);
    width: 35%;
    color: var(--color--texto);
    display: inline-block;
    vertical-align: top;
    text-align: justify;
    min-height: auto;
}

.vision h2{
    text-align: center; 
}

.valores{
    margin: auto;
    width: 100%;
    color: var(--color--texto-alternativo);
    padding: 1.5% 0;
}

.valores h2{
    text-align: center;
}

.valores-contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    justify-content: center;
    margin: 0 10%;  
    padding: 0% 5%;
    
}
.valor_item {
    background-color: rgba(255, 255, 255, 0.516);
    text-align: center;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.379);
    padding: 2% 2%;
    border-radius: 15px;
}
.valor_img {
    background-color: aliceblue;
    display: block;
    width: 30%;
    margin: auto;
    margin-top: 3%;
    max-width: 250px;
    min-width: 150px;
}

.valor_texto{
    display: inline-block;
    width: 90%;
    margin: auto;
    text-align: justify;
}

.politicas_seccion {
    background-image: url(../IMG/politicas.jpg);
    background-size: cover;
    padding: 1.5% 0;
}

.politicas{
    background-color: var(--color--primario);
    margin: auto;
    width: 40%;
    margin-left: 15%;

    color: var(--color--texto);
}


.politicas h2{
    text-align: center; 
}

.normas_seccion {
    background-image: url(../IMG/normas.jpg);
    background-size: cover;
    padding: 1.5% 0;
}

.normas{
    background-color: var(--color--primario);
    margin: auto;
    width: 40%;
    margin-right: 15%;
    color: var(--color--texto);
}

.normas h2{
    text-align: center; 
}
/*************Fin HOME*************/


/*************SERVICIOS*************/
.objetivos_seccion {
    background-image: url(../IMG/normas.jpg);
    background-size: cover;
    padding: 1% 0;
}

.objetivos{
    background-color: var(--color--primario);
    margin: auto;
    width: 40%;
    margin-top: 90px;
    margin-left: 10%;
    color: var(--color--texto);
}
.objetivos h2{
    text-align: center; 
}


.normas_espec{
    background-color: var(--color--primario);
    margin: auto;
    width: 60%;
    color: var(--color--texto);
    margin-top: 1%;
    margin-bottom: 1%;
}

.normas_espec h2{
    text-align: center; 
}

.proceso_pruebas{
    background-color: var(--color--primario);
    margin: auto;
    width: 85%;
    color: var(--color--texto);
}

.proceso_pruebas h2{
    text-align: center; 
}

.proceso_pruebas_text{
    width: 60%;
    margin: auto;
}

.proceso_pruebas_text p{
    display: inline-block;
    text-align: left;
}

.video_prueba{
    display: block;
    margin: 0 auto;
    padding: 1% 0;
    width:70%;
}

.tb_normas {
    margin: auto;
    width: 70%;
    background: rgb(87, 102, 146);
    margin-bottom: 1em;
    border-spacing: 0;
  }

.tb_normas tr:nth-child(odd) {
    background: rgb(160, 163, 172);
  }
  
.tb_normas tr:nth-child(even) {
    background: rgb(91, 95, 105);
  }
  

.tb_normas th{
    background-color: #2f75ae;
    text-align: center;
}
.tb_normas td {
    text-align: center;
    vertical-align: top;
 }
/*************FIN SERVICIOS*************/

/*************INFORMACIO*************/
.normas_info_seccion {
    background-image: url(../IMG/informacion.jpg);
    background-size: cover;
    padding: 1.5% 0;
}
.normas_info{
    background-color: var(--color--primario);
    margin: auto;
    width: 60%;
    color: var(--color--texto);
    margin-top: 90px;
}

.normas_info h2{
    text-align: center; 
}

.formatos{
    background-color: var(--color--primario);
    margin: auto;
    width: 70%;
    color: var(--color--texto);
    padding: 1.5% 0;
    margin-top: 1%;
    margin-bottom: 1%;
}

.formatos h2{
    text-align: center; 
}

.formatos img{
    display: block;
    margin: auto;
    color: var(--color--texto);
    padding: 1.5% 0;
}

.docs-img{
    width: 90%;
}
/*************FIN INFORMACIO*************/

/*************CONTACTO*************/
.contacto_form {
    background-image: url(../IMG/contacto.jpg);
    background-size: cover;
    padding-top: 100px;
    margin-bottom: 2%;
    padding-bottom: 50px;
}

.formulario{
    background: var(--color--primario);
    padding: 1%  3%;
    box-shadow: 0 0 15px rgba(18, 18, 129, 0.8);
    border-radius: 20px;
    text-align: center;
    width: 60%;
    margin: auto;
   
}

.input-group{
    display: flex;
    flex-direction: column;
    text-align: left;
}

.etiqueta_text{
    color: var(--color--etiqueta);
    margin-bottom: 15px;
}

#terminos_condiciones_et{
    text-align: center;
}

.input_text{
    padding: 17px 25px;
    border-radius: 30px !important;
    background-color: #edfff0;
    margin-bottom: 20px;
    border: 2px solid #f0faf1;
    color: #020f13;
    outline: none;
    resize: none;
    width: 100%;
}

.input_opt{
    padding: 17px 25px;
    border-radius: 30px !important;
    background-color: #edfff0;
    margin-bottom: 20px;
    border: 2px solid #f0faf1;
    color: #020f13;
    outline: none;
    resize: none;
    width: 100%;
}
.input_opt::placeholder{
    color: var(--color--descripcion)
}

.input_text::placeholder{
    color: var(--color--descripcion)
}

.form-txt{
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.form-txt a{
   color: whitesmoke;
}
.btn-form{
    color: #FFF;
    border: 0;
    padding: 15px 10px;
    border-radius: 30px !important;
    background-color: rgba(11, 190, 11, 0.783);
    box-shadow: 0 0 10px rgb(114, 109, 109);
    cursor: pointer;
    width: 30%;
    margin: auto !important;
}

.btn-form:hover{
    background-color: rgb(25, 202, 25);
}

.contacto_form h2{
    text-align: center; 
    color: var(--color--texto);
}
/**
.directorio{
    background-color: var(--color--primario);
    margin: auto;
    width: 65%;
    margin-top: 90px;
    color: var(--color--texto);
    overflow:hidden;
    display:block;
    padding:2.5%;
}

.tb_directorio {
    width: 100%;
    background: rgb(87, 102, 146);
    margin-bottom: 1.25em;
    border-collapse: collapse;
    border-spacing: 0;
  }

.tb_directorio th{
    background-color: #8e9eab;
}

.tb_directorio tr.even,
.tb_directorio tr.alt,
.tb_directorio tr:nth-of-type(even) {
  background: #f9f9f9;
}

.tb_titulos th{
    padding-left: 3%;
    color: var(--color--texto-alternativo);
}

.tb_fila td{
    padding-left: 1%;
    color: var(--color--texto-alternativo);
}

.directorio h2{
    text-align: center; 
}
**/
.contacto{
    background-color: var(--color--primario);
    margin: auto;
    width: 65%;
    color: var(--color--texto);
}

.mensaje_form{
    text-align: center;
    color: white;
}

.contacto h2{
    text-align: center; 
    color: var(--color--texto);
}

.contacto p, .contacto a, .contacto i{
    text-align: center; 
    color: var(--color--texto);
    vertical-align: middle;
}

.mapa{
    background-color: var(--color--primario);
    margin: auto;
    width: 65%;
    color: var(--color--texto);
    text-align: center;
}

.mapa h2{
    text-align: center; 
}

#mapa_ubicacion{
    width: 600px;
    height: 450px;
    border: 0;
}
/*************FIN CONTACTO*************/

/**************LEGAL**************/
.legal{
    background-color: var(--color--primario);
    margin: auto;
    width: 90%;
    margin-top: 90px;
    padding: 1.5% 0;
}
.legal h2{
    text-align: center; 
}
/**************FIN GENERAL**************/

/**************QUEJAS**************/
.quejas_form_seccion{
    padding: 1.5% 0;
}
.quejas_form {
    background-image: url(../IMG/contacto.jpg);
    background-size: cover;
    padding-top: 100px;
    margin-bottom: 2%;
    padding-bottom: 50px;
}

.quejas_form h2{
    text-align: center; 
    color: var(--color--texto);
}

.quejas_form p{
    color: white;
}

.quejas_form a{
    color: white;
}
/**************FIN QUEJAS**************/

/**************GENERAL**************/
footer{
    background-color: #0a2759 ;
    position: relative;
    bottom: 0;
}

.footer-text{
    color: white !important;
    text-decoration: bold;
    font-size: .9em;
}

.piecito{
    height: 7.5vh;
}
/**************FIN GENERAL**************/

/**************PARTICULAR**************/
#navbarSupportedContent{
    padding-left: 10%;
}
#menu{
    z-index: 10000;
    position: fixed;
    top: 0px;
    width: 100%;
    font-size: 1.3em;
}

.navbar-brand {
    margin-left: 5% !important;
}

#logo-img{
    width: 250px
}

/**************FIN PARTICULAR**************/

/*************WHATSAPP*************/
.button-wa{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d667;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.wa-icon{
    margin-top: 15px;
}
/*************Fin WHATSAPP*************/

/**************RESPONSIVE**************/
/**************RESPONSIVE**************/
/**************RESPONSIVE**************/
/**************RESPONSIVE**************/
@media (max-width: 600px) {
    :root{
        --ancho--principal: 90%;
    }

    .piecito{
        height: auto;
    }

    #logo-img{
        width: 160px;
    }
    
/*************CARRUSEL*************/
    .content_slider h2 {
        font-size: 15pt !important;
    }
    .content_slider p {
        font-size: 12pt !important;
    }
    #container-slider .arrowPrev, #container-slider .arrowNext{
        font-size: 20pt;
    }
    #container-slider .arrowPrev{
        left: 15px;
    }
    #container-slider .arrowNext{
        right: 15px !important;
    }
    #slider{
        height: 400px;
        min-height: 400px;
    }
    #slider li .content_slider{
        padding: 10px 35px;
    }
    .btnSlider{
        padding: 10px 30px;
        font-size: 10pt;
    }

    .listslider {
        left: 46%;
    }
/*************Fin CARRUSEL*************/

/*************HOME*************/

    .quienes_somos-seccion {
        background-image: url(../IMG/quienes_somos_mobil.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .quienes_somos{
        background-color: var(--color--primario);
        width: 92%;
        margin: auto;
        margin-top: 95px;
        color: var(--color--texto);
    }

    .mision{
        display: block;
        width: 98%;
        margin-bottom: 15px;
    }
    .vision{
        display: block;
        width: 98%;
        margin: auto;
    }

    .valores{
        margin: auto;
        width: 100%;
        color: var(--color--texto-alternativo);
        padding: 1.5% 0;
    }
 
    .valores-contenedor {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        
    }
    
    .valor_img {
        vertical-align: top;
        width: 80%;
        margin: auto;
        max-width: 250px;
        min-width: 150px;
    }
    
    .valor_texto{
        display: inline-block;
        width: 90%;
        margin: auto;
        text-align: justify;
    }

    .politicas_seccion {
        background-image: url(../IMG/politicas_mobil.jpg);
        background-size: cover;
    }
    
    .politicas{
        background-color: var(--color--primario);
        margin: auto;
        width: 92%;
        color: var(--color--texto);
    }

    .normas_seccion {
        background-image: url(../IMG/normas_mobil.jpg);
        background-size: cover;
        padding: 1.5% 0;
    }

    .normas{
        background-color: var(--color--primario);
        margin: auto;
        width: 92%;
        color: var(--color--texto);
    }

    .centrado_valor{
        display: none;
    }

/*************Fin HOME*************/

/*************SERVICIOS*************/
.objetivos_seccion {
    background-image: url(../IMG/normas_mobil.jpg);
    background-size: cover;
}

.objetivos{
    background-color: var(--color--primario);
    margin: auto;
    width: 92%;
    margin-top: 90px;
    color: var(--color--texto);
}

.normas_espec{
    background-color: var(--color--primario);
    margin: auto;
    width: 90%;
    color: var(--color--texto);
    margin-top: 1%;
    margin-bottom: 2%;
}

.proceso_pruebas{
    background-color: var(--color--primario);
    margin: auto;
    width: 95%;
    color: var(--color--texto);
}

.video_prueba{
    display: block;
    margin: 0 auto;
    padding: 1% 0;
    width:98%;
}

.tb_normas {
    margin: auto;
    width: 90%;
    background: rgb(87, 102, 146);
    margin-bottom: 1em;
    border-spacing: 0;
  }

/*************FIN SERVICIOS*************/

/*************INFORMACIO*************/
.normas_info_seccion {
    background-image: url(../IMG/informacion_mobil.jpg);
    background-size: cover;
}

.normas_info{
    background-color: var(--color--primario);
    margin: auto;
    width: 90%;
    color: var(--color--texto);
    margin-top: 90px;
}

.formatos{
    background-color: var(--color--primario);
    margin: auto;
    width: 90%;
    color: var(--color--texto);
    padding: 1.5% 0;
    margin-top: 1%;
    margin-bottom: 1%;
}

.formatos img{
    display: block;
    margin: auto;
    color: var(--color--texto);
    padding: 1.5% 0;
}
/*************FIN INFORMACIO*************/

/*************CONTACTO*************/

.contacto{
    background-color: var(--color--primario);
    margin: auto;
    margin-top: 10px;
    width: 90%;
    color: var(--color--texto);
}

.mapa{
    background-color: var(--color--primario);
    margin: auto;
    width: 98%;
    color: var(--color--texto);
    text-align: center;
}

#mapa_ubicacion{
    width: 90vw;
    height: 40vh;
    border: 0;
}

.contacto_form {
    background-image: url(../IMG/contacto.jpg);
    background-size: cover;
    padding-top: 100px;
    margin-bottom: 2%;
    padding-bottom: 50px;
}

.formulario{
    background: var(--color--primario);
    padding: 1%  3%;
    box-shadow: 0 0 15px rgba(18, 18, 129, 0.8);
    border-radius: 20px;
    text-align: center;
    width: 90%;
    margin: auto;
   
}

/*************FIN CONTACTO*************/

    table.tb_directorio,
	.tb_directorio thead,
	.tb_directorio tbody,
	.tb_directorio tr,
	.tb_directorio th,
	.tb_directorio td,
	.tb_directorio caption {
	  display: block;
	}
	
	table.tb_directorio {
	  border: none
	}
	
	.tb_directorio thead tr {
	  display: none;
	}
	
	.tb_directorio tbody tr {
	  margin: 1em 0;
	  border: 1px solid #020f13;
	}
	
	.tb_directorio td {
	  border: none;
	  border-bottom: 1px solid #dddddd;
	  position: relative;
	  text-align: center;
	}
	
	.tb_directorio tr td:last-child {
	  border-bottom: 1px double #dddddd;
	}
	
	.tb_directorio tr:last-child td:last-child {
	  border: none;
	}
	
	.tb_directorio td:before {
	  position: absolute;
	  top: 6px;
	  left: 6px;
	  width: 45%;
	  padding-right: 10px;
	  white-space: nowrap;
	  text-align: left;
	  font-weight: bold;
	}

/**************QUEJAS**************/
    .quejas_form {
        background-image: url(../IMG/contacto.jpg);
        background-size: cover;
        padding-top: 10px;
        margin-bottom: 2%;
        padding-bottom: 50px;
    }

    .quejas_form h2{
        text-align: center; 
        color: var(--color--texto);
    }

    .quejas_form p{
        color: white;
    }

    .quejas_form a{
        color: white;
    }
/**************FIN QUEJAS**************/   

}

