/*HERO---------------------------------*/
.hero{
    position: relative;
    z-index: -2;
    width: 100%;
    height: 700px;
    margin-bottom: 80px;
    overflow: hidden;
    padding-top: 50px;
}
.hero img{
    position: absolute;
    z-index: -3;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.over{
    position: relative;
    z-index: -1;
    width: 100%;
    height: 700px;
    padding-top: 50px;
    background: rgba(0, 0, 0, .22);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.hero__content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    justify-content: center;
}


/*CONTENUTO*/
.Contenuto{
    padding: 0 30px;
    max-width: 1350px;
    margin: 60px auto;
}
.Contenuto p{
    border-top: 8px solid var(--verdeFocus);
    padding: 30px;
    position: relative;
    z-index: 2;
    color: var(--verdeBack);
}
.Contenuto p span{
    display: block;
}
