/* charset */
@charset "UTF-8";

/*


    font-family: 'Exo 2', sans-serif;

    font-family: 'Abel', sans-serif;


*/
* {
    margin: 0;

}

a {
    text-decoration: none;
}

/*codice che serve ad animare il logo */

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotateY(0deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -moz-transform: rotateY(0deg);
    }

    100% {
        -moz-transform: rotateY(360deg);
    }
}

@-ms-keyframes rotation {
    0% {
        -ms-transform: rotateY(0deg);
    }

    100% {
        -ms-transform: rotateY(360deg);
    }
}
@keyframes rotation {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

body {
    background-color: rgba(250, 250, 250, 0.1);
}




/*++++++++++++++++++++++      BARRA MENU        ++++++++++++++++++++++++++++++++++++++++++++++*/


#barra_menu {
    height: 80px;
    width: 100vw;
    /*background-color: rgba(300,300,300,0.3);*/
    position: fixed;
    z-index: 10;
}

.striscia_testa {
    height: 100px;
    width: 100%;
    background-image: url(../img/testa.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: absolute;
    top: 0;

}

#spessore {
    height: 25px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #bab0a6;
    overflow-x: hidden;
}

.prima {
    top: 25px;
}

#box_logo {
    position: absolute;
    top: 10px;
    left: 40px;
    height: 100px;
    width: 330px;
}

#box_logo img {
    position: absolute;
    top: 0;
    left: 0;
}

#rotate {
    height: 90px;
    width: 90px;
}

#rotate {
    -webkit-animation: rotation 8s linear infinite;
    -moz-animation: rotation 8s linear infinite;
    -ms-animation: rotation 8s linear infinite;
    animation: rotation 8s linear infinite;
}

#nome_azienda {
    margin-top: 28px;
    margin-left: 15px;
    width: 230px;
    height: 80px;
    float: right;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    color: #003f90;
}

/*+++++++++++++++++++++++++++++++++++++ ICONA MENU++++++++++++++++++++++++++++++++++*/
#icona_menu {
    height: 60px;
    width: 60px;
    position: absolute;
    top: 5px;
    right: 140px;
    transition: 0.3s;
}

#linea1 {
    width: 42px;
    height: 3px;
    position: absolute;
    top: 20px;
    left: 9px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

#linea2 {
    width: 42px;
    height: 3px;
    position: absolute;
    top: 28px;
    right: 9px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

#linea3 {
    width: 42px;
    height: 3px;
    position: absolute;
    top: 36px;
    left: 9px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

#icona_menu:hover {
    -moz-transform: rotate(190deg);
    -webkit-transform: rotate(190deg);
    -o-transform: rotate(190deg);
    transform: rotate(190deg);
}

#icona_menu:hover #linea1 {
    left: 7px;
    width: 48px;
}

#icona_menu:hover #linea3 {
    left: 11px;
    width: 48px;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:1025px) and (max-width:2500px) {}

@media screen and (min-width:900px) and (max-width:1024px) {}

@media screen and (min-width:768px) and (max-width:899px) {}

@media screen and (min-width:601px) and (max-width:767px) {
    #spessore {
        height: 10px;
    }

    .prima {
        top: 5px;
    }

    #box_logo {
        top: 3px;
        left: 20px;
        height: 80px;
        width: 300px;
    }

    #box_logo img {
        height: 75px;
        width: 75px;
    }

    #nome_azienda {
        margin-top: 15px;
        margin-left: 8px;
        width: 200px;
        height: 70px;
        font-size: 16px;
    }

    #icona_menu {
        top: 7px;
        right: 100px;
    }
}

@media screen and (min-width:480px) and (max-width:600px) {
    #spessore {
        height: 10px;
    }

    .prima {
        top: 5px;
    }

    #box_logo {
        top: 3px;
        left: 20px;
        height: 80px;
        width: 300px;
    }

    #box_logo img {
        height: 75px;
        width: 75px;
    }

    #nome_azienda {
        margin-top: 15px;
        margin-left: 5px;
        width: 200px;
        height: 70px;
        font-size: 16px;
    }

    #icona_menu {
        top: 7px;
        right: 70px;
    }
}

@media screen and (min-width:321px) and (max-width:479px) {
    #spessore {
        height: 10px;
    }

    .prima {
        top: 5px;
    }

    #box_logo {
        top: 5px;
        left: 8px;
        height: 80px;
        width: 220px;
    }

    #box_logo img {
        height: 62px;
        width: 62px;
    }

    #nome_azienda {
        margin-top: 20px;
        margin-left: 0px;
        width: 140px;
        height: 50px;
        font-size: 12px;
    }

    #icona_menu {
        top: 7px;
        right: 30px;
    }
}

/*+++++++++++++++++++++++++++++++++++++FINE ICONA MENU++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++++++++++++++OVERLAY  MENU++++++++++++++++++++++++++++++++++*/
#overlaym {
    height: 100vh;
    width: 100%;
    background-color: #2a282a;
    position: fixed;
    display: none;
    z-index: 20;
    overflow-y: hidden;
}

#close_button {
    position: absolute;
    top: 10vh;
    right: 6%;
}

#overlaym ul {
    position: absolute;
    top: 25vh;
    left: 5vw;
    width: 30vw;
    padding-left: -20px;
}

#overlaym ul li {
    width: 30vw;
    height: 70px;
    border-bottom: 1px solid #fff;
    list-style-type: none;
}

#overlaym ul li a {
    font-family: 'Abel', sans-serif;
    font-size: 20px;
    line-height: 70px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

#overlaym ul li a:hover {
    padding-left: 10px;
    height: 100%;
    background-color: #353234;
    display: block;
}

#overlaym ul li ul {
    position: absolute;
    top: 0;
    left: 40vw;
    width: 30vw;
    list-style-type: none;
    display: none;
    transition: 1s;
    display: none;

}

#overlaym ul li ul a {
    font-family: 'Abel', sans-serif;
    font-size: 20px;
    color: #fff;

}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:480px) and (max-width:600px) {
    #overlaym ul {

        top: 15vh;
        left: 1vw;
        width: 25vw;
        padding-left: -5px;
    }

    #overlaym ul li a {
        font-size: 14px;
    }

    #overlaym ul li ul a {
        font-size: 14px;
    }

    #overlaym ul li ul {
        top: 0;
        left: 40vw;
    }
}

@media screen and (min-width:321px) and (max-width:479px) {
    #close_button {
        top: 5vh;
        right: 6%;
    }

    #overlaym ul {
        top: 15vh;
        left: 0;
        width: 20vw;
        padding-left: -3px;
    }

    #overlaym ul li a {
        font-size: 14px;
    }

    #overlaym ul li ul a {
        font-size: 14px;
        width: 300px;
        display: block;
    }

    #overlaym ul li ul {
        top: 0;
        left: 110px;
        width: 150px;
    }

    #overlaym ul li ul a:hover {
        width: 140px;
    }

    #overlaym ul li ul li {
        width: 40vw;


    }

    #overlaym ul li {
        width: 90px;
        height: 60px;
    }

    #overlaym ul li a {
        display: block;
        line-height: 60px;

    }

}

/*+++++++++++++++++++++++++++++++++++++ FINE OVERLAY  MENU++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++ header++++++++++++++++++++++++++++++++++++*/
header {
    width: 100%;
    height: 950px;
    position: relative;
    top: -140px;
}



#box_p_header {
    height: 200px;
    width: 800px;
    position: absolute;
    top: 700px;
    left: 10%;
}

header p {

    font-family: serif;
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    font-style: italic;
    text-shadow: 0px 0px 10px #000, 0px 0px 10px #000, 0px 0px 10px #000, 0px 0px 10px #000, 0px 0px 16px #000;
}

#firma {
    text-align: right;
    font-size: 24px;
    margin-right: 10px;
}

h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 80px;
    position: absolute;
    left: 10%;
    top: 400px;
    color: #003f90;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff;
}

.striscia_base {
    height: 100px;
    width: 100%;
    background-image: url(../img/base.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    position: absolute;
    bottom: 0;

}

#dream {
    position: fixed;
    top: 55vh;
    right: 10px;
    z-index: 18;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:900px) and (max-width:1024px) {
    header {
        height: 800px;
        background-position: center 0px;
    }

    h1 {
        top: 300px;
    }

    #box_p_header {
        width: 700px;
        top: 550px;
    }

    header p {
        font-size: 24px;
    }
}

@media screen and (min-width:768px) and (max-width:899px) {
    header {
        height: 760px;
        background-position: center 0px;
    }

    h1 {
        top: 300px;
        font-size: 70px;
    }

    #box_p_header {
        width: 600px;
        top: 540px;
    }

    header p,
    #firma {
        font-size: 21px;
        line-height: 35px;
    }
}

@media screen and (min-width:601px) and (max-width:767px) {
    header {
        height: 760px;
        background-position: center 0px;
    }

    h1 {
        top: 300px;
        font-size: 55px;
    }

    #box_p_header {
        height: 250px;
        width: 470px;
        top: 500px;
    }

    header p,
    #firma {
        font-size: 21px;
        line-height: 35px;
    }
}

@media screen and (min-width:480px) and (max-width:600px) {
    header {
        height: 760px;
        background-position: center 0px;
    }

    h1 {
        top: 290px;
        font-size: 45px;
    }

    #box_p_header {
        height: 250px;
        width: 350px;
        top: 500px;
    }

    header p,
    #firma {
        font-size: 20px;
        line-height: 30px;
    }
}

@media screen and (min-width:321px) and (max-width:479px) {
    header {
        height: 760px;
        background-position: center 0px;

    }

    h1 {
        top: 240px;
        font-size: 45px;
    }

    #box_p_header {
        height: 250px;
        width: 270px;
        top: 480px;
    }

    header p,
    #firma {
        font-size: 20px;
        line-height: 30px;
    }

    #dream img {
        right: 0;
        height: 55px;
        width: 55px;
    }
}

/*++++++++++++++++++++++fine  header++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++  presentazione  ++++++++++++++++++++++++++++++++++++*/

#presentazione {
    height: 520px;
    width: 100%;
    background-image: url(../img/murobianco.jpg);
    background-size: cover;
    position: relative;
    margin-top: -140px;
}


#bloccop {
    height: 225px;
    width: 850px;
    position: absolute;
    top: 140px;
    left: 50%;
    margin-left: -425px;
}

#bloccop img {
    float: right;
}

#presentazione p {
    font-family: 'Abel', sans-serif;
    font-size: 22px;
    text-align: justify;
    color: #696969;
    float: left;
    width: 500px;
    height: 250px;
}

#firma_fabio {
    position: absolute;
    bottom: 0;
    left: 40%;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:768px) and (max-width:899px) {
    #presentazione {
        height: 450px;
    }

    #bloccop {
        top: 120px;
        width: 680px;
        height: 250px;
        margin-left: -340px;
    }

    #presentazione p {
        font-size: 18px;
        width: 400px;
    }

    #bloccop img {
        height: 160px;
        width: 240px;
    }

    #firma_fabio {
        bottom: 50px;
    }

    #firma_fabio img {
        width: 125px;
        height: 51px;
    }
}

@media screen and (min-width:601px) and (max-width:767px) {
    #presentazione {
        height: 600px;
    }

    #bloccop {
        width: 500px;
        height: 500px;
        margin-left: -250px;
    }

    #presentazione p {
        float: none;
        font-size: 18px;
        margin-top: 30px;
        width: 500px;
    }

    #bloccop img {
        float: none;
        height: 160px;
        width: 240px;
    }

    #firma_fabio {
        left: 60vw;
        bottom: 110px;
    }

    #firma_fabio img {
        width: 125px;
        height: 51px;
    }
}

@media screen and (min-width:480px) and (max-width:600px) {
    #presentazione {
        height: 600px;
    }

    #bloccop {
        top: 116px;
        width: 400px;
        height: 500px;
        margin-left: -200px;
    }

    #presentazione p {
        float: none;
        font-size: 18px;
        margin-top: 30px;
        width: 400px;
    }

    #bloccop img {
        float: none;
        height: 160px;
        width: 240px;
    }

    #firma_fabio {
        left: 60vw;
        bottom: 110px;
    }

    #firma_fabio img {
        width: 125px;
        height: 51px;
    }
}

@media screen and (min-width:321px) and (max-width:479px) {
    #presentazione {
        height: 680px;
    }

    #bloccop {
        top: 116px;
        width: 280px;
        height: 500px;
        margin-left: -140px;
    }

    #presentazione p {
        float: none;
        font-size: 18px;
        margin-top: 30px;
        width: 280px;
    }

    #bloccop img {
        float: none;
        height: 160px;
        width: 240px;
    }

    #firma_fabio {
        left: 50vw;
        bottom: 50px;
    }

    #firma_fabio img {
        width: 125px;
        height: 51px;
    }
}

/*++++++++++++++++++++++ fine presentazione  ++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++ presentazione prodotti  ++++++++++++++++++++++++++++++++++++*/
#pres_prodotti {
    height: 3800px;
    width: 100%;
    /*background-color: rgba(150, 150, 150, 0.1);*/
    background-image: url(../img/murobianco.jpg);
    background-position: top;
    background-repeat: repeat;
    position: relative;
    overflow-x: hidden;
}

.scopri {
    color: #0000ff;
    font-style: italic;
    font-size: 22px;
}

.scopri:hover {
    height: 1px;
    margin-left: 10px;
    cursor: pointer;
    color: red;
    transition: 0.4s;
}

#spazio_vuoto {
    height: 160px;
    width: 100%;
    display: block;
}

.cornice {
    position: absolute;
    width: 300px;
    left: 150px;
    height: 420px;
    top: 0px;
    border: 20px solid #dcdcdc;
    transform: rotate(7deg);
    z-index: 5;
}

.cornicedx {
    height: 420px;
    position: absolute;
    width: 300px;
    right: 150px;
    top: 0px;
    border: 20px solid #dcdcdc;
    transform: rotate(7deg);
    z-index: 5;

}

.striscia_testata {
    height: 480px;
    width: 100%;
    position: relative;
}

.lineablu1,
.lineablu2,
.lineablu3,
.lineablu4,
.lineablu5,
.lineablu6,
.lineablu7 {
    position: absolute;
    top: 65px;
    height: 1px;
    width: 100px;
    opacity: 0;
    background-color: #003f90;
    transition: 4s;
}

/*.striscia_testata:hover .lineablu {
    opacity: 1;
    width: 100%;
    
}*/

.img_pressx {
    height: 420px;
    position: absolute;
    width: 300px;
    left: 150px;
    top: 0px;
    border: 20px solid #dcdcdc;
    transform: rotate(7deg);
    z-index: 2;
}

.img_pressx img {
    transition: 1s;
}

.striscia_testata:hover .img_pressx img {
    transform: scale(1.08);
}

.tit_pressx p {
    font-family: 'Abel', sans-serif;
    font-size: 20px;
    margin-top: 80px;

}

.tit_pressx {
    position: absolute;
    height: 240px;
    width: 700px;
    top: 150px;
    left: 560px;
    z-index: 2;
}

h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 50px;
    color: #003f90;
    position: absolute;

}

.secondo,
.quarto,
.sesto {
    position: absolute;
    width: 700px;
    top: 100px;
    right: 500px;
}

.primo,
.terzo,
.quinto,
.settimo {
    position: absolute;
    width: 700px;
    top: 100px;
    left: 560px;
}

.primo,
.secondo,
.terzo,
.quarto,
.quinto,
.sesto,
.settimo {
    margin-top: 120px;
    opacity: 0;
    transition: 2s;
}

.tit_presdx p {
    font-family: 'Abel', sans-serif;
    font-size: 20px;
    margin-top: 80px;

}

.img_presdx {
    height: 420px;
    position: absolute;
    width: 300px;
    right: 150px;
    top: 0px;
    border: 20px solid #dcdcdc;
    transform: rotate(7deg);
    z-index: 2;

}

.img_presdx img {
    transition: 1s;
}

.striscia_testata:hover .img_presdx img {
    transform: scale(1.08);
}

.tit_presdx {
    position: absolute;
    height: 150px;
    width: 700px;
    top: 150px;
    right: 500px;
    z-index: 2;
}

.lineagrigia {
    height: 120px;
    width: 90%;
    left: 5%;
    transform: rotate(7deg);
    position: absolute;
    bottom: 100px;
    -webkit-transform: skew(-50deg);
    -moz-transform: skew(-50deg);
    -o-transform: skew(-50deg);
    transform: skew(-50deg) rotate(7deg);
    background-color: #bab0a6;
    z-index: 0;
    opacity: 0.15;
}

.iubenda-ibadge {
    margin-left: 0;
    margin-top: 5px;
    margin-right: -40px;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:1025px) and (max-width:1350px) {

    .img_pressx,
    .cornice {
        left: 60px;
    }

    .tit_pressx {
        top: 150px;
        left: 440px;
        width: 500px;
    }

    .primo,
    .terzo,
    .quinto,
    .settimo {
        left: 440px
    }

    .img_presdx,
    .cornicedx {
        right: 60px;
    }

    .tit_presdx {
        left: 80px;
        width: 500px;
    }

    .secondo,
    .quarto,
    .sesto {
        left: 80px
    }

    h2 {
        font-size: 45px;
    }
}

@media screen and (min-width:900px) and (max-width:1024px) {

    .img_pressx,
    .img_pressx img,
    .cornice,
    .img_presdx,
    .img_presdx img,
    .cornicedx {
        height: 350px;
        width: 250px;
    }

    .img_pressx,
    .cornice {
        left: 60px;
    }

    .tit_pressx {
        top: 100px;
        left: 400px;
        width: 450px;
    }

    .primo,
    .terzo,
    .quinto,
    .settimo {
        left: 400px
    }

    .img_presdx,
    .cornicedx {
        right: 60px;
    }

    .tit_presdx {
        top: 100px;
        left: 80px;
        width: 460px;
    }

    .secondo,
    .quarto,
    .sesto {
        left: 80px
    }

    h2 {
        font-size: 45px;
        top: -40px;
    }
}

@media screen and (min-width:768px) and (max-width:899px) {

    #pres_prodotti {
        height: 3200px;
    }

    .img_pressx,
    .img_pressx img,
    .cornice,
    .img_presdx,
    .img_presdx img,
    .cornicedx {
        height: 280px;
        width: 200px;
    }

    .img_pressx,
    .cornice {
        left: 60px;
    }

    .tit_pressx {
        top: 80px;
        left: 320px;
        width: 420px;
    }

    .primo,
    .terzo,
    .quinto,
    .settimo {
        left: 320px
    }

    .img_presdx,
    .cornicedx {
        right: 60px;
    }

    .tit_presdx {
        top: 80px;
        left: 40px;
        width: 420px;
    }

    .secondo,
    .quarto,
    .sesto {
        left: 40px
    }

    h2 {
        font-size: 36px;
        top: -60px;
    }

    .lineagrigia {
        bottom: 220px;
    }

    .img_presdx,
    .img_pressx {
        height: 280px;
    }

    .striscia_testata {
        height: 420px;
    }
}

@media screen and (min-width:601px) and (max-width:767px) {

    #pres_prodotti {
        height: 2700px;
    }

    .img_pressx,
    .img_pressx img,
    .cornice,
    .img_presdx,
    .img_presdx img,
    .cornicedx {
        height: 210px;
        width: 150px;
    }

    .img_pressx,
    .cornice {
        left: 50px;
    }

    .tit_pressx {
        top: 50px;
        left: 270px;
        width: 300px;
    }

    .primo,
    .terzo,
    .quinto,
    .settimo {
        left: 270px
    }

    .img_presdx,
    .cornicedx {
        right: 50px;
    }

    .tit_presdx {
        top: 50px;
        left: 40px;
        width: 300px;
    }

    .secondo,
    .quarto,
    .sesto {
        left: 40px
    }

    h2 {
        font-size: 30px;
        top: -80px;
    }

    .tit_pressx p,
    .tit_presdx p {
        font-size: 18px;
    }

    .lineagrigia {
        bottom: 180px;
    }

    .img_presdx,
    .img_pressx {
        height: 210px;
    }

    .striscia_testata {
        height: 350px;
    }
}

@media screen and (min-width:480px) and (max-width:600px) {

    #pres_prodotti {
        height: 4250px;
    }

    #spazio_vuoto {
        height: 100px;
    }

    .img_pressx,
    .img_pressx img,
    .cornice,
    .img_presdx,
    .img_presdx img,
    .cornicedx {
        height: 300px;
        width: 215px;
        left: 90px;
    }

    .img_pressx,
    .cornice {
        left: 50px;
    }

    .tit_pressx {
        top: 350px;
        left: 40px;
        width: 400px;
    }

    .primo,
    .terzo,
    .quinto,
    .settimo {
        left: 40px;

    }

    .img_presdx,
    .cornicedx {
        left: 50px;
    }

    .tit_presdx {
        top: 350px;
        left: 40px;
        width: 400px;
    }

    .secondo,
    .quarto,
    .sesto {
        left: 40px
    }

    h2 {
        font-size: 30px;
        top: 220px;
    }

    .tit_pressx p,
    .tit_presdx p {
        font-size: 18px;
    }

    .lineagrigia {
        bottom: 180px;
    }

    .img_presdx,
    .img_pressx {
        height: 300px;
    }

    .striscia_testata {
        height: 580px;
    }
}

@media screen and (min-width:321px) and (max-width:479px) {

    #pres_prodotti {
        height: 3750px;
    }

    #spazio_vuoto {
        height: 100px;
    }

    .img_pressx,
    .img_pressx img,
    .cornice,
    .img_presdx,
    .img_presdx img,
    .cornicedx {
        height: 210px;
        width: 150px;
        left: 90px;
    }

    .img_pressx,
    .cornice {
        left: 50px;
    }

    .tit_pressx {
        top: 250px;
        left: 20px;
        width: 290px;
    }

    .primo,
    .terzo,
    .quinto,
    .settimo {
        left: 20px;

    }

    .img_presdx,
    .cornicedx {
        left: 50px;
    }

    .tit_presdx {
        top: 250px;
        left: 20px;
        width: 290px;
    }

    .secondo,
    .quarto,
    .sesto {
        left: 20px
    }

    h2 {
        font-size: 28px;
        top: 130px;
    }

    .tit_pressx p,
    .tit_presdx p {
        font-size: 18px;
    }

    .lineagrigia {
        bottom: 180px;
    }

    .img_presdx,
    .img_pressx {
        height: 210px;
    }

    .striscia_testata {
        height: 510px;
    }
}


/*++++++++++++++++++++++ fine presentazione prodotti ++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++ fascia contatti  ++++++++++++++++++++++++++++++++++++*/
#fascia_contatti {
    height: 300px;
    width: 100%;
    background-image: url(../img/murocemento2.jpg);
    background-size: cover;
    position: relative;
}

#box_p_contatti {
    height: 50px;
    width: 960px;
    position: absolute;
    top: 125px;
    left: 50%;
    margin-left: -480px;
}

#box_p_contatti p {

    font-family: 'Abel', sans-serif;
    font-size: 25px;
    color: #fff;
    float: left;
    line-height: 40px;
    padding-top: 15px;
}

#bottone {
    display: inline;
    width: 180px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: #003f90;
    font-family: 'Abel', sans-serif;
    text-align: center;
    font-size: 30px;
    padding: 10px;
    float: right;
    border-radius: 6px;
    border-style: ridge;
    border-width: 6px;
    border-color: #003f90;
    transition: 0.6s;

}

#bottone:hover {
    transform: scale(1.05);
    background-color: #0000ff;
    cursor: pointer;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:900px) and (max-width:1024px) {

    #box_p_contatti {
        width: 820px;
        margin-left: -410px;
    }

    #box_p_contatti p {
        font-size: 22px;
    }

    #bottone {
        width: 160px;
        height: 40px;
    }
}

@media screen and (min-width:321px) and (max-width:899px) {
    #box_p_contatti p {
        display: none;
    }

    #box_p_contatti {
        width: 212px;
        margin-left: -106px;
    }
}


/*++++++++++++++++++++++ fine contatti ++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++ footer  ++++++++++++++++++++++++++++++++++++*/
footer {
    height: 420px;
    width: 100%;
    background-color: #bab0a6;
    position: relative;
}

#box_footer {
    height: 300px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 30px;

}

#footer_logo {
    height: 300px;
    width: 250px;
    float: left;
    margin-top: -12px;
}

#footer_ind {
    height: 360px;
    width: 250px;
    float: left;
}

#footer_servizi {
    height: 300px;
    width: 250px;
    float: right;
}

#footer_logo a:before {
    content: "";
    display: block;
}

#footer_logo a {
    font-family: 'Exo 2', sans-serif;
    color: #003f90;
    font-size: 20px;
    padding-top: 20px;
}

#footer_ind p {
    font-family: 'Abel', sans-serif;
    color: #003f90;
    font-size: 18px;

}

#footer_servizi ul,
#footer_servizi li a {
    font-family: 'Abel', sans-serif;
    color: #003f90;
    font-size: 18px;
    cursor: pointer;
}

#box_autor {
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 100%;
    background-color: #2a282a;

}

span {
    font-weight: 700;
    letter-spacing: 1px;
}

#box_autor p {
    color: #fff;
    width: 80%;
    font-family: 'Abel', sans-serif;
    font-size: 15px;
    line-height: 50px;
    padding-left: 50px;

}

.kebasvg {
    position: absolute;
    right: 50px;
    top: 15px;
}

/* inizio frecciasu*/

.frecciasu {
    position: fixed;
    right: 16px;
    bottom: 30px;
    width: 30px;
    height: 30px;
    background-image: url(../img/freccia_su.svg);
    background-position: top;
    background-size: 100%;
    cursor: pointer;
    transition: 0.4s;
	z-index: 200;
}

.frecciasu:hover {
    background-position: bottom;
}

/* fine freccia su*/

.iubenda-ibadge {
    margin-left: 50px;
    margin-top: 5px;
}
/* bottone whats app*/
#bottonWa {
	position: fixed;
    right: 10px;
    bottom: 70px;
	z-index: 200;
}
/*++++++++++++++++++++++ fine footer  ++++++++++++++++++++++++++++++++++++*/
/* *************************RESPONSIVE************************ */
@media screen and (min-width:1025px) and (max-width:1280px) {
    #box_autor {
        height: 80px;
    }

    #box_autor p {
        width: 67%;
        line-height: 25px;
        padding-top: 14px;
        padding-left: 35px;
    }

    #box_footer {
        width: 90%;
    }

    .kebasvg {
        right: 35px;
        top: 35px;
    }

    .iubenda-ibadge {
        margin-left: 35px;
        margin-top: 5px;
    }
}

@media screen and (min-width:900px) and (max-width:1024px) {
    #box_autor {
        height: 80px;
    }

    #box_autor p {
        width: 67%;
        line-height: 25px;
        padding-top: 14px;
        padding-left: 35px;
    }

    #box_footer {
        width: 90%;
    }

    .kebasvg {
        right: 35px;
        top: 35px;
    }

    .iubenda-ibadge {
        margin-left: 35px;
        margin-top: 5px;
    }
}

@media screen and (min-width:768px) and (max-width:899px) {
    #box_autor {
        height: 80px;
    }

    #box_autor p {
        width: 80%;
        line-height: 25px;
        padding-top: 12px;
        padding-left: 35px;
    }

    #box_footer {
        width: 90%;
    }

    .kebasvg {
        right: 30px;
    }

    .iubenda-ibadge {
        margin-left: 30px;
        margin-top: 5px;
    }
}

@media screen and (min-width:601px) and (max-width:767px) {
    footer {
        height: 650px;
    }

    #box_autor {
        height: 100px;
    }

    #box_autor p {
        width: 70%;
        line-height: 25px;
        padding-top: 12px;
        padding-left: 35px;
    }

    #box_footer {
        width: 90%;
    }

    #box_footer {
        height: 300px;
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        padding-top: 5px;

    }

    .kebasvg {
        right: 35px;
        top: 60px;
    }

    #footer_logo {
        display: none;
    }

    #footer_ind {
        margin-left: 40px;
        height: 280px;
    }

    #footer_servizi {
        margin-left: 15px;
    }

    .iubenda-ibadge {
        margin-left: 35px;
        margin-top: 5px;
    }

}

@media screen and (min-width:480px) and (max-width:600px) {
    footer {
        height: 670px;
    }

    #box_autor {
        height: 124px;
    }

    #box_autor p {
        width: 70%;
        line-height: 25px;
        padding-top: 12px;
        padding-left: 35px;
    }


    #box_footer {
        height: 300px;
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        padding-top: 5px;

    }

    .kebasvg {
        right: 35px;
        top: 85px;
    }

    #footer_logo {
        display: none;
    }

    #footer_ind {
        margin-left: 40px;
        height: 280px;
    }

    #footer_servizi {
        margin-left: 15px;
    }

    .iubenda-ibadge {
        margin-left: 35px;
        margin-top: 5px;
    }

}

@media screen and (min-width:321px) and (max-width:479px) {
    footer {
        height: 760px;
    }

    #box_autor {
        height: 200px;
    }

    #box_autor p {
        width: 60%;
        line-height: 25px;
        padding-top: 12px;
        padding-left: 35px;
    }

    #box_footer {
        height: 300px;
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        padding-top: 5px;
    }

    .kebasvg {
        right: 15px;
        top: 160px;
    }

    #footer_logo {
        display: none;
    }

    #footer_ind {
        margin-left: 40px;
        height: 300px;
    }

    #footer_servizi {
        margin-left: 15px;
    }

    .iubenda-ibadge {
        margin-left: 35px;
        margin-top: 5px;
    }

}
