/**
 * Main CSS file
 * Imports and global styles
 * 
 * @package FachuDevBase
 */

/* Main theme styles go here */
body {
    font-family: inherit;
}

/* Component imports would go here */
@import url("components/sliders.css");

/* Responsive title styles */
.tl-title-mobile {
    display: none;
}

@media (max-width: 767px) {
    .tl-title-desktop {
        display: none;
    }
    
    .tl-title-mobile {
        display: block;
    }
}