@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url(menu.css);




body {
    margin: 2;
    font-family: 'Open Sans', sans-serif;
    background-color:white;

 
}

body:before {
    content: "";
    width: 100%;
    min-height: 100vh;
    position:fixed;
   
   background: rgba(70,108,231,1);
        background: -moz-linear-gradient(top, rgba(70,108,231,1) 0%, rgba(29,65,226,0.31) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(70,108,231,1)), color-stop(100%, rgba(29,65,226,0.31)));
background: -webkit-linear-gradient(top, rgba(70,108,231,1) 0%, rgba(29,65,226,0.31) 100%);
background: -o-linear-gradient(top, rgba(70,108,231,1) 0%, rgba(29,65,226,0.31) 100%);
background: -ms-linear-gradient(top, rgba(70,108,231,1) 0%, rgba(29,65,226,0.31) 100%);
background: linear-gradient(to bottom, rgba(70,108,231,1) 0%, rgba(29,65,226,0.31) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#466ce7', endColorstr='#1d41e2', GradientType=0 );
     opacity: 0.9;
    z-index: -1;
}

header {
  width: 100%;
  height: auto;
  background: #fff;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

   
}


nav {
  text-align: center;
  width: 100%;
  height: auto;
  font-size:16px;
    
    align-content: center;
    vertical-align: middle;
}

/*.topnav {
  
  overflow: hidden;
  background-color: white;
    width: 100%;
    height: 90px;
  padding: auto;
    float: right;
      margin: 0;
     top: 0;
 
  z-index: 100;
   
}






.topnav a {
  float: left;
  Display: inline;
  color: #000;
  text-align: center;
  padding: 15px 22px;
  text-decoration: none;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
}

.active {
  background-color: #4CAF50;
  color: black;
}

.topnav .icon {
  display: none;
   
}


.dropdown {
   
  float: right;
  overflow: hidden; 
  background-color: white;
    
   
   
}

.dropdown .dropbtn {
  font-size: 15px;    
  border: none;
  outline: none;
  color: black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(135,206,235,0.2);
  
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: right;
      
 
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: white;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
*/

@media screen and (max-width: 1024px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
    
     
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
.contenedor {
    width: auto;
   
    margin: auto;
 
    
}

.grid-contenedor {
  display: grid;
  grid-template-columns: auto auto auto;
    padding: 10px;
    
}

.grid-contenedor > div {
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
  
}

header .contenedor { 
  display: table;
}

h1 {
    float: center;
    text-align: center;
    font-size: 40px;
}


section {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 25px;
    align-content: center;
    
    
}


#info {
    text-align: center;
}

#info .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-serv {
    margin: 20px;
    
}

.info-serv img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #000;
    
}

#bienvenidos {
    text-align: center;
   
   
    
   
}

footer .contenedor{
    
 
    position: fixed;
    left: 0px;
    width: 100%;
    height: auto;
    text-align: center;
    /*justify-content: center;
    align-content: center;*/
    bottom: 0px;
    background: white;
   
   
   
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 18px;
}


/*.copy {
    font-size: 20px;
}*/


label {
    /* Para asegurarse que todos los labels tienen el mismo tamaño y están alineados correctamente */
  display: inline-block;
  width: 100px;
  text-align: left;
    vertical-align: top;
 
}

.logo{
    float: left;
   margin-left: inherit;
}

form {
    /* Sólo para centrar el formulario a la página */
    
   
  max-width:600px;
 margin: auto;
    box-sizing: border-box;
    
    /* Para ver el borde del formulario */
  padding: 20px;
  border: 1px solid #000;
  border-radius: 1em;
    background-color: midnightblue;
    color: white;
 
  
}

form div + div {
  margin-top: 1em;
}

/*.btn {
    color: black;
    background-color: lightcyan;
    border: 2px solid #000;
    border-radius: 6px;
  
    color: black;
    padding: 16px 32px;
    text-align: center;
    display: inline;
    margin: 4px 2px;
    float: left;
    
    
}*/

input, textarea {
    /* Para asegurarse de que todos los campos de texto tienen las mismas propiedades de fuente
       Por defecto, las areas de texto tienen una fuente con monospace */
  font: 1em sans-serif;
    /* Para darle el mismo tamaño a todos los campos de texto */
  width: 300px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

    /* Para armonizar el look&feel del borde en los campos de texto */
  border: 1px solid #999;
}      

/*#columna1, #columna2, #columna3 {
	float:none;
	width:100%;
}
*/


/*juan qlo*/

              .quienes-somos {
                  border-style: solid;
                  border-width: 1px;
                  border-color: #000000;
                  background-color: midnightblue;
                  border-radius: 1em;
                  font-size: 20px;
                  color: white;
                  text-align:justify;
                  padding:20px;
 max-width: 300px;
                  
              }

.quienes-somos p{
    margin:10px;
}


.boton-enlaces{
    color:white;
    font-weight:bold;
    text-align: center;
    justify-content: center;
    vertical-align: middle;
    background-color: midnightblue;
    border: 1px solid black;
    border-radius: 1em;
    padding-top: 15px;
    padding-bottom: 15px;
    min-width:235px;
    margin-bottom: 20px;
    
    
}

.hoverdiv:hover {
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
     transition: all 0.5s;
    background:#222BB5;
    
}


.tabla-form label, .tabla-form input, .tabla-form textarea{
    margin:10px; 
    vertical-align:top;
    font-weight:bold;
    
}



.contenedor-index{
    
                 border-style: solid;
                  border-width: 1px;
                  border-color: #000000;
                  background-color: midnightblue;
                  border-radius: 1em;
                  font-size: 20px;
                  color: white;
                  margin-top:40px;
                  padding:20px;
    text-align: justify;
    max-width: 300px;
                  

              }

.contenedor-index p{
    margin:20px;
}

.contenedor-clientes {
     border-style: solid;
                  border-width: 1px;
                  border-color: #000000;
                  background-color: midnightblue;
                  border-radius: 1em;
                  font-size: 20px;
                  color: white;
                  margin-top:40px;
                  padding:20px;
                  text-align: center;
                margin-bottom: 150px;
   max-width: 300px;

}

.contenedor-clientes li {
    margin-left: -10px;
    text-align: left;
    margin-bottom:10px;
   
 
}

.contenedor-clientes p{
    margin:20px;
}

.contenedor-misiones {
     color:white;
   font-size: 20px;
    text-align: center;
    justify-content: left;
    vertical-align: middle;
    background-color: midnightblue;
    border-color: #000000;
    border: 1px solid black;
    border-radius: 1em;
  margin-top: 40px;
   
  
    padding-right: 15px;
    max-width:300px;
    min-height:400px;
     padding:20px;

}

.contenedor-valores {
       border-style: solid;
                  border-width: 1px;
                  border-color: #000000;
                  background-color: midnightblue;
                  border-radius: 1em;
                  font-size: 20px;
                  color: white;
                  margin-top:40px;
                  padding:20px;
                  text-align: left;
                margin-bottom: 20px;
                max-width: 300px;
                min-height: inherit;

}

.contenedor-valores li{
   margin-left: -10px;
    text-align: left;
    margin-bottom:10px;
    font-size:20px;
   
 
}

.contenedor-servicios li{
    list-style-position: inside;
   margin-left: -35px;
    text-align: center;
    margin-bottom:20px;
    font-size:15px;
   
 
}



.contenedor-servicios{
    color:white;
    font-weight:bold;
    text-align: center;
    justify-content: left;
    vertical-align: middle;
    background-color: midnightblue;
    border: 1px solid black;
    border-radius: 1em;
    padding-top: 30px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    max-width:300px;
    min-height:400px;

    
}



/* termina juan qlo*/


/* Diseño para tabletas */ 
@media screen and (min-width: 800px) {
	#columna1, #columna2 {
		float:left;
		width:50%;
	}
}

/* Diseño para PC */ 
@media screen and (min-width: 1025px) {
	#columna1, #columna2, #columna3 {
	float:left;
	width:33%;
}


@media (min-width:1024px) {
    .quienes-somos {
        width: 1000px;
    }
    .container {
        width: 1000px;
    }
    .contenedor-clientes {
        width: 1000px;
    }
}

@media screen and (min-width:800px) {
	body {
		font-size:100%;
		/* ampliamos los textos si mide más de 800px */
	}
    
    .marginsm{
        margin-bottom:10px;
    }
    
    
@media screen and (min-width:480px){    
    form {
        width: 100%;
    }
    
}

