html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

h1 {
  font-weight: bold;
}

h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}


/* IMPEDISCE LA SELEZIONE DEL TESTO 
/*
* {
    user-select: none;
}

    *::selection {
        background: none;
    }

    *::-moz-selection {
        background: none;
    }
*/

/* NAVBAR */
.bg-dark {
    background-color: #000 !important;
}


/* CROSS LINE */
.cross-line {
    height: 20px;
    background-image: url('../images/cross-line.webp');
    background-repeat: repeat-x;
    color: white;
}


/* HERO */
.hero {
    position: relative;
    width: auto;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}  

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    margin: 0.625rem;
}

.hero-title{
    font-size: 3em;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 2em;
}


/* HOME PAGE */
.div-servizio-ext {
    background-color: #ccc;
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 30px;
}

.div-servizio-int {
    background-color: #ff0000;
    padding: 5px;
    color: white;
    text-align: center;
    margin-top: 50px;
}

.div-area-ext {
    background-color: #ccc;
    background-size: cover;
    background-position: center center;
    padding-top: 250px;
    padding-bottom: 30px;
}

.div-area-int {
    background-color: #ffcc00;
    padding: 5px;
    color: black;
    text-align: center;
    width: 70%;
    margin-left: 15%;
}


/* COLONNA DX */
.div-indirizzi-dx {
    text-align: center;
    font-size: 1.5em;
    padding: 10px;
    background: #ffcc00;
}

.div-indirizzi-dx > a {
    color: red;
}


/* FORM */
label {
    margin-top: 20px;
}


/* FOOTER */
    footer {
    color: #ccc;
    background: #171717;
    padding: 20px;
}

.footer-link {
    color: #ccc;
}

    .footer-link:hover {
        color: #ccc;
    }


/* COOKIE ALERT */
.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 46px 20px 0 20px;
    margin: 0 !important;
    z-index: 999;
    color: #333;
    background: #31e3ff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 500ms ease-out;
}

    .cookiealert.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
        transition-delay: 1000ms;
    }

    .cookiealert a {
        color: #333;
        text-decoration: underline
    }

        .cookiealert a:hover {
            color: #0000ff;
            text-decoration: underline
        }

    .cookiealert .acceptcookies {
        margin-left: 10px;
        vertical-align: baseline;
    }


/* TASK */

label {
    margin-top: 20px;
}


.status1 {
    color: white;
    text-decoration: none;
}

    .status1:hover {
        color: white;
        text-decoration: none;
    }

.status2 {
    color: black;
    text-decoration: none;
}

    .status2:hover {
        color: black;
        text-decoration: none;
    }

.status3 {
    color: white;
    text-decoration: none;
}

    .status3:hover {
        color: white;
        text-decoration: none;
    }

.status4 {
    color: white;
    text-decoration: none;
}

    .status4:hover {
        color: white;
        text-decoration: none;
    }






