*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.clearer{
    clear: both;
}
img{
    border: none;
    height: auto;
    max-width: 100%;
}

*:focus{
    outline: none;
}

body{
    background-color: #fff;
    font-family: Segoe UI , sans-serif;
}

header,
nav,
article,
aside,
section,
footer,
main,
figure,
figcaption{
    display: block;
}

.clearfix::before,
.clearfix::after{
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix::after{
    clear: both;
}

.content {
    width: 1160px;
    margin: 0 auto;
}

.col-1{
    float: left;
    width: 8.33333%;
}

.col-2{
    float: left;
    width: 16.66666%;
}

.col-3{
    float: left;
    width: 25%;
}

.col-4{
    float: left;
    width: 33.33333%;
}

.col-6{
    float: left;
    width: 50%;
}

.col-8{
    float: left;
    width: 66.66666%;
}

.col-10{
    float: left;
    width: 83.33333%;
}

.divider{
    padding: 20px 0;
}

.spacer{
    padding: 70px 0;
}

.responsive,
.responsive img{
    height: auto;
    width: 100%;
}

.center{
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a{
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
/** Global style**/

.header{
    width: 100%;
    height: 118px;
    background: url("../img/sfondo_header2020.jpg");
    padding-top: 10px;
}
.navbar{
    display: flex;
    justify-content: space-between;
}
.nav{
    list-style: none;
}
.nav li{
    font-size: 15px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    margin-left: 25px;
    display: inline;
    line-height: 110px;
}
.nav a{
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}
.nav a:hover,
.current-menu-item >a {
    color: #ea5b0c;
}

/** Burger Button **/
.navbar1{
    float: right;
    cursor: pointer;
    margin-top: 38px;
    margin-right: 15px;
    display: none;
    transition: 0.3s;
}
.icon-bar{
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px;
    background-color: white;

}

.titolo{
    background: #656364;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
}

.taitol h1{
    color: white;
    font-size: 45px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #ea5b0c;
    margin-top: 30px;
}

/*  This is for styling the main container that holds everything */
#container {
    height: 100vh;
    width: 100%;
    position: relative;
    background: #fff;
}

/* This styles the aside container */
#aSide {
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/* This styles the 3D object inserted in the aside container */
#aSide model-viewer {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

/* Solo da visualizzare su dispositivi mobili */
.damobile{
    display: none;
}

/* footer */

.footer{
    background: #282423;
    padding: 20px;
    margin-top: 20px;
}
.footer p{
    color: #ffffff;
    opacity: 50%;
    text-transform: uppercase;
}
h2{
    color: #b8b8b8;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}
h3{
    color: #b8b8b8;
    font-weight: 400;
    font-size: 32px;
    text-transform: uppercase;
}


.bottoni{
    display: flex;
}

.buttom{
    margin-top: 20px;
    margin-left: 10px;
}
.buttom a{
    text-decoration: none;
    color: white;
    width: 260px;
    padding: 10px;
    background: #b8b8b8;
    border-radius: 15px;
    transition: all 0.3s;
}

.buttom a:hover {
    text-decoration: none;
    color: white;
    width: 260px;
    padding: 10px;
    background: #ea5b0c;
    border-radius: 35px;
}

/**Desktop, IPad Pro**/
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
    .content{
        margin: 0 2%;
        width: 96%;
    }
}

/** Display 12", IPad Pro Portrait, Ipad landscape **/
@media only screen and (max-width: 1024px){
    .content{
        margin: 0 2%;
        width: 96%;
    }
}

/** Display 5.5", IPad Portait, IPhone 6,6s,7,8,X,Xs,11, SE2 portrait and lendscape**/
@media only screen and (max-width: 768px){
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-6,
    .col-8,
    .col-10{
        float: none;
        width: 100%;
    }
    /* testo */
    h2{
        color: #b8b8b8;
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
    }
    h3{
        color: #b8b8b8;
        font-weight: 400;
        font-size: 28px;
        text-transform: uppercase;
    }
    h4{
        color: #ffffff;
        font-weight: 700;
        font-size: 20px;
        text-transform: uppercase;
    }



    img.logo{
        width: 40%;
        height: 40%;
    }

    .nav{
        position: fixed;
        left: -270px;
        width: 260px;
        height: 100%;
        top: 0;
        z-index: 99999999;
        overflow-y: scroll;
        background-color: #222;
        transition: trasform .5s ease-in-out;
        margin-right: 0;
        float: none;
        box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
    }
    .wide{
        transform: translate(270px, 0);
    }
    .nav li{
        display: block;
        line-height: 50px;
    }
    .nav li:first-child{
        padding-top: 100px;
    }

    .navbar1{
        display: block;
    }

    .header{
        width: 100%;
        height: 90px;
        background: url("../img/sfondo_header2020.jpg");
        padding-top: 10px;
    }


    /* titolo */

    .titolo{
        background: #656364;
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: center;
    }

    .taitol h1{
        color: white;
        font-size: 25px;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
        border-bottom: 3px solid #ea5b0c;
        margin-top: 15px;
    }
    .logograf{
        margin-top: 10px;
        padding-left: 80px;
    }

    .spacer{
        display: none;
    }
    .damobile{
        display: block;
    }
}
/** Discplay4", IPhone 5s portait**/
@media only screen and (max-width: 415px) {
    .header {
        width: 100%;
        height: 90px;
        background: url("../img/sfondo_header2020.jpg");
        padding-top: 10px;
    }


    /* titolo */
    .titolo {
        background: #656364;
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: center;
    }

    .taitol h1 {
        color: white;
        font-size: 25px;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
        border-bottom: 3px solid #ea5b0c;
        margin-top: 15px;
    }

    .logograf {
        margin-top: 10px;
        padding-left: 10px;
    }

    .spacer {
        display: none;
    }

    /* testo */
    h2 {
        color: #b8b8b8;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    h3 {
        color: #b8b8b8;
        font-weight: 400;
        font-size: 20px;
        text-transform: uppercase;
    }

    h4 {
        color: #ffffff;
        font-weight: 700;
        font-size: 15px;
        text-transform: uppercase;
    }


    img.logo {
        width: 40%;
        height: 40%;
    }
    .buttom a{
        text-decoration: none;
        color: white;
        width: 160px;
        padding: 10px;
        background: #b8b8b8;
        border-radius: 10px;
        transition: all 0.3s;
        font-size: 10px;
    }

}