@font-face {
    font-family: 'Basetica Light';
    src: url('../assets/font/Basetica/Basetica_Uso_Web/Basetica-Light.woff') format('woff');
    font-style: light;
    font-weight: 300;
}

@font-face {
    font-family: 'Basetica LightItalic';
    src: url('../assets/font/Basetica/Basetica_Light_Italic.otf') format('opentype');
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: 'Basetica Medium';
    src: url('../assets/font/Basetica/Basetica_Medium.otf') format('opentype');
    font-style: medium;
    font-weight: 500;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
    text-transform: uppercase;
}

body {
    font-family: 'Basetica Light', sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
li { list-style: none; }

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] {
    -moz-appearance:textfield;
}   
/* input[type=date]::-webkit-inner-spin-button, 
input[type=date]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=date] {
    -moz-appearance:textfield;
} */

input[type=submit]{
    font-family: 'Basetica Light', sans-serif;
}

.contenedor {
    max-width: 150rem;
    margin: 0 auto;
    width: 90%;
}


.whatsapp-gv {
    display: block;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    background-color: #03BB00;
    background-image: url('../img/whatsapp.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    border-radius: 50%;
    cursor: pointer;
}