/* 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: 100%;
    /*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;
}

.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: 750px;
    position: relative;
}

.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;
}


/*++++++++++++++++++++++fine  header++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++FASCIA INDIRIZZO++++++++++++++++++++++++++++++++++++*/
#fascia_indirizzo {
    height: 700px;
    width: 100%;
    background-image: url(../img/murobianco.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#box_indirizzo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50vw;
    float: left;
}

#box_indirizzo p {
    position: absolute;
    left: 32%;
    width: 30%;
    margin-top: 250px;
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    color: #003f90;

}

#box_indirizzo img {
    position: absolute;
    top: 200px;
    left: 32%;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:1025px) and (max-width:1280px) {
    #box_indirizzo p {
        left: 25%;
        margin-top: 220px;
    }

    #box_indirizzo img {
        left: 25%;
        top: 160px;
    }
}

@media screen and (min-width:900px) and (max-width:1024px) {
    #box_indirizzo p {
        width: 60%;
        left: 20%;
        margin-top: 260px;
        font-size: 20px;
    }

    #box_indirizzo img {
        left: 20%;
        top: 200px;
    }
}

@media screen and (min-width:768px) and (max-width:899px) {
    #box_indirizzo p {
        width: 60%;
        left: 15%;
        margin-top: 260px;
        font-size: 20px;
    }

    #box_indirizzo img {
        left: 15%;
        top: 200px;
    }
}

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

    #fascia_indirizzo {
        height: 750px;
    }

    #box_indirizzo {
        float: none;
    }

    #box_indirizzo p {
        display: none;
    }

    #box_indirizzo img {
        display: none;
    }

}

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

    #fascia_indirizzo {
        height: 750px;
    }

    #box_indirizzo {
        float: none;
    }

    #box_indirizzo p {
        display: none;
    }

    #box_indirizzo img {
        display: none;
    }

}

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

    #fascia_indirizzo {
        height: 750px;
    }

    #box_indirizzo {
        float: none;
    }

    #box_indirizzo p {
        display: none;
    }

    #box_indirizzo img {
        display: none;
    }

}

/*+++++++++++++++++++++++++++++++++++++++++++ FORM ++++++++++++++++++++++++++++++++++*/
#box_form {
    position: absolute;
    top: 0;
    left: 50vw;
    height: 100%;
    width: 50vw;
}


#contenitore_form {
    height: 520px;
    width: 70%;
    position: absolute;
    left: 15%;
    top: 80px;

}

#contenitore_form p {
    font-family: 'Abel', sans-serif;
    font-size: 16px;
    color: #003f90;
}

input,
textarea {
    font-family: 'Abel', sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 5px;
    background-color: transparent;
    border: 1px solid #003f90;
    border-radius: 5px;
    margin: 10px 0px 10px;
}

input#conferma {
    margin-left: 0;
    width: 20px;
    height: 20px;
}

#bottoneinvia {
    margin-top: 20px;
    width: 102%;
    padding: 5px;
    transition: 0.2s;
    cursor: pointer;
}

#bottoneinvia:hover {
    background-color: #003f90;
    color: #fff;
}

.clicca {
    color: #696969;
}

textarea {
    height: 100px;
}

#nome_for {
    margin-top: 25px;
}

/* *************************RESPONSIVE************************ */
@media screen and (min-width:1025px) and (max-width:1280px) {
    #box_form {
        left: 45vw;
    }
}

@media screen and (min-width:900px) and (max-width:1024px) {
    #box_form {
        left: 45vw;
        top: -10px;
    }
}

@media screen and (min-width:768px) and (max-width:899px) {
    #box_form {
        left: 45vw;
        top: -18px;
    }
}

@media screen and (min-width:601px) and (max-width:767px) {
    #box_form {
        top: 10px;
        left: -2%;
        height: 100%;
        width: 100%;
    }

    #contenitore_form {
        width: 70%;
        top: 80px;

    }
}

@media screen and (min-width:480px) and (max-width:600px) {
    #box_form {
        top: 10px;
        left: -2%;
        height: 100%;
        width: 100%;
    }

    #contenitore_form {
        width: 70%;
        top: 80px;

    }
}

@media screen and (min-width:321px) and (max-width:479px) {
    #box_form {
        top: 10px;
        left: -2%;
        height: 100%;
        width: 100%;
    }

    #contenitore_form {
        width: 70%;
        top: 80px;

    }
}

/*++++++++++++++++++++++++++++++++++++  FINE FORM ++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++ 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;
    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*/

/* bottone whats app*/
#bottonWa {
	position: fixed;
    right: 10px;
    bottom: 70px;
	z-index: 200;
}
.iubenda-ibadge {
    margin-left: 50px;
    margin-top: 5px;
    margin-right: -40px;
}

/*++++++++++++++++++++++ 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;
    }
}

@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;
    }
}

@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;

    }

}

@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;
    }

}

@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;
    }

}

@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;
    }

}
