/* ALL */

/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

.fonts-name {
    font-family: "Titillium Web", serif;
    font-weight: bold;
    font-size: 25px;
    font-style: normal;
}

.fonts-value {
    font-family: "Titillium Web", serif;
    font-size: 15px;
}

/* COLOR */

.blue-color {
    background-color: #0166cc;
}

/* BODY */

body {
    font-family: "Titillium Web", serif;
    background-color: #F5F7FA;
}

/* HEADER */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}

/* MAIN */

section {
    padding-top: 100px;
    scroll-margin-top: 100px;
}

/* BUTTON SCROLL TOP */

#scrollToTop {
    z-index: 1000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #0166cc;
    color: white;
    border: none;
    transition: all 0.5s ease-in-out;
}

#scrollToTop:hover {
    background-color: #ffffff;
    color: #0166cc;
}

#scrollToTop.above-footer {
    background-color: #ffffff;
    color: #0166cc;
}

#scrollToTop.above-footer:hover {
    background-color: #0166cc;
    color: #ffffff;
}

/* BUTTONS */

.btn-primary {
    background-color: #0166cc;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #0166cc;
}

.btn-primary:active {
    background-color: #0166cc !important;
    color: #ffffff;
}

.btn-outline-light {
    background-color: #ffffff;
    color: #0166cc;
    transition: all 0.3s ease-in-out;
}

.btn-outline-light:hover {
    background-color: #0166cc;
    color: #ffffff;
}

.btn-outline-light:active {
    background-color: #ffffff !important;
    color: #0166cc;
}

/* ICON */

i {
    font-size: 20px;
}

/* Icone per incidenti risolti e in corso */
/*.bi-incidents-success {*/
/*    color: green;*/
/*    font-size: 50px;*/
/*}*/

/*.bi-incidents-warning {*/
/*    color: orange;*/
/*    font-size: 50px;*/
/*}*/

/* NAVIGATION */

.navs {
    font-family: "Titillium Web", serif;
    font-size: 15px;
    font-weight: bold;
    height: 40px;
    background-color: #ffffff;
}

.item-navs {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000000;
    border: solid 3px #F5F7FA;
    transition: all 0.3s ease;
}

.item-navs:hover {
    background-color: #0166cc;
    color: #ffffff;
    cursor: pointer;
}


/* FOOTER */



