@media screen and (min-width: 1025px){
    .header-container nav{
        display: block;
        width: 80%;
    }
    
    header nav ul {
        display: flex;
        flex-flow: row nowrap;
        list-style-type: none;
        width: 90%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }
    header nav ul li{
        margin: unset;
    }
    header nav ul li a{
        padding: 20px 40px;
        display: inline-block;
        font-size: 0.9em;
        margin: 0px;
        text-transform: uppercase;
        text-decoration: none;
        color: black;
        transition: all 0.2s ease;
        font-weight: 500;
    }
    header nav ul li a:hover, header nav ul li a.active{
        color: white;
        background: var(--verde2);
    }
    #open-menu, .sidebar, .mobile-trigger{
        display: none;
    }
    .header-logo{
        width: 20%;
    }
    .header-logo img{
        max-width: 250px;
    }

    .hero{
        height: 100vh;
        padding-top: unset;
    }
    .hero > div{
        width: 50%;
        position: relative;
    }
    .hero h1{
        font-size: 3em;
        text-align: left;
        margin: 0 auto 20px;
    }
    .hero-text{
        display: flex;
    }
    .hero h2{
        position: relative;
        opacity: 0;
    
    } 
    .hero-img img{
        width: 100%;
        margin-left: unset;
    }
    .highlighted, .hero .highlighted{
        font-size: 3em;
    }
    .content{
        width: 90%;
        flex-flow: row nowrap;
        align-items: center;
    }
    .content::before, .content::after{
        display: block;
    }
    .content::before{
        top: 20%;
        left: -3%;
    }
    .content::after{
        top: 70%;
        right: -3%;
    }
    .content img{
        width: 400px;
        height: 400px;
    }
    .content p{
        font-size: 1.2em;
        line-height: 2em;
    }
    .content div{
        padding: 50px;
        height: 90%;
        margin-top: unset;
        margin-left: -40px;
        flex-flow: row wrap;
        justify-content: center;
        width: 70%;

    }

    .content .highlighted{
        width: 30%;
        font-size: 1.2em!important;
        padding: 0.8em 1.3em;
        margin-top: 20px;
    }
    .form-box{
        width: 80%;
        padding: 50px;
    }
    .footer{
        flex-flow: row nowrap;
    }
    .footer img{
        width: auto;
        max-width: 150px;
    }
    .footer ul{
        flex-flow: row nowrap;
        width: auto;
        align-items: center;
        margin-top: unset;
        margin-left: unset;
    }
    .footer ul li{
        display: inline-flex;
        padding: 10px 40px;
        border-top: unset;
        border-left: 1px #ffffff67 solid;
        width: auto;
        text-align: center;
    }
    .content h3{
        text-align: left;
        font-size: 2em;
        margin-left: 0;
    }
    .servizi{
        width: 80%;
    }
    .servizi > div{
        width: 30%;
    }
    .servizi div img{
        width: 100%;
    }
    .servizi .text{
        padding: 20px;
    }
    .servizi h4{
        text-align: center;
        color: #238d66;
        font-size: 20px;
        
    }
    .mega-button{
        font-size: 1em;
    }
}

/*tablet*/
@media screen and (max-width: 1025px) and (min-width:760px){
    .content > img{
        width: 80%!important;
    }
    .content .highlighted{
        width: 50%!important;
    }
    .servizi{
        width: 80%;
    }
    .servizi > div{
        width: 30%;
    }
}