/* TEXTO PRINCIPAL del inicio */
p.textoCentral{
     font-family: 'Open Sans', sans-serif;
     font-size: 4rem;
     margin-top: 30px;
     font-weight: bold;
}
/* Imagen 1 izquierda */
div.imgNegocioUno{
     background-image: url("../imagenes/desayuno.jpg");
     height: 400px;
     width: 100%;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     margin-top: 200px;
}
/* Imagen 2 derechas */
div.imgNegocioDos{
     background-image: url("../imagenes/tlaxcala.jpg");
     height: 400px;
     width: 100%;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     margin-top: 350px;
}
/* link que lleva a negocios */
p.textoLinkNegocios{
     font-size: 1.5rem;
     color: #EAC102;
     margin-bottom: 50px;
}
 /* boton link a busquedas */
a.linkNegocios{
     font-size: 1.4rem;
     background-color: red;
     color: white;
     padding: 10px;
     margin-top: 20px;
     text-decoration: none;
     transition: all .5s ease;
     border-radius: 5px;
     
}
a.linkNegocios:hover{
     background-color: white;
     border: 1px solid #ED1C24;
     color: red;
}
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1201px) { 
     /* TEXTO PRINCIPAL del inicio */
     p.textoCentral{
          font-size: 2rem;
          margin-top: 0;
     }
     /* Imagen 1 izquierda */
     div.imgNegocioUno{
          height: 350px;
          background-position: 20%;
          margin-top: 100px;
     }
     /* Imagen 2 derechas */
     div.imgNegocioDos{
          height: 350px;
          width: 100%;
          background-position: right;
          margin-top: 250px;
     }
     /* link que lleva a negocios */
     p.textoLinkNegocios{
          font-size: 1.2rem;
     }
}
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
      /* Imagen 1 izquierda */
      div.imgNegocioUno{
          margin-top: 50px;
     }
     div.contendorInformacionCentral{
          margin-top: 50px;
     }
     /* Imagen 2 derechas */
     div.imgNegocioDos{
          margin-top: 80px;
     }

}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 768.98px) { 
     /* Imagen 1 izquierda */
     div.imgNegocioUno{
          height: 300px;
          margin-top: 50px;
     }
     /* Imagen 2 derechas */
     div.imgNegocioDos{
          height: 300px;
          margin-top: 0px;
     }
     /* //contenedor de informacion central */
     div.contendorInformacionCentral{
          margin: 50px 0;
     }     
}