@font-face{
    font-family: roboto;
    src:url(../font/Roboto-Regular.ttf);
    src:url(../font/Roboto-Regular.woff2);
    src:url(../font/Roboto-Regular.woff);
    font-display:swap;
}

@font-face{
    font-family: roboto-black;
    src:url(../font/Roboto-Black.ttf);
    src:url(../font/Roboto-Black.woff2);
    src:url(../font/Roboto-Black.woff);
    font-display:swap;
}

@font-face{
    font-family: roboto-light;
    src:url(../font/Roboto-Light.ttf);
    src:url(../font/Roboto-Light.woff2);
    src:url(../font/Roboto-Light.woff);
    font-display:swap;
}

@font-face{
    font-family: roboto-bold;
    src:url(../font/Roboto-Bold.ttf);
    src:url(../font/Roboto-Bold.woff2);
    src:url(../font/Roboto-Bold.woff);
    font-display:swap;
}

body{
    min-height: 100vh;
    font-family: roboto;
    background-color: #181818;
    position: relative;
}

header, main, footer{
    min-height: 110px;
}

main{
    position: relative;
}

/* general */
.container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 15px;
    margin-left: 15px;
    align-content: center;
    align-items: stretch;
    justify-content: space-between;
}

.row.rowNoFlex{
    display: block;
}

.col-12{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 100%;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.col-6{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
}

.col-6:first-child{
    margin-left: -15px;
    margin-right: 15px;
}

.col-6:last-child{
    margin-left: 15px;
    margin-right: -15px;
}

.col-4{
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 33.333333%;
    margin: 0 auto;
}

.img-fluid{
    width: 100%;
    max-width: 100%;
}

*::selection{ 
    background: #97f049;
    color: #000;
} 

#section-3 h2::selection, #section-3 p::selection, #section-3 p > span::selection, #section-3 h3::selection, #section-6 p::selection, #section-6 span::selection{
    background: #69519c;
}

#section-3 .card p::selection, #section-3 .card h3::selection, #section-3 .card p > span::selection{
    background: #97f049;
}

a{
    text-decoration: none;
}

a:hover, a:focus, a:visited{
    text-decoration: none;
    color: #FFF;
}

/*Firefox*/ 
*::-moz-selection{
    background: #97f049;  
} 

/* header */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

header .container{
    position: relative;
}

#logo{
    width: 80px;
    padding-top: 20px;
}

.container-nav-btn{
    position: absolute;
    top: 20px;
    right: 15px;
}

header.headerFix{
    outline: 5px solid #69519c;
    background: linear-gradient(0deg,rgba(147, 112, 219, 0.97) 0,rgb(182, 158, 227, 0.97) 100%);
}


/* burger menu */

#toggle{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #181818;
    box-shadow: 0 10px 20px rgb(255 255 255 / 15%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid;
}

#toggle span{
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: #97f049;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
}

#toggle span:nth-child(1){
    transform: translateY(-10px);
    width: 25px;
    left: 5px;
}

#toggle.active span:nth-child(1){
    width: 40px;
    transform: translateY(0px) rotate(45deg);
    transition-delay: 0.125s;
}

#toggle span:nth-child(2){
    transform: translateY(10px);
    width: 15px;
    left: 5px;
}

#toggle.active span:nth-child(2){
    width: 40px;
    transform: translateY(0px) rotate(315deg);
    transition-delay: 0.125s;
}

#toggle.active span:nth-child(3){
    transform: translate(60px);
}

/* hero */
#hero{
    height: 100vh;
    min-height: 600px;
    background-image: url(../img/wallpaperbetter.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#center-title{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-25%, -50%);
}

h1{
    font-family: "roboto-black", sans-serif;
    font-size: 5em;
    line-height: 1.18em;
    color: #FFF;
}

#center-title p{
    font-family: "roboto", sans-serif;
    color: #FFF;
    font-size: 1.3em;
    line-height: 1.5em;
    margin-bottom: 100px;
}

#center-title p span{
    color: #97f049;
}

.btn-ss{
    display: inline-block;
    color: #97f049;
    background-color: #181818;
    padding: 20px 30px;
    font-size: 1.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    position: relative;
    overflow: hidden;
    font-family: "roboto-light", sans-serif;
}

.btn-ss:hover{
    box-shadow: 0 0 10px #97f049, 0 0 40px #97f049, 0 0 80px #97f049;
    font-family: "roboto-light", sans-serif;
}

.btn-ss:visited{
    display: inline-block;
    color: #97f049;
    background-color: #181818;
    padding: 20px 30px;
    font-size: 1.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    position: relative;
    overflow: hidden;
    font-family: "roboto-light", sans-serif;
}

.btn-ss:before{
    position: absolute;
    content: '';
    top: 2px;
    left: 2px;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-ss span:nth-child(1){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #0c002b, #97f049);
    animation: animate1 2s linear infinite;
}

@keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

@-o-keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

@-moz-keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

@-webkit-keyframes animate1{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}

.btn-ss span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0c002b, #97f049);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}

@-o-keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}

@-moz-keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}

@-webkit-keyframes animate2{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(100%);
    }
}

.btn-ss span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #0c002b, #97f049);
    animation: animate3 2s linear infinite;
}

@keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}

@-o-keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}

@-moz-keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}

@-webkit-keyframes animate3{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}

.btn-ss span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, #0c002b, #97f049);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}

@-o-keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}

@-moz-keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}

@-webkit-keyframes animate4{
    0%{
        transform: translateY(100%);
    }
    100%{
        transform: translateY(-100%);
    }
}

.more{
    position: absolute;
    bottom: 10%;
    right: 10%;
    color: #97f049;
    font-size: 50px;
    animation: pulse 1s linear infinite;
}

@keyframes pulse{
    100%{
        bottom: 8%;
    }
}

@-o-keyframes pulse{
    100%{
        bottom: 8%;
    }
}

@-moz-keyframes pulse{
    100%{
        bottom: 8%;
    }
}

@-webkit-keyframes pulse{
    100%{
        bottom: 8%;
    }
}

.more a{
    color: #FFF;
}

/* overlay */
#overlay{
    background-color: #181818;
    width: 100%;
    height: 0;
    position: fixed;
    left: 0;
    top: -5000%;
    z-index: 4;
    transition: 0.3s ease-in-out;
}

#overlay.overlayActive{
    top: 0;
    height: 100vh;
}

#overlay .overlay-wrap{
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 2;
}

#main-menu{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#main-menu ul li{
    color: #FFF;
    display: block;
    padding: 20px 30px;
    margin-bottom: 5px;
    font-size: 1.5em;
    border-left: 3px solid #ccc;
    opacity: 1;
    font-family: "roboto-light", sans-serif;
}

#main-menu ul li:hover{
    border-left: 3px solid #97f049;
}

#main-menu ul li a{
    color: #FFF;
    font-size: 1.5em;
    line-height: 1.15em;
    text-decoration: none;
    transition: 0.5s;
    display: block;
}

#main-menu ul li a:hover{
    color: #97f049;
}

/* Section 1 */
#section-1{
    min-height: 150px;
    background-color: #181818;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
    background-image: url(../img/worker.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: hard-light;
    background-attachment: fixed;
    clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

#section-1 h2, #section-2 h2{
    color: #FFF;
    font-size: 1.7em;
    line-height: 1.5em;
    font-family: "roboto-bold", sans-serif;
    margin-bottom: 50px;
    width: 70%;
}

#section-1 p, #section-4 p{
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    color: #FFF;
    margin-bottom: 20px;
    width: 80%;
    word-break: break-word;
}

#section-1 p > span, #section-4 p > span{
    color: #97f049;
    font-family: "roboto-bold", sans-serif;
}

.anchorMore{
    display: block;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #FFF;
    text-decoration: none;
}

.anchorMore span{
    border: 1px solid #97f049;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 25px;
    margin-bottom: -5px;
    position: relative;
}

.anchorMore span i{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    color: #97f049;
    font-size: 2em;
    transition: 0.5s;
}

.anchorMore:hover span i{
    left: 110%;
}

/* section 2 */
#section-2{
    min-height: 150px;
    background-color: #181818;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
}

#section-2 h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}

#section-2 hr{
    width: 30%;
    border-top: 1px solid #97f049;
    margin-top: 15px;
    margin-bottom: 50px;
}

#section-2 p{
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    color: #FFF;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 70px;
    word-break: break-word;
    text-align: center;
}

#section-2 p > span{
    color: #97f049;
    font-family: "roboto-bold", sans-serif;
}

.iconRound{
    color: #97f049;
    font-size: 30px;
    line-height: 48px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: center;
    border: 1px solid #97f049;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}



/* section 3 */
#section-3{
    min-height: 150px;
    background-color: #97f049;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
}

#section-3 .col-4 {
    margin-bottom: 40px;
}

#section-3 h2{
    color: #181818;
    font-size: 3em;
    line-height: 1.5em;
    font-family: "roboto-bold", sans-serif;
    margin-bottom: 50px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: center;
}

#section-3 p{
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    color: #181818;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 180px;
    text-align: center;
    margin-bottom: 70px;
}

#section-3 .card{
    width: 80%;
    min-height: 100%;
    margin: 0 auto;
    background-color: #484848;
    border: 1px solid rgba(15, 121, 39, 53%);
    border-radius: 0.25rem;
    position: relative;
    overflow: hidden;
}

#section-3 .card .card-content{
    padding: 20px;
    padding-left: 75px;
    position: relative;
    z-index: 1;
}

#section-3 .card .card-wrap-icon{
    width: 100%;
    height: 50px;
    background: linear-gradient(47deg,#9370db 0,#b69ee3 100%);
    position: relative;
    z-index: 1;
}

#section-3 .card .card-wrap-icon .box-icon{
    position: relative;
    width: 100%;
    padding: 10px;
}

#section-3 .card .card-wrap-icon .box-icon > i{
    color: #FFF;
    font-size: 2em;
    display: inline-block;
    margin-right: 20px;
}

#section-3 .card .card-wrap-icon .box-icon .bullet{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #97f049;
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#section-3 .card h3{
    font-family: "roboto-bold", sans-serif;
    color: #FFF;
    font-size: 1.3em;
    line-height: 1.2em;
    width: 80%;
    margin-bottom: 30px;
}

#section-3 .card p{
    width: 90%;
    color: #FFF;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    font-family: "roboto-light", sans-serif;
}

#section-3 .card p span{
    font-family: "roboto-bold", sans-serif;
}

#section-3 .card:after{
    content: '';
    position: absolute;
    background: #424242;
    inset: 4px;
    border-radius: 0.25rem;
}

#section-3 .card:before{
    content: '';
    position: absolute;
    top: -80px;
    left: 30%;
    width: 200px;
    height: 195%;
    background: linear-gradient(#00ccff, #d400d4);
    animation: animateCard 6s linear infinite;
}

@keyframes animateCard{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@-o-keyframes animateCard{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@-moz-keyframes animateCard{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animateCard{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

#section-3 .moreCarat{
    width: 80%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 50px;
}

#section-3 .moreCarat h3{
    font-family: "roboto-bold", sans-serif;
    color: #424242;
    font-size: 1.3em;
    line-height: 1em;
    width: 80%;
    margin-bottom: 30px;
}

#section-3 .moreCarat a {
    color: #181818;
    text-decoration: none;
    font-size: 1.1em;
}

#section-3 .moreCarat a i{
    display: inline-block;
    margin-right: 10px;
}

#section-3 .moreCarat .linkPdf{
    display: block;
    margin-bottom: 20px;
}

#section-3 .moreCarat .linkPdf span {
    border: 1px solid #181818;
    border-radius: 25px;
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 25px;
    margin-bottom: -5px;
    position: relative;
}

#section-3 .moreCarat .linkPdf span i {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    color: #181818;
    font-size: 2em;
    transition: 0.5s;
}

#section-3 .moreCarat .linkPdf:hover span i {
    left: 110%;
}

/* section 4 */
#section-4{
    min-height: 600px;
    background-color: #181818;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
    background-image: url(../img/skyline.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
    display: flex;
    align-content: center;
    align-items: stretch;
}

#section-4 .container{
    display: flex;
    align-content: center;
    align-items: stretch;
}

#section-4 .container .row{
    width: 100%;
    align-content: center;
    align-items: stretch;
    justify-content: space-between;
}

#section-4 .container .row .col-6:first-child {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

#section-4 p {
    width: 100%;
    padding-left: 20%;
}

#section-4 .col-6 .container-quote{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 130px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#section-4 .container-quote p{
    position: relative;
    width: 80%;
    padding-right: 70px;
    padding-left: 95px;
    margin: 0 auto;
}

#section-4 .container-quote .quotes{
    color: #97f049;
    font-size: 5em;
    width: 10%;
}

#section-4 .container-quote .quotes.quotes-l{
    position: absolute;
    top: -40px;
    left: 0;
}

#section-4 .container-quote .quotes.quotes-r{
    position: absolute;
    bottom: -40px;
    right: 0;
}

/* section 5 */

#section-5 {
    min-height: 150px;
    background-color: #181818;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
}

#section-5 h2 {
    color: #FFF;
    font-size: 3em;
    line-height: 1.3em;
    font-family: "roboto-bold", sans-serif;
    margin-bottom: 50px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: center;
}

#section-5 .wrap-vantaggi{
    color: #FFF;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

#section-5 .wrap-vantaggi .item-vantaggi{
    width: 20%;
    margin-bottom: 20px;
}

#section-5 .wrap-vantaggi .item-vantaggi .content-item-vant{
    padding: 20px;
    padding-left: 0;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#section-5 .wrap-vantaggi .item-vantaggi .content-item-vant p{
    font-family: "roboto-light", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    color: #FFF;
    word-break: break-word;
    padding-right: 10px;
}

#section-5 .wrap-vantaggi .item-vantaggi .content-item-vant .content-item-vant-l{
    width: 20%;
    position: relative;
    height: 100%;
}

#section-5 .wrap-vantaggi .item-vantaggi .content-item-vant .content-item-vant-r{
    width: 80%;
    border-right: 3px solid #FFF;
    height: 100%;
}

#section-5 .wrap-vantaggi .item-vantaggi .content-item-vant .content-item-vant-l .vant-icon{
    font-size: 1.8em;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    padding: 10px;
    padding-left: 0;
    padding-top: 0;
    color: #97f049;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}

/* section 6 */
#section-6 {
    min-height: 150px;
    background-color: #97f049;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
    text-align: center;
}

#section-6 p{
    color: #181818;
    font-size: 1.12em;
    line-height: 1.5em;
    margin-bottom: 50px;
}

#section-6 p span{
    color: #181818;
    font-family: "roboto-bold", sans-serif;
}

#section-6 .btn-git{
    color: #FFF;
    text-decoration: none;
    background-color: #181818;
    border: 1px solid #181818;
    padding: 20px;
    transition: 0.3s;
}

#section-6 .btn-git:hover{
    color: #181818;
    background-color: #FFF;
}

/* section 7 */
#section-7 {
    min-height: 150px;
    background-color: #dedede;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
    text-align: center;
}

#section-7 h2 {
    color: #3d3d3d;
    font-size: 3em;
    line-height: 1.5em;
    font-family: "roboto-bold", sans-serif;
    margin-bottom: 50px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 50px;
    text-align: center;
}

#section-7 .wrap-clienti{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}

#section-7 .wrap-clienti .item-clienti{
    width: 25%;
    margin-bottom: 20px;
}

#section-7 .wrap-clienti .item-clienti .clienti-img{
    display: inline-block;
    width: 60%;
    filter: grayscale(1);
    margin: 0 auto;
}

/* section 8 */
#section-8 {
    min-height: 150px;
    background-color: #181818;
    padding: 0 30px;
    padding-top: 50px;
    padding-bottom: 80px;
    text-align: center;
}

#section-8 h2 {
    color: #FFF;
    font-size: 1.7em;
    line-height: 1.5em;
    font-family: "roboto-bold", sans-serif;
    text-align: right;
    width: 100%;
    margin-bottom: 0;
}

#section-8 p{
    text-align: right;
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    color: #FFF;
    margin-bottom: 50px;
    width: 100%;
    padding: 0;
    word-break: break-word;
}

#section-8 p span{
    color: #97f049;
    margin-bottom: 50px;
}

#section-8 .contact p{
    margin-bottom: 5px;
    font-family: "roboto-light", sans-serif;
}

#section-8 .contact p a{
    color: #FFF;
}

#section-8 .contact p span{
    color: #FFF;
    font-family: "roboto-bold", sans-serif;
}

#section-8 h3 {
    color: #676767;
    font-size: 1.5em;
    line-height: 1.5em;
    font-family: "roboto-bold", sans-serif;
    text-align: right;
    width: 100%;
    margin-bottom: 10px;
}

/* form */

.form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

form {
    padding: 0;
    padding-bottom: 50px;
    z-index: 0;
    overflow: hidden;
    position: relative;
    margin-right: 10%;
    text-align: left;
}

form a, form a:hover, form a:visited{
    color: #97f049;
    text-decoration: none;
    cursor: pointer;
}

form #link-check-privacy{
    display: inline-block;
    margin-top: 25px;
}

form .input-wrap{
    margin: 1rem 0;
}

form  .input-container {
    position: relative;
    margin: 0;
    text-align: left;
}

form  .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

form  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    resize: none;
    overflow-y: auto;
}

form  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1;
    transition: 0.5s;
    background-color: #181818;
}

form .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

form .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #181818;
    line-height: 1;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

form .btn:hover {
    background-color: transparent;
    color: #fff;
}

form  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 0;
}

form  .input-container span:before,
form  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #181818;
    top: 50%;
    transform: translateY(-50%);
}

form .input-container span:before {
    left: 50%;
}

form .input-container span:after {
    right: 50%;
}

form .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

form .input-container.focus span:before,
form .input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

form .container-check.container-check{
    margin-left: 0;
    padding-left: 0;
}

form .container-check [type="checkbox"]{
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    margin-left: 0;
    margin-top: 6px;
    z-index: 2;
    cursor: pointer;
}

form .container-check [type="checkbox"] + label{
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    top: 1rem;
    left: 0;
}

form .container-check [type="checkbox"] + label::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    outline: 2px solid #aaa;
    background: #fff;
}

form .container-check [type="checkbox"]:checked + label::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    outline: 2px solid #97f049;
    background: #fff;
}

form .container-check [type="checkbox"]:checked + label::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url(../img/check.png);
    background-size: contain;
    transform: scale(1);
    opacity: 1;
    transform: all 3s ease;
}

form .container-check [type="checkbox"]:not(:checked) + label::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url(../img/check.png);
    background-size: contain;
    transform: scale(1);
    opacity: 0;
}

form .error{
    color: #ff1493;
    margin-top: 5px;
    display: block;
}

form .error-border{
    border-bottom: 3px solid #ff1493;
}

#section-8 form #success{
    color: #00ff7f;
    margin-top: 10px;
    margin-bottom: 20px;
}


/* footer */
footer{
    background-color: #000;
    padding: 50px 0;
}

footer .col-4{
    min-height: 50px;
}

footer .s2s{
    margin-bottom: 30px;
}

footer .s2s img{
    width: 80px;
    display: inline-block;
    margin-right: 20px;
}

footer .s2s h3{
    display: inline-block;
    color: #dedede;
    font-size: 1.3em;
}

footer .s2s-web a{
    color: #dedede;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

footer .s2s-web div:last-child > a{
    margin-bottom: 0;
}

footer .s2s-web a i{
    display: inline-block;
    margin-right: 10px;
}

footer .col-4:nth-child(2), footer .col-4:nth-child(3){
    border-left: 3px solid #dedede;
    padding-left: 30px;
}

footer .address p{
    color: #dedede;
    margin-bottom: 25px;
}

footer .address p:last-child{
    margin-bottom: 0;
}

footer .address p i{
    display: inline-block;
    margin-right: 10px;
}

footer .footer-nav ul li{
    color: #dedede;
    margin-bottom: 25px;
    display: block;
}

footer .footer-nav ul li:last-child{
    margin-bottom: 0;
}

footer .footer-nav ul li a{
    text-decoration: none;
    color: #dedede;
}

footer .footer-bottom{
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #CCC;
}

footer .footer-bottom p{
    margin-top: 30px;
    color: #dedede;
    line-height: 1.8em;
}

footer a{
    transition: 0.3s;
}

footer a:hover, footer ul li a:hover{
    color: #97f049;
}

footer i {
    color: #97f049;
}

footer .recaptcha a{
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

footer .recaptcha a:hover, footer .recaptcha a:visited{
    color: #97f049;
    text-decoration: none;
    cursor: pointer;
}

/* privacy */
#privacy{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 120%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -10;
    display: none;
}

#privacy.active-privacy{
    z-index: 10;
    display: block;
}

#privacy .privacy-wrap{
    background-color: #f5f5f5;
    margin: 20px auto;
    padding: 40px;
    width: 80%;
    height: 500px;
    overflow: auto;
}

#privacy .privacy-wrap h2{
    font-size: 1.7em;
    line-height: 1.5em;
    font-family: "roboto-bold", sans-serif;
    margin-bottom: 50px;
}

#privacy .privacy-wrap p{
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    margin-bottom: 10px;
}

#privacy .close-btn-privacy{
    margin-top: 50px;
}

#privacy .privacy-wrap ul{
    padding-left: 20px;
    margin-bottom: 15px;
}

#privacy .privacy-wrap ul li{
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    margin-bottom: 5px;
    list-style: disc;
}

#privacy .privacy-wrap span{
    font-family: "roboto-bold", sans-serif;
}

#privacy .privacy-wrap .close-btn-privacy{
    text-align: right;
}

#privacy .privacy-wrap .close-btn-privacy a{
    font-family: "roboto", sans-serif;
    font-size: 1.12em;
    line-height: 1.5em;
    color: #181818;
    padding: 17px;
    padding-left: 0;
    margin-top: 50px;
    background: #e2e2e2;
    border: 1px solid #000;
    border-left: 0;
}

#privacy .privacy-wrap .close-btn-privacy a > i{
    color: #FFF;
    background-color: #181818;
    padding: 20px;
    margin-right: 6px;
}

/* torna su */
#torna-su{
    display: inline-block;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    background-color: #000;
    border: 2px solid #97f049;
    color: #97f049;
    text-align: center;
    cursor: pointer;
    z-index: 3;
    display: none;
}

#torna-su i{
    font-size: 2em;
    line-height: 1.2em;
    cursor: pointer;
}

/* re-captcha */
.grecaptcha-badge{
    visibility:hidden
}

.recaptcha{
    font-size: 0.9em;
}

/* ***** MEDIA QUERY ***** */
@media screen and (max-width: 1224px) {

    #section-3 p {
        padding: 0 30px;
    }

    #section-3 .col-4{
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }

    #section-3 .card .card-content {
        padding-left: 20px;
    }

    #section-3 .card h3 {
        line-height: 1.25em;
        width: 90%;
    }

    #section-3 .moreCarat {
        padding-top: 75px;
    }

    #section-5 .wrap-vantaggi .item-vantaggi {
        width: 50%;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant .content-item-vant-l {
        width: 15%;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant .content-item-vant-r {
        width: 85%;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant {
        padding-left: 10px;
        padding-right: 10px;
    }

}

@media screen and (max-width: 992px) {

    

}

@media screen and (max-width: 820px) {

    #hero{
        background-image: url(../img/wallpaperbetter_tablet.webp);
    }

    #main-menu ul li {
        padding: 10px 20px;
    }

    #main-menu ul li a {
        font-size: 1em;
        line-height: 1.15em;
    }

    #section-1 {
        background-image: url(../img/worker_tablet.webp);
        background-attachment: scroll;
    }

    #section-3 .col-12, #section-6 .col-12, #section-7 .col-12{
        margin: 0;
    }

    #section-4 {

        background-image: url(../img/skyline_tablet.webp);
        background-attachment: scroll;
    }

    h1{
        margin-bottom: 50px;
    }

    .anchorMore {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #section-1 .col-6{
        -ms-flex: unset;
        flex: unset;
    }

    #section-1 .col-6:first-child{
        width: 70%;
        max-width: 70%;
    }

    #section-1 .col-6:last-child{
        width: 30%;
        max-width: 30%;
    }

    #section-2 p {
        padding: 0 30px;
    }

    #section-4 .col-6{
        -ms-flex: unset;
        flex: unset;
    }

    #section-4 .col-6:first-child{
        width: 70%;
        max-width: 70%;
    }

    #section-4 .col-6:last-child{
        width: 30%;
        max-width: 30%;
    }

    #section-4 .container-quote p {
        width: 90%;
        padding-right: 30px;
    }

    footer .s2s img {
        margin-bottom: 20px;
    }

}
    
@media screen and (max-width: 768px) {
    
}
    
@media screen and (max-width: 576px) {
    #hero{
        background-image: url(../img/wallpaperbetter_mobile.webp);
    }

    #section-1 {
        background-image: url(../img/worker_mobile.webp);
    }

    #section-4 {

        background-image: url(../img/skyline_mobile.webp);
    }

    h1 {
        font-size: 4em;
    }

    #section-1 .col-6:first-child {
        width: 90%;
        max-width: 90%;
    }

    #section-1 .col-6:last-child {
        width: 10%;
        max-width: 10%;
    }

    #section-1 h2{
        line-height: 1.3em;
        width: 100%;
    }

    #section-1 p{
        width: 100%;
    }

    #section-2 .row{
        flex-direction: column;
    }

    #section-2 .col-6{
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        max-width: 100%;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
    }

    #section-2 p {
        padding: 0;
    }

    #section-3 h2, #section-5 h2 {
        font-size: 2.7em;
    }

    #section-3 p {
        padding: 0;
    }

    #section-3 .row{
        flex-direction: column;
    }

    #section-3 .col-4{
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        max-width: 100%;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 10px;
    }

    #section-3 .card{
        width: 100%;
    }

    #section-3 .moreCarat {
        padding-top: 30px;
        margin: 0;
    }

    #section-3 .moreCarat h3 {
        width: 100%;
        margin-bottom: 20px;
    }

    #section-4 .row{
        display: block
    }

    #section-4 .col-6, #section-4 .col-6:first-child, #section-4 .col-6:last-child{
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        max-width: 100%;
        width: 100%;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 10px;
    }

    #section-4 .container .row .col-6:first-child {
        height: 100%;
    }

    #section-4 .container .row .col-6:last-child {
        height: 550px;
    }

    #section-4 .container-quote .quotes {
        font-size: 4em;
    }

    #section-4 .container-quote p {
        padding-right: 15px;
        padding-left: 75px;
    }

    #section-5 .col-12{
        margin: 0;
    }

    #section-5 .wrap-vantaggi {
        display: block;
    }

    #section-5 .wrap-vantaggi .item-vantaggi {
        width: 100%;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant {
        width: 100%;
        padding-right: 0;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant {
        align-items: stretch;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant p {
        padding-right: 0;
        padding-left: 10px;
    }

    #section-5 .wrap-vantaggi .item-vantaggi .content-item-vant .content-item-vant-r {
        border-right: 0;
        border-bottom: 3px solid #FFF;
        padding-bottom: 20px;
    }

    #section-5 .wrap-vantaggi .item-vantaggi {
        margin-bottom: 0;
    }

    #section-7 h2 {
        font-size: 2em;
        line-height: 1.3em;
    }

    #section-7 .wrap-clienti .item-clienti {
        width: 50%;
    }

    #section-8 .row{
        display: block;
    }

    #section-8 .col-6{
        width: 100%;
        max-width: 100%;
    }

    footer .row{
        display: block;
    }

    footer .col-4{
        width: 100%;
        max-width: 100%;
        border-bottom: 1px solid #CCC;
    }
    footer .col-4:nth-child(1){
        padding-bottom: 30px;
    }

    footer .col-4:nth-child(2), footer .col-4:nth-child(3) {
        border-left: 0;
        padding-left: 0;
        margin-top: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    footer .col-4:nth-child(3){
        border-bottom: 0;
        padding-bottom: 0;
    }

    footer .s2s h3{
        display: block;
    }

    footer .footer-bottom p {
        font-size: 0.9em;
    }

    #torna-su {
        right: 15px;
    }

    #main-menu ul li a {
        font-size: 1.1em;
    }

}