/* azzera i margini */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* @import url('https://fonts.googleapis.com/css2?family=Cardo&family=Gruppo&family=Roboto:wght@100;300;400;500&display=swap');
 */
.robotoFont {
    font-family: 'Roboto', sans-serif;
}

.gruppoFont {
    font-family: 'Gruppo', sans-serif;
}

.cardoFont {
    font-family: 'Cardo', serif;
}

/* setta i colori di default */
:root {
    --blackL: #181313;
    --colors_background: #ffffff;
    --colors_brand: #fe8903;
    --navEfooter: hsla(27, 67%, 41%, 0.767);
    /* SET MENU STANDARD */
    --menuSmartOver: #E5C37Cff;
    --menuSmart: rgba(241, 225, 191, 0.906);
    --link: #ffffff;
    --liniette: #000000;
    --testoMenuCell: rgb(28, 27, 27);
    --borderShadow: 10px 10px 70px -6px rgba(0, 0, 0, 0.64);
}

/* setta grafica del testo link senza sottolineatura */
a {
    text-decoration: none;
    color: inherit;
}

/* liste e menu senza pallini */
ul {
    list-style: none;
}

/* determinale il carattere dei font per il sito */
html {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

body {
    background: black;
}

/* line-height: 0;
    letter-spacing: 0;
    word-spacing: 0; */

/* azzerare e definire i valori base per i Form cosi da minificare 
la visione nei vari browser */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 1.1rem;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

textarea {
    overflow: auto;
}

p {
    font-size: 1.2rem;
}

/* determinare la base degli H1-H6 */
h1 {
    font-size: 2rem;
    line-height: 40px;
    font-weight: bold;
}

h2 {
    font-size: 1.70rem;
    line-height: 30px;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    line-height: 22px;
    font-weight: 700;

}

h4 {
    font-size: 1.3rem;
    line-height: 18px;
    font-weight: 600;
}

h5 {
    font-size: 0.80rem;
    line-height: 16px;
    font-weight: 600;
}

h6 {
    font-size: 0.50rem;
    line-height: 15px;
    font-weight: 500;
}

/* -------------------------------------------------------
*****************************************
 INIZIA SEZIONE PERSONALIZZATA PER SITO 
 ****************************************
 -------------------------------------------------------*/
.boxTitle {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 20px;
}

.center img {
    position: relative;
    text-align: center;
    max-width: 600px;
    width: 100%;
}


/* ---------------------------------------------------------
**************
SEZIONE FOOTER 
**************
---------------------------------------------------------- */