@charset "utf-8";

/* ==================================================================================== */
/* CSS Document sviluppato da INSTANT WEBSITES - agosto 2019 ========================== */
/* www.instantwebsites.it - info@instantwebsites.it =================================== */
/* per il sito scaglia.eu modalità Under construction ================================= */
/* ==================================================================================== */

/* ==================================================================================== */

	/* http://meyerweb.com/eric/tools/css/reset/ 
   		v2.0 | 20110126
   		License: none (public domain)
	*/
	a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* ==================================================================================== */

    /* REGOLE GENERALI */
    /* =============== */

    html {
        /* Fix per Apple devices */
        letter-spacing: normal;
        /* http://stackoverflow.com/questions/5082632/same-font-except-its-weight-seems-different-on-different-browsers */
        -webkit-font-smoothing: antialiased;
    }
	
	body { 
        background: #FFF;
        font-family: 'Open Sans', sans-serif;
    }

/* ==================================================================================== */

    /* ELEMENTI DELLA PAGINA */
    /* ===================== */

    .wrapper {
        width: 900px;
        margin: 40px auto;
    }

    .intestazione {
        text-align: center;
        padding: 20px 0;
    }

    .columnContainer {
        display: table;
        width: 100%;
    }

    .columnContainer .colonna1 {
        width: 220px;
        display: table-cell;
    }

    .columnContainer .colonna2 {
        width: auto;
        display: table-cell;
    }

    .columnContainer .colonna3 {
        width: 220px;
        display: table-cell;
    }

    .colonna1 .widget,
    .colonna3 .widget {
        margin: 0 auto;
        display: block;
    }
    .colonna1 .widget {
        width: 190px;
    }
    .colonna3 .widget {
        width: 140px;
    }

/* ==================================================================================== */

    /* CONTENUTI */
    /* ========= */

    h1 {
        font-size: 58px;
        color: #004c9a;
        text-align: center;
        padding: 0 20px;
    }

/* ==================================================================================== */

    /* MEDIA QUERY */
    /* =========== */

    @media (max-width:899px) {
        
        .wrapper {
            width: auto;
            margin: 10px auto;
        }
    
        .columnContainer {
            display: block;
        }

        .columnContainer .colonna1,
        .columnContainer .colonna2,
        .columnContainer .colonna3 {
            width: 100%;
            display: block;
            text-align: center!important;
            padding: 10px 0;
        }
        
        h1 {
            font-size: 44px;
        }
        
    }

/* ==================================================================================== */
/* ==================================================================================== */