.fondo{
    background-image: url(../images/fondo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}
body{
    font-family: 'Open Sans';
    font-size: 14px;
    background-color: white;
    color: #333333;
}
.header{
    width: 100%;
    height: 70px;
    background-color: #333333;
    position: sticky;
    z-index: 1;
    top: 0;
    left: 0;
}
.cont-menu{
    width: 90%;
    margin-left: 5%;
    display: flex;
    height: 70px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.logo{
    width: 50%;
    height: 70px;
    line-height: 70px;
}
.logo>img{
    height: 50px;
    cursor: pointer;
}
.navigatore{
    width: 50%;
    height: 70px;
    text-align: right;
    color: white;
    line-height: 70px;
}
.menu_smart{
    width: 250px;
    height: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    right:-100%;
    background-color: #f1f1f1;
    transition: all ease 0.3s;
}
.btn-menu{
    width: 100%;
    padding: 20px;
    background-color: rgba(148,166,178,0);
    transition: all ease 0.3s;
    color: #333333;
    font-weight: 200;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}
.btn-menu:hover{
    background-color: rgba(148,166,178,1);
    color: white;
}
.footer{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: white;
    font-size: 12px;
    background-color: #666666;
}
.cont-page{
    width: 90%;
    margin-left: 5%;
}
.link-footer:link{color:#d1d1d1; text-decoration: underline;}
.link-footer:active{color:#d1d1d1; text-decoration: underline;}
.link-footer:visited{color:#d1d1d1; text-decoration: underline;}
.link-footer:hover{color:#d1d1d1; text-decoration: none;}
.titolo{
    font-size: 25px;
    color: rgba(148,166,178,1);
    font-weight: 700;
    text-transform: uppercase;
}
.cont-piccolo{
    width: 50%;
    margin-left: 25%;
}
.btn-pers{
    background-color: rgba(148,166,178,1);
    color: white;
    font-size: 15px;
    font-weight: 200;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border: none;
    border-radius: 4px;
    transition: all ease 0.3s;
}
.btn-pers:hover{
    background-color: #333333;
}
.discpage{
    width: 100%;
    margin: 20px;
    background-color: rgba(148,166,178,1);
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    border-radius: 4px;
    text-transform: uppercase;
}
.banner{
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.banner>img{
    width: 100%;
}
.box-pagina{
    border: solid thin rgba(148,166,178,1);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    height: 100%;
}
.sottotitolo{
    font-size: 20px;
    color: rgba(148,166,178,1);
    text-transform: uppercase;
    font-weight: 700;
}