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


/* 
 * COLORS
 * 
 * Yellow: #fff800
 * Magenta: #ee66af
 * Azure: #009de0
 * Black: #444
 */


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

h1, h2, h3, h4, h5, h6 {
    font-family: 'futuramedium', sans-serif;
}
p, a, ul, ol, li, table, span, input, textarea {
    font-family: 'futurabook', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: #444;
    font-weight: 700;
    line-height: 1.1em;
    text-transform: uppercase;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

h1 { font-size: 3.0em; }
h2 { font-size: 2.5em; }
h3 { font-size: 2.1em; }
h4 { font-size: 1.8em; }
h5 { font-size: 1.6em; }
h6 { font-size: 1.4em; }

p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.5em;
}
ol, ul, li {
    font-size: 1.2rem;
    color: #444;
}
table {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.3em;
}

    @media (max-width:48em) {
        h1 { font-size: 2em; }
        h2 { font-size: 1.8em; }
        h3 { font-size: 1.6em; }
        h4 { font-size: 1.5em; }
        h5 { font-size: 1.4em; }
        h6 { font-size: 1.3em; }
        p, ul, table { font-size: 1em; }
        button, .button { }
    }

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

a.button {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    padding: 10px 27px;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: #ee66af;
}
    button:hover, a.button:hover {
        color: #ee66af;
        border: 1px solid #ee66af;
        background-color: transparent;
    }
    button:focus, a.button:focus  {
        color: #ee66af;
        border: 1px solid #ee66af;
        background-color: transparent;
    }
a.button_yellow {
    color: #009de0;
    padding: 9px 26px;
    border: 1px solid transparent;
    background-color: #fff800;
}
    a.button_yellow:hover {
        color: #fff800;
        border: 1px solid #fff800;
        background-color: transparent;
    }
    .button_yellow:focus, a.button_yellow:focus  {
        color: #fff800;
        border: 1px solid #fff800;
        background-color: transparent;
    }
a.button_azure {
    color: #fff;
    padding: 9px 26px;
    border: 1px solid transparent;
    background-color: #009de0;
}
    a.button_azure:hover {
        color: #fff800;
        border: 1px solid #fff800;
        background-color: transparent;
    }
    button_azure:focus, a.button_azure:focus  {
        color: #fff800;
        border: 1px solid #fff800;
        background-color: transparent;
    }

.magenta { color: #ee66af; }
.yellow { color: #fff800; }
.azure { color: #009de0; }



/*********************
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;
    background-image: linear-gradient(to bottom, #000 , transparent);
}
    @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-image: linear-gradient(to bottom, transparent , transparent) !important;
    background-color: rgba(255,255,255,0.95); !important;
}
.top-bar, .top-bar ul {
    background-color: transparent;
}
    .darkHeader .top-bar {
        padding: 3px 0;
    }

#top-bar-menu {
    padding-top: 0;
}

/* PULSANTI */
header.header a {
    color: #fff;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
}
    @media (min-width:48em) {
        header.header.darkHeader a {
            color: #009de0 !important;
        }
    }
    header.header a:hover {
        color: #fff800;
    }
    header.header.darkHeader a:hover {
        color: #ee66af !important;
    }

/* PAGINA ATTIVA */
.menu .active>a {
    color: #009de0;
    background: #fff;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
    header.header.darkHeader .active>a {
        color: #fff !important;
        background: #009de0 !important;
    }
    @media (max-width:40em) {
        .menu .active>a,
        header.header.darkHeader .active>a { color: #fff800; background-color: transparent; }
    }

/* LOGO */
header.header .menu a.logo {
    display: block;
}
header.header .menu a.logo span.name {
    display: inline-block;
    vertical-align: top;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0 1rem 0 0;
}
    header.header.darkHeader .menu a.logo span.name {
        color: #444;
    }
    @media (max-width:40em) {
        header.header .menu a.logo span.name { font-size: 2rem; }
    }

header.header .menu a.logo span.description {
    font-family: 'trashhandregular', sans-serif;
    display: block;
    vertical-align: top;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding-top: 5px;
}
    header.header.darkHeader .menu a.logo span.description {
        color: #444;
    }
    @media (max-width:40em) {
        header.header .menu a.logo span.description { font-size: .9rem; }
    }
    @media (max-width:320px) {
        header.header .menu a.logo span.description { font-size: .7rem; }
    }

.menu a.logo img {
    display: inline-block;
    vertical-align: top;
    height: 70px;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    padding-right: 15px;
}
    .darkHeader .menu a.logo img {
        height: 55px;
    }
    @media (max-width:40em) {
        .menu a.logo img {
            height: 60px;
            padding-right: 10px;
        }
    }

/* CONTATTI NEL MENU */
.menu_contacts {
    text-align: right;
    margin-bottom: 10px;
}
.menu_contacts a {
    color: #fff800 !important;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 15px;
    border: 1px solid #fff800;
    border-radius: 4px;
}
    .menu_contacts a:hover {
        color: #fff !important;
        border-color: #fff !important;
    }
    header.header.darkHeader .menu_contacts a {
        color: #ee66af !important;
        border-color: #ee66af !important;
    }
        header.header.darkHeader .menu_contacts a:hover {
            color: #009de0 !important;
            border-color: #009de0 !important;
        }
a.call_on_mobile {
    position: absolute;
    top: 2px;
    right: 2px;
    margin: 0;
    padding: 7px 10px;
    color: #009de0 !important;
}

@media (min-width:40em) {
    header.header.darkHeader .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
        background-color: #fff !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: #fff transparent transparent;
}

/* 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 TABLET */
@media screen and (min-width: 39.9375em) and (max-width: 63.9375em) { 
ul.vertical.menu.accordion-menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
}
}

/* 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,
ul.submenu.is-accordion-submenu {
    background-color: #444 !important;
}
ul.submenu.is-accordion-submenu {
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
}
ul.submenu.is-accordion-submenu li {
    padding: 0 15px;
}

/* 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;
        }
    }
    @media screen and (max-width: 39.9375em) { 
        a.mobilemenubutton {
            top: -40px;
            right: 0;
        }
    }
a.mobilemenubutton i {
    font-size: 1.6rem;
}
.darkHeader a.mobilemenubutton i {
    color: #444;
    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;
    margin: 0 auto;
}
    @media (max-width:1210px) {
        .maxwidthcontent {
            padding: .5rem;
        }
    }
.maxwidthpost {
    max-width: 900px;
    margin: 0 auto;
}
#boxthumb {
    position: relative;
    height: 60vH; /* ALTEZZA COME #boxthumb > .bg_overlay */
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#boxNOthumb {
    position: relative;
    height: 120px;
    background-color: #444;
}
#boxthumb .bg_overlay {
    display: table;
    position: absolute;
    width: 100%;
    height: 60vH; /* ALTEZZA COME #boxthumb */
    margin: 0;
    margin-top: 2px;
    padding: 0;
    vertical-align: middle;
    background-image: url(../images/bg_over_1.png);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
}

.second_box {
    display: block;
    position: relative;
    margin: 0;
    padding: 20px 0 80px 0;
    background-color: #009de0;
}
.second_box h1, .second_box h2, .second_box h3, .second_box h4, .second_box h5, .second_box h6,
.second_box p, .second_box ul, .second_box ol, .second_box li {
    color: #fff;
}

/* SFONDO DIAGONALE AZZURRO */
.bg_polygon {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
    .bg_poly_white {
        height: 150px;
        margin-bottom: -2px;
        background-image: url(../images/bg_over_1.png);
        background-position: bottom left;
    }
    .bg_poly_azure {
        height: 150px;
        margin-bottom: -2px;
        background-image: url(../images/bg_over_2.png);
        background-position: bottom left;
    }
    .bg_poly_azure-magenta {
        height: 351px;
        margin-top: -2px;
        margin-bottom: -2px;
        background-image: url(../images/bg_over_3.png);
        background-position: center;
    }
    .bg_poly_magenta_top {
        height: 150px;
        margin-top: -2px;
        background-image: url(../images/bg_over_4.png);
        background-position: top left;
    }
    .bg_poly_magenta_bottom {
        height: 150px;
        margin-bottom: -2px;
        background-image: url(../images/bg_over_5.png);
        background-position: bottom left;
    }

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

/* 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 #444;
    -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 .menu_padding {
    height: 0;
}
    @media (max-width:39.9375em) {
        #slide_home .menu_padding {
            height: 100px;
            background-color: #222;
        }
    }
#slide_home .orbit,
#slide_home .orbit-wrapper,
#slide_home .orbit-slide,
#slide_home .orbit-image,
#slide_home .bg_overlay {
    height: 100vH;
}
    @media (max-width:64em) and (orientation:portrait) {
        #slide_home .orbit,
        #slide_home .orbit-wrapper,
        #slide_home .orbit-slide,
        #slide_home .orbit-image,
        #slide_home .bg_overlay {
            height: 45vH;
        }
    }
    @media (max-width:39.9375em) and (orientation:portrait) {
        #slide_home .orbit,
        #slide_home .orbit-wrapper,
        #slide_home .orbit-slide,
        #slide_home .orbit-image,
        #slide_home .bg_overlay {
            height: 300px;
        }
    }
.bg_overlay {
    display: table;
    position: absolute;
    width: 100%;
    top: 0;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    background-image: url(../images/bg_over_1.png);
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
}
.orbit-image {
    object-fit: cover;
}
.orbit-caption {
    position: absolute;
    max-width: calc(100% - 100px);
    height: auto;
    text-align: center;
    background-color: transparent;
    bottom: auto; /* Correzione */
    margin-bottom: auto; /* Correzione */
    margin: 0;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
    @media (max-width:48em) {
        .orbit-caption { max-width: calc(100% - 80px); }
    }
    @media (max-width:40em) {
        .orbit-caption { max-width: calc(100% - 20px); }
    }

.orbit-caption .title_figcaption,
.orbit-caption .subtitle_figcaption,
.orbit-caption .button_figcaption {
    display: block;
    color: #fff;
    line-height: 1em;
    padding: 3px;
    margin: 0 auto;
}

.orbit-caption .subtitle_figcaption {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-transform: none;
}
    @media (max-width:48em) {
        .orbit-caption .subtitle_figcaption { font-size: 1rem; }
    }
    @media (max-width:40em) {
        .orbit-caption .subtitle_figcaption { font-size: 1rem; }
    }

.orbit-caption .title_figcaption {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
    @media (max-width:48em) {
        .orbit-caption .title_figcaption { font-size: 2rem; }
    }
    @media (max-width:40em) {
        .orbit-caption .title_figcaption { font-size: 1.6rem; }
    }

.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 {
    margin-top: -30px;
    margin-bottom: 0;
}
.orbit-bullets button {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0;
    border: 2px solid #fff;
    background-color: #009de0;
}
.orbit-bullets button.is-active {
    background-color: #fff800;
}



/*********************
HOMEPAGE
*********************/

#home_header {
    display: block;
    padding-top: 70px;
    padding-bottom: 40px;
}
#home_services {
    padding: 0;
}
#home_services i {
    display: block;
    color: #ee66af;
    font-size: 3rem;
    text-align: center;
}
#home_services h2 {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}
#home_services p {
    text-align: center;
}


#home_about_us {
    display: block;
    position: relative;
}
#home_about_us .entry-content {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 20px 0 0 0;
    background-color: #009de0;
}
#home_about_us h2, #home_about_us h3, #home_about_us p {
    color: #fff;
}
#home_about_us h2 {
    font-size: 3.0em;
}
#home_about_us h3 {
    font-size: 1.4em;
}


#home_about_us .entry-content {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 20px 0 0 0;
    background-color: #009de0;
}
#home_about_us h2, #home_about_us h3, #home_about_us p {
    color: #fff;
}
#home_about_us h2 {
    font-size: 3.0em;
}
#home_about_us h3 {
    font-size: 1.4em;
}


#home_personal_branding .entry-content {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 20px 0 0 0;
    background-color: #ee66af;
}
#home_personal_branding h2, #home_personal_branding h3, #home_personal_branding p {
    color: #fff;
}
#home_personal_branding h2 {
    font-size: 3.0em;
    text-align: left;
    margin: 0;
    padding: 0 0 15px 0;
}
    @media (max-width:40em) {
        #home_personal_branding h2 { font-size: 2.4em; }
    }
#home_personal_branding h3 {
    font-size: 1.4em;
    text-align: left;
    margin: 0;
    padding: 0;
}
#home_personal_branding .home_faces {
    padding: 30px 0;
}


#home_customers .entry-content {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 10px 0 70px 0;
}
#home_customers h2 {
    font-size: 3.0em;
}
#home_customers .cell {
    text-align: center;
}
#home_customers img {
    width: auto;
    height: auto;
    max-height: 150px;
    padding: 10px;
}



/*********************
ALTRE PAGINE
*********************/

#contatti_logo img {
    width: 100%;
    height: auto;
    max-width: 250px;
}
h2.contatti_naming {
    color: #009de0;
    font-size: 1.4rem;
    padding-top: 0;
}


/*********************
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
*********************/
.slb_details {
    display: none;
}
.gallery_polygon {
    margin-top: -150px;
}
.gallery {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-color: #ee66af;
}
.gallery .grid-x {
    width: 100%;
    max-width: 1200px;
    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
*********************/
.sidebar li {
  list-style: none; }

.widget ul {
  margin: 0; }

/*********************
FOOTER STYLES
*********************/
.footer {
    clear: both;
    margin: 0;
    padding-top: 40px;
    background-color: #444;
}
footer img {
    width: 120px;
    height: auto;
}
footer h4, footer p, footer a {
    color: #eee;
    text-align: center;
}
    footer a:hover {
        color: #fff800;
    }
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;
}
footer a.social i {
    color: #ee66af;
}

@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: #fff800;
    }

/* 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[type=submit] {
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    border: 0;
    background-color: #ee66af;
    cursor: pointer;
}
    .wpcf7 input[type=submit]:hover  {
        color: #fff;
        background-color: #009de0;
    }