section.full-width.full-height + section.cards{
    margin-top: 48px;
}

/***
*** COVERS
***/


.cover .container{
    text-align: center;
    pointer-events: none;
    -webkit-user-select: none;
}

.cover .use_bgover{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.cover.shadowed .cover__info,
.cover.shadowed .cover__info *,
.cover.shadowed .cover__subtitle,
.cover.shadowed .cover__title{
    -webkit-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -moz-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -o-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    -ms-text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.cover__title {
    font-size: 32pt;
    margin-bottom: 0.5em;
}

.cover__subtitle {
    font-size: 28pt;
    margin-bottom: 0.5em;
    font-family: 'Aesthetik Script DEMO', cursive;
}

.cover__info {
    font-size: 18pt;
    line-height: 1.2em;
    max-width: 70%;
    display: inline-block;
}

.cover nav{
    pointer-events: none;
}

.cover nav .button {
    font-size: 16pt;
    padding: 0.5em 2em;
    border-radius: 5px;
    border: 0;
    text-decoration: none;
    text-shadow: none;
    pointer-events: all;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s;
}

.cover nav .button:hover{
    -webkit-transform: scale3d(1.05,1.05,1.05);
    -moz-transform: scale3d(1.05,1.05,1.05);
    transform: scale3d(1.05,1.05,1.05);

    /*-webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    transform: scale(1.04);*/
}

.cover nav .button:active{
    /*-webkit-transform: scale(0.92);
    -moz-transform: scale(0.92);
    transform: scale(0.92);*/
    -webkit-transition: transform 0s;
    -moz-transition: transform 0s;
    transition: transform 0s;
    -webkit-transform: scale3d(0.9,0.9,0.9);
    -moz-transform: scale3d(0.9,0.9,0.9);
    transform: scale3d(0.9,0.9,0.9);
}

.cover .container{
    width: 80%;
    margin: unset;
    max-width: 960px;
    max-height: 90%;
    min-width: 280px;
}

.carousel > .covers > .cover.right-top,
.carousel > .covers > .cover.left-top
.carousel > .covers > .cover.auto{
    background-size: auto;
}

.carousel > .covers > .cover.contain{
    background-size: contain;
    height: 90%;
}

.carousel > .covers > .cover.left-top {
    background-position: 0 0;
}

.carousel > .covers > .cover.center-top {
    background-position: 50% 0;
}

.carousel > .covers > .cover.right-top {
    background-position: 100% 0;
}

.carousel > .covers > .cover.left-center {
    background-position: 0 50%;
}

.carousel > .covers > .cover.center-center {
    background-position: 50% 50%;
}

.carousel > .covers > .cover.right-center {
    background-position: 100% 50%;
}


.carousel > .covers > .cover.left-bottom{
    background-position: 0 100%;
}

.carousel > .covers > .cover.center-bottom{
    background-position: 50% 100%;
}

.carousel > .covers > .cover.right-bottom{
    background-position: 100% 100%;
}

.carousel > .covers > .cover {
    align-items: center;
    justify-content: center;
}

.cover .container nav{
    margin-top: 32px;
}

.cover .container.left {
    text-align: left;
}

.cover .container.center {
    text-align: center;
}

.cover .container.right {
    text-align: right;
}

/***
*** CARDS
***/
.card .container{
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

.carousel{
    position: relative;
    height: 100%;
    width: 50%;
    display: flex;
    overflow: hidden;
}

.carousel > .covers > .cover, .carousel > .covers {
    width: 100vw;
    height: 100%;
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
}


.carousel-dots,
.carousel .dots{
    position: absolute;
    z-index: 2;
    bottom: -32px;
    left: 50%;
    margin: 50% 0 0;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%,  50%);
    -ms-transform: translate(-50%,  50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    text-align: center;
    line-height: 1;
    /*mix-blend-mode: difference;*/
}

.carousel-dots .dot,
.carousel .dots .dot{
    width: 12px;
    height: 12px;
    background-color: #f0f0f0;
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    list-style: none;
    padding: 0;
    margin: 0 6px;
    float: none;
    opacity: 0.6;
    cursor: pointer;
    display: inline-block;
}

.carousel-dots .dot.active,
.carousel .dots .dot.active{
    opacity: 1;
    pointer-events: none;
    background-color: #ffb900;
}

.carousel > .covers > .cover,
.carousel > .covers{
    width: 100%;
    height: 100%;
    position: relative;
    /*display: flex;
    flex: 0 0 100%;*/
    align-items: center;
}

.carousel > .covers.updating{
    -webkit-transition: all 0.3s;
    -moz-transition:  all 0.3s;
    -ms-transition:  all 0.3s;
    -o-transition:  all 0.3s;
    transition: all 0.3s;

}


.slides > .slide,
.carousel > .covers.auto{
    -webkit-transition: all 0.5s ease;
    -moz-transition:  all 0.5s ease;
    -ms-transition:  all 0.5s ease;
    -o-transition:  all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 4;
}

.carousel > .covers > .cover{
    justify-content: center;
    height: 100%;
}

.carousel-waiting-bar,
.carousel .waiting-bar{
    position: absolute;
    top: 0;
    height: 2px;
    width: 0;
    left: 0;
    background-color: var(--logo-color);
    z-index: 10;

    box-shadow: none;
    -webkit-transition: background 1s ease;
    -moz-transition: background 1s ease;
    transition: background 1s ease, linear-gradient 1s ease;
    /*will-change: width;
    -webkit-transition: width 0.1s ease-in-out;
    -moz-transition: width 0.1s ease-in-out;
    transition: width 0.1s ease-in-out;*/
}
.carousel .waiting-bar,
.carousel .waiting-bar[data-part="1-of-3"]{
    background-color: #4fc318;
    background: rgb(79,195,24);
    /*background: linear-gradient(90deg, rgba(0,146,70,1) 80%, rgba(255,255,255,1) 100%);*/
    background: linear-gradient(90deg,  rgba(0,146,70,1) 50%, rgba(255,255,255,1) 90%, rgba(217,5,5,1) 100%);
}

.carousel .waiting-bar[data-part="2-of-3"]{
    background-color: #f0f0f0;
   /* background: linear-gradient(86deg,  rgba(0,146,70,1) 60%, rgba(255,255,255,1) 100%);*/
    background: linear-gradient(90deg,  rgba(0,146,70,1) 50%, rgba(255,255,255,1) 90%, rgba(217,5,5,1) 100%);
}

.carousel .waiting-bar[data-part="3-of-3"]{
    background-color: #c00;
    background: linear-gradient(90deg,  rgba(0,146,70,1) 40%, rgba(255,255,255,1) 90%, rgba(217,5,5,1) 100%);
}



section.full-width.full-height{
    width: 100vw;
    height: 100vh;
    min-height: 280px;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    padding: 0;
    /*overflow: hidden;
    overflow-y: visible;*/
}

.full-height > .carousel > .covers,
.carousel .covers{
    height: 100%;
    width: 100%;
    min-height: 100%;
}

.cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.cards {
    width: 100%;
    height: auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: 32px;
}

.cards h2{
    text-align: center;
    color: #666;
    text-transform: lowercase;
    font-size: 1.8rem;
    padding: 0.1em 0.3em 0.3em;
    border-bottom: 1px dashed #999;
    width: auto;
    margin: 16px auto 32px;
    line-height: 1;
    position: relative;
    display: inline-block;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.cards .card{
    position: relative;
    border-radius: .2em;
    overflow: visible;
    text-align: left;
    background: #fff;
    padding: 0;
    /*transition: all .3s ease;*/
    min-height: 200px;
    margin: 1em;

    max-width: 50%;

    width: 30%;
    max-width: 320px;
    outline: 4px solid transparent;
    padding-bottom: 64px;
    border: 0;
    box-shadow: none;
}

.cards .card > a{
    text-decoration: none;
}

.cards .card:hover .button.card--button{
    background: #2196F3!important;
    color: #fff;
}

.card .container{
    text-align: center;
    padding-bottom: 32px;
}

.card--title,
.card--subtitle{
    color: #d22d7c;
    color: #666;
    font-weight: 700;
    font-size: 1.6em;
    margin: 0;
    padding: 0;
    padding-bottom: 8px;
    line-height: 1em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    text-transform: lowercase;
}

.card--title{
    color: #666;
    /*max-height: 2em;*/
    white-space: normal;
    font-size: 14pt;
}

.card .card--subtitle,
h5.card--subtitle{
    font-family: 'Annie Use Your Telescope', cursive;
    font-size: 1.6em;
    color: #993!important;
    text-transform: none;
    white-space: normal;
}

.card--price.hide{
    display: none;
}

.card--info{
    text-align: center;
    font-family: 'DIN Light', sans-serif;
    color: #999;
    text-decoration: none!important;
    font-weight: 300;
    font-size: 12pt;
    overflow: hidden;
    line-height: 1em;
    /* height: 2em; */
    margin: 0;
    text-overflow: ellipsis;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 1em;
    max-height: 3em;
    margin-bottom: 6px;
}

.card--weight,
.card--price{
    text-align: center;
    font-size: 11pt;
    color: #666!important;
    font-weight: 600;
    font-family: 'Playfair Display SC', serif;
    margin: 0;
    padding: 0;
    line-height: 1.2em;
}

.card--info p:last-child{
    margin-bottom: 0;
}

.stack.footer{
    margin: 16px auto;
    padding: 0;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.ribbon{
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
    background: #E91E63;
    width: auto;
    padding: 10px 12pt 5pt;
    border-radius: 20em;
    color: #fff;
    margin: 16px auto 0;
    font-weight: 600;
    font-size: 14pt;
    text-transform: uppercase;
    /*left: 50%;
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);*/
}

.cover .ribbon{
    margin-bottom: 1em;
    /*-webkit-mix-blend-mode: luminosity;
    -moz-mix-blend-mode: luminosity;
    mix-blend-mode: luminosity;*/
}

.card .icon{
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 280px;
    cursor: pointer;
    background-size: auto 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    padding-bottom: 100%;
    max-height: 280px;
    -webkit-transform: translate(10px, 0);
    -moz-transform: translate(10px, 0);
    transform: translate(10px, 0);

}

.button.card--button {
    line-height: 32px;
    padding-left: 24px;
    padding-right: 24px;
    text-decoration: none;
    font-weight: bold;
    background-color: #666;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    margin: 0;
    /* bottom: 24px; */
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 1em;
    text-shadow: none;
    border: 0 solid #666;
    background: #000!important;
    color: #fff!important;
    line-height: 1;
    font-size: 14pt;

}

.button.card--button:hover{
    background: #2196F3!important;
    color: #fff;
}


.ribbon-big {

    margin: 0;

    position:relative;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0;
    text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
    box-shadow: inset 0px 1px 0px rgba(255,255,255,.3),
    inset 0px 0px 20px rgba(0,0,0,0.1),
    0px 1px 1px rgba(0,0,0,0.4);
    background: -webkit-linear-gradient(top,#1eb2df, #17a7d2);
    display: inline-block;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: transparent;
    margin-bottom: 16px;

}

.ribbon-big:before, .ribbon-big:after {
    content: "";
    width:.2em;
    bottom:-.5em;
    position:absolute;
    display:block;
    border: .9em solid #0b561c;
    /*box-shadow:0px 1px 0px rgba(0,0,0,0.4);*/
    z-index:-2;
}

.ribbon-big:before {
    left:-1.35em;
    border-right-width: .75em;
    border-left-color:transparent;
    top: 0.1em;
    box-shadow: 8px 4px 6px rgba(0,0,0,0.3);
}

.ribbon-big:after {
    right:-1.35em;
    border-left-width: .75em;
    border-right-color:transparent;
    top: 0.1em;
    box-shadow: -8px 4px 6px rgba(0,0,0,0.3);
}

.ribbon-big--content:before, .ribbon-big--content:after {
    content:"";

    bottom: -.6em;
    position:absolute;
    display:block;
    border-style:solid;
    border-color: #ffb900 transparent transparent transparent;
    z-index:-1;
}

.ribbon-big--content{
    color: #0b561c;
    text-shadow: 0 2px 3px rgba(0,0,0,0.3);
    margin-top: 5%;
    padding: 0 1em .3em;
    background: #ffb900;
    border: 4px solid #0b561c;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.ribbon-big--content:before {
    left: 0;
    border-width: .2em 0 0 .5em;
    bottom: -.6em;
}

.ribbon-big--content:after {
    right: 0;
    border-width: .2em .5em 0 0;
    bottom: -.6em;
}

/* ribbon style */


.img-test{
    background: url("../../images/frontend/hp/qualita-italiana.jpeg") 50% 50% no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
}

.img-test._404{
    background: url("../../images/frontend/404/error.jpg") 50% 140% no-repeat;
    background-size: cover;
}

.img-test.qualita{
    background: url("../../images/frontend/hp/qualita-italiana.jpeg") 50% 50% no-repeat;
    background-size: cover;
}

.img-test.qualita{
    /*background: url("../../images/frontend/hp/hp-test-1.jpg") 50% 50% no-repeat;*/
    background: url("../../images/frontend/hp/violin-6.jpg") 50% 50% no-repeat;
    background-size: cover;
}

.img-test.sostenibilita{
    background: url("../../images/frontend/hp/sostenibilita.jpeg") 50% 50% no-repeat;
    background-size: cover;
}

.img-test.efficienza{
    background: url("../../images/frontend/hp/puntualita.jpeg") 50% 50% no-repeat;
    background-size: cover;
}

.img-test.efficienza{
    background:url("../../images/frontend/chi-siamo/t4-wood-small-11.jpeg") 50% 0 no-repeat;
    background-size: cover;
}




[lang="en"] .img-test.resinatura{
    background: url("../../images/carousel/resinatura.jpg") 50% 0 no-repeat;
    background-size: cover;
}

.img-test.assemblaggi{
    background: url("../../images/frontend/hp/sostenibilita.jpeg") 50% 50% no-repeat;
    background-size: cover;
}

[lang="en"] .img-test.assemblaggi{
    background: url("../../images/carousel/assemblaggio-3.jpg") 50% 0 no-repeat;
    background-size: cover;
}



[lang="en"] .img-test.cablaggi{
    background: url("../../images/carousel/wiring-3.jpg") 50% 0 no-repeat;
    background-size: cover;
}

.img-test.saldatura-stilo{
    background: url("../../images/carousel/saldatura-a-filo-4-bw.jpg") 50% 75% no-repeat;
    background-size: cover;
}

[lang="en"] .img-test.saldatura-stilo{
    background: url("../../images/carousel/saldatura-a-filo-4.jpg") 50% 75% no-repeat;
    background-size: cover;
}

.img-test.saldatura-onde{
    background: url("../../images/carousel/saldatura-a-onde-3-bw.jpg") 50% 75% no-repeat;
    background-size: cover;
}

[lang="en"] .img-test.saldatura-onde{
    background: url("../../images/carousel/saldatura-a-onde-3.jpg") 50% 75% no-repeat;
    background-size: cover;
}

.img-test.about-us-1{
    background: url("../../images/about/gfr-about-1-bw.jpg") 100% 75% no-repeat;
    background-size: cover;
}

[lang="en"] .img-test.about-us-1{
    background: url("../../images/about/gfr-about-1.jpg") 100% 75% no-repeat;
    background-size: cover;
}

.img-test.about-us-2{
    background: url("../../images/about/gfr-about-2-bw.jpg") 25% 50% no-repeat;
    background-size: cover;
}

[lang="en"] .img-test.about-us-2{
    background: url("../../images/about/gfr-about-2.jpg") 25% 50% no-repeat;
    background-size: cover;
}

.img-test.about-us-3{
    background: url("../../images/about/gfr-about-3-bw.jpg") 50% 75% no-repeat;
    background-size: cover;
}

[lang="en"] .img-test.about-us-3{
    background: url("../../images/about/gfr-about-3.jpg") 50% 75% no-repeat;
    background-size: cover;
}

.slides > .slide{
    opacity: 0;
}

.slides > .slide.moving{
    -webkit-transition: all 0s ease;
    -moz-transition:  all 0s ease;
    -ms-transition:  all 0s ease;
    -o-transition:  all 0s ease;
    transition: all 0s ease;
}

.slides > .slide.active{
    opacity: 1;
    margin-top: 0;
    animation-delay: 1s;
    -webkit-animation: fadein 0.5s ease-out 1;
    -moz-animation: fadein 0.5s ease-out 1;
    animation: fadein 0.5s ease-out 1;
}


@-webkit-keyframes fadein {
    from {
        opacity: 0;
        -webkit-transform: translateY(64px);
        -moz-transform: translateY(64px);
        transform: translateY(64px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
        -webkit-transform: translateY(64px);
        -moz-transform: translateY(64px);
        transform: translateY(64px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadein {
    from {
        opacity: 0;
        -webkit-transform: translateY(64px);
        -moz-transform: translateY(64px);
        transform: translateY(64px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

section.carousel.full-width.full-height.inverse{
    min-height: 800px;

}

@media all and (max-width: 1280px){
    section.carousel.full-width.full-height.inverse{
        min-height: 800px;
    }

    section.carousel.inverse .carousel,
    section.carousel.right .carousel{
        margin-left: 38%;
        width: 62%;
    }

    .inverse .slides {
        width: 75%;
    }
}

@media all and (max-width: 1280px){


    section.carousel.inverse .carousel,
    section.carousel.right .carousel{
        margin-left: 42%;
        width: 58%;
    }

    .inverse .slides {
        width: 75%;
    }

    h2, h3{
        font-size: 3rem;
        margin-bottom: 0.2em;
        letter-spacing: 0;
    }
}

@media all and (max-height: 700px){
    section.carousel.full-width.full-height.inverse{
        min-height: 1000px;
    }
}

@media all and (max-width: 840px){




    .cards .card{
        width: 50%;
    }

    .right-cover-content{
        width: 100%;
    }

    .right-cover-content .container{

        padding-left: 0;
        width: 105%;
    }

    .right-cover-content h3{
        word-break: normal;
    }
}

@media only screen and (max-width: 959px) and (min-width: 768px) {
    .cards > .container{
        width: 100%;
    }



}


@media all and (max-width: 767px) {

    h2,h3{
        font-size: 2rem;
        letter-spacing: -2px;
    }
    section.carousel.inverse{
        height: auto;
        overflow: visible;
    }

    section.carousel.inverse .carousel,
    section.carousel.right .carousel{
        margin-left: 0;
        width: 100%;
        height: 100vh;
        flex: 0 0 100%;
        position: absolute;
    }

    section.carousel .carousel:after,
    section.carousel .carousel:before{
        display: none;
    }

    inverse .right-cover-content{
        position: relative;
        width: 100%;
        height: auto;
        flex: 0 0 100%;

    }

    .inverse .right-cover-content .v-centered{
        transform: none;
        top: auto;
        padding-top: 32px;
    }

    section.carousel.full-width.full-height + section,
    section.carousel.full-width.full-height + section.evidence{
        z-index: 0;
        padding-top: 0;
    }

    .slides .slide{
        z-index: 20;
    }

    .slides .slide p {
        width: 100%;
    }

    .right-cover-content .container{
        text-align: center;
        margin: 0 auto;
        width: 90%;
        padding: 0;
    }

    section.carousel .carousel .covers {
        height: 75vh;
        min-height: auto;
        background: #fff;
    }

    section.carousel .carousel{
        background: #fff!important;
    }

    section.carousel .carousel-dots{
        bottom: auto;
        top: 75vh;
        margin: 0;
        z-index: 20;
        -webkit-transform: translate(-50%, -300%);
        -moz-transform: translate(-50%, -300%);
        transform: translate(-50%, -300%);
    }

    .right-cover-content{
        background: transparent;
        width: 100%;
        left: auto;
        padding-top: 75vh;
        position: relative;
        padding-left: 0;
        padding-bottom: 32px;
        z-index: 20;
    }

    .why-us.block h4{
        padding-top: 16px;
    }
    .in-evidence-block h3,
    .right-cover-content h4{
        z-index: 200;
        padding-top: 8px;
    }

    .right-cover-content:before {
        content: ' ';
        position: absolute;
        width: 200%;
        height: 64px;
        -webkit-transform: translate(-35%, -20%) rotate(-1deg);
        -moz-transform: translate(-35%, -20%) rotate(-1deg);
        transform: translate(-35%, -20%) rotate(-1deg);
        background: #fff;
        left: 50%;
        z-index: 0;
    }

    .inverse .right-cover-content{
        max-width: 90vw;
    }

    .slides .slide {
        width: 100%;
        position: relative;
    }

    .inverse .slides {
        width: 100%;
    }

    .site-menu{
        right: 70px;
    }

    header{
        backdrop-filter: none;
    }

    header .logo{
        filter: drop-shadow(0 3px 2px rgba(0,0,0,0.1));
    }

    header .main-menu, .main-menu{
        background: var(--title-color)
    }




    .switch-lang .current-lang{
        width: 26px;
        height: 26px;
        border: 1px solid #f0f0f0;
        margin-top: 8px;
    }

    .switch-lang [type="checkbox"]:checked ~ .close-language-switch, .switch-lang [type="checkbox"]:checked ~ .lang-dropdown{
        margin-left: -5px;
    }

    .site-menu > label{
        background: transparent;
    }

    .hamburger{
        right: -10px;
    }

    .hamburger li{
        background: var(--logo-color);
        box-shadow: none;
        /*filter: drop-shadow(0 3px 2px rgba(0,0,0,0.8));*/
    }

    .main-menu:before{
        border-color: var(--title-color) transparent;
    }

    #site-menu-toggler:checked ~ header .main-menu, #site-menu-toggler:checked ~ header .mobile-menu-toggler-bg{
        right: -26px;
    }

    .main-menu a > span{
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    header .main-menu > li.active > a > span{
        background: #333;
        color: #fff;
    }

    .main-menu > li.active > a > span, .main-menu a span.active, .main-menu a:hover > span, .main-menu a > span:hover{
        background: #fff;
        color: var(--title-color) ;
    }

    header .main-menu > li.active > a > span.active{
        border-radius: 0;
    }

    header .submenu li{
        padding: 4px 0;
        border-radius: 0;
    }

    .main-menu a span:hover{
        border-color: var(--title-color) transparent;
    }

    .carousel-waiting-bar, .carousel .waiting-bar{
        top: 0;
    }

    section.carousel .waiting-bar{
        height: 4px;
    }

    .cards > .container{
        width: 100%;
    }

    .evidence.for-hp .full-bg-left{
        height: 60vh;
        width: 100vw;
    }

    .evidence.for-hp .full-bg-left:after{
        display: none;
    }

    .evidence.for-hp .content-side{
        padding-top: 60vh;
    }

    .in-evidence-block{
        padding-left: 0;
        text-align: center;
    }

    section.in-evidence{
        padding: 0 0;
    }

    section.in-evidence::before,
    section.imballaggi-evidence::before{
        left: 0;

    }

    footer{
        margin-top: 32px;
    }

}


@media all and (max-width: 700px) {

    .carousel-waiting-bar,
    .carousel .waiting-bar {
        top: 0;
        /*background: #ffb900;*/
        box-shadow: none;
    }
}

@media all and (max-width: 600px) {
    .cards .card{
        width: 100%;
    }

    .right-cover-content .container{
        text-align: center;
        margin: 0 auto;
        width: 90%;
        padding: 0;
    }

    .slides .slide p{
        width: 100%;
    }

    .inverse .slides{
        width: 100%;
    }

    section.carousel.full-width.full-height.inverse{
        height: auto;
    }





    .inverse .right-cover-content{

    }

    section.carousel .carousel .covers{
        min-height: 100%;
    }


    .cover__title{
        font-size: 20pt;
        line-height: 1;
        margin-bottom: 8px;

    }

    .cover__subtitle{
        font-size: 18pt;
        line-height: 1;
        margin-bottom: 8px;
    }

    .cover__info * {
        margin-bottom: 4px;
    }

    .cover__info{
        /*height: 4.4em;*/
        line-height: 1.1;
        width: 90%;
        max-width: 90%;
        font-size: 14pt;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 16px;
    }

    .cover nav .button{
        font-size: 12pt;
    }

    .why-us.block .col-xs{
        flex: 0 0 100%;
    }
}