<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =========================================================== DESKTOP ================================================== */
/* GALLERY ---------------------------------------------*/
h2{
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 400;
    text-transform: uppercase;
    font-weight: 300;
}
.gallery{
    height: 100vh;
    overflow: hidden;
}
.gallery .inner{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-flow: column;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    padding: calc(20px + 5vw);
}
.gallery .inner .titolo{
    font-size: calc(20px + 1.1vw);
    color: white;
    margin-bottom: 0;
    font-weight: 300;
    max-width: 1000px;
}
.gallery .inner .sottotitolo {
    font-size: calc(14px + .1vw);
    color: white;
    font-weight: 300;
    max-width: 700px;
    line-height: 1.5;
}
.gallery .inner .btn{
    margin: 20px 0 0 0;
    transition: .3s;
    font-weight: 300;
}
.splide__track--draggable{
    height: 100%;
}
.splide__slide{
    height: 100%;
}
.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* MAIN ----------------------------------------------------------------------- */
.container-home .testo{
   flex: 1 1 50%;
   padding: 2rem;
}
.container-home .testo h2{
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    text-transform: uppercase;
}
.container-home .testo h2:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgb(129, 129, 129) 0%, rgba(80,80,80,0) 100%);
}
.container-home .testo p {
    font-size: 15px;
    color: #505050;
}
.container-home .foto {
    flex: 1 1 50%;
    border-radius: 4px;
    overflow: hidden;
}
.container-home .btn{
    margin: 0;
}
.vantaggi {
    gap: 3vw;
    max-width: 1600px;
    margin: auto;
}

.vantaggi i {
    font-size: 6rem;
    color: #333333;
}

.vantaggio {
    flex: 1 1 280px;
}

.vantaggio h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
}

.vantaggio p {
    margin-bottom: 0;
    font-size: .9rem;
    color: #797979;
}
.container-servizi{
    margin-bottom: 50px;
}
.container-servizi  h2{
    font-size: 50px;
    margin: 0;
    flex-grow: 1;
}
.container-servizi  p{
    font-size: 18px;
    margin: 0;
    max-width: 800px;
}
.grid-home{
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 20px;
    margin-top: 20px;
}
.grid-home .item{
    background-color: white;
    border: 1px solid #c0c0c0;
    display: flex;
    flex-flow: column;
}
.grid-home .item h3{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}
.grid-home .item p{
    font-size: 16px;
    flex-grow: 1;
}
.grid-home .item .btn{
    max-width: 100%;
    width: 100%;
}
.servizio{
    flex: 0 1 22%;
}
.servizio:hover img{
    opacity: .8;
    transform: scale(1.2);
}
.news{
    flex: 1 1 auto;
    min-width: 320px;
    max-width: 100%;
}
.news .foto{
    position: relative;
}
.news .categoria{
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main);
    color:white;
    padding: 5px 10px;
    font-size: .8rem;
}
.news h3{
    margin-top: 0;
}
.news p{
    color: #333333;
    margin-top: 0;
    font-size: .9rem;
}
.news:hover img{
    opacity: .7;
}
.news:hover h3{
    color: var(--main);
}
.news .data{
    font-size: .8rem;
    margin-top: 1rem;
    color: gray;
}
.servizi{
    margin: 2rem 0;
    gap: 20px;
    transition: .5s;
}
.servizi *, .news *{
    transition: .5s;
}
.servizi img{
    aspect-ratio: 16/10;
}
.foto{
    overflow: hidden;
}
.servizi h3{
    color: var(--secondary);
}
.servizio{
    flex: 0 1 22%;
}
.servizio:hover img{
    opacity: .8;
    transform: scale(1.2);
}
.titolo-news{
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}
.paragrafo-news{
    font-size: 18px;
}
/* Sezioni a scorrimento orizzontale */
.container-scroll{
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scroll-behavior: smooth;
    position: relative;
    padding: 10px 0;
}
.container-scroll::-webkit-scrollbar{
    display: none;
}
.box-scroll {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.box-scroll.w100{
    min-width: 100%;
}
.container-scroll .stars{
    color: goldenrod;
    margin-bottom: 1rem;
}
.container-scroll .stars i{
    font-size: calc(2rem + .3vw);
}
.container-scroll quote{
    font-size: calc(1rem + .3vw);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}
.container-scroll p{
    margin-bottom: 0;
}
.btn-scroll {
    position: absolute;
    background-color: white;
    color: var(--secondary);
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: .5s;
}
.btn-scroll:hover{
    background-color: var(--main);
    color: white;
    transition: .5s;
}
.btn-scroll i{
    font-size: 2rem;
    font-weight: bold;
}
.btn-scroll.left{
    left: -.8rem;
}
.btn-scroll.right{
    right: -.8rem;
}
.container-aziende{
    max-width: 1200px;
}
section .grid-aziende {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

section .grid-aziende img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

section .grid-aziende .testo.txt-left {
    padding: 2rem 2rem 2rem 0;
}

section .grid-aziende .testo.txt-right {
    padding: 2rem 0 2rem 2rem;
}

section .grid-aziende .testo a {
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 300;
    font-size: 1rem;
    transition: .3s;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}


section .grid-aziende h3 {
    font-size: 1.7rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
    position: relative;
    margin-bottom: 20px;
    text-transform: uppercase;
}
section .grid-aziende h3:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgb(129, 129, 129) 0%, rgba(80,80,80,0) 100%);
}

section .grid-aziende p {
    line-height: 1.5;
    font-weight: 400;
    color: #505050;
}
/* ======================================================== TABLET LANDSCAPE ================================================== */
@media only screen and (min-width: 768px) and (max-width: 1450px) {
    .grid-home{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================== TABLET PORTRAIT ================================================== */
@media only screen and (min-width: 768px) and (max-width: 1019px) {
    .container-home{
        flex-wrap: wrap;
    }
    .grid-home{
        grid-template-columns: repeat(2, 1fr);
    }
    .container-servizi{
        flex-wrap: wrap;
    }
}

/* =========================================================== MOBILE ================================================== */
@media only screen and (max-width: 767px) {
    .gallery {
        height: 80vh;
        overflow: hidden;
    }
    .gallery .inner .titolo{
        text-align: center;
    }
    .gallery .inner .sottotitolo {
        display: none;
    }
    .gallery .inner .btn{
        width: 100%;
        background-color: transparent;
    }
    .container-home{
        flex-wrap: wrap;
    }
    .container-home .testo{
        padding: 0;
    }
    .grid-home{
        grid-template-columns: repeat(1, 1fr);
    }
    .container-servizi{
        flex-wrap: wrap;
    }
    .container-home .btn{
        max-width: 100%;
    }
    .container-home .testo h2, .container-servizi h2, .titolo-news{
        font-size: 30px;
    }
    .container-home .testo p, .container-servizi p, .paragrafo-news{
        font-size: 16px;
    }
        section .grid-aziende {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }
    
        section .grid-aziende .item1 {
            order: 2;
        }
    
        section .grid-aziende .item2 {
            order: 1;
        }
    
        section .grid-aziende .item3 {
            order: 3;
        }
    
        section .grid-aziende .item4 {
            order: 4;
        }
    
        section .grid-aziende .item5 {
            order: 6;
        }

        section .grid-aziende .item6 {
            order: 5;
        }

        section .grid-aziende .item7 {
            order: 7;
        }

        section .grid-aziende .item8 {
            order: 8;
        }
    
        section .grid-aziende .testo {
            height: fit-content;
        }
    
        section .grid-aziende .testo a {
            max-width: 100%;
        }
    
        section .grid-aziende .testo.txt-right,
        section .grid-aziende .testo.txt-left {
            padding: 1rem 0 2rem 0;
        }
}</pre></body></html>