/*
    Theme Name: Ganfer Group theme.
    Theme URI: 
    Author: Josué Antonio Contreras Guzmán equipo Medra Marketing.
    Author URI: 
    Description: Theme Diseñado para Ganfer Group por Medra. 
    Version: 1.0.0.
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: empresas, industria, agrícola, comercial, empresarial, servicios.
    Text Domain: 
*/

/*Estilos Globales */
:root {

    /** Fuentes **/
    --fuente-principal: 'Sklow', sans-serif;
    --fuente-principal-bold: 'Sklow-Bold', sans-serif;

    /** Colores **/
    --color-bigaro: #6c7bbe;
    --color-morado: #4c4baa;
    --color-azul-rey: #182a96;
    --color-gris-oscuro: #575756;
    --color-gris-claro: #ebebeb;
    --color-negro: black;
    --color-blanco: white;
}

@font-face {
    font-family: 'Sklow';
    src: url('font/Sklow.otf');
}

@font-face {
    font-family: 'Sklow-Bold';
    src: url('font/Sklow-Bold.otf');
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
    /* 10px = 1rem*/
}

*,
*:before,
*:after {
    box-sizing: inherit;

}

/** globales **/
p {
    margin: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

hr {
    border: 1px solid var(--gris-claro);
}

.contenedor {
    width: min(95%, 120rem);
    margin: 0 auto;
}

br {
    display: none;
}

@media(min-width: 970px) {
    br {
        display: block;
    }
}

body {
    scrollbar-color: var(--color-morado) var(--color-bigaro) !important;
    scrollbar-width: auto;
}