/*
	Theme Name: Vertigo Lab
	Theme URI: https://vertigo-lab.com
	Description: Progettazione Interni
	Version: 1.4.3
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:500 16px/1.4 'SaolStandard-Medium', Helvetica, Arial, sans-serif;
	color:#898989;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
.grecaptcha-badge {
	display: none;
}
img {
	max-width:100%;
	width: 100%;
	height: auto;
}
picture {
	display: grid;
}
.ios .parallax {
	background-attachment: scroll !important;
}
a {
	color:#000;
	text-decoration:none;
	font-family:'NeurialGrotesk-Bold';
	text-transform: uppercase;
	font-size: 12px;
}
a:hover {
	color:#000;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
ul {
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
h1, h2 {
	font-size: 30px;
	text-transform: uppercase;
	color: #000;
	line-height: 1;
}
h3 {
	font-size: 30px;
	color: #000;
	line-height: 1;
}
h4 {
	font-family:'NeurialGrotesk-Medium';
	color: #000;
	font-size: 14px;
	line-height: 1;
}
h5 {
	font-family:'NeurialGrotesk-Medium';
	color: #000;
	line-height: 1;
	text-transform: uppercase;
}
h6 {
	font-family:'NeurialGrotesk-Medium';
	line-height: 1;
	font-size: 20px;
	color: #000;
}
span {
	color: #000;
}
.arrow {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
	margin-top: 20px;
	width: fit-content;
}
.arrow img {
	max-width: 15px;
	margin-left: 10px;
}
.divider {
	width: 20%;
	height: 2px;
	display: block;
	background-color: #000;
	margin: 30px auto;
}
.pulsante {
	
}
.pulsante:hover {
	
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
}
.up {
	position: fixed;
	top: 95%;
	right: 2%;
	z-index: 2;
}
.up img {
	max-width: 30px;
	cursor: pointer;
}
.zoom {
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.zoom:hover {
	transition-duration: 4s;
	-webkit-transition-duration: 4s;
	-o-transition-duration: 4s;
	-moz-transition-duration: 4s;
	-ms-transition-duration: 4s;
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
}
.szoom {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-moz-transform: scale(1,1);
}
.szoom:hover {
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transform: scale(0.9,0.9);
	-webkit-transform: scale(0.9,0.9);
	-o-transform: scale(0.9,0.9);
	-ms-transform: scale(0.9,0.9);
	-moz-transform: scale(0.9,0.9);
}

.rotation {
	transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation:hover {
	transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-webkit-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8;
	-o-transition-duration: 0.8s;
}
.rotation-inverse {
	animation-name: rotation-inverse;
	-webkit-animation: rotation-inverse;
	-ms-animation-name: rotation-inverse;
	-moz-animation-name: rotation-inverse;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 6s;
	-webkit-animation-duration: 6s;
	-ms-animation-duration: 6s;
	-moz-animation-duration: 6s;
}
@keyframes rotation-inverse {
	0% {transform: rotateZ(0);}
	25% {transform: rotateZ(-90deg);}
	50% {transform: rotateZ(-180deg);}
	75% {transform: rotateZ(-270deg);}
	100% {transform: rotateZ(-360deg);}
}

.lampeggio {
	position: fixed;
	max-width: 50px;
	bottom: 2%;
	right: 2%;
	opacity: 0;
	animation-name: lampeggio;
	-webkit-animation: lampeggio;
	-ms-animation-name: lampeggio;
	-moz-animation-name: lampeggio;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation-duration: 3s;
	-ms-animation-duration: 3s;
	-moz-animation-duration: 3s;
}
@keyframes lampeggio {
	0% {opacity:0;}
	25% {opacity:0.5;}
	50% {opacity:1;}
	75% {opacity:0.5;}
	100% {opacity:0;}
}
.pulsazione {
	animation-name: pulsazione;
	-webkit-animation: pulsazione;
	-ms-animation-name: pulsazione;
	-moz-animation-name: pulsazione;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
	-ms-animation-duration: 5s;
	-moz-animation-duration: 5s;
}
@keyframes pulsazione {
	0% {transform: scale(0.5,0.5);}
	25% {transform: scale(0.65,0.65);}
	50% {transform: scale(0.75,0.75);}
	75% {transform: scale(0.65,0.65);}
	100% {transform: scale(0.5,0.5);}
}
/* SLIDE */
.slick-dots {
	position: absolute;
    right: 0;
    bottom: 5%;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-active {
    background-color: #fff;
}
.slick-dots li {
    display: inline-block;
    width: 12px;
    height: 12px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 1px 0;
    border: 1px solid #fff;
}
.slick-dots button {
	color: transparent;
	background-color: transparent;
	display: contents;
}
.slick-prev {
	background-image: url(img/header/left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 5%;
	z-index: 1;
	outline: none;
}
.slick-next {
	background-image: url(img/header/right-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 1;
	outline: none;
}
/* FORM */
input,
textarea {
	outline: none;
	padding: 5px;
	color: #898989;
	margin-top: 20px;
	background-color: #fff;
	border: none;
	width: 100%;
	font-family:'NeurialGrotesk-Medium';
}
input {
	height: 40px;
}
::placeholder {
	color: #898989;
}
.wpcf7-form #privacy {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #000;
	background-color: transparent;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
}
.wpcf7-form #privacy:checked {
	background-color: #000;
}
.wpcf7-acceptance {
	font-family:'NeurialGrotesk-Medium';
}
.wpcf7-form a {
	color: #000;
	text-transform: lowercase;
	font-size: 16px;
	font-family:'NeurialGrotesk-Medium';
	text-decoration: underline;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	margin-top: 20px;
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
	padding: 0 50px;
    height: 40px;
    line-height: 35px;
    margin-bottom: 0;
    max-width: 150px;
    text-transform: uppercase;
}
.wpcf7-submit:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
}
div.wpcf7-response-output {
	padding: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	border: none;
	color: #000;
}

/* Style the tab */
.tab {
  	overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  	background-color: inherit;
  	float: left;
  	border: none;
  	outline: none;
  	cursor: pointer;
  	transition: 0.3s;
  	width: 31%;
  	border-bottom: 2px solid #999;
  	margin: 0 1%;
  	text-transform: uppercase;
  	color: #666;
  	font-size: 16px;
}

/* Create an active/current tablink class */
.tab button.active {
  	color: #ff5028;
  	border-bottom: 2px solid #ff5028;
}

/* Style the tab content */
.tabcontent {
 	display: none;
 	padding: 20px 0 0;
  	border-top: none;
}
.tabcontent h4 {
	margin-top: 20px;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}
.content {
	max-width:100%;
	width:90%;
	margin:0 auto;
	position:relative;
}

/* header */
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	height: 100px;
	line-height: 100px;
}
/* logo */
.logo {
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 20;
	margin-top: 10px;
}
.logo img {
	max-width: 100px;
}
.header .logo .white {
	display: none;
}
/* nav */
.nav {
	display: none;
	background-color: #000;
	color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
}
.nav a {
	color: #fff;
	text-transform: uppercase;
	font-family:'NeurialGrotesk-Medium';
	font-size: 16px;
}
.nav a:hover {
	text-decoration: underline;
}
.nav .current_page_item a {
	text-decoration: underline;
}
.nav ul {
	list-style-type: none;
	text-align: center;
	width: 100%;
}
.nav ul li {
	padding: 15px 0;
	line-height: 1;
}
#menu-item-wpml-ls-2-en span {
	color: #fff;
}
.page-template-template-gdpr #menu-item-wpml-ls-2-en span {
	color: #000;
}
.openclose {
	position: absolute;
	top: 35%;
	right: 5%;
	z-index: 90;
	cursor: pointer;
}
.openclose .iconbar {
	height: 2px;
	width: 20px;
	background-color: #000;
	display: block;
	margin: 5px 0;
}
.openclose img {
	max-width: 20px;
}
.openclose .uno {
	width: 15px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose .tre {
	width: 10px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose:hover .uno {
	width: 5px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose:hover .tre {
	width: 20px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
/* footer */
.footer {
	background-color: #1E1E1E;
	padding: 30px 5%;
	color: #fff;
	font-size: 12px;
	font-family:'NeurialGrotesk-Medium';
}
.footer a {
	color: #fff;
	text-transform: capitalize;
}
.footer .logo-footer img {
	max-width: 100px;
	margin-bottom: 40px;
}
.footer .column {
	padding: 20px 0;
}
.footer .social {
	display: flex;
	width: 100%;
}
.footer .social img {
	max-width: 20px;
	margin-left: 20px;
	margin-bottom: 0;
}
.footer .copyright {
	border-top: 1px solid #fff;
	padding-top: 40px;
	margin-bottom: 20px;
	margin-top: 20px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/


/*--------------HOME------------------*/
section {
	overflow: hidden;
}
#home h1 {
	font-family:'NeurialGrotesk-Medium';
	font-size: 30px;
	color: #fff;
	text-transform: none;
}
#home .fascia-1 .sfondo {
	display: grid;
	position: relative;
}
#home .fascia-1 .text h2 {
	font-family:'NeurialGrotesk-Medium';
	font-size: 30px;
	color: #fff;
	opacity: 0.5;
	text-transform: none;
	padding-left: 40px;
	filter: blur(2px);
}
#home .fascia-1 .black {
	color: #000;
	position: absolute;
	z-index: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 10%;
	left: 0;
	width: 100%;
}
#home .fascia-2 {
	background-color: #F7F7F7;
}
#home .fascia-2 div {
	max-width: 70%;
	margin: -20px auto 0;
	position: relative;
}
#home .fascia-2 h4 {
	text-align: right;
}
#home .fascia-3 {
	background-color: #F7F7F7;
	padding: 60px 5% 120px;
}
#home .fascia-3 h5,
#home .fascia-3 p {
	margin-left: 30px;
}
#home .fascia-3 h3 {
	padding: 20px 0;
}
#home .fascia-4 {
	margin: -60px 0 30px;
}
#home .fascia-4 img {
	width: 80%;
}
#home .fascia-4 p {
	padding: 30px 0;
}
#home .fascia-5 {
	background-color: #fff;
	padding: 30px 5%;
}
#home .fascia-6 {
	background-color: #F7F7F7;
	padding: 30px 0;
	text-align: right;
}
#home .fascia-6 img {
	width: 100%;
}
#home .fascia-6 h4 {
	text-align: center;
	padding: 30px 5%;
	max-width: 500px;
    margin: 0 auto;
}
#home .fascia-7 {
	padding: 30px 5%;
}
#home .fascia-8 {
	padding: 30px 0;
	background-image: url(img/home/immagine-3.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
#home .fascia-8 h2 {
	padding-left: 5%;
}
#home .fascia-8 .flex {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
#home .fascia-8 .flex h4 {
	width: 30%;
	text-align: center;
}
#home .fascia-8 .flex img {
	width: 40%;
    margin-bottom: -20%;
    padding: 60px 0 0;
}
#home .fascia-9 {
	background-color: #fff;
	padding: 25% 5% 30px;
}
#home .fascia-10 {
	display: flex;
	flex-direction: row;
}
/*--------------AZIENDA------------------*/
.intro {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50vh;
	width: 100%;
	position: relative;
}
.intro .slide {
	padding: 10%;
	width: 100%;
	margin-top: 15%;
}
.intro .slide .slick-prev {
	display: none !important;
}
.intro .scroll {
	position: absolute;
	z-index: 2;
	bottom: 5%;
	left: 50%;
	margin-left: -15px;
	display: flex;
    align-items: end;
}
.intro .scroll img {
	max-width: 30px;
}
.azienda .openclose .iconbar {
	background-color: #fff;
}
.azienda .header .black {
	display: none;
}
.azienda .header .white {
	display: inline-flex;
}
#azienda h1 {
	font-family:'NeurialGrotesk-Medium';
	font-size: 14px;
	text-transform: uppercase;
}
#azienda .intro {
	background-color: #775B45;
}
#azienda .fascia-2 {
	background-color: #F7F7F7;
	padding: 30px 5%;
	text-align: center;
}
#azienda .fascia-2 h3 {
	padding: 20px 0;
}
#azienda .fascia-2 h6 {
	color: #775B45;
}
#azienda .fascia-2 div {
	padding-top: 30px;
}
#azienda .fascia-3 p {
	text-align: center;
	padding: 30px 5%;
}
#azienda .fascia-3 .right {
	text-align: center;
}
#azienda .fascia-3 h2 {
	padding: 30px 5%;
}
#azienda .fascia-3 .right img {
	max-width: 200px;
}
#azienda .fascia-4 {
	background-color: #F7F7F7;
	padding: 200px 5% 100px;
	margin-top: -140px;
	position: relative;
    z-index: -1;
    text-align: center;
}
#azienda .fascia-5 {
	margin-top: -40px;
}
#azienda .fascia-5 div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	margin-bottom: 10px;
}
#azienda .fascia-5 img {
	width: 80%;
}
#azienda .fascia-5 p {
	font-size: 12px;
	margin-left: 5px;
}
#azienda .fascia-6 {
	text-align: center;
	padding: 30px 0;
}
#azienda .fascia-6 h6 {
	margin-bottom: 30px;
}
#azienda .fascia-6 .arrow {
	align-items: center;
	justify-content: center;
	width: auto;
	margin-top: 30px;
}
#azienda .fascia-7 {
	display: grid;
}
/*--------------PRODOTTI------------------*/
.prodotti .openclose .iconbar {
	background-color: #fff;
}
.prodotti .header .black {
	display: none;
}
.prodotti .header .white {
	display: inline-flex;
}
#prodotti .intro {
	background-color: #C1B1A0;
}
#prodotti h1 {
	font-family:'NeurialGrotesk-Medium';
	font-size: 14px;
	text-transform: uppercase;
}
#prodotti .fascia-2 {
	background-color: #F7F7F7;
	text-align: center;
	padding: 30px 0 50%;
	position: relative;
}
#prodotti .fascia-2 h3 {
	padding: 20px 0;
}
#prodotti .fascia-2 h6 {
	color: #C1B1A0;
}
#prodotti .fascia-2 .legno {
	width: 15%;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -80px;
}
#prodotti .fascia-2 .porta {
	width: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	margin-right: -10px;
}
#prodotti .fascia-2 .sedia {
	width: 30%;
	position: absolute;
	bottom: -50px;
	left: 20%;
}
#prodotti .fascia-2B {
	text-align: left;
	padding: 100px 0 30px;
}
#prodotti .fascia-3 h2 {
	text-align: center;
	padding-bottom: 30px;
}
#prodotti .fascia-4 {
	background-color: #F7F7F7;
	padding: 100px 0;
	margin-top: -7%;
	position: relative;
	z-index: -1;
}
#prodotti .fascia-4 .flex {
	padding: 0 5%;1
}
#prodotti .fascia-4 h6 {
	padding: 20px 0;
	font-family:'SaolStandard-Medium';
}
#prodotti .fascia-5 {
	padding: 0 5%;
	margin-top: -70px;
}
#prodotti .fascia-5 h6 {
	padding: 20px 0;
	font-family:'SaolStandard-Medium';
}
#prodotti .fascia-5 .flex {
	padding-bottom: 30px;
}
#prodotti .fascia-6 {
	display: grid;
}
#prodotti .fascia-6 .arrow {
	justify-content: center;
	width: auto;
	align-items: center;
	margin-bottom: 50px;
}
/*--------------PROGETTI------------------*/
.progetti .openclose .iconbar {
	background-color: #fff;
}
.progetti .header .black {
	display: none;
}
.progetti .header .white {
	display: inline-flex;
}
#progetti .intro {
	background-color: #E8C6A5;
}
#progetti h1 {
	font-family:'NeurialGrotesk-Medium';
	font-size: 14px;
	text-transform: uppercase;
}
#progetti .fascia-2 {
	background-color: #F7F7F7;
	padding: 30px 5% 45%;
	text-align: center;
	position: relative;
	z-index: -1;
}
#progetti .fascia-2 h3 {
	padding: 20px 0;
}
#progetti .fascia-2 h6 {
	color: #E8C6A5;
}
#progetti .fascia-2B {
	width: 80%;
	margin: -38% auto 0;
}
#progetti .fascia-2B .right {
	width: 50%;
	margin: 30px auto 0;
}
#progetti .fascia-2B p {
	text-align: right;
	padding-top: 30px;
}
#progetti .fascia-3 {
	padding: 30px 0;
}
#progetti .fascia-3 h2 {
	text-align: center;
	margin-top: 30px;
}
#progetti .fascia-4 {
	background-color: #F7F7F7;
	padding: 30px 5%;
}
#progetti .fascia-4 div {
	margin-bottom: 30px;
}
#progetti .fascia-4 div h3 {
	margin-top: 10px;
}
#progetti .fascia-5 {
	padding: 30px 5%;
}
#progetti .fascia-5 h3 {
	text-align: center;
	margin-bottom: 30px;
}
#progetti .fascia-5 .image p {
	font-size: 12px;
	text-align: right;
}
#progetti .fascia-5 .testo h6 {
	text-align: center;
	margin-bottom: 20px;
}
#progetti .fascia-6 {
	background-color: #F7F7F7;
}
#progetti .fascia-6 .inverse{
	padding-bottom: 30px;
}
#progetti .fascia-6 .inverse p {
	text-align: left;
}
#progetti .fascia-5 .arrow {
	justify-content: center;
	width: auto;
	align-items: center;
}
#progetti .fascia-7 .image p {
	text-align: left;
}
#progetti .fascia-8 {
	display: grid;
}
/*--------------CONTATTI------------------*/
.contatti .header {
	position: relative;
}
#contatti .fascia-1 {
	padding: 30px 0;
}
#contatti .fascia-1 h3 {
	font-size: 25px;
}
#contatti .fascia-1 .left  {
	text-align: center;
}
#contatti .fascia-1 .left p {
	padding: 20px 0;
}
#contatti .fascia-1 .left a {
	color: #898989;
	text-transform: lowercase;
	font-family:'SaolStandard-Medium';
	font-size: 16px;
	display: inline-flex;
}
#contatti .fascia-1 .right {
	background-color: #ededed;
	padding: 30px;
}
#contatti .social {
	margin-bottom: 60px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	text-transform: uppercase;
	color: #000;
	font-family:'NeurialGrotesk-Medium';
	font-size: 14px;
}
#contatti .social img {
	max-width: 20px;
	margin-left: 15px;
}
#contatti .fascia-3 {
	text-align: center;
	padding: 30px 0;
}
#contatti .fascia-4 {
	display: grid;
}
/*--------------REFERENZE------------------*/
.clienti-partner .header {
	position: relative;
}
#referenze h1 {
	font-family:'NeurialGrotesk-Medium';
	font-size: 14px;
	text-transform: uppercase;
}
#referenze .fascia-1 {
	padding: 30px 0;
	text-align: center;
}
#referenze .fascia-1 h3 {
	padding: 20px 0;
}
#referenze .fascia-1 h6 {
	color: #775B45;
}
#referenze h5 {
	padding: 10px 0;
	line-height: 1.4;
}
#referenze .fascia-2 {
	padding: 30px 0;
}
#referenze .fascia-2 p {
	text-transform: uppercase;
	padding-top: 30px;
	font-size: 20px;
}
#referenze .fascia-2 h5 {
	text-transform: none;
	font-size: 15px;
	color: #666;
}
#referenze .fascia-2 h5 b {
	text-transform: uppercase;
	font-size: 14px;
	color: #000;
}
/*--------------GDPR------------------*/
.page-template-template-gdpr section h2 {
	padding-bottom: 20px;
	padding-top: 60px;
}
.page-template-template-gdpr section p {
	max-width: 800px;
}
#cmplz-document, 
.editor-styles-wrapper .cmplz-unlinked-mode {
	max-width: 100% !important;
}
#cmplz-cookies-overview .cmplz-dropdown summary div, 
#cmplz-document .cmplz-dropdown summary div,
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header {
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
#cmplz-cookies-overview .cmplz-dropdown summary div input[data-category="functional"], #cmplz-document .cmplz-dropdown summary div input[data-category="functional"], .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary div input[data-category="functional"] {
	width: 5% !important;
}
.page-template-template-gdpr input[type=checkbox], .page-template-template-gdpr input[type=radio] {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #000;
	background-color: transparent;
	padding: 6px;
	margin: 0;
	max-width: 6px;
	margin-right: 10px;
}
.page-template-template-gdpr input[type=checkbox]:checked, .page-template-template-gdpr input[type=radio]:checked {
	background-color: #000;
}
.page-template-template-gdpr label {
	padding: 0;
	width: 25%;
	text-align: left;
}
#cmplz-cookies-overview .cmplz-dropdown summary div h3, #cmplz-document .cmplz-dropdown summary div h3, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary div h3 {
	width: 50%;
}
#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p, #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown.cmplz-dropdown-cookiepolicy summary div p {
	width: 15%;
	text-align: left;
}
.cmplz-category-title{
	width: 80%;
}




/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'SaolStandard-Medium';
	src:url('fonts/SaolStandard-Medium/SaolStandard-Medium.eot');
	src:url('fonts/SaolStandard-Medium/SaolStandard-Medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/SaolStandard-Medium/SaolStandard-Medium.woff') format('woff'),
		url('fonts/SaolStandard-Medium/SaolStandard-Medium.ttf') format('truetype'),
		url('fonts/SaolStandard-Medium/SaolStandard-Medium.svg#SaolStandard-Medium') format('svg');
    font-weight:normal;
    font-style:normal;
}

@font-face {
	font-family:'NeurialGrotesk-Medium';
	src:url('fonts/NeurialGrotesk-Medium/NeurialGrotesk-Medium.eot');
	src:url('fonts/NeurialGrotesk-Medium/NeurialGrotesk-Medium.eot?#iefix') format('embedded-opentype'),
		url('fonts/NeurialGrotesk-Medium/NeurialGrotesk-Medium.woff') format('woff'),
		url('fonts/NeurialGrotesk-Medium/NeurialGrotesk-Medium.ttf') format('truetype'),
		url('fonts/NeurialGrotesk-Medium/NeurialGrotesk-Medium.svg#NeurialGrotesk-Medium') format('svg');
    font-weight:normal;
    font-style:normal;
}

@font-face {
	font-family:'NeurialGrotesk-Bold';
	src:url('fonts/NeurialGrotesk-Bold/NeurialGrotesk-Bold.eot');
	src:url('fonts/NeurialGrotesk-Bold/NeurialGrotesk-Bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/NeurialGrotesk-Bold/NeurialGrotesk-Bold.woff') format('woff'),
		url('fonts/NeurialGrotesk-Bold/NeurialGrotesk-Bold.ttf') format('truetype'),
		url('fonts/NeurialGrotesk-Bold/NeurialGrotesk-Bold.svg#NeurialGrotesk-Bold') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:768px) {
	.wpcf7-form .flex {
		display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: space-between;
	    align-items: flex-start;
	    align-content: center;
	}
	.wpcf7-form .flex div {
		width: 48%;
	}
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.nav ul li {
		padding: 15px 0;
	}
	.nav a {
		font-size: 20px;
	}
	.footer {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: center;
		flex-direction: row;
	}
	.footer .column {
		width: 33.3333%;
	}
	.footer .column:nth-child(3) {
		text-align: right;
	}
	.footer .copyright {
		width: 100%;
	}
	.footer .logo-footer {
		text-align: center;
	}
	.footer .logo-footer img {
		margin-bottom: 20px;
	}
	.footer .social {
		justify-content: center;
	}
	.footer .social img {
		max-width: 15px;
	}
	.footer .copyright {
		text-align: center;
	}
	h1, h2 {
		font-size: 40px;
	}
/*--------------HOME------------------*/
	#home h1 {
		font-size: 40px;
	}
	#home .fascia-1 .text h2 {
		font-size: 40px;
	}
	#home .fascia-4 p, 
	#home .fascia-4 h2 {
		text-align: right;
	}
/*--------------AZIENDA------------------*/
	.intro .slide {
		margin-top: 10%;
	}
	#azienda .fascia-2 img {
		width: 50%;
	}
	#azienda .fascia-2 div {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		padding: 0;
		margin-top: -30px;
	}
	#azienda .fascia-2 .left {
		position: relative;
		z-index: 1;
		margin-right: -50px;
	}
	#azienda .fascia-2 .right {
		margin-top: 150px;
	}
	#azienda .fascia-3 .flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
	}
	#azienda .fascia-3 .flex div {
		width: 50%;
	}
	#azienda .fascia-3 .flex .right h2 {
		text-align: right;
		padding: 30px 10%;
	}
	#azienda .fascia-4 {
		margin-top: -180px;
		padding: 230px 5% 100px;
	}
	#azienda .fascia-5 div {
		align-items: end;
	}
	#azienda .fascia-5 .due {
		margin-left: 50px;
	}
	#azienda .fascia-5 .tre {
		margin-left: 100px;
	}
	#azienda .fascia-5 .quattro {
		margin-left: 150px;
	}
	#azienda .fascia-5 img {
		width: 500px;
	}
/*--------------PRODOTTI------------------*/
	#prodotti .fascia-2B p {
		width: 50%;
		margin: 0 auto;
	}
	#prodotti .fascia-3 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
	}
	#prodotti .fascia-3 .left {
		width: 30%;
		padding-left: 5%;
	}
	#prodotti .fascia-3 h2 {
		text-align: left;
	}
	#prodotti .fascia-3 .right {
		width: 60%;
	}
	#prodotti .fascia-4 {
		padding: 10% 0 30%;
	}
	#prodotti .fascia-4 .flex {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
		width: 70%;
		margin: 30px auto 0;
	}
	#prodotti .fascia-4 h6 {
	    padding: 0 5% 0 0;
	}
	#prodotti .fascia-5 {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
		margin-top: -25%;
	}
	#prodotti .fascia-5 .progetto {
		width: 48%;
	}
	#prodotti .fascia-5 .progetto:first-child {
		margin-top: 100px;
	}
/*--------------PROGETTI------------------*/
	#progetti .fascia-4 {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
	}
	#progetti .fascia-4 div {
		width: 31%;
		margin-bottom: 0;
	}
	#progetti .fascia-5 .testo {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		padding-top: 30px;
	}
	#progetti .fascia-5 .testo h6 {
		text-align: right;
	}
	#progetti .fascia-5 .testo p {
		padding-left: 30px;
	}
/*--------------CONTATTI------------------*/
	#contatti h1 {
		font-size: 30px;
	}
}
@media only screen and (min-width:1024px) {
	/* nav */
	.nav {
		display: block;
		background-color: transparent;
		height: auto;
		width: 95%;
		position: relative;
	}
	.nav ul {
		margin-top: 0;
		text-align: right;
	}
	.nav ul li {
		padding: 0;
		display: inline-block;
		text-transform: none;
	}
	.nav ul li a {
		padding: 0 0 0 15px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		color: #000;
		text-transform: capitalize;
		letter-spacing: 1px;
	}
	.home #menu-item-wpml-ls-2-en span,
	.contatti #menu-item-wpml-ls-2-en span {
		color: #000;
	}
	.openclose {
		display: none;
	}
	.logo {
		max-width: 120px;
		width: 100%;
		left: 20%;
	}
	.logo img {
		max-width: 120px;
	}
	.footer {
		padding: 60px 22%;
	}
	.footer .logo-footer img {
		max-width: 150px;
	}
	.footer .social img {
	    max-width: 15px;
	}
	.footer a {
		font-size: 12px;
	}
	.arrow {
		justify-content: end;
		text-align: right;
	}
	h3 {
		font-size: 40px;
	}
	a {
		font-size: 16px;
	}
	.arrow img {
		max-width: 12px;
	}
/*--------------HOME------------------*/
	#home .fascia-1 {
		background-color: #F7F7F7; 
		width: 90%;
		margin: 5% auto 0;
	}
	#home .fascia-1 .sfondo {
		display: flex;
		justify-content: end;
		margin-right: -5.6%;
	}
	#home .fascia-1 img {
		width: 85%;
		margin-top: -6%;
	}
	#home .fascia-1 .text {
		height: 80%;
	}
	#home .fascia-1 .black {
		text-align: left;
		justify-content: start;
		left: 0;
		bottom: 15%;
	}
	#home .fascia-2 {
		width: 90%;
		margin: 0 auto;
	}
	#home .fascia-2 div {
		max-width: 300px;
		margin: -150px auto 0;
		margin-right: 15%;
	}
	#home .fascia-3 {
		width: 90%;
		margin: 0 auto;
		padding: 60px 12% 160px;
	}
	#home .fascia-3 .flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
	}
	#home .fascia-3 .flex p {
		width: 70%;
	}
	#home .fascia-3 .flex a {
		width: 30%;
	}
	#home .fascia-4 {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		margin: -60px 5% 30px 0;
	}
	#home .fascia-4 img {
		width: 95%;
	}
	#home .fascia-4 .content h2 {
		margin-top: 60px;
	}
	#home .fascia-4 .image {
		margin-top: -60px;
	}
	#home .fascia-5 {
		padding: 60px 12%;
	}
	#home .fascia-6 {
		width: 90%;
		margin: 0 auto;
		position: relative;
		z-index: 1;
	}
	#home .fascia-6 img {
	    width: 100%;
	    margin-right: -15%;
	}
	#home .fascia-6 h4 {
	    margin-top: -5%;
		margin-left: 35%;
	    max-width: 500px;
	    line-height: 1.4;
	}
	#home .fascia-7 {
		padding: 60px 12%;
		position: relative;
		z-index: 2;
	}
	#home .fascia-8 {
	    padding: 40% 0 0;
	    margin-top: -300px;
	    position: relative;
	    z-index: 1;
	} 
	#home .fascia-8 .flex {
		justify-content: flex-start;
		padding-left: 5%;
	}
	#home .fascia-8 .flex h4 {
		width: 11%;
	}
	#home .fascia-8 .flex img {
	    width: 40%;
	    margin-bottom: -15%;
	    margin-left: 0;
	}
	#home .fascia-9 {
		padding: 20% 12% 60px;
		position: relative;
		z-index: 0;
	}
	#home .fascia-10 {
		margin-left: 5%;
	}
/*--------------AZIENDA------------------*/
	.intro {
		height: 70vh;
	}
	.azienda .nav a {
		color: #fff;
	}
	#azienda .fascia-2 {
		padding: 60px 5%;
	}
	#azienda .fascia-2 .left {
		margin-right: -70px;
	}
	#azienda .fascia-3 p {
		padding: 60px 5%;
		max-width: 600px;
		margin: 0 auto;
	}
	#azienda .fascia-3 .flex .left {
		width: 60%;
	}
	#azienda .fascia-3 .flex .right {
		width: 40%;
	}
	#azienda .fascia-3 .right img {
		margin-top: 200px;
		max-width: 60%;
	}
	#azienda .fascia-4 {
		margin-top: -25%;
		padding: 30% 5% 10%;
	}
	#azienda .fascia-4 p {
		max-width: 500px;
		margin: 0 auto;
	}
	#azienda .fascia-5 {
		margin-top: -7%;
	}
	#azienda .fascia-5 div {
		margin-bottom: 15px;
		width: 70%;
	}
	#azienda .fascia-5 img {
		width: 90%;
	}
	#azienda .fascia-6 {
		padding: 45px 0 60px;
	}
	#azienda .fascia-6 p {
		max-width: 500px;
		margin: 0 auto;
	}
	#azienda .fascia-6 h6 {
		margin-bottom: 60px;
	}
/*--------------PRODOTTI------------------*/
	.prodotti .nav a {
		color: #fff;
	}
	#prodotti .fascia-2 {
		padding: 60px 0 40%; 
	}
	#prodotti .fascia-2 .legno {
		margin-top: -10%;
		width: 18%;
	}
	#prodotti .fascia-2 .porta {
		width: 45%;
		margin-right: -3%;
		bottom: 5%;
	}
	#prodotti .fascia-2 .sedia {
	    bottom: -20%;
		left: 30%;
		width: 30%;
	}
	#prodotti .fascia-2B {
		padding: 20% 0 60px;
	}
	#prodotti .fascia-2B p {
		width: 500px;
	}
	#prodotti .fascia-4 {
		padding: 15% 0 30%;
	}
	#prodotti .fascia-4 .flex {
		margin: 60px auto 0;
		width: 650px;
	}
	#prodotti .fascia-5 .progetto {
		width: 46%;
	}
/*--------------PROGETTI------------------*/
	.progetti .nav a {
		color: #fff;
	}
	#progetti .fascia-2 {
		padding: 30px 5% 28%;
	}
	#progetti .fascia-2B {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin: -25% auto 0;
	}
	#progetti .fascia-2B .left {
		width: 75%;
		margin-left: -10%;
		display: flex;
	    flex-direction: column;
	    justify-content: flex-end;
	    align-items: end;
	}
	#progetti .fascia-2B .right {
		width: 25%;
		margin-left: 10%;
	}
	#progetti .fascia-2B p {
		max-width: 500px;
		margin-left: 150px;
	}
	#progetti .fascia-3 {
		padding: 60px 0;
	}
	#progetti .fascia-3 h2 {
		margin-top: 0;
	}
	#progetti .fascia-4 {
		padding: 60px 5%;
	}
	#progetti .fascia-4 h3 {
		text-align: center;
		font-size: 30px;
	}
	#progetti .fascia-5 {
		padding: 60px 5% 0;
	}
	#progetti .fascia-5 h3 {
		margin-bottom: 60px;
	}
	#progetti .fascia-5 .image {
		display: flex;
		justify-content: flex-start;
		flex-direction: row;
		align-items: center;
	}
	#progetti .fascia-5 .image img {
		width: 70%;
	}
	#progetti .fascia-5 .image p {
		width: 30%;
		text-align: left;
		margin-left: 20px;
	}
	#progetti .fascia-5 .testo {
		justify-content: flex-start;
	}
	#progetti .fascia-5 .testo p {
		width: 60%;
	}
	#progetti .fascia-6 {
		padding: 40% 5% 20%;
		margin-top: -35%;
		position: relative;
		z-index: -1;
	}
	#progetti .fascia-6 .inverse  {
		padding-bottom: 60px;
	}
	#progetti .fascia-6 .inverse .image {
		flex-direction: row-reverse;
	}
	#progetti .fascia-6 .inverse .testo {
		justify-content: flex-end;
	}
	#progetti .fascia-6 .inverse .image p {
		text-align: right;
		margin-right: 20px;
	}
	#progetti .fascia-7 {
		margin-top: -18%;
		padding-bottom: 60px;
	}
	#progetti .fascia-7 .image {
		flex-direction: row-reverse;
	}
	#progetti .fascia-7 .testo {
		justify-content: flex-end;
	}
	#progetti .fascia-7 .image p {
		text-align: right;
		margin-right: 20px;
	}
	#progetti .fascia-7 .arrow {
		margin-top: 60px;
	}
/*--------------CONTATTI------------------*/
	#contatti .fascia-1 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		padding: 60px 0 0;
	}
	#contatti .fascia-1 .left,
	#contatti .fascia-1 .right {
		width: 48%;
	}
	#contatti .fascia-1 .right {
		padding: 60px;
	}
	#contatti .fascia-1 .left p {
		padding: 60px 0;
	}
	#contatti iframe {
		height: 350px;
	}
	#contatti .fascia-3 {
		padding: 60px 0;
	}
/*--------------REFERENZE------------------*/
	#referenze .fascia-1 {
		padding: 60px 5%;
	}
	#referenze .fascia-2 {
		padding: 0 0 60px 15%;
	}
	#referenze .fascia-2 p {
		padding-top: 60px;
		font-size: 25px;
	}
}
@media only screen and (min-width:1280px) {
/*--------------HOME------------------*/
	.intro {
	    height: 100vh;
	}
	.intro .slide {
		width: 80%;
	}
}
@media only screen and (min-width:1600px) {
	.nav ul li a {
		font-size: 16px;
	}
	.nav {
		width: 80%;
	}
	h1, h2 {
		font-size: 65px;
	}
	h3 {
	    font-size: 50px;
	}
	h5 {
		font-size: 16px;
	}
	.arrow {
		justify-content: center;
	}
	.slick-next {
		width: 30px;
		height: 30px;
		right: 5%;
		top: 50%;
	}
	h4 {
		font-size: 16px;
	}
	h6 {
		font-size: 28px;
	}
/*--------------HOME------------------*/
	.intro .slide {
		max-width: 1400px;
	}
	#home h1 {
		font-size: 70px;
	}
	#home .fascia-1 .text h2 {
	    font-size: 70px;
	}
	#home .fascia-1 .text {
	    height: 75%;
	}
	#home .fascia-2 div {
		margin-right: 23%;
		max-width: 400px;
	}
	#home .fascia-3 {
		padding: 30px 12% 200px;
	}
	#home .fascia-3 .flex p {
	    width: 48%;
	}
	#home .fascia-6 h4 {
	    margin-left: 40%;
		max-width: 720px;
	}
	#home .fascia-5,
	#home .fascia-7 {
		padding: 100px 12%;
	}
	#home .fascia-8 {
		padding: 30% 0 0;
		margin-top: -350px;
	}
	#home .fascia-8 .flex img {
		width: 30%;
		margin-bottom: -10%;
	}
	#home .fascia-9 {
		padding: 15% 12% 100px;
	}
	#home .fascia-9 .flex p {
	    width: 38%;
	}
/*--------------AZIENDA------------------*/
	.intro .scroll {
		bottom: 3%;
	}
	#azienda .fascia-2 {
		padding: 100px 5%;
	}
	#azienda .fascia-2 .left {
		margin-right: -120px;
	}
	#azienda .fascia-2 div {
		margin-top: 0;
	}
	#azienda .fascia-3 p {
		padding: 100px 5%;
	}
	#azienda .fascia-4 {
		padding: 32% 5% 14%;
	}
	#azienda .fascia-5 .due {
		margin-left: 10%;
	}
	#azienda .fascia-5 .tre {
		margin-left: 20%;
	}
	#azienda .fascia-5 .quattro {
		margin-left: 30%;
	}
	#azienda .fascia-5 p {
		font-size: 14px;
		margin-left: 10px;
	}
	#azienda .fascia-6 {
		padding: 100px 0;
	}
	#azienda .fascia-6 h6 {
		margin-bottom: 100px;
	}
	#azienda .fascia-6 .arrow {
		margin-top: 100px;
	}
/*--------------PRODOTTI------------------*/
	#prodotti .fascia-2 {
		padding: 100px 0 40%;
	}
	#prodotti .fascia-2B {
	    padding: 18% 0 100px;
	}
	#prodotti .fascia-3 .right {
		width: 65%;
	}
	#prodotti .fascia-4 {
		padding: 15% 0 32%;
	}
	#prodotti .fascia-4 .flex {
		margin: 100px auto 0;
	}
	#prodotti .fascia-5 .flex {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		padding: 60px 0 0;
	}
	#prodotti .fascia-5 .flex h6 {
		width: 30%;
		padding: 0;
	}
	#prodotti .fascia-5 .flex p {
		width: 65%;
	}
	#prodotti .fascia-5 .progetto:first-child .flex {
		margin-left: -100px;
	}
	#prodotti .fascia-6 .arrow {
		margin: 100px auto;
	}
/*--------------PROGETTI------------------*/
	#progetti .fascia-2 {
		padding: 100px 5% 32%;
	}
	#progetti .fascia-2B p {
		padding-top: 100px;
	}
	#progetti .fascia-3 {
		padding: 100px 0;
	}
	#progetti .fascia-4 {
		padding: 100px 5%;
	}
	#progetti .fascia-5 h3 {
	    margin: 50px 0 100px;
	}
	#progetti .fascia-5 .image p {
		font-size: 14px;
	}
	#progetti .fascia-5 .testo {
		justify-content: end;
		width: 70%;
	}
	#progetti .fascia-6 {
		margin-top: -30%;
		padding: 35% 5% 20%;
	}
	#progetti .fascia-6 .inverse {
	    padding-bottom: 100px;
	}
	#progetti .fascia-6 .inverse .testo {
		float: right;
	}
	#progetti .fascia-7 {
		padding-bottom: 100px;
	}
	#progetti .fascia-7 .arrow {
		margin-top: 100px;
	}
	#progetti .fascia-7 .testo {
		float: right;
	}
/*--------------CONTATTI------------------*/
	#contatti .fascia-1.content {
		width: 80%;
		max-width: 100%;
	}
	#contatti .fascia-1 {
		justify-content: flex-start;
		padding: 100px 0;
	}
	#contatti .fascia-1 .left, 
	#contatti .fascia-1 .right {
		width: 44%;
	}
	#contatti .fascia-3 {
		padding: 100px 0;
	}
/*--------------REFERENZE------------------*/
	#referenze .fascia-1 {
		padding: 100px 5%;
	}
}
@media only screen and (min-width:1900px) {
	body {
		font: 500 18px/1.4 'SaolStandard-Medium', Helvetica, Arial, sans-serif;
	}
	.wpcf7-form a {
		font-size: 18px;
	}
/*--------------HOME------------------*/
	.intro {
	    height: 100vh;
	}
	.intro .slide {
		margin-top: 0;
		max-width: 1600px;
	}
	#home .fascia-2 div {
		max-width: 700px;
	}
	#home .fascia-4 .content {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	#home .fascia-4 p {
		max-width: 500px
	}
/*--------------AZIENDA------------------*/
	.intro .slide {
		width: 1800px;
	}
/*--------------PRODOTTI------------------*/
	#prodotti .fascia-4 .flex {
		width: 800px;
	}
/*--------------CONTATTI------------------*/
	#contatti .fascia-1 .left {
		width: 42%;
	} 
	#contatti .fascia-1 .right {
		width: 45.5%;
	}
}


