@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300&display=swap');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    background: radial-gradient(circle, rgba(9,9,121,0.5158438375350141) 8%, rgba(0,212,255,1) 100%);
}

html {
    scroll-behavior: smooth;
    font-family: Quicksand, sans-serif;
}


/* inizio cima */

#header {
    margin: 0 auto;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 3px 3px 10px 5px;
    position:fixed;
    z-index: 3; 
}


#contenuto_header {
    width: 1120px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

#nav a {
    padding-left: 160px;
    
}

#contenuto_header a {
    text-decoration: none;
    color: blue;
}

#contenuto_header a:hover {
    color: aqua;
}


/* fine cima */




/* sezione centrale */
#lavori {
    height: 600px;
    margin: 0 auto;
    height: 100vh;
}

#riquadri {
    margin: 0 auto;
    width: 1120px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.riquadro {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 5px blue;
    transition: transform 1s ease-in-out;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.riquadro:hover {
    transform:translateY(-10px);
}


.riquadro a {
    text-decoration: none;
    text-align: center;
}



.riquadro p {
    color: blue;
}

/* fine sezione centrale */


/* chi sono */

#chi_sono {
    height: 100vh;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(9,9,121,0.5158438375350141) 8%, rgba(0,212,255,1) 100%);
}

#contenuto_chi_sono {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 100px;
}

#contenuto_chi_sono h2 {
    flex-basis: 100%;
}

#chi_sono h2 {
    text-align: center;
    padding-top: 200px;
    color: #fff;
}

#contenuto_chi_sono {
    color: #fff;
}

#descrizione {
    text-align: center;
    padding-top: 30px;
}

#img {
    padding-left: 200px;
    padding-top: 30px;
    width: 300px;
    height: 200px;
}


/* fine chi sono */


/* contatti */

#contatti{
    margin: 0 auto;
    background: radial-gradient(circle, rgba(9,9,121,0.5158438375350141) 8%, rgba(0,212,255,1) 100%);
    margin-top: 5px;
    height: 100vh;
}


#contenuto_contatti {
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


#contenuto_contatti a {
    text-decoration: none;
    color: #fff;
}

#contenuto_contatti a:hover {
    color: aqua;
}




@media (max-width: 1200px) {
    #contenuto_header {
        margin: 0 auto;
    }

    #nav {
        padding-right: 100px;
    }

   
    .riquadro {
        width: 200px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


@media (max-width:1100px){

    #lavori {
        display: flex;
        max-width: 900px;
    }


   #riquadri {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
   }

    .riquadro {
        width: 300px;
        height: 100px;
    }

    #logo {
        position: absolute;
        left: 45%;
    }

    #nav {
        display: none;
    }

    #contatti {
        height: 80px;
    }
}


@media (max-width:768px) {
    #lavori {
        display: flex;
        max-width: 500px;
    }


   #riquadri {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
   }

    .riquadro {
        width: 130 px;
        height: 80px;
    }

    #logo {
        position: absolute;
        left: 43%;
    }

    #nav {
        display: none;
    }

    #contatti {
        height: 80px;
    }
}

