/*-------------------BOTONES GENERALES-------------------*/

.botones-generales{
  width: 1000px;
  height: 100px;
  margin: 50px auto 50px;
  display: flex;
}

.boton-general{
 display: flex;
 background:#004BA0;
 height: 100%;
 width: 25%;
 align-items: center;
 justify-content: center;
 color:white;
 text-decoration: none;
 border-radius: 10px;
 margin: 10px;
 font-size: 13px;
 text-align: center;
}

.boton-general:hover{
  background:#093e7b;
}




/*-------------------BOTONES GENERALES-------------------*/






@media only screen and (max-width: 1000px) {


  .botones-generales{
    width: 95%;
    height: 60px;
    margin: 50px auto 50px;
  }
  
  .boton-general{
   display: flex;
   height: 100%;
   width: 100%;
  }

}/*1000PX*/



/*Tablet*/
@media only screen and (max-width: 768px) {

  .botones-generales{
    height: auto;
    margin: 50px auto 50px;
    flex-direction: column;
  }

  .boton-general{
    width: 100%;
    height: 60px;
   }


   

}/*fin tablet*/