/************************************************
Stylesheet: Global Stylesheet
*************************************************/


/* 
 * COLORS
 * 
 * Red: #e8242d
 * Black: #222
 * Gradient: #a73f68 #f55775
 */


/*********************
GENERAL STYLES
*********************/

h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, table, span, input, textarea {
    font-family: 'Oswald', sans-serif; !important;
}
h1, h2, h3, h4, h5, h6 {
    color: #222;
    line-height: 1.1em;
    letter-spacing: 3px;
    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: 1.2rem;
    color: #222;
    line-height: 1.5em;
    font-weight: 300;
}
ol, ul, li {
    font-size: 1.2rem;
    color: #222;
}
table {
    font-size: 1.1rem;
    color: #222;
    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 { }
    }
    @media (max-width:39.9375em) {
    }

a { color: #e8242d; }
    a:hover { color: #ccc; }

a.button {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 10px 27px;
    text-transform: uppercase;
    border-radius: 50px;
    background: linear-gradient(to right, #a73f68, #f55775);
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
    button:hover, a.button:hover,
    button:focus, a.button:focus {
        color: #fff;
        background: linear-gradient(to right, #222, #555);
    }
a.button_white {
    color: #e8242d;
    background: linear-gradient(to right, #cccacb, #fff);
}
    a.button_white:hover {
        color: #fff;
        background: linear-gradient(to right, #222, #555);
    }

select option:checked {
    color: #fff;
    background-color: #e8242d;
}
option:not(:checked) {
    color: #e8242d;
    background-color: #fff; 
}




/*********************
MENU
*********************/

/* EFFETTI PRINCIPALI SU SCROLL */
header.header {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 9000;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
    @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 {
    background-color: rgba(240,240,240,0.95);
}
#top-bar-menu {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}
.top-bar-menu.maxwidthcontent { overflow: visible; }
.top-bar, .top-bar ul {
    background-color: transparent;
}
    .darkHeader .top-bar {
        padding: 3px 0;
    }

/* PULSANTI */
header.header a {
    color: #fff;
    font-size: 0.8em;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}
    @media (min-width:48em) {
        header.header.darkHeader a {
            color: #222 !important;
        }
    }
.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: #e8242d transparent transparent;
}

        
/* PAGINA ATTIVA */
.menu .active>a {
    background: transparent;
    border-bottom: 1px solid #fff;
}
    header.header.darkHeader .active>a {
        /* color: #fff !important; */
        border-bottom: 1px solid #222;
    }

/* 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: #222;
    }
    @media (max-width:39.9375em) {
        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: 55px;
    }
    @media (max-width:39.9375em) {
        .menu a.logo img {
            height: 60px;
            padding-right: 10px;
        }
    }

/* PAYOFF */
.menu a.logo {
    display: flex;
    align-items: center;
}
.menu a.logo span {
    display: block;
    color: #222;
    font-size: .8rem;
    font-weight: 700;
    visibility: visible;
    height: auto;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
    .darkHeader .menu a.logo span {
        height: 0;
        visibility: hidden;
    }
    @media (max-width:39.9375em) {
        .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 { margin-top: 20px !important; }
}
@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: 39.9375em) {
.vertical .is-accordion-submenu-parent {
    height: auto !important;
}
}

/* VOCI MENU MOBILE */
@media screen and (max-width: 39.9375em) {
header.header a, 
.menu .active>a {
    text-align: left;
}
}

/* 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: #222 !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: 39.9375em) { 
        a.mobilemenubutton {
            top: -50px;
            right: 0;
        }
    }
a.mobilemenubutton i {
    font-size: 1.6rem;
}
    .darkHeader a.mobilemenubutton i {
        color: #222;
        font-size: 1.6rem;
    }
    a.mobilemenubutton::after {
        display: none !important;
    }

/* ALTEZZA HEADER MOBILE */
@media screen and (max-width: 39.9375em) { 
    .vertical .is-accordion-submenu-parent {
        height: 0;
    }
}


/*********************
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%;
    margin-left: 0;
    margin-right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
}
    @media (max-width:67em) {
        #boxthumb {
            clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
        }
    }
    @media (max-width:40em) {
        #boxthumb {
            clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
        }
    }
#boxNOthumb {
    position: relative;
    height: 120px;
    background-color: #222;
}

.diagonalBox {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    /* Senza diagonali: 0% 0%, 100% 0%, 100% 100%, 0% 100% */
    /* sx top, dx top, dx bottom, sx bottom */
}

/* 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: 1.2rem;
}
form.search-form label {
    width: calc(100% - 70px);
}
form.search-form input[type=search] {
    border: 0;
    border-bottom: 1px solid #222;
    -webkit-box-shadow: none;
    box-shadow: none;
}
span.results_icon i {
    color: #6cb7fd;
    vertical-align: middle;
    padding-right: 10px;
}
*/


/*********************
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: 100vH;
}
@media (max-width:48em) {
    #slide_home .orbit,
    #slide_home .orbit-wrapper,
    #slide_home .orbit-slide,
    #slide_home .orbit-image,
    #slide_home .dotoverlay_abs { height: 70vH; }
}
.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;
}
.orbit-caption {
    position: absolute;
    max-width: 1200px;
    height: auto;
    text-align: center;
    background-color: transparent;
    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:39.9375em) {
        .orbit-caption { max-width: calc(100% - 20px); }
    }

.orbit-caption .title_figcaption,
.orbit-caption .text_figcaption,
.orbit-caption .button_figcaption {
    display: block;
    color: #fff;
    line-height: 1em;
    padding: 3px;
    margin: 0 auto;
}
.orbit-caption .title_figcaption,
.orbit-caption .text_figcaption {
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    max-width: 500px;
    margin-left: 0px;
}
    @media (max-width:69em) {
        .orbit-caption .title_figcaption,
        .orbit-caption .text_figcaption { max-width: 100%; }
    }
.orbit-caption .title_figcaption { font-size: 2rem; margin-bottom: 20px; }
    @media (max-width:48em) { .orbit-caption .title_figcaption { font-size: 1.7rem; } }
    @media (max-width:39.9375em) { .orbit-caption .title_figcaption { font-size: 1.4rem; } }
.orbit-caption .text_figcaption { font-weight: 300; font-size: 1.3rem; line-height: 1.5; }
    @media (max-width:48em) { .orbit-caption .text_figcaption { font-size: 1.2rem; } }
    @media (max-width:39.9375em) { .orbit-caption .text_figcaption { font-size: 1rem; } }

.orbit-caption .button_figcaption {
    display: inline-block !important;
    margin-top: 50px !important;
    padding: 10px 25px 8px 25px;
    text-transform: uppercase;
    border: 2px solid #fff;
}

.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-bullets {
    position: absolute;
    width: 320px;
    height: auto;
    margin: 0;
    overflow: hidden;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -30px);
}
.orbit-bullets button {
    display: inline-block;
    width: 12px;
    height: 7px;
    margin: 0px .3rem;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background-color: #fff;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.orbit-bullets button.is-active {
    background-color: #fff;
    height: 20px;
}
.orbit-bullets span.show-for-sr {
    display: none;
}

.diagonalBoxSlider {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vH;
    clip-path: polygon(50% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    -webkit-clip-path: polygon(50% 100%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    background-color: #fff;
}
    @media (max-width:67em) {
        .diagonalBoxSlider {
            -webkit-clip-path: polygon(50% 100%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
        }
    }
    @media (max-width:40em) {
        .diagonalBoxSlider {
            clip-path: polygon(50% 100%, 100% 70%, 100% 100%, 0% 100%, 0% 70%);
            -webkit-clip-path: polygon(50% 100%, 100% 70%, 100% 100%, 0% 100%, 0% 70%);
        }
    }



/*********************
HOMEPAGE
*********************/
#home_services { margin-top: 60px; }    
#home_services .cell { border-right: 1px solid #e8242d; }
    @media (max-width:48em) {
        #home_services .cell:first-child { border-bottom: 1px solid #e8242d; }
        #home_services .cell:nth-child(2) {
            border-bottom: 1px solid #e8242d;
            border-right: 0px;
        }
    }
    @media (max-width:40em) {
        #home_services .cell { 
            border-right: 0px;
            border-bottom: 1px solid #e8242d;
        }
    }
#home_services .cell:last-child {
    border-right: 0px;
    border-bottom: 0px;
}
#home_services h2 {
    font-size: 1.5rem;
    text-align: center;
}
#home_services p { text-align: center; }

#home_why {
    position: relative;
    background-image:url('../images/IMG_7874_modificata_Light.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#home_why .grid-x { padding-top: 60vH; padding-bottom: 60vH; }
    @media (max-width:48em) {
        #home_why .grid-x { padding-top: 25vH; padding-bottom: 25vH; }
    }
#home_why .diagonalWhyTop {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60vH;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
    background-color: #fff;
}
    @media (max-width:48em) {
        #home_why .diagonalWhyTop { height: 25vH; }
    }
#home_why .diagonalWhyBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vH;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    background-color: #fff;
}
    @media (max-width:48em) {
        #home_why .diagonalWhyBottom { height: 25vH; }
    }
#home_why h2 { color: #e8242d; }
#home_why h3 {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}
#home_why p { 
    color: #fff;
    text-align: center;
}

#home_whoare h2 { color: #e8242d; }
#home_whoare p { text-align: justify; }


#home_goldsmith {
    position: relative;
    background: linear-gradient(to right, #a73f68, #f55775);
}
#home_goldsmith .grid-x { padding-top: 60vH; padding-bottom: 60vH; }
    @media (max-width:48em) {
        #home_goldsmith .grid-x { padding-top: 25vH; padding-bottom: 25vH; }
    }
#home_goldsmith .diagonalGoldsmithTop {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60vH;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
    background-color: #fff;
}
    @media (max-width:48em) {
        #home_goldsmith .diagonalGoldsmithTop { height: 25vH; }
    }
#home_goldsmith .diagonalGoldsmithBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vH;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    background-color: #333;
}
    @media (max-width:48em) {
        #home_goldsmith .diagonalGoldsmithBottom { height: 25vH; }
    }
#home_goldsmith p {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width:40em) {
    #home_goldsmith p { font-size: 1.4rem; }
}


/*********************
PAGINA AZIENDA
*********************/
#companay {
    position: relative;
    background: linear-gradient(to right, #222, #555);
}
#companay .grid-x {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 60vH;
    padding-bottom: 0;
}
@media (max-width:48em) {
    #companay .grid-x { padding-top: 25vH; padding-bottom: 0; }
}
#companay .diagonalCompanayTop {
position: absolute;
top: -1px;
left: 0;
width: 100%;
height: 60vH;
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
background-color: #fff;
}
@media (max-width:48em) {
    #companay .diagonalCompanayTop { height: 25vH; }
}
#companay .diagonalCompanayBottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 60vH;
clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
-webkit-lip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
background-color: #fff;
}
@media (max-width:48em) {
    #companay .diagonalCompanayBottom { height: 25vH; }
}
#companay p {
color: #fff;
text-align: center;
}
#companay .img_circle {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
}


/*********************
PAGINA SERVIZI
*********************/
#page_services_1, #page_services_2, #page_services_3 {
    position: relative;
}
#page_services_1 { background: linear-gradient(to right, #a73f68, #f55775); }
#page_services_2 { background-color: #555; margin-top: -1px; padding-bottom: 50px; }
#page_services_1 .grid-x,
#page_services_2 .grix-x { padding-top: 60vH; padding-bottom: 60vH; }
    @media (max-width:48em) {
        #page_services_1 .grid-x,
        #page_services_2 .grid-x { padding-top: 25vH; padding-bottom: 25vH; }
    }
#page_services_1 .diagonalGoldsmithTop {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60vH;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
    background-color: #fff;
}
    @media (max-width:48em) {
        #page_services_1 .diagonalGoldsmithTop { height: 25vH; }
    }
#page_services_1 .diagonalGoldsmithBottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vH;
    clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0% 100%);
    background-color: #555;
}
    @media (max-width:48em) {
        #page_services_1 .diagonalGoldsmithBottom { height: 25vH; }
    }
#page_services_1 h2, #page_services_2 h2 { color: #fff; }
#page_services_1 p, 
#page_services_2 p {
    color: #fff;
    text-align: justify;
}
#page_services_3 {
    width: 100%;
    max-height: auto;
}
    @media (max-width:48em) {
        
    }


/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.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: 39.9375em) {
    .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: 39.9375em) {
    .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: 39.9375em) {
    .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: 39.9375em) {
    .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: 39.9375em) {
    .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: 39.9375em) {
    .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: 39.9375em) {
    .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: 39.9375em) {
    .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
*********************/
.sidebar li {
  list-style: none; }

.widget ul {
  margin: 0; }

/*********************
FOOTER STYLES
*********************/
.footer {
    clear: both;
    margin: 0;
    padding-top: 40px;
    background-color: #333;
}
footer h4, footer p, footer a {
    color: #eee;
    text-align: center;
}
    footer a:hover {
        color: #e8242d;
    }
footer h4 {
    font-size: 1.1em;
    font-weight: 700;
    padding-top: 0;
    margin-top: 0;
}
footer p {
    font-size: 1rem;
}
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: #e8242d;
    }

/* 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: 1.2rem;
    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 [type=checkbox], .wpcf7 [type=file], .wpcf7 [type=radio] {
    margin: 0;
}
.wpcf7 input {
    padding: .5rem .5rem 1px .5rem;
    border: 0;
    border-bottom: 1px solid #e8242d;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}
.wpcf7 textarea {
    height: 150px;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f9f9f9;
}
.wpcf7 label {
    font-size: 1rem;
    color: #e8242d;
    margin-bottom: 2rem;
}
.wpcf7 label i {
    color: #e8242d;
    font-size: .8rem;
    vertical-align: top;
}
.wpcf7 input[type=submit] {
    width: 100%;
    margin-top: 20px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    border: 0;
    border-radius: 4px;
    background-color: #e8242d;
    cursor: pointer;
}
    .wpcf7 input[type=submit]:hover  {
        color: #fff;
        background-color: #222;
    }
.wpcf7 input[type="checkbox"] {
    height: 1.4rem;
    width: 1.4rem;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
}


/*********************
GOOGLE RECAPTCHA v.3
*********************/

.grecaptcha-badge {
    opacity: 0;
}



/*********************
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 #e8242d;
    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;
}