@charset "utf-8";
/* CSS Document */

.input-group-home {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}

.navbar-brand-logo {
    width: 100%;
    min-width: 7.5rem;
    max-width: 13.5rem;
}

.bg-bikestore{
    background: #ebf2ff;
}

.btn-whatsapp {
    background-color: #25d366 !important;
    color: #ffffff !important;
}

.texto_home {
   height: 17vh;
}


@media (min-width: 768px){ /* md */
    .texto_home {
       height: 22vh;
    }
}

@media (min-width: 992px){ /* md */
    .texto_home {
       height: 30vh;
    }
}

/* Estilos generales para dispositivos móviles */
@media only screen and (max-width: 992px) {
  /* Estilos que se aplicarán solo en dispositivos con ancho máximo de 767px (móviles) */
  
  /* Agrega estilos específicos para dispositivos en posición horizontal (paisaje) */
  @media only screen and (orientation: landscape) {
    /* Estilos que se aplicarán solo cuando el dispositivo esté en posición horizontal */
    /* Por ejemplo, puedes cambiar el color de fondo o el tamaño del texto */
    .texto_home {
       height: 45vh;
    }
  }
}



