/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

   * {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}
ol, ul {list-style: none;}

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  
  -ms-overflow-style: scrollbar;  
}
body {
	font-family: 'Poppins', sans-serif;
	background-color: #000B20;
}

a {
	text-decoration: none;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

:focus {outline: none;}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.select-wrap {
	text-align: right;
	padding: 30px 20px;
}
.select {
	overflow: hidden; 
	position: relative;
	display: inline-block;
	padding-right: 25px;	
	border-bottom: 1px solid var(--blue);
}
.select:after {
    content:"\f078";
    font-family: FontAwesome;
	position: absolute; 
	right: 0; 
	top: 3px;
    z-index: 1;
    text-align: center;
    width: 30px;
	height: 100%;
	pointer-events: none;
	color: var(--darkgray-text);
}
.select option {
	padding: 0.3rem;
}
.select-filter {
	display: inline-block;
	padding: 0.3rem 0;
	background-color: transparent;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* Mobile */
@media only screen and (max-width: 767px) {
	[class*="mobile hidden"],
	[class*="tablet only"]:not(.mobile),
	[class*="computer only"]:not(.mobile),
	[class*="large screen only"]:not(.mobile),
	[class*="widescreen only"]:not(.mobile),
	[class*="or lower hidden"] {
	  display: none !important;
	}
  }
  
  /* Tablet / iPad Portrait */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	[class*="mobile only"]:not(.tablet),
	[class*="tablet hidden"],
	[class*="computer only"]:not(.tablet),
	[class*="large screen only"]:not(.tablet),
	[class*="widescreen only"]:not(.tablet),
	[class*="or lower hidden"]:not(.mobile) {
	  display: none !important;
	}
  }
  
  /* Computer / Desktop / iPad Landscape */
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	[class*="mobile only"]:not(.computer),
	[class*="tablet only"]:not(.computer),
	[class*="computer hidden"],
	[class*="large screen only"]:not(.computer),
	[class*="widescreen only"]:not(.computer),
	[class*="or lower hidden"]:not(.tablet):not(.mobile) {
	  display: none !important;
	}
  }
  
  /* Large Monitor */
  @media only screen and (min-width: 1200px) and (max-width: 1919px) {
	[class*="mobile only"]:not([class*="large screen"]),
	[class*="tablet only"]:not([class*="large screen"]),
	[class*="computer only"]:not([class*="large screen"]),
	[class*="large screen hidden"],
	[class*="widescreen only"]:not([class*="large screen"]),
	[class*="or lower hidden"]:not(.computer):not(.tablet):not(.mobile) {
	  display: none !important;
	}
  }
  
  /* Widescreen Monitor */
  @media only screen and (min-width: 1920px) {
	[class*="mobile only"]:not([class*="widescreen"]),
	[class*="tablet only"]:not([class*="widescreen"]),
	[class*="computer only"]:not([class*="widescreen"]),
	[class*="large screen only"]:not([class*="widescreen"]),
	[class*="widescreen hidden"],
	[class*="widescreen or lower hidden"] {
	  display: none !important;
	}
  }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
:root {
	--lightblue: #009BE0;
	--darkblue: #004F9E;
	--blue: #1481BC;
	--gray: #999DA6;
	--white: #FFFFFF;
	--black: #333333;
	--lightblack: #000822;
	--gray-text: #ACACAC;
	--darkgray-text: #7A7D85;
	--green: #69B24C;
}

.center {
	text-align: center;
}
.right {
	text-align: right;
}
strong, .bold {
	font-weight: 700;
}
.section > .container {
	padding: 30px 0;
}
.container {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
	position: relative;
	z-index: 10001;		
}
.news-container {
	max-width: 992px;
}
.news-container .wp-block-image {
	text-align: center;
}
.box-news figure img {
	max-width: ;
}
.blue {
	color: var(--lightblue)!important;
}
.darkblue {
	color: var(--darkblue)!important;
}
.white {
	color: var(--white)!important;
}
.gray {
	color: var(--gray-text)!important;
}
.darkgray {
	color: var(--darkgray-text)!important;
}
.black {
	color: var(--black)!important;
}
.green {
	color: var(--green)!important;
}
.text {
	font-size: 1.1875rem;
	line-height: 1.875rem;
	font-weight: 200;
}
.text-small {
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 200;
}
.text-big {
	font-size: 3rem;
	font-weight: 700;
	display: block;
}
.text p {
	font-size: 1.1875rem;
	line-height: 1.875rem;
	font-weight: 200;
}
.text ul {
	list-style-type: disc;
	list-style-position: outside;	
	padding-left: 25px;
}
.bg-gray {
	background-color: #F7F7F7;
}
.bg-white {
	background-color: #FFFFFF;
}
.image-box {
	overflow: hidden;
}
.image-box .image {
	max-width: 100%;
}
.image-box.image-box-16-9  {
	position: relative;
	padding-bottom: 56.2%;
}
.image-box.image-box-16-9 .image {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
  }
.lt-03 li {
	font-size: 0.8125rem;
	font-weight: 300;
	text-transform: uppercase;
	display: inline-block;
	padding: 0 0.5em;
	position: relative;
	color: var(--gray);
}
.lt-03 li::before {
	content: "|";
	position: absolute;
	left: -3px;
}
.lt-03 li:first-child:before {
	content: "";
}
.lt-03 li:first-child {
	padding-left: 0;
}
.lt-03 li:last-child {
	padding-right: 0;
}
.lt-03 li a {
	color: var(--gray);
	display: inline-flex;
}
.lt-03 li span {
	color: var(--blue);
	display: inline-flex;
}
.lt-03.news-integrator li span {
	color: var(--green)
}
.lt-04 li {
	text-transform: uppercase;
	display: block;
	padding: 0.2rem;
	position: relative;	
}
.lt-04 li a {
	color: var(--blue);
	font-size: 0.9375rem;
	font-weight: 300;
	position: relative;
	padding-left: 22px;
}
.lt-04 li a::after {
	position: absolute;
	left: 0;
	top: 2px;
	content: "\f054";
	font-family: "Font Awesome 5 Pro";
	color: var(--gray);
	font-size: 0.8rem;
	font-weight: 600;
}
.lt-04 li a:hover::after {
	color: var(--blue);
}
.lt-05 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 20px;
	width: 100%;
}
.lt-05 li {
	width: 50%;
	text-align: center;
	margin-top: 30px;
}
.lt-05 li img {
	max-width: 100%;
}
.lt-05 li span {
	font-size: 1.125rem;
	font-weight: 300;
	color: var(--blue);
	text-transform: uppercase;	
	margin-top: 15px;
	display: block;
}
.lt-06 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin-top: 20px;
	list-style: none !important;
	padding: 0 !important;
}
.lt-06 li {
	padding: 0 20px;
}
.lt-06 li:first-child {
	padding-left: 0;
}
.lt-06 li p {
	font-size: 3rem;
	font-weight: 700;
	color: var(--white);
	display: block;
}
.lt-06 li .label {
	font-size: 1.5625rem;
	font-weight: 300;
	color: var(--white);
	display: block;
}
.lt-07 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	margin-top: 30px;
}
.lt-07 li {
	padding: 0 20px;
	position: relative;
}
.lt-07 li a {
	font-size: 1.125rem;
	font-weight: 300;
	display: inline-block;
	color: var(--blue);
	text-transform: uppercase;
}
.lt-07 li:hover:before,
.lt-07 li.active:before {
	content: '';
	position: absolute;
	display: block;
	left: 10px;
	top: 5px;
	width: 3px;
	height: 15px;
	background-color: var(--lightblue);
}
.lt-07 li:hover a,
.lt-07 li.active a {
	color: var(--darkblue);
}
.lt-07-logos {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.lt-07-logos > div {
	padding: 0 5%;
	margin: 0 0 30px;
	max-width: 46.3%;
}
.lt-07-logos > div img {
	width: 100%;
}
.lt-07.green li a {
	color: var(--green);
}
.lt-07.green li:hover a,
.lt-07.green li.active a {
	color: var(--darkgray-text);
}
.lt-07.green li:hover:before,
.lt-07.green li.active:before {
	background-color: var(--green);
}
.lt-08 {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.lt-08 > li {
	padding: 0 2%;
	margin: 0 0 30px;
	max-width: 46%;
}
.lt-08 > li img {
	width: 100%;
}
.lt-09 {
	column-count: 2;
	column-gap: 50px;
	margin: 30px 0 0;
	padding: 0 20px;
}
.lt-09 li {
	font-size: 0.9375rem;
	line-height: 1rem;
	font-weight: 200;
	text-transform: uppercase;
	color: var(--blue);
	padding-bottom: 10px;
}
.lt-10 {
	margin-top: 50px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.lt-10 > li {
	padding: 0 2%;
	margin: 0 0 30px;
	max-width: 46%;
}
.lt-10 > li img {
	width: 100%;
}
.lt-11 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 20px;
	width: 100%;
}
.lt-11 li {
	width: 50%;
	text-align: center;
	margin-top: 30px;
}
.lt-11 li img {
	max-width: 100%;
}
.lt-11 li span {
	font-size: 1.125rem;
	font-weight: 300;
	color: var(--blue);
	text-transform: uppercase;	
	margin-top: 15px;
	display: block;
}
.lt-12 {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 20px;
	width: 100%;
}
.lt-12 li {
	width: 50%;
	text-align: center;
	margin-top: 30px;
}
.lt-12 li img {
	max-width: 100%;
	height: 60px;
	filter: grayscale(100%) opacity(60%);
}
.lt-12 li a {
	display: block;
}
.lt-12 li span {
	font-size: 1.125rem;
	font-weight: 300;
	color: #7A7D85;
	text-transform: uppercase;	
	margin-top: 15px;
	display: block;
}
.lt-12 li:hover img,
.lt-12 li .icoselected img {
	filter: hue-rotate(248deg) opacity(70%);
}
.lt-12 li:hover span,
.lt-12 li .icoselected span {
	color: var(--green);
}
.lt-12-desc {
	padding-top: 20px;
}
.lt-12-desc p {
    text-align: center;
	font-size: 1.4375rem;
	line-height: 2.125rem;
	font-weight: 200;
	margin: 20px auto 0;
	max-width: 75%;
	padding: 0 20px 0 0;
}
.lt-12-desc h5 {
    color: #7A7D85;
    font-size: 1.875rem;
	font-weight: 400;
	text-align: center;
}
.title-01 {
	font-size: 1.75rem;
	line-height: 2.8125rem;
	font-weight: 700;
	color: var(--darkblue);
	display: inline-block;
}
.box-wrap {
	padding: 0 20px;
}
.box-01 {
	display: flex;
	flex-direction: column;
}
.box-01 > div {
	width: 100%;
	padding: 0 20px;
}
.box-01 p {
	margin-top: 20px;
}
.box-02 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 20px;
}
.box-02 h5 {
	font-size: 1.1875rem;
	line-height: 1.875rem;
	font-weight: 400;
	margin-top: 30px;
}
.box-02 p {
	font-size: 1rem;
	line-height: 1.875rem;
	font-weight: 200;
	margin-top: 15px;
}
.box-02-more {
	padding: 0 20px;
	text-align: right;
}
.box-02-more .linkmore.gray::after {
	color: var(--gray);
}
.box-03 {
	width: 100%;
	padding: 50px 20px;
}
.box-03.right .box-03-text {
	float: right;
}
.box-03 .box-03-img img {
	max-width: 250px;
	margin-bottom: 25px;
}
.box-03 p {
	font-size: 1.1875rem;
	line-height: 1.875rem;
	font-weight: 200;
	margin-top: 15px;
}
.box-03 p .strong,
.box-03 p strong {
	font-weight: 400;
}
.box-04 {
	padding: 50px 20px 100px;
}
.box-contact-text {
	margin: 30px 0 0;
	padding: 0 20px;
	text-align: center;
}
.box-contact {
	display: flex;
	flex-direction: row;
}
.box-form .row_input {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 20px;
	font-weight: 300;
	color: var(--black);
}
.box-form .row_input input,
.box-form .row_input .select,
.box-form textarea {
	font-weight: 300;
	padding: 0.3rem 0;
	border-bottom: 1px solid var(--blue);
	width: 100%;
	background: transparent;
}
.box-form .row_input select {
	width: 100%;
	background: transparent;
	border-radius: 0;
}
.box-form select {
	font-weight: 200;
	font-style: italic;
	color: var(--gray);
}
.box-form select option[value=""][disabled] {
	display: none;
}
.box-form .row_input textarea {
	height: 100px;
}
.box-form .row_input input::placeholder,
.box-form .row_input textarea::placeholder {
	font-weight: 200;
	font-style: italic;
	color: var(--gray);
	opacity: 1;
}
.box-form .linkmore {
	margin-bottom: 35px;
}
.box-form .linkmore input {
	background-color: transparent;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--darkblue);
}
.box-form .linkmore.darkgray input {
	color: var(--darkgray-text);
}
.box-form .check {
	margin-top: 5px;
}
.box-form .check input {
	margin: 3px 5px 0 0;
	float: left;
}
.box-results {
	padding: 20px;
}
.box-news {
	padding: 0 20px;
}
.box-news .title-01 {
	margin-bottom: 20px;
}
.box-news p {
	font-size: 1.1875rem;
	line-height: 1.875rem;
	font-weight: 200;
	margin-top:	20px;
}
.box-news ul {
	list-style: disc;
	margin: 20px 0 0 40px;
}
.box-news ul ul {
	list-style: circle;
	margin: 0 0 0 30px;
}
.box-news figure img {
	width: 100%;
}
.box-news p a {
	font-weight: 300;
	color: #004f9e;
	text-decoration: underline;
}
.integrator .box-news p a {	
	color: #69b24c;	
}
.box-news table th {
	font-weight: 400;
}
.box-news table td {
	font-weight: 200;
}
.box-news table td,
.box-news table th {
	font-size: 1.1875rem;
	line-height: 1.875rem;	
	padding: 10px;
}

/* Mouse */
#scroll{
	font-size: 14px;
	color:#fff;
	margin-top: 50px;
	transform: translateX(-6px)
}
.mouse {
	width: 26px;
	height: 42px;
	border: 2px solid #fff;
	border-radius: 24px;
	position: absolute;
	bottom: 5vh;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}
.mouse:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 50%;
	margin-left: -2px;
	background-color: var(--green);
	border-radius: 100%;
	width: 4px;
	height: 4px;
	opacity: 1;
	-webkit-transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	-webkit-animation: scroll 1.5s -1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
	animation: scroll 1.5s -1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
@-webkit-keyframes scroll {
	0%, 20% {
	-webkit-transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	}
	10% {
	-webkit-transform: translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);
	transform: translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);
	opacity: 1;
	}
	100% {
	-webkit-transform: translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);
	transform: translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);
	opacity: 0.01;
	}
}
@keyframes scroll {
	0%, 20% {
	-webkit-transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	transform: translateY(0px) scaleY(1) scaleX(1) translateZ(0px);
	}
	10% {
	-webkit-transform: translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);
	transform: translateY(0px) scaleY(1.2) scaleX(1.2) translateZ(0px);
	opacity: 1;
	}
	100% {
	-webkit-transform: translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);
	transform: translateY(20px) scaleY(2.5) scaleX(0.5) translateZ(0px);
	opacity: 0.01;

	}
}
/* Fine mouse */
.read-more-state {
	display: none;
}
@media (max-width: 991px) {
	.select {
		margin: 30px auto 0;
	}
	.lt-09 .read-more-target {
		opacity: 0;
		max-height: 0;
		font-size: 0;
		transition: .25s ease;
		padding: 0;
	}
	.read-more-state:checked ~ .lt-09 .read-more-target {
		opacity: 1;
		font-size: inherit;
		max-height: 999em;
		padding: 0 0 10px;
	}
	.read-more-state ~ .read-more-trigger:before {
		content: 'Mostra altri';
	}
	.read-more-state:checked ~ .read-more-trigger:before {
		content: 'Mostra meno';
	}
	.read-more-trigger {
		font-size: 1.125rem;
		font-weight: 300;
		display: inline-block;
		color: var(--blue);
		text-transform: uppercase;
		cursor: pointer;
		padding: 10px 0;
		width: 100%;
	}
	.section.parallax-window.mobile-bg-left {
		background-position: left top!important;
	}
	.section.parallax-window.mobile-bg-right {
		background-position: right top!important;
	}
	.box-01-sx,
	.box-01-dx {
		margin-top: 20px;
	}
	.box-01-dx {
		margin-bottom: 20px;
	}
	.box-02-item {
		margin-top: 50px;
	}
	.box-01.right,
	.box-03.right {
		text-align: left!important;
	}
	.box-form {
		padding: 40px 20px 0;
	}
	.box-form .row_input {
		display: flex;
		flex-direction: column;
		margin-top: 0;
	}
	.box-form .row_input input,
	.box-form .row_input select,
	.box-form .row_input textarea {
		margin-top: 20px;
	}
	.box-form .row_input .select select {
		margin-top: 0;
	}	
	.lt-05 {
		padding: 0 20px;
	}
	.lt-05 li img {
		max-width: 50%;
		max-height: 60px;
	}
	.lt-06 {
		flex-direction: column;
	}
	.lt-06 li {
		padding: 0;
	}
	.lt-08 {
		padding: 0 20px;
	}
	.lt-09 {
		column-count: 1;
		column-gap: 50px;
	}
	.lt-10 {
		padding: 0 20px;
	}
	.lt-11 {
		padding: 0 20px;
	}
	.lt-11 li img {
		max-width: 60%;
		max-height: 60px;
	}
	.lt-12 {
		padding: 0 20px;
	}
}
@media (min-width: 992px) {
	.sectionbig .title-01,
	.sectionbig.title-01 {
		font-size: 2.1875rem;
	} 
	.sectionbig p {
		font-size: 1.5625rem;
		line-height: 2.1875rem;
	} 
	.box-wrap {
		padding: 0 30px;
	}
	.section {
		position: relative;
	}
	.section > .container {
		padding: 50px 0 70px 0;
		min-height: 400px;
	}
	.image-box .image {
		transition: all 0.3s;
		transform: scale(1);
		object-fit: cover;
	}
	.image-box:hover .image {
		transform: scale(1.06);
	}
	.right-desktop {
		text-align: right;
	}
	.box-contact-text {
		margin: 30px auto 0;
		max-width: 70%;
	}
	.lt-04 li a {
		padding-right: 22px;
		padding-left: 0;
	}
	.lt-04 li a::after {
		left: auto;
		right: 0;
		content: "\f053";
	}
	.lt-05 li {
		max-width: 10%;
		width: auto;
	}
	.lt-07-logos > div {
		padding: 0 2%;
		max-width: 14.6%;
	}
	.lt-07-logos > div img {
		max-width: 150px;
	}
	.lt-08 > li {
		padding: 0 5%;
		max-width: 28.3%;
	}
	.lt-09 {
		column-count: 3;
		column-gap: 50px;
		margin: 50px 0 0;
		padding: 0 30px;
	}
	.lt-10 > li {
		padding: 0 2%;
		max-width: 18%;
	}
	.lt-11 li {
		max-width: 25%;
		margin-top: 50px;
	}
	.lt-11 li img {
		max-width: 60%;
		height: 75px;
	}
	.lt-12 li {
		max-width: 10%;
		width: auto;
	}
	.box-01 {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: 280px;
	}
	.box-01 > div {
		width: 50%;
		padding: 0 30px;
	}
	.box-02 {		
		margin-top: 30px;
		padding: 0 30px;
	}
	.box-02 > .box-02-item {
		width: 29%;
		margin-bottom: 50px;
	}
	.box-02-more .linkmore {
		margin-top: 0;
	}
	.box-03 {
		padding: 100px 30px 140px;
	}
	.box-03 .box-03-text {
		max-width: 65%;
	}
	.box-04 {
		padding: 100px 30px 300px;
	}
	.box-contact {
		justify-content: flex-end;
	}
	.box-contact > div {
		width: 50%;
	}
	.box-contact-full > div {
		width: 100%;
		padding-left: 30px;
	}
	.bg-map {
		display: flex;
		height: 100%;
		width: 100%;
		position: absolute;
	}
	.bg-map > div {
		width: 50%;
		background-image: url(../img/cartina.jpg);
		background-repeat: no-repeat;
		background-position: right 0 top 50%;
		background-size: cover;
	}
	.link-map {
		display: flex;
		width: 80%;
		height: 100%;
		margin: 0 auto;
	}
	.box-contact p {
		margin-top: 5px;
	}
	.box-form {
		padding: 40px 30px 0 0;
	}
	.box-form .row_input span {
		width: 48%;
	}
	.box-form .row_input.row_input_full span {
		width: 100%;
	}
	.box-results {
		padding: 20px 30px;
	}
	.box-news {
		padding: 0;
	}
	.box-news figure img {
		width: 100%;
	}
}

/*** HEAD ***/
.header-menu-open {
	overflow: hidden;
	position: relative;
}
header {
	width: 100%;
	position: relative;
    z-index: 10003;
    border-bottom: 1px solid #999DA6;
}
.head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 2.188em; /* 35px */
	padding: 0 1.25rem;
}
.head [class^="fa-"], 
.head [class*=" fa-"] {
	font-size: 1.3125rem;
	margin-right: 0.375em;
}
.lt-head-sx li {
	display: inline-block;
	padding: 0.5em;
}
.lt-head-sx li:first-child {
	padding-left: 0;
}
.lt-head-sx li a {
	display: inline-flex;
}
.lt-head-sx li span {
	font-size: 0.875rem;
	line-height: 1.3125rem;
	color: #FFFFFF;
	display: inline-block;
}
.lt-head-sx [class^="fa-"], 
.lt-head-sx [class*=" fa-"] {
	color: var(--lightblue);
}
.lt-head-dx li {
	display: inline-block;
	padding: 0 0.5em;
	position: relative;
	color: var(--gray);
}
.lt-head-dx li::before {
	content: "|";
	position: absolute;
	left: -3px;
}
.lt-head-dx li:first-child:before {
	content: "";
}
.lt-head-dx li:last-child {
	padding-right: 0;
}
.lt-head-dx li a {
	color: var(--gray);
	display: inline-flex;
	-webkit-transition:color .2s;
	-moz-transition:color .2s;
	-o-transition:color .2s;
	transition:color .2s;
}
.lt-head-dx [class^="fa-"], 
.lt-head-dx [class*=" fa-"] {
	color: var(--gray);
	-webkit-transition:color .2s;
	-moz-transition:color .2s;
	-o-transition:color .2s;
	transition:color .2s;
}
.lt-head-dx li a:hover,
.lt-head-dx li a:hover [class^="fa-"], 
.lt-head-dx li a:hover [class*=" fa-"] {
	color: var(--white);
}
.lt-head-dx .fa-linkedin-in {
	margin: 0;
}

/*** HOME ***/
.home {
	display: flex;
	width: 100%;
	height: calc(100vh - 2.188em);
	flex-direction: row;
	position: relative;
	z-index: 101;
}
.home > div {
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: row;
	position: relative;
	overflow: hidden;
	transition: flex 1s,background-image 1s,background-position 1s;	
	flex: 1;
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center;
}
.home.opened .section {
	flex: 0;
	z-index: 101;
}
.home.opened .section.active {
	flex: 1;
}
.home-col-sx {
	display: flex;
	flex-direction: row;
	width: 100%;
	min-width: 33.33vw;
	max-width: 33.33vw;
	height: 100%;
	position: relative;
}
.home-col-dx {
	display: block;
	transition: flex 10.5s;
	flex: 1;
}
.home.opened .section.active > .home-col-sx {
	width: 33.33vw;
}
.home.opened .section.active > .home-col-dx {
	flex: 1;
	z-index: 1;
}
.home .home-item .title {
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.07rem;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 0.938rem;
}
.home .home-item .subtitle {
	font-size: 1.25rem;
	font-weight: 200;
	color: #FFFFFF;
}
.home .home-item .up-title {
	font-size: 1.5625rem;
	font-weight: 200;
	color: #FFFFFF;
	margin-bottom: 0.938rem;
}
.home .home-item {
	width: 100%;
}
.home div:last-child .home-col-sx:before {
	width: 0;
}
.home div.active .home-col-sx:before {
	width: 1px;
}
.home .fa-angle-down {
	font-size: 2rem;
	color: #FFFFFF;
	display: inline-block;
	position: absolute;
	-webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}
.home > div .openPanel {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.home > div.active .closePanel {
	opacity: 1;
	visibility: visible;
}
.home > div.active .openPanel {
	opacity: 0;
	visibility: hidden;
}
#integrator {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('../img//bg-integrator.jpg');    
}
#factory {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('../img//bg-factory.jpg');    
}
#platform {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url('../img//bg-platform.jpg');    
}
.logo-cnt {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.logo-cnt .logo img {
	max-width: 100%;
	max-height: 35px;
}
.menu {
	position: fixed;
	top:0;
	width: 100%;
	height: 100vh;
	z-index: 10002;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #000A1F;
	overflow: auto;
	-webkit-transform-origin:top;
	transform-origin:top;
	-webkit-transform:scaleY(0) translateZ(0);
	transform:scaleY(0) translateZ(0);
	-webkit-transition:-webkit-transform 1.2s cubic-bezier(.77,0,.175,1) .2s;
	transition:-webkit-transform 1.2s cubic-bezier(.77,0,.175,1) .2s;
	transition:transform 1.2s cubic-bezier(.77,0,.175,1) .2s;
	transition:transform 1.2s cubic-bezier(.77,0,.175,1) .2s,-webkit-transform 1.2s cubic-bezier(.77,0,.175,1) .2s;
	-webkit-transition-delay:.2s;
	transition-delay:.2s;
}
.header-menu-open .menu {
	-webkit-transform: scaleY(1) translateZ(0);
	transform: scaleY(1) translateZ(0);
}
.menu-sx {
	padding: 0 20px 0;
}
.menu-sx,
.menu-dx {
	visibility:hidden;
	-webkit-transition:visibility 2.4s cubic-bezier(.165,.84,.44,1);
	transition:visibility 2.4s cubic-bezier(.165,.84,.44,1)
}
.header-menu-open .menu-sx,
.header-menu-open .menu-dx {
	visibility: visible
}
.menu-sx > div,
.menu-dx .listhome {
	opacity:0;
	-webkit-transition:opacity .4s cubic-bezier(.165,.84,.44,1) 0.4s;
	transition:opacity .4s cubic-bezier(.165,.84,.44,1) 0.4s;
}
.header-menu-open .menu-sx > div,
.header-menu-open .menu-dx .listhome {
	opacity:1;
	-webkit-transition:opacity 1.2s cubic-bezier(.165,.84,.44,1) 1.2s;
	transition:opacity 1.2s cubic-bezier(.165,.84,.44,1) 1.2s
}
.menu-sx h1 {
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--white);
	margin-bottom: 0.625rem;
}
.menu-sx h3 {
	font-size: 1.6em;
	font-weight: 300;
	color: var(--white);
	margin-bottom: 0.625rem;
	white-space: nowrap;
}
.menu-sx h5 {	
	font-size: .9em;
	font-weight: 300;
	color: var(--white);
}
.menu-sx .lt-01 {
	list-style: none;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
.menu-sx .lt-01 li {
	padding: .5em 0;
	display: inline-block;
}
.menu-sx .lt-01 a {
	display: inline-block;
	position: relative;
	color: var(--gray);	
}
.lt-02 {
	width: 100%;
	border-top: 1px solid #999DA6;
	margin-top: 40px;	
}
.lt-02 li {
	display: inline-block;
	padding: 2rem 0.5em;
	position: relative;
	color: var(--gray);
}
.lt-02 li::before {
	content: "|";
	position: absolute;
	left: -3px;
}
.lt-02 li:first-child:before {
	content: "";
}
.lt-02 li:last-child {
	padding-right: 0;
}
.lt-02 li a {
	color: var(--gray);
	display: inline-flex;
}
.lt-02 [class^="fa-"], 
.lt-02 [class*=" fa-"] {
	color: var(--gray);
	font-size: 1.3125rem;
	margin-right: 0.375em;
	-webkit-transition:color .2s;
	-moz-transition:color .2s;
	-o-transition:color .2s;
	transition:color .2s;
}
.lt-02 .fa-linkedin-in {
	margin: 0;
}
.home-content-inner {
	max-width: 50%;
	padding: 250px 1.25rem 175px;
}
.home-content h5 {
	color: var(--darkblue);
	font-size: 1.875rem;
	font-weight: 300;
}
.home-content h3 {
	color: var(--darkblue);
	font-size: 1.875rem;
	font-weight: 800;
	margin-bottom: 1.563rem;
}
.home-content p {
	font-size: 1.125rem;
	font-weight: 300;
	margin-bottom: 1.250rem;
}
.linkmore {
	font-size: 1.125rem;
	font-weight: 300;
	color: var(--darkblue);
	margin-top: 1.250rem;
	display: inline-flex;
	position: relative;
	padding-right: 20px;
}
.linkmore::after {
	position: absolute;
	right: 0;
	top: 2px;
	content: "\f054";
	font-family: "Font Awesome 5 Pro";
	color: var(--darkblue);
	font-size: 1rem;
	font-weight: 600;
}
.title-box {
	width: 100%;
	text-align: center;
	background-color: var(--lightblack);
	padding: 60px 20px 20px;
	position: relative;
}
.title-box h1 {
	font-size: 1.625rem;
	line-height: 1;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	display: inline-block;
	z-index: 1;
	position: relative;
}
.title-box .title-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.349), rgba(0, 0, 0, 0.73));
    background-size: cover;
	background-repeat: no-repeat;
	display: block;
	z-index: 0;
}
.title-box.head-factory {
	background: url('../img/head-factory.jpg') no-repeat 0 0;
	background-size: cover;
}
.title-box.head-platform {
	background: url('../img/head-platform.jpg') no-repeat 0 0;
	background-size: cover;
}
.title-box.head-integrator {
	/*background: url('../img/head-integrator.jpg') no-repeat center;
	background-size: cover;*/
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
@media (max-width: 991px) {
	.home-content-inner {
		max-width: none;
		padding: 40px 1.25rem 70px;
	}
	.menu {
		flex-direction: column;
		align-content: flex-start;
		padding-top: 80px;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;	
		grid-template-areas: 
		"menu-dx"
		"menu-sx";	
	}
	.menu-dx {
		grid-area: menu-dx;
	}
	.menu-sx {
		grid-area: menu-sx;
	}
	.menu > div {
		width: 100%;
		padding: 0 20px;
	}
	.menu-sx .lt-01,
	.menu-dx .listhome {
		margin: 0;
	}
	.menu-sx .menu-sx-text {
		display: none;
	}
	.logo-cnt {
		padding: 0.625em 0.938em;
		background-color: #000A1F;
	}	
	.head {
		display: none;
	}
	.home {
		flex-direction: column;
		height: calc(100vh - 3.438em);
	}
	.home .home-item {
		position: absolute;
		bottom: 0;
		padding: 0 20px 20px;
	}
	.home > div {
		flex-direction: column;		
	}
	.home > div:before {
		content: '';
		height: 1px;
		width: 100%;
		background-color: #999DA6;
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.home > div .openPanel {
		position: relative;
		margin-top: 0.625em;
	}
	.home .home-item .title {
		font-size: 1.5625rem;
	}
	.home .home-item .subtitle {
		font-size: 1rem;
	}
	.home-col-sx {
		min-width: 100vw;
		min-height: calc(33.33vh - (3.438em / 3));
		max-height: calc(33.33vh - (3.438em / 3));
		align-items: flex-end;
	}
	.home-col-dx {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.home.opened .section.active > .home-col-sx {
		width: 100vw;
		height: 25vh;
	}
	.home-col-dx .home-txt {
		height: 278px;
		overflow: auto;
		opacity: 0;
		transition: opacity 0.5s;
		-moz-transition: opacity 0.5s;
		-webkit-transition: opacity 0.5s;
		-webkit-transition-delay: 0s;
	    transition-delay: 0s;
	}
	.home-col-dx .home-txt .listhome {
		overflow: auto;
	}
	.section.active .home-col-dx .home-txt {
		opacity: 1;
		-webkit-transition-delay: 0.7s;
		transition-delay: 0.7s;
		position: relative;
		z-index: 2;
	}
	.listhome {
		margin: 0 0.625em;
	}
	.listhome li,
	.menu-sx .lt-01 li {
		display: block;	
		padding: 0;
		border-bottom: 1px solid #A3A7B0
	}
	.menu-sx .lt-01 li:last-child {
		border-bottom: none;
	}
	.listhome li:first-child {
		border-top: 1px solid #A3A7B0
	}
	.menu-dx .listhome li:first-child {
		border-top: none;
	}
	.listhome li a,
	.menu-sx .lt-01 li a {
		color: #FFFFFF;
		padding: 1em 0;
		display: block;
	}
	.home > div .closePanel {
		opacity: 0;
		left: 50%;
		bottom: 0;
		-webkit-transform: translateX(-50%) rotate(180deg);
		transform: translateX(-50%) rotate(180deg);
		transition: opacity .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out;
		-webkit-transition: opacity 0.2s ease-in-out;
		-webkit-transition-delay:.0s;
	    transition-delay: .0s;
	}
	.home > div.active .closePanel {
		opacity: 1;
		bottom: 10%;
		-webkit-transition-delay:.6s;
	    transition-delay: .6s;
	}
}
@media all and (min-width: 576px) and (max-width: 991px) {
	.home-content-inner {
		max-width: 60%;
	}
}
@media (min-width: 768px) {
	.title-box {
		padding: 20px;
	}
	.title-box h1 {
		font-size: 2rem;
	}
}
@media (min-width: 992px) {
	.title-box {
		padding: 60px 20px;
	}
	.title-box-v2 {
		padding-top: 95px;
		min-height: 250px;
	}
	.parallax-window {
		/*min-height: 400px;*/
		background: transparent;
	}
	.container-inner {
		height: 100%;
	}
	.bigslide {
		min-height: 600px;
	}
	.logo-cnt {
		width: 100%;
		padding: 0 1.25rem;
		position: absolute;
		top: 2.188em;
		z-index: 9999;		
	}
	.logo-cnt .logo {
		padding: 1.250em 0;
	}
	.logo-cnt .logo img {
		max-height: 50px;
	}
	.menu {
		top: 2.188em;
		width: 100%;
	}
	.menu-sx {
		border-right: solid .5px #999DA6;
		width: 33.33vw;
		height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;	
		padding: 200px 60px 50px;
	}
	.menu-sx > div {
		width: 100%;
	}
	.menu .listhome li a {
		opacity: 1;		
	}
	.menu-sx .lt-01 a,
	.menu-sx .lt-02 a {
		-webkit-transition:color .2s;
		-moz-transition:color .2s;
		-o-transition:color .2s;
		transition:color .2s;
	}
	.menu-sx .lt-01 a {
		font-size: 1.8rem;
		line-height: 1;
		font-weight: 900;
	}
	.menu-sx .lt-01 a:hover,
	.menu-sx .lt-02 a:hover {
		color: var(--white);
	}
	.menu-dx {
		flex: 1 1 33.33vw;
	}
	.lt-02 a:hover [class^="fa-"], 
	.lt-02 a:hover [class*=" fa-"] {
		color: var(--white);
	}
	/*.home:before {
		content: '';
		background: rgb(0,0,0);
		background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 100%);
		position: absolute; 
		top: 0;
		width: 100%;
		height: 255px; 
		z-index: 100;
	}*/
	.home div {
		align-items: center;
	}
	.home .section:before {
		content: '';
		height: 100%;
		width: 100%;
		background-color: #000000;
		position: absolute;
		right: 0;
		top: 0;
		opacity: 0;
		transition: opacity .3s ease-in-out;
		-moz-transition: opacity .3s ease-in-out;
		-webkit-transition: opacity .3s ease-in-out;
		z-index: 0;
	}
	.home .section.active:before {
		opacity: 0.8;
	}
	.home .section:after {
		content: '';
		background: rgb(0,0,0);
		background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 100%);
		position: absolute; 
		top: 0;
		width: 100%;
		height: 255px; 
		z-index: 100;
	}
	.home.opened .section::after {
		z-index: -1;
	}
	.home div.home-col-sx:before {
		content: '';
		height: 100%;
		width: 1px;
		background-color: #999DA6;
		position: absolute;
		right: 0;
		top: 0;
	}
	.home .home-item {
		position: absolute;
		padding: 0 60px 0;
		bottom: 150px;
		left: 0;
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-o-transform:  translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		-webkit-transition: all 1200ms;
		-moz-transition: all 1200ms;
		-o-transition: all 1200ms;
		transition: all 1200ms;
	}
	.home > div:hover .home-item,
	.home > div.active .home-item {
		bottom: 70%;
	}
	.home > div:hover .openPanel {
		opacity: 0;
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}
	.home > div:hover .closePanel {
		opacity: 1;
		visibility: visible;
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}
	.home > div .closePanel {
		position: absolute;	
		right: 40px;
		top: 50%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition:opacity .4s;
		-moz-transition:opacity .4s;
		-o-transition:opacity .4s;
		transition:opacity .4s;
		-webkit-transition-delay: 0.8s;
		transition-delay: 0.8s;
	}
	.home > div .openPanel {
		bottom: -75px;
		opacity: 1;
		-webkit-transition:opacity .4s;
		-moz-transition:opacity .4s;
		-o-transition:opacity .4s;
		transition:opacity .4s;
		-webkit-transition-delay: 0.8s;
		transition-delay: 0.8s;
	}
	.listhome {
		margin-left: 6.5em;
		list-style: none;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		max-height: calc((1.8rem + 3.6em)*5);		
	}
	.listhome li {
		display: inline-block;
		padding: 0.8em 1.3em 0.8em 0;
	}
	.listhome li a {
		display: inline-block;
		position: relative;
		font-size: 1.8rem;
		line-height: 2.2rem;
		text-transform: uppercase;
		font-weight: 900;
		color: #80888E;
		opacity:0;
		-webkit-transform:translateY(105%) translateZ(0);
		transform:translateY(105%) translateZ(0);
		-webkit-transition:opacity .4s cubic-bezier(.165,.84,.44,1),-webkit-transform 0s cubic-bezier(.165,.84,.44,1) .4s,color .2s;
		-moz-transition:opacity .4s cubic-bezier(.165,.84,.44,1),-webkit-transform 0s cubic-bezier(.165,.84,.44,1) .4s,color .2s;
		-o-transition:opacity .4s cubic-bezier(.165,.84,.44,1),transform 0s cubic-bezier(.165,.84,.44,1) .4s,color .2s;
		transition:opacity .4s cubic-bezier(.165,.84,.44,1),transform 0s cubic-bezier(.165,.84,.44,1) .4s,-webkit-transform 0s cubic-bezier(.165,.84,.44,1) .4s,color .2s;
	}
	.listhome li a:hover {
		color: #FFFFFF;
	}
	.section.active .listhome li a {
		opacity:1;
		-webkit-transform:translateZ(0);
		transform:translateZ(0);
		-webkit-transition-duration: .8s,.8s,.8s,0s;
		transition-duration: .8s,.8s,.8s,0s;
		-webkit-transition-delay: .7s,.7s,.7s,0s;
		transition-delay: .7s,.7s,.7s,0s;		
	}
}

#bars {
	width: 40px;
  	height: 22px;
	transition: height .5s, transform .1s, margin-left .3s;
	z-index: 99999999999!important;
	position: relative;
}
.bar {
	backface-visibility: hidden;
	position: absolute;
	left: 0;
	height: 4px;
	display: block;
	transition: 0.55s;
}
#bar1 {
	width: 38px;	
	transition: width .5s, transform .5s;
	background-color: var(--white);
	top: 9px;
}
#bar2 {
	width: 31px;
	transition: transform .5s;
	background-color: var(--white);
	top: 0;
}
#bar3 {
	width: 27px;
	transition: width .5s, opacity 1s;
	background-color: var(--lightblue);
	top: 18px;	
}
#bar2.menu-top-click {
	width: 38px;
	backface-visibility: hidden;
	top: 9px;
	transform: rotate(50deg);
	transition: 0.55s 0.5s;
}
#bar1.menu-bottom-click {
	backface-visibility: hidden;
	top: 9px;
	transform: rotate(-410deg);
	transition: 0.55s 0.5s;
}
#bar3.menu-middle-click {
	opacity: 0;
	transition: width .5s, opacity 0.5s;
}
#bars:hover #bar1.menu-bottom-click,
#bars:hover #bar1.menu-top-click {
	width: 38px;
}

/*** FOOTER ***/
.footer {
	padding: 7.5rem 0 5rem;
}
.footer-logo {
	text-align: left;
}
.footer-logo .img-logo-footer {
	max-height: 46px;
}
.footer-box {
	display: flex;
	flex-direction: column;
	padding: 0 1.25rem;
}
@supports (display: grid) {
	.footer-box {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}
.footer-box-item {
	padding: 20px 0;
	font-weight: 300;
	font-size: 0.9375rem;
	line-height: 1.625rem;
	color: var(--white);
}
.footer-box-item-cnt {
	margin-top: 25px;
}
.footer-box-item ul:not(.lt-social) a {
	color: var(--white);
}
.footer-box-item-title {	
	position: relative;
}
.footer-box-item-title span {
	font-size: 1.125rem;
	line-height: 0.875rem;
	font-weight: 600;
	color: var(--gray);
	padding-left: 10px;
	border-left: 3px solid var(--lightblue);
	display: block;
	position: relative;
}
.lt-social li {
	display: inline-block;
	padding-right: 10px;
}
.lt-social [class^="fa-"], 
.lt-social [class*=" fa-"] {
	color: var(--gray);
	font-size: 1.3125rem;
	-webkit-transition:color .2s;
	-moz-transition:color .2s;
	-o-transition:color .2s;
	transition:color .2s;
}
.lt-social a:hover [class^="fa-"], 
.lt-social a:hover [class*=" fa-"] {
	color: var(--white);
}
@media (max-width: 991px) {
	.footer {
		padding: 1.25rem 0;
	}
	.footer-box-item-cnt {
		display: none;
	}
	.footer-box-item:first-child {
		border: 0;
	}
	.footer-box .footer-box-item:first-child {
		display: flex;
		flex-direction: column;
	}
	.footer-box .footer-box-item:first-child .footer-box-item-cnt {
		display: block;
	}
	.footer-box-item {
		border-top: 1px solid #8E929C;
		padding: 15px 0;
	}
	.footer-box-item-title {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: space-between;
	}
	.footer-box-item-title::after {
		right: 5px;
		top: 0;
		content: "\f107";
		font-family: "Font Awesome 5 Pro";
		color: var(--lightblue);
		font-size: 1.4rem;
		font-weight: 600;
		transform: rotateZ(270deg);
		-webkit-transition: all 300ms;
		-moz-transition: all 300ms;
		-o-transition: all 300ms;
		transition: all 300ms;
	}
	.footer-box-item-title.active::after {
		transform: rotateZ(0deg);
	}
}
@media (min-width: 992px) {
	#bars:hover #bar1 {
		width: 31.5px;
	}
	#bars:hover #bar3 {
		width: 0;
	}
	.footer-box {
		display: flex;
		justify-content: space-between;
	}
	@supports (display: grid) {
		.footer-box {
			display: -ms-grid;
			display: grid;
			-ms-grid-columns: 2fr 2fr 2fr 2fr;
			grid-template-columns: 2fr 2fr 2fr 2fr;
		}
	}
	.footer-box-item-title {
		display: flex;
		align-items: flex-end;
		min-height: 46px;
	}
	.footer-box-item {
		padding: 0;
	}
	.footer-box-item > li {
		margin-bottom: 5px;
		display: block;
	}	
}

/*** INTEGRATOR ***/
.integrator header {
	border-bottom: 0;
}
.integrator .menu {
	top: 0;
}
.integrator #bar3 {
	background-color: var(--green);
}
.integrator .bg-map > div {
	background-image: url(../img/cartina-integrator.jpg);
}
.integrator .box-form .row_input input, 
.integrator .box-form .row_input select, 
.integrator .box-form .row_input .select, 
.integrator .box-form textarea {
	border-bottom-color: var(--green);
}
.integrator .box-form .linkmore::after {
	color: var(--darkgray-text);
}
.integrator .footer-box-item-title span {
	border-left-color: var(--green);
}
.integrator .title-box.head-integrator h1 {
	line-height: 2.8rem;
	text-transform: none;
	text-align: left;
}
.integrator .select {
	border-bottom-color: var(--green);
}
@media (max-width: 991px) {
	.integrator header {
		position: absolute;
		border-bottom: 0;
	}
	.integrator .footer-box-item-title::after {
		color: var(--green);
	}
	.integrator .logo-cnt {
		background-color: transparent;
	}
	.integrator .title-box.head-integrator:after {
		content: '';
		position: absolute;
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		background-color: #000;
		opacity: 0.3;
	}
}
@media (min-width: 992px) {
	.integrator .title-box.head-integrator {
		text-align: left;
	}
	.integrator .title-box.head-integrator h1 {
		font-size: 3.75rem;
		line-height: 5rem;
		max-width: 45%;
		padding: 0 30px;
	}
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

/*.hidden {
  display: none !important;
}*/

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

span.wpcf7-list-item {display:inline !important;margin:0 !important}


div.wpcf7-response-output {
	position: absolute !important;
    top: 20px !important;
    margin: auto !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 90% !important;
    text-align: center !important;
    font-weight: 200 !important;
}			

.hamb{
	cursor:pointer
}