* {
 margin: 0px;   /*recomendado hacer siempre*/
 padding: 0px;
 font-family: Arial, Helvetica, sans-serif ;  /*estos son para PC MAC y Linux*/
 font-weight: normal;
	}

.contenedorG{
      background-color: white;  /*dejar en White*/
      height:90px;
      width:100%;

      top:0px;  /*se debe poner top para q sea visible con fixed*/
      box-shadow: 0px 4px 4px #909090; /*hace la sombra debajo del DIV (izq-der) (arriba-abajo)(radio)*/
      z-index: 1;   /* hace q se ponga  encima */
  }

  #logoAut{
     width:380px;
 }

  .contd2{
      width: 86%;
      height: 90px;
      margin: auto;
      display: flex;
      justify-content: space-between;  /*desplazar a los extremos*/
      align-items: center;    /*sin esto no se centra en vertical y la img se alarga*/
 }


.contd_telf1{
   color: #404040;
   margin-right: 10px;
}

.logo_cel{
   display:flex;
   white-space: nowrap; /*Esto hace q no se partan en 2 lineas un texto cuando se encoje el contenedor*/
      }

   .logo_cel p{padding-top: 5px;}

	.logo_cel img{
			margin-left: 25px;
			margin-right: 5px;
			height:25px;
		}

	.logo_correo{
			display:flex;
			justify-content: flex-end;  /*es para alinear cuando tienes varios items img y texto x ejemplo*/
			margin-top: 5px;
		}

	.logo_correo img{
			height:15px;
			margin-right: 5px;
			margin-top: 1px;
		}

.menuI{
  margin-bottom: 300px;
  }

.menuI{
  margin-top: 30px;
	width:260px;
	margin-left: 7%;
   text-align: center;
	}

.menuS a{
   border-radius: 5px;
   width:260px;
   text-align: center;
	display:block;
	text-decoration: none;   /*quita el subrayado */
	font-size: 18px;
	margin-top: 5px;
  margin-bottom: 20px;
	padding-top: 11px;
	padding-bottom: 11px;
	background-color: rgb(50,170,230);  /*color de Automasis*/
	color:white;
   box-shadow: 0px 3px 2px #606060;/*hace la sombra debajo (izq-der) (arriba-abajo)(radio)*/
}

#bot1:hover{background-color: #328DC8;}
#bot2:hover{background-color: #328DC8;}

#bot1:focus{box-shadow: 0px 1px 1px #606060; background-color: #454545;}
#bot2:focus{box-shadow: 0px 1px 1px #606060; background-color: #454545;}

#letpro{
   font-size:19px; color: #454545; margin-top: 8px; margin-bottom:8px;
}


  

footer{
      /* height:110px; */
      background-color: rgb(10,150,200);  /*50,170,230 color de Automasis*/
      display: flex;
      justify-content: center;
    }

   
   #copir{
      text-align: center;
      font-size: 11px;
      margin: 20px;
   }

    #whatsapp img{
      width:80px;
      position:fixed; /*este es posicion fija, no se mueve de la pantalla*/
      left:8px;   /*se puede poner en px o %*/
      top:70%;  /*se debe poner top para q sea visible con fixed*/
      }




@media(max-width: 750px){  /*esto es responsive para moviles*/
    

         #logoAut{ width:350px;}   /* tamaño normal */
       
        
         .contenedorG {position:static;} /*deja de ser fijo*/



   }
