header {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    height: 370px;
    position: relative;
    background-color: #F2F2F2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.header_img {
    width: 100%;
    height: 370px;
    background-color: #F2F2F2;
    background-image: url(../img/cover_desktop.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.data_aggiornamento {
    color: #FFF;
    text-align: center;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    opacity: .6;
    z-index: 20;
}

h1 {
    width: 100%;
    font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
    color: #FFF;
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    z-index: 20;
    position: relative;
    margin: auto;
}

.sommario {
    width: 100%;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    z-index: 20;
}

.firma {
    color: #FFF;
    text-align: center;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    z-index: 20;
    padding-top: 10px;
    opacity: .6;
}

header .delimiter {
    margin-top: 20px;
}



@media only screen and (max-width: 480px) {
    header {
        padding-top: unset !important;
        margin-bottom: 0;
    }

    .header {
        padding-left: 0;
        padding-right: 0;
        height: 230px;
    }

    .header_img {
        background-image: url(../img/cover_mobile.png);
        height: 230px;
        padding-left: 15px;
        padding-right: 15px;
    }

    h1 {
        max-width: 100%;
        font-size: 42px;
    }

    .sommario {
        font-size: 18px;
        line-height: 30px;
    }

    .firma {
        font-size: 18px;
    }
}