/************************************************
Stylesheet: Global Stylesheet
*************************************************/


/* 
 * COLORS
 * 
 * Orange: #fa9746
 * Azure:  #699eee
 * Blue:   #0e3092
 * Black:  #000
 */


/*********************
GENERAL STYLES
*********************/

h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, table, span, input, textarea {
    font-family: 'Rajdhani', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
    color: #699eee;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

h1 { font-size: 3.0rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2.1rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.6rem; }
h6 { font-size: 1.4rem; }

p {
    font-size: 1rem;
    color: #000;
    line-height: 1.5em;
    text-align: justify;
}
ol, ul, li {
    font-size: 1rem;
    color: #000;
}
table {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.3em;
}

    @media (max-width:48em) {
        h1 { font-size: 2rem; }
        h2 { font-size: 1.8rem; }
        h3 { font-size: 1.6rem; }
        h4 { font-size: 1.5rem; }
        h5 { font-size: 1.4rem; }
        h6 { font-size: 1.3rem; }
        button, .button { }
    }

.entry-content h2, .entry-content h3 {
    color: #fff;
    line-height: 1.5;
    margin-top: .8em;
    margin-bottom: .4em;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #699eee;
}
.entry-content h4 {
    margin-bottom: .5em;
    padding-bottom: 0;
    border-bottom: 1px solid #699eee;
}
.entry-content h5, .entry-content h6 {
    color: #fa9746;
    font-size: 1.2rem;
    margin-bottom: .5em;
    padding-bottom: 0;
    border-bottom: 1px solid #fa9746;
}

a {
    color: #fa9746;
    font-weight: 700;
    text-decoration: none;
}
    a:hover {
        color: #ccc;
        text-decoration: underline;
    }
    article.post .title a { 
        color: inherit;
        text-decoration: none;
     }

a.button {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 20px 10px;
    text-transform: uppercase;
    text-decoration: none !important;
    min-width: 220px;
    border-radius: 50px;
    border: 1px solid #fff;
    background: linear-gradient(90deg, rgba(44,72,144,1) 0%, rgba(105,158,238,1) 100%);
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
    button:hover, a.button:hover {
        color: #fff;
        background: linear-gradient(-90deg, rgba(44,72,144,1) 0%, rgba(105,158,238,1) 100%);
    }
    button:focus, a.button:focus {
        color: #fff;
        background: linear-gradient(-90deg, rgba(44,72,144,1) 0%, rgba(105,158,238,1) 100%);
    }
a.button_white {
    color: #fff;
    border: 1px solid #fa9746;
    background: #fa9746;
}
    a.button_white:hover {
        color: #fa9746;
        background: #fff;
    }

.archive-grid h3.title {
    font-size: 1.5rem;
    text-transform: none;
}
.archive-grid a img {
    width: 100%;
    height: auto;
    opacity: 1;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
    .archive-grid a img:hover {
        opacity: .7;
    }
.archive-grid a.button {
    width: 100%;
    min-width: auto;
}





/*********************
MENU
*********************/

/* EFFETTI PRINCIPALI SU SCROLL */
header.header {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 99000;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    border-bottom: 1px solid #fff;
    background: #fff;
}
    @media (max-width:48em) {
        header.header {
            -moz-transition: all .3s;
            -o-transition: all .3s;
            -ms-transition: all .3s;
            -webkit-transition: all .3s;
            transition: all .3s;
        }
    }
.darkHeader {
    border-bottom: 1px solid #fa9746 !important;
}
.top-bar, .top-bar ul {
    background-color: transparent;
}
    .darkHeader .top-bar {
        padding: 3px 0;
    }

/* PULSANTI */
header.header a {
    color: #000;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
}
.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after,
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle)>a::after {
    border-color: #fa9746 transparent transparent;
}

        
/* PAGINA ATTIVA */
.menu .active>a {
    color: #fa9746;
    text-align: center;
    background: transparent;
    border: 2px solid #fa9746;
    border-radius: 50px;
}
    header.header.darkHeader .active>a {
        
    }

/* LOGO */
header.header .menu a.logo {
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0 1rem 0 0;
}
    header.header.darkHeader .menu a.logo {
        color: #699eee;
    }
    @media (max-width:40em) {
        header.header .menu a.logo { font-size: 1.2em; }
    }
.menu a.logo img {
    height: 70px;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    padding-right: 15px;
}
    .darkHeader .menu a.logo img {
        height: 50px;
    }
    @media (max-width:64em) {
        .menu a.logo img {
            height: 60px;
            padding-right: 10px;
        }
    }

/* PAYOFF */
.menu a.logo span {
    display: block;
    color: #000;
    font-size: .8rem;
    font-weight: 700;
    visibility: visible;
    width: auto;
    height: auto;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -ms-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}
    .darkHeader .menu a.logo span {
        width: 0px;
        height: 0px;
        visibility: hidden;
    }
    @media (max-width:40em) {
        .menu a.logo span {
            max-width: 250px;
        }
    }

/* DIMENSIONE MENU SU TABLET */
@media (max-width:63.9375em) {
    .show-for-medium > ul > li > a {
        font-size: 0.8em;
    }
}


/*********************
MENU MOBILE
*********************/

/* Medium: max-width: 63.9375em */ /* Small: max-width: 39.9375em) */



/* MENU A TENDINA SULLE MEDIUM media queries COME SULLE SMALL media queries: */
@media screen and (max-width: 63.9375em) {
    body.home .top-bar .top-bar-left { }
    ul#main-nav { 
        top: 0px !important;
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 0 10px #999;
    }
}
@media screen and (min-width: 39.9375em) and (max-width: 63.9375em) {
    .top-bar {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .top-bar .top-bar-right .menu ul.vertical.menu.accordion-menu {
        width: 100%;
    }
    ul#main-nav {
        width: 100%;
        top: 10px;
        right: 0;
        left: 0;
    }
}


/* ALTEZZA MENU MOBILE */
@media screen and (max-width: 63.9375em) {
.vertical .is-accordion-submenu-parent {
    height: auto !important;
}
}

/* SFONDO MENU MOBILE */
/*
.show-for-medium-only ul.medium-horizontal.menu.submenu.is-accordion-submenu.dropdown.is-active,
.show-for-small-only ul.medium-horizontal.menu.submenu.is-accordion-submenu.accordion-menu.is-active {
    background-color: #fff !important;
}
*/

/* PULSANTE MENU MOBILE */
a.mobilemenubutton {
    display: block;
    position: absolute !important;
    width: 100px;
    height: 35px;
    text-align: right;
    padding: 7px !important;
    right: 0;
    left: auto;
    top: 7px;
    right: 3px;
    margin: 0 auto;
}
    @media screen and (max-width: 63.9375em) { 
        a.mobilemenubutton {
            top: -50px;
            right: 0;
        }
    }
a.mobilemenubutton i {
    font-size: 1.6rem;
}
.darkHeader a.mobilemenubutton i {
    color: #699eee;
    font-size: 1.6rem;
}
a.mobilemenubutton::after {
    display: none !important;
}




/*********************
WPML
*********************/
.wpml-ls-statics-shortcode_actions {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    padding: 0;
    padding-right: 10px;
    border: 0;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -ms-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}
    header.header.darkHeader .wpml-ls-statics-shortcode_actions {
        height: 0px !important;
        opacity: 0 !important;
    }
    @media (max-width:40em) {
        
    }
.wpml-ls-legacy-list-horizontal>ul {
    text-align: right;
}
.wpml-ls-legacy-list-horizontal .wpml-ls-item {
    font-size: 1rem;
}
/*
    @media (max-width:40em) {
        .wpml-ls-statics-shortcode_actions {
            position: absolute;
            right: 55px;
            top: -45px;
        }
    }
@media (max-width:40em) {
    .wpml-ls-statics-shortcode_actions a.wpml-ls-link {
        font-size: .8em;
        padding: 5px 10px;
    }
}
*/



/*********************
MAIN CONTENT
*********************/

.maxwidthcontent {
    max-width: 1200px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
    @media (max-width:1220px) {
        .maxwidthcontent {
            padding: 0 10px;
        }
    }
.maxwidthpost {
    max-width: 900px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}
    @media (max-width:1220px) {
        .maxwidthpost {
            padding: 0 10px;
        }
    }
#boxthumb {
    position: relative;
    height: 60vH;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}
    @media screen and (max-width: 40em) { 
        #boxthumb {
            height: 40vH;
        }
    }
#boxthumb_mini {
    position: relative;
    height: 30vH;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-position: center;
    background-size: 110%;
    background-repeat: no-repeat;
}
#boxNOthumb {
    position: relative;
    height: 120px;
    background-color: #699eee;
}

/* HEADER PAGINE E POST */
article.post header.article-header {
    text-align: center;
}
article.page header.article-header {
    position: relative;
    margin-top: 100px;
}
article.page header.article-header {
    background-color: #eaf3fa;
}
article.page header.article-header h1.page-title {
    color: #000;
    font-size: 4rem;
    position: absolute;
    top: 25vH;
    left: 20%;
}
    @media screen and (max-width: 1600px) { 
        article.page header.article-header h1.page-title {
            left: 70px;
        }
    }
    @media screen and (max-width: 1300px) { 
        article.page header.article-header h1.page-title {
            left: 20px;
        }
    }
    @media screen and (max-width: 40em) { 
        article.page header.article-header h1.page-title {
            top: 50px;
            font-size: 2.5rem;
        }
    }
h1.single-title,
article.post .title,
.single-post h2, .single-post h3,  .single-post h4,  .single-post h5,  .single-post h6 {
    text-align: left;
    text-transform: none;
}
h2 img {
    width: auto;
    height: auto;
    max-height: 50px;
}
    @media screen and (max-width: 40em) { 
        h2 img {
            max-height: 40px;
        }
    }

/* CONTENUTO PRINCIPALE */
article.page .entry-content {
    padding-top: 40px;
}
.archive-grid .entry-content {
    padding-top: 10px;
}
.archive-grid .entry-content p {
    text-align: left;
}

/* SFONDO PUNTINATO */
.dotoverlay {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    background-image: url(../images/dot-overlay.svg);
    background-color: rgba(0, 0, 0, 0.3);
    background-size: 2px 2px;
    background-repeat: repeat;
}

/* BOX A TUTTO SCHERMO */
.boxfullheight {
    display: table;
    width: 100%;
    height: 100vH;
}
    @media (max-width:48em) {
        .boxfullheight {
            padding: 0;
        }
    }

/* BOX A ALTEZZA VARIABILE */
.boxtable {
    display: table;
    width: 100%;
    height: 100%;
}

/* CONTENITORE PER TESTI CENTRATI */
.boxcentercell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/* CELLE A ZERO */
@media screen and (max-width: 39.9375em) { /* Small: max-width: 39.9375em) */
    .small-0 { display: none; }
}
@media screen and (min-width: 39.9376em) { /* Medium: max-width: 63.9375em */ 
    .medium-0 { display: none !important; }
}

/* RICERCA */
#productsfooter_search {
    display: block;
    position: relative;
    width: 100%;
    margin: 70px auto;
}
form.search-form {
    display: block;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
form.search-form label,
form.search-form button {
    display: inline-block;
    margin: 0;
    padding: .85em 1em;
    font-size: 1rem;
}
form.search-form label {
    width: calc(100% - 70px);
}
form.search-form input[type=search] {
    border: 0;
    border-bottom: 1px solid #fa9746;
    -webkit-box-shadow: none;
    box-shadow: none;
}
form.search-form button[type=submit] {
    background-color: #fa9746;
}
span.results_icon i {
    color: #699eee;
    vertical-align: middle;
    padding-right: 10px;
}
.topanchor {
    top: auto;
    bottom: 0;
    right: 10px;
    width: auto;
    background: rgb(250, 151, 70);
    z-index: 999999;
}


/*********************
SLIDE

Realizzato con Orbit
di Foundation
*********************/

/* Attivo su Home */
#slide_home {
    background: transparent;
}
#slide_home .orbit,
#slide_home .orbit-wrapper,
#slide_home .orbit-slide,
#slide_home .orbit-image,
#slide_home .dotoverlay_abs {
    height: 65vH;
    min-height: 580px;
}
    @media (max-width:69em) {
        #slide_home .orbit,
        #slide_home .orbit-wrapper,
        #slide_home .orbit-slide,
        #slide_home .orbit-image,
        #slide_home .dotoverlay_abs {
            height: 400px;
            min-height: 400px;
        }
    }
    @media (max-width:320px) {
        #slide_home .orbit,
        #slide_home .orbit-wrapper,
        #slide_home .orbit-slide,
        #slide_home .orbit-image,
        #slide_home .dotoverlay_abs {
            height: 400px;
            min-height: 400px;
        }
    }
.dotoverlay_abs {
    display: table;
    position: absolute;
    width: 100%;
    top: 0;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    /*
    background-image: url(../images/dot-overlay.svg);
    background-color: rgba(0, 0, 0, 0.1);
    background-size: 2px 2px;
    background-repeat: repeat;
    */
}
.orbit-image {
    object-fit: cover;
    object-position: center;
}
    @media (max-width:40em) {
        .orbit-image { object-position: top; }
    }

.orbit-caption {
    position: absolute;
    max-width: 1200px;
    height: auto;
    text-align: left;
    background-color: transparent;
    /*
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0) 100%);
    */
    bottom: auto; /* Correzione */
    margin-bottom: auto; /* Correzione */
    margin: 0 auto;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
    @media (max-width:1300px) {
        .orbit-caption { max-width: calc(100% - 80px); }
    }
    @media (max-width:48em) {
        .orbit-caption {
            max-width: calc(100% - 40px);
            top: 150px;
            transform: translate(-50%, 0);
        }
    }
    @media (max-width:40em) {
        .orbit-caption {
            max-width: calc(100% - 40px);
            top: 60px;
            transform: translate(-50%, 0);
        }
    }

.orbit-caption h2,
.orbit-caption p {
    display: block;
    max-width: 50%;
    margin: 0;
    padding: 0 !important;
    color: #000;
    font-weight: 700;
    text-align: left;
    line-height: 1;
    text-transform: none;
}
    @media (max-width:40em) { .orbit-caption h2, .orbit-caption p { max-width: 70%; } }

.orbit-caption h2 {
    font-size: 3rem !important;
    margin-top: 10px;
}
    @media (max-width:48em) { .orbit-caption h2 { font-size: 2rem !important; } }
    @media (max-width:40em) { .orbit-caption h2 { font-size: 1.6rem !important; } }

.orbit-caption p {
    font-size: 1rem;
    line-height: 1.5;
}
    @media (max-width:48em) { .orbit-caption p { font-size: 1rem; } }
    @media (max-width:40em) { .orbit-caption p { font-size: 0.8rem; } }

.orbit-caption p.slidetag {
    display: inline;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 2px 18px !important;
}
.orbit-caption a.button_figcaption {
    display: block;
    max-width: 220px;
    margin: 20px 0 0 0;
}

.orbit-controls button,
.orbit-bullets button {
    cursor: pointer;
}
    @media (max-width:48em) {
        .orbit-controls button { display: none; }
    }
.orbit-controls button {
    font-size: 3em;
    border: 0;
    background-color: transparent;
}
.orbit-controls button.orbit-next,
.orbit-controls button.orbit-previous {
    color: #fa9746;
}
.orbit-bullets {
    position: absolute;
    margin: 0;
    height: auto;
    overflow: hidden;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -1px);
}
.orbit-bullets button {
    width: 1.2rem;
    height: 0.8rem;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background-color: #fff;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.orbit-bullets button.is-active {
    width: 1.6rem;
    background-color: #fa9746;
}

/* SLIDE 1
li.orbit-slide.slide_1 {
    background-color: #fa9746;
    background-image: url(../images/bg_0.png);
    background-position: right;
    background-size: 60% 2000px;
    background-repeat: no-repeat;
}
li.orbit-slide.slide_1 .orbit-caption { }
    @media (max-width:48em) {
        li.orbit-slide.slide_1 .orbit-caption {
            max-width: calc(100% - 40px);
            top: 50%;
            transform: translate(-50%, -50%);
        }
    }
li.orbit-slide.slide_1 h2,
li.orbit-slide.slide_1 p {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
li.orbit-slide.slide_1 a.button_figcaption {
    margin: 20px auto 0 auto;
}
 */


/*********************
HOME
*********************/

body.home .entry-content {
    padding: 100px 0;
}
body.home .entry-content .grid-x {
    max-width: 1200px;
    margin: 0 auto;
}
body.home .entry-content p.subtitle {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
body.home h2 {
    font-size: 2.8rem;
    padding: 0;
}
body.home .entry-content h2, body.home .entry-content h3, body.home .entry-content h4, body.home .entry-content h5, body.home .entry-content h6 {
    color: #699eee;
    margin-top: 0;
    margin-bottom: .5rem;
    border-bottom: 0;
    background-color: transparent;
}

/* PAYOFF */
#home_payoff {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 100px 0 0 0;
    padding: 30px 5px;
    background-color: #fa9746;
    background-image: url(../images/bg_0.png);
    background-position: right;
    background-size: 60% 2000px;
    background-repeat: no-repeat;
}
#home_payoff h2 {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
}
    @media (max-width:48em) { #home_payoff h2 { font-size: 2rem !important; } }
    @media (max-width:40em) { #home_payoff h2 { font-size: 1.6rem !important; } }

#home_payoff p {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
    @media (max-width:48em) { #home_payoff p { font-size: 1rem; } }

#home_payoff a.button {
    display: inline-block;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 20px auto 0 auto;
    padding: 20px 10px;
    text-transform: uppercase;
    min-width: 10px;
    border-radius: 50px;
    border: 1px solid #fff;
    background: transparent;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
    #home_payoff a.button:hover {
        background: rgba(0,0,0,.3);
    }
    #home_payoff a.button:focus {
        background: rgba(0,0,0,.3);
    }

/* CHI SIAMO */
#home_whoweare {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    background-color: #699eee;
    background-image: url(../images/bg_0.png);
    background-position: right;
    background-size: 60% 2000px;
    background-repeat: no-repeat;
}
#home_whoweare .cell h2,
#home_whoweare .cell p {
    color: #fff;
}

/* SERVIZI PRINCIPALI */
#home_services {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
}
#home_services .cell h2 { margin-bottom: 50px; }
#home_services .cell p {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 70px;
}
#home_services .cell .icon {
    display: block;
    width: auto;
    height: 60px;
    margin: 0 auto 40px auto;
}

/* SEGMENTI */
#home_segments {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    background-color: #699eee;
    background-image: url(../images/bg_0.png);
    background-position: right;
    background-size: 60% 2000px;
    background-repeat: no-repeat;
}
#home_segments h2,
#home_segments p { 
    color: #fff;
}
/*
#home_segments .single_segment {
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid #fff;
    min-height: 100px;
    padding: 10px 20px;
    margin: 10px auto;
}
#home_segments .single_segment p {
    position: absolute;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/
#home_segments .cell h2 { margin-bottom: 50px; }
#home_segments .cell p {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 70px;
}
#home_segments .cell .icon {
    display: block;
    width: auto;
    height: 60px;
    margin: 0 auto 40px auto;
}

/* CUSTOMERS */
#home_customers {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 4em 0;
}
#home_customers .grid-x {
    max-width: 900px;
    margin: 0 auto;
}
#home_customers h2 {
    padding: 0;
}
#home_customers img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#home_customers .customer_description {
    color: #000;
    font-size: .9rem;
    text-align: center;
    padding-top: 15px;
}

/* RECENSIONI */
#home_testimonials {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    background-color: #fa9746;
    background-image: url(../images/bg_0.png);
    background-position: right;
    background-size: 60% 2000px;
    background-repeat: no-repeat;
}
#home_testimonials .grid-x .testimonail {
    border: 1px solid #fff;
    border-radius: 20px;
}
#home_testimonials h2,
#home_testimonials p {
    color: #fff;
    padding: 20px 5px;
}
#home_testimonials p span {
    display: block;
    font-weight: 700;
    text-align: left;
    padding-top: 15px;
}

/* PORTFOLIO */
#portfolio_list {
}
#portfolio_list .cell {
    text-align: center;
}
#portfolio_list a {
    font-size: 1.4rem;
}
#portfolio_list a i {
    font-size: 3rem;
}



/*********************
SERVIZI
*********************/

#page_services {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    margin-top: 0;
}
#page_services .cell h2 { margin-bottom: 50px; }
#page_services .cell p {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 1.5em;
}
#page_services .cell .icon {
    display: block;
    width: auto;
    height: 60px;
    margin: 0 auto 40px auto;
}



/*********************
SEGMENTI
*********************/

#page_segments {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    margin-top: 50px;
}
/*
#page_segments .single_segment {
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100px;
    border: 2px solid #699eee;
    min-height: 100px;
    padding: 10px 20px;
    margin: 10px auto;
}
#page_segments .single_segment p {
    position: absolute;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/
#page_segments .cell h2 { margin-bottom: 50px; }
#page_segments .cell p {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 0px;
}
#page_segments .cell .icon {
    display: block;
    width: auto;
    height: 60px;
    margin: 0 auto 40px auto;
}



/*********************
CHI SIAMO
*********************/

#whoweare {
    padding: 70px 10px;
    background: linear-gradient(90deg, rgba(44,72,144,1) 0%, rgba(105,158,238,1) 100%);
}
#whoweare h2,
#whoweare p,
#whoweare ul, #whoweare ol, #whoweare li {
    color: #fff;
}
#whoweare div.verticalLineBox {
    height: 120px;
    border-right: 1px solid #fff;
}
#whoweare p.story_left,
#whoweare p.story_right {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}
    @media screen and (min-width: 39.9375em) {
        #whoweare .cell {
            position: relative;
        }
        #whoweare p.story_left,
        #whoweare p.story_right {
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
        }
        #whoweare p.story_left {
            right: 0;
        }
        #whoweare p.story_right {
            left: 0;
        }
    }

#whoweare p.story_left {text-align: right; }
#whoweare p.story_right { text-align: left; }

#whoweare p.story_year {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}
    @media screen and (min-width: 39.9375em) {
        #whoweare p.story_year {
            font-size: 1rem;
        }
    }
    @media screen and (min-width: 320px) {
        #whoweare p.story_year {
            font-size: 1.1rem;
        }
    }



/*********************
RECENSIONI
*********************/

#page_testimonials {
    padding: 70px 10px;
    background: linear-gradient(90deg, rgba(44,72,144,1) 0%, rgba(105,158,238,1) 100%);
}
#page_testimonials h2,
#page_testimonials p,
#page_testimonials ul, #page_testimonials ol, #page_testimonials li {
    color: #fff;
}
#page_testimonials .testimonail {
    border: 1px solid #fff;
    border-radius: 20px;
}
#page_testimonials p span {
    display: block;
    font-weight: 700;
    text-align: left;
    padding-top: 15px;
}



/*********************
CONTATTI
*********************/

#page_contact_Call p,
#page_contact_Call a.button {
    margin: 0;
}
#page_contact_Call h2 { text-align: right; }
    @media screen and (max-width: 39.9375em) { /* small-12 */
        #page_contact_Call h2 { text-align: center; }
    }
#page_contact_Call p { text-align: left; }
    @media screen and (max-width: 39.9375em) { /* small-12 */
        #page_contact_Call p { text-align: center; }
    }



/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline { }
.byline i {
    color: #fa9746;
    min-width: 40px;
}

.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #14679e;
    color: #fefefe; }

/*********************
IMAGE GALLERY STYLES
*********************/
.gallery {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.gallery::before, .gallery::after {
  content: ' ';
  display: table; }

.gallery::after {
  clear: both; }

.gallery.gallery-columns-1 > dl {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-1 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-1 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-2 > dl {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-2 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-2 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-3 > dl {
  width: 33.33333%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-3 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-3 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-4 > dl {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-4 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-4 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-5 > dl {
  width: 20%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-5 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-5 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-6 > dl {
  width: 16.66667%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-6 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-6 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-7 > dl {
  width: 14.28571%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-7 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-7 > dl:last-child:not(:first-child) {
    float: right; }

.gallery.gallery-columns-8 > dl {
  width: 12.5%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .gallery.gallery-columns-8 > dl {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .gallery.gallery-columns-8 > dl:last-child:not(:first-child) {
    float: right; }

.gallery dl {
  width: 100%;
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.gallery dl:last-child:not(:first-child) {
  float: right; }

/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/

div#sidebar1 {
    background: #f1f1f1;
    margin-bottom: 20px;
}
.sidebar li {
    list-style: none;
    line-height: 1.2;
    padding-bottom: 10px;
}

.widget ul {
  margin: 0; }

h4.widgettitle {
    border-top: 1px solid #699eee;
}
.widget_recent_entries h4.widgettitle {
    border-top: 0;
}
.widget_recent_entries a {
    color: #699eee;
}
.article-footer p {
    color: #aaa;
    font-size: 1rem;
}

/*********************
FOOTER STYLES
*********************/
.footer {
    clear: both;
    margin: 0;
    padding-top: 40px;
    background-color: #000;
}
footer h4, footer p, footer a {
    color: #eee;
    text-align: center;
}
    footer a:hover {
        color: #fa9746;
    }
footer h4 {
    font-size: 1.1em;
    font-weight: 700;
    padding-top: 0;
    margin-top: 0;
}
footer p {
    font-size: 0.9em;
}
footer a.social {
    font-size: 1.5rem;
    padding: 0 7px 0 7px;
}

@media screen and (max-width: 39.9375em) { /* small-12 */
    footer .small-12 {
        padding-top: 35px;
    }
}

footer p.credits {
    padding-top: 50px;
    padding-bottom: 20px;
}
footer p.credits,
footer p.credits a {
    color: #ccc;
    font-size: 0.8rem;
}
    footer p.credits a:hover {
        color: #fa9746;
    }

/* RICERCA NEL FOOTER */
#footer_search {
    display: block;
    position: relative;
    width: 90%;
    margin: 0 auto 0 0;
}
#footer_search form.search-form {
    display: block;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
#footer_search form.search-form label,
#footer_search form.search-form button {
    display: inline-block;
    color: #fff;
    margin: 0;
    padding: .85em 1em;
    font-size: 1rem;
    background: transparent;
}
#footer_search form.search-form label {
    width: calc(100% - 70px);
    padding-left: 0;
}
#footer_search form.search-form button {
    border: 0;
    background: #555;
}
    #footer_search form.search-form button:hover {
        border: 0;
        background: #999;
    }
#footer_search form.search-form input[type=search] {
    color: #fff;
    border: 0;
    border-bottom: 1px solid #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
}



/*********************
VISUAL EDITOR STYLES
*********************/
body#tinymce {
  margin: 20px; }

/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }

/*# sourceMappingURL=style.css.map */




/*********************
CONTACT FORM 7
*********************/

.wpcf7 input {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border: 0;
    border-bottom: 1px solid #fa9746;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
    .wpcf7 input:focus {
        border: 0;
        border-bottom: 1px solid #fa9746;
        background-color: rgba(255,255,255,.5);
        -webkit-box-shadow: none;
        box-shadow: none;
        /*
        -webkit-transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
        transition: border-color .25s ease-in-out,-webkit-box-shadow .5s;
        transition: box-shadow .5s,border-color .25s ease-in-out;
        transition: box-shadow .5s,border-color .25s ease-in-out,-webkit-box-shadow .5s;
        */
    }
.wpcf7 textarea {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    height: 100px;
    margin-top: 30px;
    border: 0;
    border: 1px solid #fa9746;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
    .wpcf7 textarea:focus {
        background-color: rgba(255,255,255,.5);
    }
.wpcf7 [type=checkbox], .wpcf7 [type=file], .wpcf7 [type=radio] {
    margin: 0;
}
.wpcf7 input[type="checkbox"] {
    height: 1.4rem;
    width: 1.4rem;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
}
.wpcf7 input[type=submit] {
    width: 100%;
    margin-top: 20px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    background-color: #fa9746;
}
    .wpcf7 input[type=submit]:hover  {
        color: #fff;
        background-color: #699eee;
    }




/*********************
ADD TO ANU
*********************/

.addtoany_header {
    font-family: 'Rajdhani', sans-serif;
    color: #fa9746;
    margin: 0 0 5px 0;
}
.addtoany_header i {
    padding-right: 7px;
}



/*********************
GOOGLE RECAPTCHA v.3
*********************/

.grecaptcha-badge {
    opacity: 0;
}



/*********************
GOOGLE MAPS
*********************/

#mabe_map {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
#mabe_map iframe {
    position: absolute;
    top: -55px; /* Altezza uguale a quella del frame di GoogleMap presente in Contatti */
    left: 0;
    border: 0;
}
#mabe_map .maps_hide {
    content: '';
    position: absolute;
    width: 100%;
    height: 60px;
    background-color: #f1f1f1;
    top: 0;
    left: 0;
    z-index: 999999;
}



/*********************
PAGINA 404
*********************/

.page404 {
    min-height: 100vH;
    background-image: url(../images/404.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 1000px auto;
}
    @media screen and (max-width: 1400px) {
        .page404 { background-size: 1000px auto; }
    }
    @media screen and (max-width: 1200px) {
        .page404 { background-size: 900px auto; }
    }
    @media screen and (max-width: 1000px) {
        .page404 { background-size: contain; }
    }
    @media screen and (max-width: 48em) {
        .page404 { background-size: contain; }
    }
.page404 header {
    margin-top: 15%;
}
.page404 .search {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
.menu404 ul {
    border: 2px solid #fa9746;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.9);
}
.menu404 li {
    font-size: 1rem;
}
.menu404 ul li {
    display: inline-block;
    width: auto;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    margin: 0 auto;
}
.menu404 li ul li {
    display: inline-block;
    width: auto;
    font-weight: 400;
    text-transform: capitalize;
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 5px;
    background-color: transparent;
}