/*
Theme Name: Betheme
Theme URI: https://themes.muffingroup.com/betheme/
Author: Muffin group
Author URI: https://muffingroup.com/
Description: The biggest WordPress Theme ever
License: Themeforest Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: betheme
Version: 22.0

All css files are placed in /css/ folder
*/
/* Modificar el tamaño del texto del menú en dispositivos móviles */
@media screen and (max-width: 768px) {
    .mobile_menu ul li a {
        font-size: 16px; /* Tamaño de fuente deseado */
    }
}

/* Modificar el color de fondo del menú en dispositivos móviles */
@media screen and (max-width: 768px) {
    .mobile_menu {
        background-color: #333; /* Color de fondo deseado */
    }
}

/* Modificar el color del texto del menú en dispositivos móviles */
@media screen and (max-width: 768px) {
    .mobile_menu ul li a {
        color: #fff; /* Color de texto deseado */
    }
}