.gm-hero-area {
    /** background image cover all space */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    padding:60px 0 40px 0;
    margin-bottom: 6rem;
}

.gm-hero-area-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: var(--container-width);
    padding:var(--container-padding);
}

.gm-hero-area-slogan {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: 41.66666667%;
    color: #FFF;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 132.5%; 
    font-family: "VAG Rounded W01 Light", sans-serif;

}

.gm-hero-area-boxes-container {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: 50%;
    margin-left: 8%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 5rem;
    margin-bottom: -80px;
    justify-content: flex-end;
}

.gm-hero-area-boxes {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.3rem;
    margin-bottom:-5rem;
} 

.gm-hero-area-box {
    width: 190px;
    height: 190px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--Sfumatura-1, linear-gradient(108deg, #3283CD 25.51%, #296CA9 101.92%));
    box-shadow: 0px 5px 10px 1px rgba(100,100,100,0.25);
    text-align: center;
    color: #FFF;
    text-decoration: none;
    position: relative;
    display: block;
}
.gm-hero-area-box-value {
    font-family: "Quicksand", sans-serif;
    font-size: 5rem;
    font-weight: bold;
    line-height: 5rem;
    margin: 1.5rem .5rem 0.8rem .5rem;
}
.gm-hero-area-box-text {
    font-family: "Quicksand", sans-serif;
    margin: 0 2rem;
}
.gm-hero-area-box-value-plus {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5rem;
    margin: 0rem 0 0 -1.2rem;
    vertical-align: text-top;
}

.gm-hero-area-hover { 
    opacity:0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    background:#FFF;
    z-index: 9;
    border-radius: 10px;
    transition: opacity 0.1s;
}


.gm-hero-area-hover:hover {
    opacity: 1;
}

.gm-hero-area-box_read_me {
    color : #3283CD;
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom: 75px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
}

.gm-hero-area-box_round-btn {
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 40px;
    height: 40px;
    color:#2c73b4;
    background: #FFF;
    justify-content: center;
    align-items: center;
    border : none;
}

.gm-hero-area-hover-icon {
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    max-height: 60px;
}
.gm-hero-area-hover-icon svg {
    width: 100% !important;
    height: auto !important;
}
/** per la versione mobile i box scrollano ma senza scrollbar
body::-webkit-scrollbar{
  display: none;
}
*/

.gm-hero-area-box {
    font-family: "Quicksand", sans-serif;
}

.gm-hero-area-box__icon {
    display: none;
}


.gm-hero-area-box:hover, .gm-hero-area-box a, .gm-hero-area-box a:hover, .gm-hero-area-box a:visited, .gm-hero-area-box a > * {
    color:#FFF !important
}

@media screen and (max-width: 1280px) {
    .gm-hero-area-slogan {
        font-size: 1.7rem;
    }
    .gm-hero-area-boxes {
        grid-gap: 1rem;
        height: 150px;
    }
    .gm-hero-area-box {
        width: 150px;
        height: 150px;
    }
    .gm-hero-area-box-value {
        font-size: 4rem;
        line-height: 4rem;
        margin: 1.0rem .5rem 0.8rem .5rem;
    }
    .gm-hero-area-box-text {
        margin: 0 1rem;
        font-size: .9rem;
    }
}

@media screen and (max-width: 1023px) {
    .gm-hero-area {
        margin-bottom: 130px;
    }
    .gm-hero-area-container  {
        display: block;
    }
    .gm-hero-area-boxes-container {
        display: block;
        overflow: hidden;
        overflow-x: scroll;
        margin: 0;
        margin-bottom: -130px;
    }
    .gm-hero-area-boxes-container::-webkit-scrollbar{
        display: none;
    }
    .gm-hero-area-boxes {
        display: block;
       width: 970px;
    }
    .gm-hero-area-box {
        display: inline-block;
        vertical-align: top;
    }
    .gm-hero-area-slogan { 
        width: 100%;
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .gm-hero-area-boxes-container {
        width: inherit;
        margin-left:-1rem;
        margin-right:-1rem;
    }

    .gm-hero-area-hover {
        display: none;
    }
    .gm-hero-area-hover:hover {
        opacity: 0;
        display: none;
    }

}