@charset "UTF-8";
/*
Theme Name: ICE
Author: Andrea Pasotti per Soriani&Brivio
Version: 1.1
*/
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@import 'normalize-css/normalize.css';
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

figure {
  margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

select {
  border: 1px solid #ccc;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer;
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em;
}

.slicknav_menu {
  *zoom: 1;
}
.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
}
.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 0 0 0.438em;
}
.slicknav_menu .slicknav_icon:before {
  background: transparent;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}
.slicknav_menu .slicknav_no-text {
  margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.slicknav_menu:before {
  content: " ";
  display: table;
}
.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both;
}

.slicknav_nav {
  clear: both;
}
.slicknav_nav ul {
  display: block;
}
.slicknav_nav li {
  display: block;
}
.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em;
}
.slicknav_nav .slicknav_item {
  cursor: pointer;
}
.slicknav_nav .slicknav_item a {
  display: inline;
}
.slicknav_nav .slicknav_row {
  display: block;
}
.slicknav_nav a {
  display: block;
}
.slicknav_nav .slicknav_parent-link a {
  display: inline;
}

.slicknav_brand {
  float: left;
}

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: #4c4c4c;
  padding: 5px;
}
.slicknav_menu * {
  box-sizing: border-box;
}
.slicknav_menu .slicknav_menutxt {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px #000;
}
.slicknav_menu .slicknav_icon-bar {
  background-color: #fff;
}

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #222;
}

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
}
.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 20px;
}
.slicknav_nav .slicknav_row {
  padding: 5px 10px;
  margin: 2px 5px;
}
.slicknav_nav .slicknav_row:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #ccc;
  color: #fff;
}
.slicknav_nav a {
  padding: 5px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: #fff;
}
.slicknav_nav a:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #ccc;
  color: #222;
}
.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}
.slicknav_nav .slicknav_item a {
  padding: 0;
  margin: 0;
}
.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0;
}

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

/**** MIXINS ****/
/**** LAYOUT ****/
html {
  background: #DDD;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FFF;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 300 !important;
  height: 100%;
}
@media screen and (min-width: 110.063em) {
  body {
    max-width: 110.063em;
    margin: 0 auto;
  }
}

header,
.banner,
section,
footer {
  width: 100%;
  float: left;
  position: relative;
  background: #FFF;
}

header .topbar {
  width: 100%;
  height: 2em, 5;
}
@media screen and (min-width: 64.063em) {
  header .topbar {
    height: 10px;
  }
}
header nav {
  width: 100%;
  padding: 2em;
}
@media screen and (min-width: 64.063em) {
  header nav {
    padding: 1em 2em;
  }
}
header nav .logo {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 64.063em) {
  header nav .logo {
    margin: 0;
    height: 50px;
    margin: 12px 0;
    display: inline;
  }
}
header nav .menu {
  float: right;
}
header nav .menu a {
  position: relative;
}
header nav .menu .sub-menu {
  margin: 0;
  padding: 0;
  background-color: #DDD;
}
@media screen and (min-width: 64.063em) {
  header nav .menu .sub-menu {
    display: none;
  }
}

.banner {
  padding: 4em 0;
  overflow: hidden;
}
@media screen and (min-width: 40.063em) {
  .banner {
    padding: 6em 0;
  }
}
@media screen and (min-width: 40.063em) {
  .banner.banner-big {
    padding: 5em 0;
  }
}

section {
  padding: 2em 0;
}
@media screen and (min-width: 64.063em) {
  section {
    padding: 3em 0;
  }
}
section .product-container::after {
  clear: both;
  content: "";
  display: block;
}
section .product-container {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  min-height: 30em;
}

.product {
  padding-left: 2em;
  padding-right: 2em;
}
@media screen and (min-width: 64.063em) {
  .product {
    padding-left: 0;
    padding-right: 0;
  }
}

article {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
article:last-child {
  margin-right: 0;
}
article {
  min-height: 20em;
}
@media screen and (min-width: 40.063em) {
  article {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 65.8807826589%;
  }
  article:last-child {
    margin-right: 0;
  }
  article {
    margin-left: 34.1192173411%;
  }
}
@media screen and (min-width: 64.063em) {
  article {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 74.4105869942%;
  }
  article:last-child {
    margin-right: 0;
  }
  article {
    margin-left: 25.5894130058%;
  }
}
@media screen and (min-width: 40.063em) {
  .product-centered article {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 65.8807826589%;
  }
  .product-centered article:last-child {
    margin-right: 0;
  }
  .product-centered article {
    margin-left: 17.0596086706%;
  }
}
.product-full article {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
.product-full article:last-child {
  margin-right: 0;
}
.product-full article {
  margin-left: 0%;
}

aside {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
aside:last-child {
  margin-right: 0;
}
aside {
  padding-bottom: 2em !important;
}
@media screen and (min-width: 40.063em) {
  aside {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 31.7615653177%;
  }
  aside:last-child {
    margin-right: 0;
  }
  aside {
    margin-left: -102.3576520234%;
    min-height: 20em;
  }
}
@media screen and (min-width: 64.063em) {
  aside {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  aside:last-child {
    margin-right: 0;
  }
}

.intro .intro-container::after {
  clear: both;
  content: "";
  display: block;
}
.intro .intro-container {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 40.063em) {
  .intro .intro-container .intro-content {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 82.9403913294%;
  }
  .intro .intro-container .intro-content:last-child {
    margin-right: 0;
  }
  .intro .intro-container .intro-content {
    margin-left: 8.5298043353%;
  }
}
.intro .intro-container .intro-boxes::after {
  clear: both;
  content: "";
  display: block;
}
.intro .intro-container .intro-boxes {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 40.063em) {
  .intro .intro-container .intro-boxes {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64.063em) {
  .intro .intro-container .intro-boxes {
    grid-template-columns: repeat(4, 1fr);
  }
}
.intro .intro-container .intro-boxes .box {
  margin-top: 1em;
  margin-bottom: 1em;
}

.timeline {
  overflow: hidden;
  padding: 4em 0;
}
.timeline .timeline-line::after {
  clear: both;
  content: "";
  display: block;
}
.timeline .timeline-line {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.timeline .timeline-line:hover {
  cursor: ew-resize;
}
.timeline .timeline-line .time {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
.timeline .timeline-line .time:last-child {
  margin-right: 0;
}
.timeline .timeline-line .time {
  position: relative;
}
@media screen and (min-width: 40.063em) {
  .timeline .timeline-line .time {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 40.291369653%;
  }
  .timeline .timeline-line .time:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 64.063em) {
  .timeline .timeline-line .time {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  .timeline .timeline-line .time:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 80.063em) {
  .timeline .timeline-line .time {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 31.7615653177%;
  }
  .timeline .timeline-line .time:last-child {
    margin-right: 0;
  }
}
.timeline .timeline-line .time .time-inner {
  position: relative;
  top: -2em;
  right: -2em;
}

.section-label {
  width: auto;
  left: 0;
  top: 1em;
  position: absolute;
  display: inline-block;
  margin: 0 15px;
}
@media screen and (min-width: 40.063em) {
  .section-label {
    top: 0;
    width: 2em;
  }
}

.article-gallery::after {
  clear: both;
  content: "";
  display: block;
}
.article-gallery {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  margin: 2em 0;
}
.article-gallery .gallery-item {
  margin-bottom: 1em;
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 31.7615653177%;
}
.article-gallery .gallery-item:last-child {
  margin-right: 0;
}
.article-gallery .gallery-item:nth-child(3n) {
  margin-right: 0;
}

.article-technical {
  padding: 0.5em 2em;
}
.article-technical::after {
  clear: both;
  content: "";
  display: block;
}
.article-technical {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}

.l-padded {
  padding: 0 2em;
}

.tinynav {
  display: block;
  max-width: 100%;
  margin-left: 0;
  padding-left: 0;
  margin-right: 0;
  padding-right: 0;
}
@media screen and (min-width: 40.063em) {
  .tinynav {
    display: none;
  }
}

#productNav {
  display: none;
}
@media screen and (min-width: 40.063em) {
  #productNav {
    display: block;
  }
}

footer {
  padding-bottom: 2em;
}
footer .footer::after {
  clear: both;
  content: "";
  display: block;
}
footer .footer {
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2em;
}
footer .footer .footer-box--container::after {
  clear: both;
  content: "";
  display: block;
}
footer .footer .footer-box--container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
footer .footer .footer-box {
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
footer .footer .footer-box:last-child {
  margin-right: 0;
}
@media screen and (min-width: 40.063em) and (max-width: 64em) {
  footer .footer .footer-box {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 48.8211739883%;
  }
  footer .footer .footer-box:last-child {
    margin-right: 0;
  }
  footer .footer .footer-box:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (min-width: 64.063em) {
  footer .footer .footer-box {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  footer .footer .footer-box:last-child {
    margin-right: 0;
  }
}

.form-container {
  padding-top: 4em;
  position: relative;
  z-index: 9999;
}
.form-container::after {
  clear: both;
  content: "";
  display: block;
}
.form-container {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 40.063em) {
  .form-container::after {
    clear: both;
    content: "";
    display: block;
  }
  .form-container {
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 64.063em) {
  .form-container::after {
    clear: both;
    content: "";
    display: block;
  }
  .form-container {
    max-width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}
.form-container p {
  float: left;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 300 !important;
  width: 100%;
  margin: 0.5em 0;
  padding: 0;
  display: block;
}
@media screen and (min-width: 64.063em) {
  .form-container p {
    width: 50%;
  }
}
.form-container p input, .form-container p textarea {
  border-radius: 0 !important;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 64.063em) {
  .form-container p input, .form-container p textarea {
    width: 95%;
  }
}
.form-container p input[type=checkbox], .form-container p textarea[type=checkbox] {
  width: auto !important;
}
.form-container p textarea {
  width: 100%;
  height: 5em;
}
.form-container p .wpcf7-submit {
  width: auto;
  background-color: transparent;
  color: #FFF;
  border: 1px solid #FFF;
  text-transform: uppercase;
  text-align: center;
  padding: 1em 2em;
  display: inline-block;
  font-size: 0.9375em;
  float: right;
}
.form-container p .wpcf7-submit:hover {
  cursor: pointer;
  background-color: #FFF;
  color: #093A81;
}
.form-container p:nth-child(6), .form-container p:nth-child(7) {
  width: 100%;
}
@media screen and (min-width: 64.063em) {
  .form-container p:nth-child(3) input, .form-container p:nth-child(3) label, .form-container p:nth-child(3) .wpcf7-not-valid-tip, .form-container p:nth-child(5) input, .form-container p:nth-child(5) label, .form-container p:nth-child(5) .wpcf7-not-valid-tip {
    margin: 0;
    margin-left: 5%;
  }
}
.form-container .wpcf7-validation-errors {
  border: 0 !important;
  display: none !important;
}
.form-container .wpcf7-response-output {
  float: left;
}
.form-container .wpcf7-list-item.first.last {
  margin-left: 0 !important;
}

.map-container::after {
  clear: both;
  content: "";
  display: block;
}
.map-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  float: left;
  display: block;
  margin-right: 2.3576520234%;
  width: 100%;
}
.map-container:last-child {
  margin-right: 0;
}
.home .map-container, .page-template-t_contatti .map-container {
  background-color: #9B9B9B;
}
.map-container .aside {
  width: 100%;
  padding: 2em;
  float: left;
  height: auto;
}
@media screen and (min-width: 64.063em) {
  .map-container .aside {
    width: 30%;
    height: auto;
  }
}
@media screen and (min-width: 104.063em) {
  .map-container .aside {
    width: calc(100% - 1024px);
  }
  .page-template-t_contatti .map-container .aside {
    width: 30%;
    height: auto;
  }
}
.map-container .aside * {
  color: #FFF !important;
}
.map-container .aside *:after {
  background-color: #FFF !important;
}
.map-container .acf-map {
  width: 100%;
  height: 400px;
  margin: 0;
}
@media screen and (min-width: 64.063em) {
  .home .map-container .acf-map {
    height: 512px;
    width: 70%;
    float: right;
  }
}
@media screen and (min-width: 104.063em) {
  .home .map-container .acf-map {
    width: 1024px;
  }
}
@media screen and (min-width: 64.063em) {
  .page-template-t_contatti .map-container .acf-map {
    width: 70%;
    float: right;
  }
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.location_special-container {
  margin-top: 2em;
  margin-bottom: 1em;
}
.location_special-container::after {
  clear: both;
  content: "";
  display: block;
}
.location_special-container {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 40.063em) and (max-width: 64.063em) {
  .location_special-container .location {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 31.7615653177%;
  }
  .location_special-container .location:last-child {
    margin-right: 0;
  }
  .location_special-container .location:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 64.063em) {
  .location_special-container .location {
    float: left;
    display: block;
    margin-right: 2.3576520234%;
    width: 23.2317609825%;
  }
  .location_special-container .location:last-child {
    margin-right: 0;
  }
  .location_special-container .location:nth-child(4n) {
    margin-right: 0;
  }
}
.location_special-container .location img {
  display: inline-block;
  position: relative;
  top: 8px;
  left: -5px;
}

@media screen and (min-width: 40.063em) {
  .location_standard-container ul {
    -moz-column-count: 4;
    -moz-column-gap: 20px;
    -webkit-column-count: 4;
    -webkit-column-gap: 20px;
    column-count: 4;
    column-gap: 20px;
  }
}

/**** STILI ****/
h1, h3, h4, h5, h6, p, li, table, tr, td, th, ul {
  font-weight: 300 !important;
  line-height: 1.3;
  font-family: "Helvetica", "Arial", sans-serif;
}

h2 {
  line-height: 1.3;
  font-family: "Helvetica", "Arial", sans-serif;
}

h1 {
  font-size: 6.25em;
  margin: 0;
  padding: 0;
}
.article-content h1 {
  font-size: 3.125em;
  font-size: 1.875em;
  color: #093A81;
  font-weight: 700;
  margin-bottom: 1.6em;
}
@media screen and (min-width: 40.063em) {
  .article-content h1 {
    font-size: 2.5em;
  }
}
@media screen and (min-width: 64.063em) {
  .article-content h1 {
    font-size: 3.125em;
  }
}
.article-content h1:after {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  background-color: #093A81;
  position: relative;
  bottom: -0.5em;
}

.intro-content h2 {
  color: #093A81;
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1em;
  margin-top: 0;
}
.intro-content h2:after {
  content: "";
  display: block;
  width: 6em;
  height: 3px;
  background-color: #093A81;
  position: relative;
  bottom: -0.5em;
}
#map h2 {
  text-transform: uppercase;
  font-size: 1.5em;
}
.page h2, .single h2, article h2 {
  font-size: 1.8125em;
  line-height: 1.2;
  margin-top: 0;
}
.page h2:after, .single h2:after, article h2:after {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  background-color: #093A81;
  position: relative;
  bottom: -0.5em;
}
@media screen and (min-width: 40.063em) {
  .page h2, .single h2, article h2 {
    font-size: 2.4375em;
  }
}
@media screen and (min-width: 64.063em) {
  .page h2, .single h2, article h2 {
    font-size: 2.8125em;
  }
}
.page h2, .single h2 {
  color: #093A81;
  font-weight: 700;
  line-height: 1.2;
}
.single h2 + p, .single-cfd-area h2 + p, .single-product h2 + p, .page h2 + p {
  display: inline-block;
  width: 100%;
  margin-top: 1em;
}

article h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 0.5em;
  display: inline-block;
}
aside h3 {
  color: #0D498C;
  font-size: 1.625em;
  margin: 1em 0;
}
@media screen and (min-width: 40.063em) {
  aside h3 {
    margin: 0.25em 0 1em 0;
    display: none;
  }
}

.time h4, .location h4 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6666666667em !important;
}
@media screen and (min-width: 40.063em) {
  .time h4, .location h4 {
    font-size: 1.5625em;
  }
}
@media screen and (min-width: 64.063em) {
  .time h4, .location h4 {
    font-size: 1.875em;
  }
}
@media screen and (min-width: 40.063em) {
  .location h4 {
    font-size: 1.125em;
  }
}
@media screen and (min-width: 64.063em) {
  .location h4 {
    font-size: 1.3125em;
  }
}
.article-technical h4 {
  padding: 0.5em 1em 0.5em 2em;
  border: 1px solid #FFF;
  position: relative;
  left: -2em;
  display: inline-block;
  width: auto;
  line-height: 1;
  margin-bottom: 0;
  font-size: 1.5625em;
}

.tech-item h5 {
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  padding-bottom: 0.6666666667em;
  margin-bottom: 2em;
  margin-top: 4em;
  border-bottom: 1px solid #FFF;
}

.footer h6 {
  font-size: 0.8125em;
  margin-bottom: 0;
}

p {
  font-size: 1em;
  color: #1A1A1A;
  line-height: 1.4;
}
#map p {
  font-size: 1em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
.gm-style-iw p {
  margin: 4px !important;
}
article p {
  margin-bottom: 1.6em;
}
.footer p {
  font-size: 0.8125em;
}
.footer p strong {
  margin-bottom: 5px;
  display: inline-block;
  text-transform: uppercase;
}
hgroup p {
  font-size: 1.125em;
  margin: 0;
}
@media screen and (min-width: 40.063em) {
  hgroup p {
    font-size: 1.5625em;
    margin-top: 0.3333333333em;
  }
}
@media screen and (min-width: 64.063em) {
  hgroup p {
    font-size: 2.375em;
    letter-spacing: 0.001 !important;
    font-weight: 100 !important;
    margin-top: 0;
  }
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
a.squared {
  display: block;
  width: 100%;
  margin: 1em 0;
  text-align: center;
  border: 2px solid #093A81;
  padding: 1em 2em 1em 3em;
  text-transform: uppercase;
  color: #093A81;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 40.063em) {
  a.squared {
    display: inline-block;
    width: auto;
  }
}
a.squared:before {
  content: "";
  display: block;
  position: absolute;
  left: 18px;
  top: 15px;
  width: 15px;
  height: 15px;
  border-left: 2px solid #093A81;
  border-bottom: 2px solid #093A81;
  transform: rotate(-45deg);
}
a.squared:hover, a.squared:focus {
  background-color: #093A81;
  color: #FFF;
}
a.squared:hover:before, a.squared:focus:before {
  border-color: #FFF;
}
a.squared.pure-squared {
  padding: 1em 2em !important;
}
a.squared.pure-squared:before, a.squared.pure-squared:after {
  display: none !important;
}
footer a {
  text-decoration: underline;
  color: #FFF !important;
}

.tech-item p, .tech-item li {
  font-size: 1em;
  margin-bottom: 0.4em;
}

.article-content ul {
  color: #1A1A1A;
  list-style-type: none;
  margin-left: 0.6666666667em;
  padding-left: 0.6666666667em;
}
.article-content ul li {
  font-size: 1em;
  color: #1A1A1A;
  line-height: 1.4;
  margin-bottom: 0.4em;
  position: relative;
}
.article-content ul li:before {
  display: block;
  content: "♦";
  color: #093A81;
  position: absolute;
  left: -1em;
}
.article-technical ul {
  padding: 0 0 0 1em;
}

strong {
  font-weight: 700;
}

.quote {
  color: #093A81;
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1em;
  margin-top: 0;
}
.quote:after {
  content: "";
  display: block;
  width: 6em;
  height: 3px;
  background-color: #093A81;
  position: relative;
  bottom: -0.5em;
}

.list-nolist {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.list-nolist ul li {
  padding: 0.5rem 0;
}
.list-nolist ul li:first-child {
  padding-top: 1rem;
}
.list-nolist ul li:last-child {
  padding-bottom: 1rem;
  border-bottom: 1px solid #DDD;
}

.list-inline {
  display: inline;
}
.list-inline li {
  display: inline;
}

.js-blocklink:hover {
  cursor: pointer;
}

:focus {
  outline: 0;
}

.slick-dots li.slick-active button:before, .slick-dots li button:before {
  color: #FFF;
  font-size: 15px;
}

.featherlight-content {
  overflow: visible !important;
  max-width: 80%;
}
.featherlight-content img {
  max-height: 500px;
}
.featherlight-content .featherlight-previous:before, .featherlight-content .featherlight-next:before {
  font-size: 25px;
  width: 19px;
  height: 19px;
  border-width: 2px 2px 0 0;
}
@media screen and (min-width: 40.063em) {
  .featherlight-content .featherlight-previous:before, .featherlight-content .featherlight-next:before {
    font-size: 50px;
    width: 30px;
    height: 30px;
    border-width: 5px 5px 0 0;
  }
}
.featherlight-content .featherlight-previous {
  color: #FFF !important;
  position: absolute !important;
  top: 50% !important;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -26px !important;
}
@media screen and (min-width: 40.063em) {
  .featherlight-content .featherlight-previous {
    left: -40px !important;
  }
}
.featherlight-content .featherlight-previous:hover {
  cursor: pointer;
}
.featherlight-content .featherlight-previous span {
  display: none;
}
.featherlight-content .featherlight-previous:before {
  border-style: solid;
  content: "";
  display: inline-block;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  transform: rotate(-135deg);
}
.featherlight-content .featherlight-next {
  color: #FFF !important;
  position: absolute !important;
  top: 50% !important;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -26px !important;
}
@media screen and (min-width: 40.063em) {
  .featherlight-content .featherlight-next {
    right: -40px !important;
  }
}
.featherlight-content .featherlight-next:hover {
  cursor: pointer;
}
.featherlight-content .featherlight-next span {
  display: none;
}
.featherlight-content .featherlight-next:before {
  border-style: solid;
  content: "";
  display: inline-block;
  right: 0.15em;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  transform: rotate(45deg);
}

.featherlight .featherlight-image {
  width: auto !important;
  max-width: 100% !important;
}

/**** ELEMENTI ****/
header .topbar {
  background-color: #093A81;
}
header .topbar .slicknav_menu {
  display: block;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 64.063em) {
  header .topbar .slicknav_menu {
    display: none;
  }
}
header .topbar .slicknav_menu .slicknav_btn {
  background: transparent;
}
header .topbar .slicknav_menu .slicknav_nav {
  text-align: right;
  float: right;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
header .topbar .slicknav_menu .slicknav_nav .sub-menu {
  margin: 0;
  background-color: #9B9B9B;
}
header .topbar .slicknav_menu .slicknav_nav .sub-menu li:hover, header .topbar .slicknav_menu .slicknav_nav .sub-menu li a:hover {
  cursor: pointer;
  color: #093A81;
}
header .topbar .slicknav_menu .slicknav_nav .sub-menu li.current-menu-item a {
  color: #093A81;
}
header .topbar .slicknav_menu .slicknav_nav li {
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
header .topbar .slicknav_menu .slicknav_nav li a {
  background: transparent !important;
  padding: 1em 0;
  border-bottom: 1px solid #FFF;
  display: block;
  margin: 0;
  font-weight: 700;
}
header .topbar .slicknav_menu .slicknav_nav li a:hover {
  color: #FFF;
  border-radius: 0;
}
header .topbar .slicknav_menu .slicknav_nav li:last-child a {
  border-bottom: 0;
}
header nav .menu {
  display: none;
}
@media screen and (min-width: 64.063em) {
  header nav .menu {
    display: block;
  }
}
header nav .menu li {
  padding: 0 0.4em;
}
@media screen and (min-width: 64.063em) {
  header nav .menu li {
    padding: 0 0.6666666667em;
  }
}
@media screen and (min-width: 80.063em) {
  header nav .menu li {
    padding: 0 2em;
  }
}
header nav .menu li .sub-menu, header nav .menu li .sub-menu li {
  background-color: #DDD;
}
header nav .menu li.is-active a, header nav .menu li.current-page-ancestor a, header nav .menu li.current-menu-item a {
  color: #093A81;
}
header nav .menu li.is-active a:after, header nav .menu li.current-page-ancestor a:after, header nav .menu li.current-menu-item a:after {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  background-color: #093A81;
  position: relative;
  bottom: -0.5em;
}
header nav .menu li a {
  color: #0D498C;
  text-decoration: none;
  display: inline-block;
  padding: 1em 0;
}
header nav .menu li a:hover, header nav .menu li a:focus, header nav .menu li a.is-active {
  color: #1A1A1A;
}
header nav .menu li a:hover:after, header nav .menu li a:focus:after, header nav .menu li a.is-active:after {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  background-color: #093A81;
  position: relative;
  bottom: -0.5em;
}

.banner {
  background-color: #1A1A1A;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.banner hgroup {
  border: 1px solid #FFF;
  display: inline-block;
  width: 100%;
  position: relative;
  left: -2em;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
  padding: 10px 2em 10px 4em;
}
@media screen and (min-width: 40.063em) {
  .banner hgroup {
    width: 70%;
    padding: 2em 6em 2em 10em;
  }
}
@media screen and (min-width: 64.063em) {
  .banner hgroup {
    padding: 1em 12em 1em 14em;
  }
}
.banner hgroup * {
  color: #FFF;
}
@media screen and (min-width: 64.063em) {
  .banner.banner-big hgroup {
    padding: 4em 10em 4em 18em;
  }
}

.responsive_homeline {
  font-size: clamp(1.75rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 300;
}
.responsive_homeline strong {
  font-weight: 700;
}

.responsive_subline {
  font-size: clamp(1rem, 2vw + 0.5rem, 2rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.banner-big__cta {
  padding: 1em 2em;
  background: #093A81;
  color: #FFF;
  margin-top: 2em;
  display: inline-block;
  position: relative;
  z-index: 999;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.banner-big__cta:hover {
  background: #0D498C;
  color: #FFF;
}

.intro.intro--has-boxes {
  background: linear-gradient(to top, #DDD, #FFF);
}
.intro .intro-container .intro-boxes .box {
  background-color: #4990E2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 15em;
}
.intro .intro-container .intro-boxes .box * {
  color: #FFF;
}
.intro .intro-container .intro-boxes .box h3 {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 1em;
  margin: 0;
  min-height: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.25s all;
}
.intro .intro-container .intro-boxes .box:hover {
  background-blend-mode: luminosity;
}
.intro .intro-container .intro-boxes .box:hover h3 {
  padding-top: 2em;
  padding-bottom: 2em;
  transition: 0.5s all;
}

.timeline {
  background-color: #0D498C;
}
.timeline .time {
  margin: 4em 0;
  min-height: 300px;
  background-color: #0D498C;
}
@media screen and (min-width: 40.063em) {
  .timeline .time {
    margin: 4em 2em;
    background-size: contain;
    background-image: url("images/segnaposto.png");
    background-repeat: no-repeat;
    background-position: center top;
  }
}
.timeline .time .time-inner {
  padding: 1em;
  display: block;
  border: 1px solid #FFF;
}
@media screen and (min-width: 40.063em) {
  .timeline .time .time-inner {
    padding: 2em;
  }
}
.timeline .time .time-inner * {
  color: #FFF;
  padding: 0;
  margin: 0;
  font-weight: 700;
}

.slick-slide {
  height: auto;
}

.slick-next {
  top: 35%;
  right: 25px;
}

.section-label .section-label-content {
  font-size: 0.875em;
  color: #093A81;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (min-width: 40.063em) {
  .section-label .section-label-content {
    display: block;
    width: 9em;
    text-align: right;
    -moz-transform: translateX(-50%) translateY(450%) rotate(-90deg);
    -o-transform: translateX(-50%) translateY(450%) rotate(-90deg);
    -ms-transform: translateX(-50%) translateY(450%) rotate(-90deg);
    -webkit-transform: translateX(-50%) translateY(450%) rotate(-90deg);
    transform: translateX(-50%) translateY(450%) rotate(-90deg);
  }
}
.section-label .section-label-content.section-label-content--negative {
  color: #FFF;
}

.menu-products > li > a {
  color: #9B9B9B;
  display: block;
  padding: 1em 0;
  border-bottom: 1px solid #DDD;
}
.menu-products > li > a:hover, .menu-products > li > a:focus {
  color: #1A1A1A;
}
.menu-products > li:last-child > a {
  border-bottom: none;
}
.menu-products > li.is-active > a {
  color: #1A1A1A;
  font-weight: 700;
}
.menu-products > li.has-submenu > a {
  position: relative;
  padding-right: 1.5em;
}
.menu-products > li.has-submenu > a:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: #9B9B9B;
  transition: transform 0.2s ease-in-out;
}
.menu-products > li.has-submenu.is-opened > a:after {
  transform: translateY(-50%) rotate(45deg);
}
.menu-products .submenu {
  margin: 0.5em 0;
  padding-left: 0;
}
.menu-products .submenu > li > a {
  padding: 1em 0;
  font-size: 1em;
  color: #9B9B9B;
  border-bottom: none;
}
.menu-products .submenu > li > a:hover, .menu-products .submenu > li > a:focus {
  color: #1A1A1A;
}
.menu-products .submenu > li.is-active > a {
  color: #1A1A1A;
  font-weight: 700;
}
.menu-products .submenu > li.has-submenu > a {
  padding-right: 1.5em;
}
.menu-products .submenu > li.has-submenu > a:after {
  font-size: 14px;
}
.menu-products .submenu .submenu {
  padding-left: 0;
  margin: 0.5em 0;
}
.menu-products .submenu .submenu > li > a {
  font-size: 1em;
  padding: 1em 0;
}

.article-gallery .gallery-item {
  background: #9B9B9B url("images/lupe.png") no-repeat center center;
}
.article-gallery .gallery-item img {
  display: block;
}
.article-gallery .gallery-item:hover {
  cursor: pointer;
}
.article-gallery .gallery-item:hover img {
  opacity: 0.4;
}

.article-technical {
  background-color: #093A81;
  margin-bottom: 2em;
}
.article-technical * {
  color: #FFF;
}
.article-technical .tech-item {
  margin-bottom: 2em;
}
.article-technical .tech-item .tech-item--content p {
  margin-top: 0;
}
@media screen and (min-width: 64.063em) {
  .article-technical .tech-item .tech-item--content {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -o-column-count: 2;
    -o-column-count: 2;
    -webkit-column-gap: 4em;
    -moz-column-gap: 4em;
    -o-column-gap: 4em;
    column-gap: 4em;
  }
}

aside {
  background: #DDD;
}
@media screen and (min-width: 40.063em) {
  aside {
    background: #FFF;
  }
}

footer {
  background: #041954 url("images/footer.png") repeat-x center bottom;
}
footer * {
  color: #FFF;
}
footer .footer {
  line-height: 1.5;
}

.banner.has-video {
  position: relative;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background: lightblue url("images/flare.png") repeat center center;
}
.banner.has-video:after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.banner.has-video video {
  display: none;
}
@media screen and (min-width: 64.063em) {
  .banner.has-video video {
    display: block;
  }
}
.banner.has-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  z-index: 0;
}

/**** OUR PRODUCTS SECTION ****/
.our-products {
  background-color: #093A81;
  padding: 3em 0;
  width: 100%;
  float: left;
}
@media screen and (min-width: 64.063em) {
  .our-products {
    padding: 4em 0;
  }
}
.our-products__container::after {
  clear: both;
  content: "";
  display: block;
}
.our-products__container {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.our-products__title {
  color: #FFF;
  font-size: 1.75em;
  font-weight: 700 !important;
  text-align: left;
  margin: 0;
  padding: 0 2em 2em 2em;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 64.063em) {
  .our-products__title {
    font-size: 2em;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 3em;
  }
}
.our-products__grid {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 64.063em) {
  .our-products__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.our-products__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2em;
  border-bottom: 1px solid white;
  transition: background 0.3s ease;
}
.our-products__item:hover {
  background: linear-gradient(180deg, #093A81 0%, rgb(6.3391304348, 40.852173913, 90.8608695652) 50%, #093A81 100%);
}
.our-products__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 64.063em) {
  .our-products__item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2em 2em;
    border-bottom: none;
    border-right: 1px solid white;
    flex: 1;
  }
  .our-products__item:last-child {
    border-right: none;
  }
}
.our-products__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2em;
}
@media screen and (min-width: 64.063em) {
  .our-products__icon {
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.our-products__icon svg {
  width: 100%;
  height: 100%;
  color: #FFF;
}
.our-products__label {
  color: #FFF;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 64.063em) {
  .our-products__label {
    text-align: center;
    max-width: 120px;
  }
}

/**** NEW TIMELINE SECTION ****/
.timeline-new {
  background: linear-gradient(180deg, #DDD 0%, #FFF 100%);
  padding: 6em 0;
  width: 100%;
  float: left;
}
.timeline-new__wrapper {
  width: 100%;
  position: relative;
}
.timeline-new__track {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-top: 4em;
  margin-top: -4em;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.timeline-new__track::-webkit-scrollbar {
  display: none;
}
.timeline-new__track:active {
  cursor: grabbing;
}
.timeline-new__items {
  display: flex;
  padding-left: 15%;
}
@media screen and (min-width: 64.063em) {
  .timeline-new__items {
    padding-left: 20%;
  }
}
.timeline-new__item {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 64.063em) {
  .timeline-new__item {
    flex: 0 0 200px;
  }
}
.timeline-new__year {
  display: block;
  color: #093A81;
  font-size: 2em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1em;
  margin-left: -0.5em;
  -moz-transform: rotate(-60deg);
  -o-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
  transform-origin: center;
}
@media screen and (min-width: 64.063em) {
  .timeline-new__year {
    font-size: 2.5em;
  }
}
.timeline-new__dot-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 2em;
}
.timeline-new__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid #093A81;
  flex-shrink: 0;
  z-index: 2;
}
.timeline-new__dot--active {
  background-color: #093A81;
}
.timeline-new__line {
  flex: 1;
  height: 1px;
  background-color: #093A81;
  margin-left: -1px;
}
.timeline-new__description {
  color: #093A81;
  font-size: 0.875em;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  padding-right: 2em;
}
@media screen and (min-width: 64.063em) {
  .timeline-new__description {
    font-size: 0.9375em;
  }
}
.timeline-new__arrow {
  position: absolute;
  top: auto;
  bottom: -20%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid #093A81;
  border-radius: 50%;
  background: #FFF;
  color: #093A81;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
@media screen and (min-width: 64.063em) {
  .timeline-new__arrow {
    top: 55%;
    transform: translateY(-50%);
    bottom: auto;
  }
}
.timeline-new__arrow:hover:not(:disabled) {
  background: #093A81;
  color: #FFF;
}
.timeline-new__arrow:disabled {
  cursor: not-allowed;
}
.timeline-new__arrow--prev {
  left: 2em;
}
.timeline-new__arrow--next {
  right: 2em;
}
.timeline-new__track.is-dragging {
  cursor: grabbing;
}

/**** BLANK TEMPLATE - FULL WIDTH BLOCKS ****/
.site-main--blank {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.site-main--blank > * {
  max-width: 100%;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.alignwide {
  width: 100%;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 80.063em) {
  .alignwide {
    width: 90vw;
    max-width: 90vw;
    margin-left: calc(-45vw + 50%);
    margin-right: calc(-45vw + 50%);
  }
}

.site-main--blank .wp-block-group.has-global-padding {
  padding-left: 2em;
  padding-right: 2em;
}
@media screen and (min-width: 64.063em) {
  .site-main--blank .wp-block-group.has-global-padding {
    padding-left: 4em;
    padding-right: 4em;
  }
}

.site-main--blank .l-padded,
.site-main--blank .wp-block-group__inner-container {
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
}
@media screen and (min-width: 64.063em) {
  .site-main--blank .l-padded,
  .site-main--blank .wp-block-group__inner-container {
    padding-left: 4em;
    padding-right: 4em;
  }
}
.site-main--blank .alignfull > .l-padded {
  max-width: 100%;
  padding: 0;
}

/*# sourceMappingURL=style.css.map */
