/*
	Theme Name: BCM
	Theme URI: https://www.bcmilluminazione.com/
	Description: Illuminazione
	Version: 1.4.3
	Author: Mattia Giannetto
	Author URI: https://www.lithos.it
	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:400 14px/1.4 'Poppins', sans-serif;
	color:#404547;
	overflow-y: scroll;
}
body.open {
	overflow-y: hidden;
}
/* 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:#404547;
	text-decoration:none;
}
a:hover {
	color:#404547;
}
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 {
	font-weight: 100;
	font-size: 50px;
	color:#ae9a64;
}
h2 {
	font-weight: 100;
	font-size: 40px;
}
h3 {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
h4 {
	color: #82888f;
	font-weight: 300;
}
h5 {

}
h6 {
	
}
.divider {
	
}
.pulsante {
	padding: 5px 20px;
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
	display: inline-block;
}
.pulsante:hover {
	background-color: #fff;
	color: #404547;
}
.pulsante-grey {
	padding: 5px 20px;
	background-color: transparent;
	color: #404547;
	border: 1px solid #404547;
	display: inline-block;
}
.pulsante-grey:hover {
	background-color: #404547;
	color: #fff;
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.zoom img {
	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);
	display: grid;
}
.zoom:hover img {
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-moz-transition-duration: 2s;
	-ms-transition-duration: 2s;
	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;
    top: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    margin-top: -50px;
}
.slick-dots .slick-active {
    
}
.slick-dots li {
    display: inline-flex;
    background-color: transparent;
    margin: 20px 0 0;
    border: none;
    align-items: center;
}
.slick-dots li:after {
    content:'/';
    padding: 0 2px;
    font-size: 10px;
}
.slick-dots li:last-child:after {
	content: none;
}
.slick-dots button {
	color: #404547;
	background-color: transparent;
	display: block;
	border: none;
}
.slick-prev {
	background-image: url(img/home/left-gold.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 50%;
	left: 5%;
	z-index: 2;
	outline: none;
	height: 20px;
	width: 30px;
	margin-top: -15px;
}
.slide-news .slick-prev {
	background-image: url(img/home/left-black.svg);
	left: 0;
}
.slide-about .slick-prev {
	top: 0;
	margin-top: -30px;
	background-image: url(img/home/left-black.svg);
}
.slick-next {
	background-image: url(img/home/right-gold.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 2;
	outline: none;
	height: 20px;
	width: 30px;
	margin-top: 15px;
}
.slide-news .slick-next {
	background-image: url(img/home/right-black.svg);
}
.slide-about .slick-next {
	top: 0;
	margin-top: -30px;
	background-image: url(img/home/right-black.svg);
	right: 5%;
}
/* FORM */
label {
	font-weight: 300;
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #404547;
	margin-top: 5px;
	background-color: #f2f2f2;
	border: none;
	width: 100%;
}
input {
	height: 40px;
}
.wpcf7-form .flex div {
	margin-bottom: 20px;
}
.wpcf7-acceptance {
	margin-top: 20px;
	display: inline-block;
}
::placeholder {
	color: #000;
}
.wpcf7-form #privacy,
input[type=checkbox] {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
	background-color: #f2f2f2;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
}
input[type=radio] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	height: auto;
	max-width: 6px;
	padding: 6px;
	border: 1px solid #ccc;
}
.wpcf7-form #privacy:checked,
input[type=checkbox]:checked,
input[type=radio]:checked {
	background-color: #404547;
}
select{
	width: 100%;
	border: none;
	padding: 10px 5px;
	outline: none;
	font-weight: 300;
}
.wpcf7-form a {
	color: #404547;
	text-decoration: underline;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	margin-top: 20px;
	border: 1px solid #ae9a64;
	background-color: #ae9a64;
	color: #fff;
	padding: 0 50px;
    height: 40px;
    line-height: 35px;
    margin-bottom: 0;
    max-width: 150px;
    text-transform: uppercase;
    font-weight: 400;
}
.wpcf7-submit:hover {
	background-color: #404547;
	color: #fff;
	border: 1px solid #404547;
}
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: #404547;
}
/* 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: 50%;
  	border-bottom: 1px solid #999;
  	text-transform: uppercase;
  	color: #404547;
  	font-weight: 200;
  	padding: 20px;
}

/* Create an active/current tablink class */
.tab button.active {
  	color: #404547;
  	border-bottom: 1px solid #404547;
  	font-weight: 700;
}

/* Style the tab content */
.tabcontent {
 	display: none;
  	border-top: none;
}
.tabcontent h4 {
	margin-top: 20px;
}
.tabcontent.active {
    display: block;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: transparent;
	cursor: pointer;
	padding: 30px;
	width: 100%;
	text-align: center;
	border: none;
	outline: none;
	transition: 0.4s;
	border: 1px solid #199095;
	border-radius: 100px;
}
.accordion :after {
	content: ">";
	color: #f7c231;
	margin-top: 20px;
	transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
}
.accordion h3 {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.accordions .active, 
.accordion:hover {
	
}
.accordions {
	margin-top: 30px;
}
.active :after {
	transform: rotateZ(90deg);
	-o-transform: rotateZ(90deg);
	-webkit-transform: rotateZ(90deg);
	-moz-transform: rotateZ(90deg);
	-ms-transform: rotateZ(90deg);
	transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
	padding: 0 20px;
	background-color: #199095;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	border-radius: 20px;
	margin: 20px auto;
	color: #fff;
	text-align: left;
}
.panel p {
	margin: 30px auto;
}

/*------------------------------------*\
    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%;
	height: 80px;
	line-height: 100px;
	top: 0;
	left: 0;
	z-index: 5;
}
.error404 .header {
	position: relative;
}
/* logo */
.scroll .grey{
	display: none!important;
}
.scroll .gold{
	display: inline-block!important;
}
.logo {
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 20;
}
.logo img {
	max-width: 120px;
}
.header .grey {
	display: none;
}
.open .logo {
	position: fixed;
}
.open .header .grey {
	display: initial;
}
.open .header .gold {
	display: none;
}
.close .header .grey {
	display: none;
}
.close .header .gold {
	display: initial;
}
/* nav */
.nav {
	display: none;
	background-color: #ae9a64;
	color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
}
.close .nav {
	display: none !important;
}
.open .nav {
	display: flex !important;
}
.nav a {
	color: #fff;
	font-size: 16px;
	letter-spacing: 1px;
	font-weight: 300;
	text-transform: uppercase;
}
.nav a:hover {
	text-decoration: underline;
}
.nav .current_page_item a {
	color: #404547;
	font-weight: 700;
}
.nav ul {
	list-style-type: none;
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nav ul li {
	padding: 15px 0;
	line-height: 1;
}
#search {
	z-index: 20;
	cursor: pointer;
}
#search img {
	max-width: 20px;
	position: absolute;
    right: 0;
    top: 30px;
    margin-right: 60px;
}
#search .search-white {
	display: none;
}
.openclose {
	position: absolute;
	top: 35%;
	right: 5%;
	z-index: 90;
	cursor: pointer;
	display: block;
}
.open .openclose {
	display: flex;
}
.openclose .iconbar {
	height: 2px;
	width: 20px;
	background-color: #404547;
	display: block;
	margin: 5px 0;
}
.openclose img {
	max-width: 20px;
}
.openclose .uno {
	width: 20px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose .tre {
	width: 20px;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose:hover .uno {
	width: 20px;
	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;
}
.wpml-ls-item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
.wpml-ls-item ul {
	padding: 0;
	margin: 0;
	display: contents;
}
.wpml-ls-flag {
	width: 35px;
	padding:0 5px;
}
/* footer */
.footer {
	padding: 30px 0;
	color: #82888f;
	border-bottom: 1px solid #82888f;
	margin-bottom: 30px;
}
.footer .left img {
	max-width: 100px;
	margin-bottom: 20px;
}
.footer ul li a {
	text-transform: uppercase;
	color: #82888f;
}
.footer .right p {
	font-weight: 700;
	padding-bottom: 5px;
	padding-top: 20px;
}
.footer .right img {
	max-width: 25px;
	max-height: 25px;
	margin-right: 5px;
}
.copy {
	color: #82888f;
	font-size: 12px;
	padding-bottom: 30px;
}
.copy a {
	color: #82888f;
}
.form-popup {
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    position: fixed;
}
.form-popup .quadrato {
	position: absolute;
	z-index: 3;
	width: 90%;
	height: 500px;
	background-color: #fff;
	max-width: 600px;
}
.form-popup .close {
	color: #fff;
	text-align: right;
	font-size: 25px;
	cursor: pointer;
	position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    margin-top: -50px;
}
.form-popup .text {
	padding: 5%;
}
.form-popup input {
	background-color: #fff;
	border-bottom: 1px solid #333;
}
.form-popup ::placeholder {
	color: #ccc;
}
.form-popup .form_search-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
    height: 500px;
    overflow: hidden;
    overflow-y: auto;
}
.prodotto-ricerca {
    width: 100%;
    display:  flex;
    background-color: #f1f1f1;
    padding: 5px;
    border-radius: 5px;
}
.prodotto-ricerca figure {
    width: 60px;
    height: auto;
    padding: 5px;
    background-color: #e5decc;
    border-radius: 5px;
    margin-right: 10px;
}

.prodotto-ricerca .pr-search-content {
    width: calc(100% - 70px);
    display: block;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/


/*--------------HOME------------------*/
.home #search .search-white {
	display: block;
}
.home #search .search-black {
	display: none;
}
.home .openclose .iconbar {
	background-color: #fff;
}
#home .slick-slide div {
	display: grid;
}
#home .row-1 {
	position: relative;
}
#home .row-1 .video {
	width: 100%;
}
#home .row-1 h1 {
	color: #fff;
	display: flex;
	justify-content: start;
	align-items: end;
	height: 100%;
	width: 100%;
	padding-left: 5%;
	padding-bottom: 10%;
	position: absolute;
	bottom: 0;
	left: 0;
}
#home .row-2 {
	position: relative;
}
#home .row-2 h4 {
	color: #404547;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	position: absolute;
	top: 0;
	z-index: 2;
	width: 100%;
	padding-top: 10px;
	font-weight: 400;
}
#home .row-2 .left {
	position: relative;
	display: grid;
}
#home .row-2 .text {
	align-items: start;
	padding: 10px;
	justify-content: space-around;
}
#home .row-2 h2 {
	color: #ae9a64;
}
#home .row-2 .text p {
	width: 40%;
	color: #82888f;
}
#home .row-3 {
    padding: 30px 0 50px 0;
    text-align: center;
}
#home .row-3 h3 {
	color: #ae9a64;
	padding-bottom: 30px;
	letter-spacing: normal;
	text-transform: none;
}
#home .row-3 .innovation-message {
  margin: 0 auto;
  max-width: 800px;
  color: #333;
}

#home .row-3 .innovation-message h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #ae9a64;
}

#home .row-3 .innovation-message p {
  font-size: 22px;
  line-height: 1.8;
}

#home .row-4 .fascia {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	position: relative;
	padding:60px 30px 30px;
}
#home .row-4 .fascia h2 {
	color: #fff;
	font-weight: 200;
	position: absolute;
	tab-size: 0;
	left: 0;
	z-index: 0;
	top: 0;
	padding-top: 20px;
}
#home .row-4 .fascia h3 {
	font-weight: 300;
	text-transform: none;
	letter-spacing: normal;
}
#home .row-4 .fascia div {
	width: 60%;
	position: relative;
	z-index: 1;
}
#home .row-4 .right {
	display: flex;
	justify-content: flex-end;
}
#home .row-4 .right h2 {
	left: auto;
	right: 0;
}
#home .row-4 .center h2 {
	color: #efebe0;
}

#home .row-5 .parallax {
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 400px;
	color: #fff;
	text-align: center;
	padding: 60px 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#home .row-5 .parallax h3 {
	text-transform: none;
	letter-spacing: normal;
}
#home .row-5 .parallax h3 o {
	color: #ae9a64;
	text-transform: uppercase;
}
#home .row-5 .parallax p {
	padding: 20px 0;
}
#home .news {
	padding: 30px 0;
}
#home .news h4 {
	color: #404547;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	font-weight: 400;
	padding-bottom: 30px;
}
#home .news .slide-news {
	padding: 0 40px;
}
#home .news h3 {
	letter-spacing: normal;
	text-transform: none;
	color: #ae9a64;
	padding-top: 20px;
}
#home .news p {
	padding: 10px 0;
}
#home .row-6 {
	padding: 30px 5%;
	background-color: #f2f2f2;
	text-align: center;
}
#home .row-6 h4 {
	color: #ae9a64;
	font-weight: 700;
}
#home .row-6 p {
	padding-bottom: 20px;
}
#home .row-6 img {
	margin-bottom: 30px;
}
#home .row-6 a {
	font-weight: 700;
}
#home .row-6 a img {
	max-width: 5px;
	margin: 0;
}
/*--------------ABOUT------------------*/
.about-us .header .gold {
	display: none;
}
.about-us .header .grey {
	display: inline-block;
}
.about-us #search .search-white {
	display: block;
}
.about-us #search .search-black {
	display: none;
}
.about-us .openclose .iconbar {
	background-color: #fff;
}
#about video {
	width: 100%;
}
#about .row-1 {
	height: 100vh;
	width: 100%;
	padding: 30px 5%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}
#about h1 {
	color: #fff;
}
#about h2 {
	font-size: 70px;
}
#about h3 {
	text-transform: none;
	font-weight: 300;
	font-size: 22px;
}
#about h4 {
	color: #404547;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}
#about .row-1 .right {
	position: relative;
}
#about .row-1 h2 {
	color: #fff;
	font-weight: 200;
	position: absolute;
	right: 0;
	z-index: 0;
	top: 0;
	padding-right: 15%;
	opacity: 0.2;
}
#about .row-1 h4 {
	padding-bottom: 20px;
}
#about .row-1 .right {
	padding-top: 60px;
}
#about .row-1 .right h3,
#about .row-1 .right p {
	position: relative;
	z-index: 1;
}
#about .row-1 .right h3 {
	padding-bottom: 20px;
}
#about .row-2 {
	padding: 30px 0;
}
#about .row-2 h2 {
	color: #ae9a64;
	opacity: 0.2;
	font-weight: 200;
	line-height: 1;
	position: absolute;
	left: 0;
	z-index: 0;
	top: 10%;
}
#about .row-2 .left {
	position: relative;
	padding: 30px 0;
}
#about .row-2 .left div {
	position: relative;
	z-index: 1;
	padding: 40px 0 30px 30%;
}
#about .row-2 h3 {
	padding-bottom: 20px;
}
#about .row-3 {
	padding: 30px 0 0;
}
#about .row-3 .parallax {
	background-image: url(img/about/parallax.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 400px;
	width: 100%;
}
#about .row-3 h3 {
	color: #ae9a64;
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 20px;
	letter-spacing: normal;
}
#about .row-4 h3 {
	padding-bottom: 10px;
}
#about .row-4 .padding {
	padding: 30px;
}
#about .row-4 .reverse {
	background-color: #f2f2f2;
}
#about .row-4 .left {
	padding: 30px 30px 60px;
}
#about .row-4 .padding .left {
	padding:0 0 60px;
}
#about .row-4 h5 {
	color: #ae9a64;
	font-size: 16px;
	padding-bottom: 30px;
}
#about .slick-slide div {
	display: grid;
}
/*--------------CONTACT------------------*/
.contacts .header,
.contatti .header {
	background-color: #ae9a64;
	position: relative;
}
.contacts .header .gold,
.contatti .header .gold {
	display: none;
}
.contacts .header .grey,
.contatti .header .grey {
	display: inline-block;
}
.contacts #search .search-white,
.contatti #search .search-white {
	display: block;
}
.contacts #search .search-black,
.contatti #search .search-black {
	display: none;
}
.contacts .openclose .iconbar,
.contatti .openclose .iconbar {
	background-color: #fff;
} 
#contact .row-1 {
	padding: 30px 0;
}
#contact .row-1 h4 {
	letter-spacing: 2px;
	color: #404547;
	font-weight: 400;
	padding-bottom: 30px;
}
#contact h1,
#contact h3 {
	color: #404547;
	font-weight: 300;
	text-transform: none;
	letter-spacing: normal;
	font-size: 25px;
	padding-bottom: 20px;
}
#contact .row-1 .right {
	padding-top: 30px;
}
#contact .row-2 iframe {
	width: 100%;
	height: 400px;
	filter: grayscale(100%);
}
#contact .row-3 {
	padding: 30px 0;
}
#contact .row-3 .location {
	padding-top: 10px;
	background-image: url(img/contacts/sfondo.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0 5%;
}
#contact .row-3 .location div {
	padding-bottom: 30px;
}
#contact .row-3 .location h3 {
	color: #ae9a64;
	font-weight: 400;
}
#contact .row-3 .location p {
	font-weight: 300;
}
#contact .row-3 .location p span {
	font-weight: 400;
}
#contact .row-3 .location p o {
	color: #ae9a64;
}
/*--------------WORK------------------*/
#work h1 {
	padding: 20px 0;
}
#work .row-1 {
	padding: 90px 5% 30px;
	background-color: #f2f2f2;
}
#work .row-1 h4 {
	letter-spacing: 2px;
	color: #404547;
	font-weight: 400;
}
#work .row-2 .flex:first-child {
	background-color: #f2f2f2;
	padding: 0 5% 30px;
}
#work .row-2 .flex:first-child p {
	padding-left: 0;
}
#work .row-2 .flex {
	padding: 30px 0;
}
#work .row-2 p {
	color: #ae9a64;
	padding-top: 10px;
	padding-left: 5%;
}
#work .row-3 {
	background-color: #f2f2f2;
	padding: 30px 5%;
}
#work .row-3 .uno {
	padding-bottom: 30px;
}
#work .row-3 h3 {
	letter-spacing: normal;
	color: #ae9a64;
	padding-bottom: 30px;
}
#work .row-3 h4 {
	color: #404547;
	font-weight: 400;
	padding-bottom: 10px;
}
#work .row-3 a {
	display: block;
    text-align: center;
    margin: 0 auto;
    padding: 30px 0;
    cursor: pointer;
}
#work .row-3 a img {
	max-width: 5px;
	margin-left: 5px;
}
#work .row-3 .hover {
	display: none;
}
#work .row-3 .active .hover {
	display: block;
	padding-bottom: 30px;
}
#work .row-3 .active a {
	display: none;
}
#work .slick-next {
	background-image: url(img/header/right-white.svg);
	margin-top: -15px;
}
#work .slick-prev {
	background-image: url(img/header/left-white.svg);
	margin-top: -15px;
}
/*--------------NEWS------------------*/
#news .row-1 {
	background-color: #f2f2f2;
	padding: 90px 5% 30px;
}
#news .row-1 h3 {
	text-align: center;
	padding-bottom: 20px;
}
#news .row-1 .right {
	padding-top: 10px;
}
#news .row-1 .right div {
	padding-top: 20px;
}
#news .row-1 .right p {
	padding: 20px 0;
}
#news .row-1 .date {
	font-weight: 700;
	text-transform: uppercase;
	color: #82888f;
}
#news .row-2 {
	padding: 30px 0;
}
#news .row-2 h3 {
	text-transform: none;
	letter-spacing: normal;
	text-align: center;
	font-size: 25px;
	font-weight: 300;
	padding-bottom: 30px;
}
#news .row-2 article div {
	border-bottom: 1px solid;
	margin-bottom: 60px;
}
#news .row-2 article h3 {
	text-align: left;
	color: #ae9a64;
	padding: 20px 0;
}
#news .row-2 article p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#news .row-2 article .date {
	padding-top: 10px;
	display: block;
	color: #82888f;
}
#news .row-2 article a {
	display: table;
	margin: 20px auto;
}
/*--------------NEWS SINGOLA------------------*/
.single-post section {
	background-color: #f2f2f2;
}
.single-post article {
	padding: 90px 5% 0;
}
.single-post article .right {
	padding-top: 10px;
}
.single-post article .right div {
	padding-top: 20px;
}
.single-post article .right p {
	padding: 20px 0;
}
.single-post article .date {
	font-weight: 700;
	text-transform: uppercase;
	color: #82888f;
}
/*--------------CATEGORIA---------------*/
#categoria .row-1 {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right center;
	position: relative;
	height: 100vh;
}
#categoria .row-1 .text {
	height: 50%;
}
#categoria .row-2 {
	padding: 30px 0;
}
#categoria .row-2 h2 {
	font-weight: 200;
	text-align: center;
	border-bottom: 1px solid #ae9a64;
	padding: 20px 0;
}
#categoria .row-2 h2 a {
	color:#ae9a64;
}
#categoria .row-2 h2 a span {
	font-size: 25px;
	color: #82888f;
	font-weight: 300;
}
/*--------------SOTTOCATEGORIA------------------*/
.page-template-template-sottocategoria .header {
	position: relative;
}
#sottocategoria .row-1 {
	padding: 30px 0;
}
#sottocategoria .row-1 h3 {
	padding-bottom: 20px;
}
#sottocategoria .row-2 h2 {
	font-weight: 300;
	font-size: 30px;
}
#sottocategoria .row-2 .prodotto {
	border-bottom: 1px solid #82888f;
	padding: 30px 0;
}
#sottocategoria .row-2 .prodotto:last-child {
	border-bottom: none;
}
#sottocategoria .row-2 .left h4 {
	padding: 10px 0;
}
#sottocategoria .row-2 .left p {
	line-height: 1.6;
	font-weight: 300;
}
#sottocategoria .row-2 .left {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
}
#sottocategoria .row-2 .left img,
#sottocategoria .row-2 .left .testo {
	width: 48%;
}
#sottocategoria .row-2 .right {
	padding: 30px 0 0;
}
#sottocategoria .row-2 .right img {
	max-width: 6px;
	margin-right: 5px;
}
#sottocategoria .row-2 .right h4 {
	padding-bottom: 10px;
}
#sottocategoria .row-2 .right a {
	font-weight: 300;
}
#sottocategoria .row-2 .right .modelli {
	column-count: 2;
}
/*--------------PRODOTTO------------------*/

.bidimensional-model {
	max-width: 300px!important;
	margin-bottom: 20px;
	padding-bottom: 25px;
}
#singolo_prodotto .row-1 {
	padding: 30px 0;
	border-bottom: 1px solid #82888f;
}
#singolo_prodotto .row-1 h3 {
	padding-bottom: 20px;
	font-size: 14px;
}
#singolo_prodotto .row-2 {
	padding: 30px 0;
}
#singolo_prodotto .row-2 h3 {
	font-weight: bold;
	padding-bottom: 10px;
}
/* #singolo_prodotto .row-2 .left img {
	padding-bottom: 30px;
} */
#singolo_prodotto .row-2 .right {
	padding-top: 30px;
}
#singolo_prodotto .row-2 .right .descrizione img {
	max-width: 150px;
}
#singolo_prodotto .row-2 .right .image img {
	max-width: 150px;
}
#singolo_prodotto .row-2 .right .flex p {
	padding: 10px 0;
}
#singolo_prodotto .row-2 .right .down .flex p {
	padding: 10px 0;
}
#singolo_prodotto .row-2 .tab {
	padding: 30px 0;
} 
#singolo_prodotto .row-2 .tabcontent .details {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}
#singolo_prodotto .row-2 .tabcontent .details p {
	width: 50%;
}
#singolo_prodotto .row-2 .finiture {
	padding: 30px 0;
}
#singolo_prodotto .row-2 .finiture h4 {
	font-weight: 700;
	color: #404547;
	border-bottom: 1px solid #666;
	padding: 10px 0;
}
#singolo_prodotto .row-2 .standard .image {
	padding-top: 30px;
}
#singolo_prodotto .row-2 .tabella {
	display: flex;
	flex-direction: column;
}
#singolo_prodotto .row-2 .tabella img {
	max-width: 30px;
}
#singolo_prodotto .row-2 .tabella .up,
#singolo_prodotto .row-2 .tabella .down {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}
#singolo_prodotto .row-2 .tabella .up .flex,
#singolo_prodotto .row-2 .tabella .down .flex {
	width: 75%;
}
#singolo_prodotto .row-2 .tabella .flex .uno {
	width: 30%;
}
#singolo_prodotto .row-2 .tabella .flex .due {
	width: 10%;
}
#singolo_prodotto .row-2 .tabella .flex .tre {
	width: 50%;
	text-align: center;
}
#singolo_prodotto .row-2 .tabella .flex .quattro {
	width: 10%;
}
#singolo_prodotto .row-2 .tabella .sopra,
#singolo_prodotto .row-2 .tabella .sotto {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}
#singolo_prodotto .row-2 .tabella .sopra,
#singolo_prodotto .row-2 .tabella .up {
	border-bottom: 1px solid #666;
}
#singolo_prodotto .row-3 {
	text-align: center;
}
#singolo_prodotto .row-3 h4 {
	font-weight: 400;
	color: #404547;
}
#singolo_prodotto .row-3 img {
	max-width: 20px;
}
#singolo_prodotto .row-3 h4 b {
	padding:0 0 20px;
	display: block;
	font-size: 20px;
}
#custom_code {
	font-size: 20px;
}
#singolo_prodotto .datasheet {
	border: 1px solid;
	width: 100%;
	display: inline-block;
	padding: 10px 0;
	text-transform: capitalize;
}
#singolo_prodotto .datasheet .white {
	display: none;
}
#singolo_prodotto .datasheet:hover {
	background-color: #404547;
	color: #fff;
}
#singolo_prodotto .datasheet:hover .white {
	display: inline-block;
}
#singolo_prodotto .datasheet:hover .black {
	display: none;
}
#singolo_prodotto .row-3 .downloads {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 30px 0;
}
#singolo_prodotto .row-3 .downloads a {
	width: 50%;
	display: flex;
	padding: 10px 0;
}
#singolo_prodotto .row-3 .downloads img {
	margin-right: 10px;
}
#singolo_prodotto .row-4 {
	background-color: #f2f2f2;
	padding: 20px;
}
#singolo_prodotto .row-4 h3 {
	text-align: center;
	letter-spacing: 1px;
	font-weight: 300;
	padding-bottom: 30px;
}
#singolo_prodotto .row-4 h4 {
	color: #404547;
	font-weight: 700;
	border-bottom: 1px solid #999;
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
#singolo_prodotto .row-4 .valori {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
#singolo_prodotto .row-4 .valori ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 32%;
	padding: 0 2% 30px;
}
#singolo_prodotto .row-4 .valori ul p {
	margin-bottom: 10px;
}
#singolo_prodotto .row-4 .valori ul input {
	margin-right: 5px;
	margin-top: 0;
}
#singolo_prodotto .row-4 .finiture img {
	max-width: 50px;
	margin-right: 10px;
}
#singolo_prodotto .row-4 .finiture .flex h4 {
	font-weight: 300;
	border-bottom: none;
}
#singolo_prodotto .row-4 .finiture ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap
}
#singolo_prodotto .row-4 .finiture ul li {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: nowrap;
	width: 50%;
	margin-bottom: 10px;
    cursor: pointer;
}
#singolo_prodotto .row-4 .finiture ul li:hover img {
	border:1px solid red;
}
#singolo_prodotto .row-4 .combinazione .image img {
    max-width: 150px;
}
#singolo_prodotto .row-4 .combinazione .tabella {
	display: flex;
	flex-direction: column;
}
#singolo_prodotto .row-4 .combinazione .tabella img {
	max-width: 30px;
}
#singolo_prodotto .row-4 .combinazione .tabella .up,
#singolo_prodotto .row-4 .combinazione .tabella .down {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}
#singolo_prodotto .row-4 .combinazione .tabella .up .flex,
#singolo_prodotto .row-4 .combinazione .tabella .down .flex {
	width: 80%;
}
#singolo_prodotto .row-4 .combinazione .tabella .flex .tre {
	width: 60%;
	text-align: right;
	padding: 10px 0;
}
#singolo_prodotto .row-4 .combinazione .tabella .sopra,
#singolo_prodotto .row-4 .combinazione .tabella .sotto {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}
#singolo_prodotto .row-4 .combinazione .tabella .sopra,
#singolo_prodotto .row-4 .combinazione .tabella .up {
	border-bottom: 1px solid #666;
}
#singolo_prodotto .row-4 .combinazione .tabella .uno {
	width: 20%;
}
#singolo_prodotto .row-4 .combinazione .tabella .due {
	width: 5%;
}
#singolo_prodotto .row-4 .combinazione .tabella .custom-value p {
	width: 80%;
}
#singolo_prodotto .row-4 .combinazione .tabella .custom-value img {
	width: 20%;
	margin-left: 10%;
}
#singolo_prodotto .row-4 .combinazione .left {
	padding: 30px 0;
}
#singolo_prodotto .row-4 .combinazione .left div {
	margin-bottom: 30px;
}
#singolo_prodotto .row-4 .combinazione .left label {
	padding-bottom: 10px;
	display: block;
}
#singolo_prodotto .row-4 .combinazione .left label b {
	padding-left: 10px;
}
#singolo_prodotto .row-4 .riassunto {
	padding: 30px 0;
	border-top: 1px solid #999;
	margin-top: 30px;
}
#singolo_prodotto .row-4 .riassunto h3 {
	text-transform: inherit;
	text-align: left;
}
#singolo_prodotto .row-4 .riassunto .right {
	text-align: center;
}
#singolo_prodotto .row-4 .riassunto h4 {
    font-weight: 400;
    color: #404547;
    border-bottom: none;
}
#singolo_prodotto .row-4 .riassunto img {
    max-width: 20px;
}
#singolo_prodotto .row-4 ul {
	padding-bottom: 30px;
}
#singolo_prodotto .row-4 ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
#singolo_prodotto .row-4 ul li b,
#singolo_prodotto .row-4 ul li p {
	width: 50%;
}
.icone-articolo {
    display: flex;
}
.icone-articolo > img {
    width: 30px;
}
.finiture-custom .custom-value {
    display: flex;
    padding-bottom: 5px;
    align-items: center;
    justify-content: center;
}
.finiture-custom .custom-value > p {
    width: 100%;
    text-align: right;
}

.finiture_disponibili li img.active {
    border: 2px solid red;
}

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

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

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

@media only screen and (min-width:280px) {
	.bidimensional-model{
		margin-left: 50%;
		transform: translateX(-50%);
	}
}

@media only screen and (min-width:768px) {
	.bidimensional-model{
		max-width: 66%!important;
		margin-left: 50%;
		transform: translateX(-50%);
	}
	.wpcf7-form label {
		
	}
	.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 p {
		width: 100%;
	}
	.wpcf7-form .flex .button p {
		display: flex;
		flex-direction: column;
		align-items: end;
	}
	.wpcf7-form .flex div {
		width: 48%;
	}
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.nav ul li {
		padding: 15px 0;
	}
	.nav a {
		font-size: 20px;
	}
	#search img {
		margin-right: 80px;
	}
	.footer {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}
	.footer .left,
	.footer .right {
		width: 50%;
	}
	.footer .left,
	.footer .right,
	.footer .right .social {
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	.footer .right p {
		padding-top: 0;
		padding-bottom: 0;
	}
	.footer .right img {
		margin-left: 10px;
	    max-width: 20px;
		max-height: 20px;
	}
	.footer .left {
		justify-content: space-between;
		align-items: flex-start;
	}
	.footer .left img {
		margin-bottom: 0;
	}
	.footer .right {
		justify-content: flex-end;
	}
	.slick-prev,
	.slick-next {
		margin-top: -20px;
	}
	h4 {
		font-size: 18px;
	}
/*--------------HOME------------------*/
	#home h1,
	#home h2 {
		font-size: 70px;
	}
	#home h3 {
		font-size: 25px;
	}
	#home .row-1 h1 {
		padding-left: 15%;
	}
	#home .row-2 .text {
		padding-left: 5%;
	}
	#home .row-4 .fascia {
		padding: 80px 30px 60px;
	}
	#home .row-4 .left div {
		width: 50%;
		padding-left: 10%;
	}
	#home .row-4 .right div {
		width: 50%;
		padding-right: 10%;
	}
	#home .row-4 .left h2 {
		padding-left: 5%;
	}
	#home .row-4 .right h2 {
		padding-right: 5%;
	}
	#home .row-4 .fascia h3 {
		padding-bottom: 20px;
	}
/*--------------ABOUT------------------*/
	#about .row-1 {
		height: 60vh;
	}
	#about .row-1 .right {
		padding-left: 50%;
		padding-top: 0;
	}
	#about .row-1 h2 {
		padding-right: 5%;
		margin-top: -50px;
	}
/*--------------CONTACT------------------*/
	#contact .row-3 .location {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#contact .row-3 .location div {
		width: 50%;
	}
	#contact .row-3 .location div:nth-child(odd) {
		padding-right: 4%;
	}
	#contact .row-3 .location h3 {
		padding-bottom: 0;
		height: 70px;
	}
/*--------------NEWS------------------*/
	#news .row-1 article {
		display: flex;
		justify-content: space-around;
		align-items: center;
		flex-direction: row-reverse;
	}
	#news .row-1 article .left,
	#news .row-1 article .right {
		width: 45%;
	}
	#news .row-1 h3 {
		text-align: left;
	}
	#news .row-1 article .right {
		text-align: right;
		padding-top: 0;
	}
	#news .row-1 .right div {
	    padding-top: 30px;
	}
	#news .row-2 article {
		display: flex;
		justify-content: flex-start;
		flex-direction: row;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#news .row-2 article div {
		width: 46%;
		margin:0 2% 60px;
	}
/*--------------NEWS SINGOLA------------------*/
	.single-post article {
		display: flex;
		justify-content: space-around;
		align-items: center;
		flex-direction: row-reverse;
	}
	.single-post article .left,
	.single-post article .right {
		width: 45%;
	}
	.single-post article .right {
		text-align: right;
		padding-top: 0;
	}
	.single-post article .right div {
	    padding-top: 30px;
	}
/*--------------CATEGORIA--------------*/
	#categoria .row-2 {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#categoria .row-2 h2 {
		width: 50%;
	}
	#categoria .row-2 h2:nth-child(even) {
		text-align: left;
		padding-left: 20px;
	}
	#categoria .row-2 h2:nth-child(odd) {
		text-align: right;
		padding-right: 20px;
	}
	#categoria .row-2 .mobile {
		display: none;
	}
/*--------------SOTTOCATEGORIA-------------*/
	#sottocategoria .row-2 .right a {
		font-size: 16px;
	}
/*--------------PRODOTTO------------------*/
	#singolo_prodotto .row-2 {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-direction: row;
	}
/* 	#singolo_prodotto .row-2 .left img {
		margin-bottom: 60px;
	} */
	#singolo_prodotto .row-2 .left {
		width: 38%;
	}
	#singolo_prodotto .row-2 .right {
		width: 58%;
		padding-top: 0px;
	}
	#singolo_prodotto .row-2 .right .standard {
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    flex-direction: row;
	    padding-top: 20px;
	}
	#singolo_prodotto .row-2 .standard .image {
	    padding-top: 0px;
	    width: 20%;
	}
	#singolo_prodotto .row-2 .standard .tabella {
		width: 76%;
	}
	#singolo_prodotto .row-4 .valori ul {
		width: 20%;
		padding: 0 2% 30px 0;
	}
	#singolo_prodotto .row-4 .combinazione .standard {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	    flex-direction: row;
	}
	#singolo_prodotto .row-4 .combinazione .standard .image {
		width: 20%;
	}
	#singolo_prodotto .row-4 .combinazione .standard .tabella {
		width: 76%;
	}
	#singolo_prodotto .row-4 .riassunto {
		display: flex;
	    justify-content: space-between;
	    align-items: center;
	    flex-direction: row;
	}
	#singolo_prodotto .row-4 .riassunto .left,
	#singolo_prodotto .row-4 .riassunto .right {
		width: 48%;
	}
	
}
@media only screen and (min-width:1024px) {
	body {
		font-size: 16px;
	}
	.text {
		text-align: left;
		align-items: flex-start;
		padding-left: 5%;
	}
	.logo {
		max-width: 120px;
		width: 100%;
	}
	.logo img {
		max-width: 120px;
	}
	h1 {
		font-size: 70px;
	}
	h2 {
		font-size: 50px;
	}
	#search img {
		margin-right: 100px;
	}
	.slick-prev {
		left: 1%;
	}
	.slick-next {
		width: auto;
	}
	.flex .slide-about .slick-dots {
		right: auto;
		left: 0;
		top: auto;
		bottom: 5%;
		margin-left: -76%;
	}
	.flex .slide-about .slick-prev {
		top: auto;
		bottom: 5%;
		margin-left: -50%;
	}
	.flex .slide-about .slick-next {
		top: auto;
		bottom: 5%;
		margin-right: 100%;
	}
	.reverse .slide-about .slick-dots {
		margin-left: 76%;
		bottom: 5%;
	}
	.reverse .slide-about .slick-prev {
		top: auto;
		bottom: 5%;
		margin-left: 105%;
	}
	.reverse .slide-about .slick-next {
		top: auto;
		bottom: 5%;
		margin-right: -50%;
	}
	.copy {
		padding-bottom: 60px;
	}
	.footer {
		padding: 60px 0 30px;
	}
/*--------------HOME------------------*/
	#home .row-1 h1 {
		padding-left: 15%;
		padding-bottom: 0;
		align-items: center;
	}
	#home .row-2 {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	#home .row-2 h3 {
		width: 100%;
	}
	#home .row-2 .left {
		width: 50%;
	}
	#home h2 {
		font-size: 50px;
	}
	#home .row-2 h4 {
		padding-top: 20px;
	}
	#home .row-2 .text p {
		width: 160px;
	}
	#home .row-4 .left div {
		padding-left: 300px;
	}
	#home .row-4 .right div {
		padding-right: 300px;
	}
	#home .row-4 .left h2 {
		padding-left: 7%;
	}
	#home .row-4 .right h2 {
		padding-right: 13%;
	}
	#home .row-4 .fascia h2 {
		padding-top: 30px;
	}
	#home .row-5 .parallax p {
		max-width: 750px;
		margin: 0 auto;
	}
	#home .news {
		padding: 60px 0;
	}
	#home .news .flex {
		display: flex !important;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		max-width: 700px;
		margin: 0 auto;
	}
	#home .news .flex .left {
		width: 40%;
	}
	#home .news .flex .right {
		width: 60%;
		padding-left: 5%;
		display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	    height: 220px;
	    align-items: start;
	}
	#home .news h3 {
		padding-top: 0;
	}
	#home .row-6 {
		padding: 60px 5%;
	}
	#home .row-6 img {
		max-width: 700px;
	}
/*--------------ABOUT------------------*/
	#about .row-1 {
		height: auto;
		aspect-ratio: 16/9;
	}
	#about .row-1 h2 {
		padding-right: 15%;
	}
	#about .row-1 .right {
	    padding-left: 50%;
		width: 95%;
	}
	#about .row-2 .flex {
		flex-direction: row;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}
	#about .row-2 .reverse {
		flex-direction: row-reverse;
	}
	#about .row-2 .flex .left,
	#about .row-2 .flex .right {
		width: 45%;
	}
	#about .row-2 .left {
		padding: 0;
	}
	#about .row-2 .left div {
		padding: 40px 0 0 35%;
	}
	#about .row-2 .reverse .left div {
		padding: 40px 20% 0 0;
	}
	#about .row-2 h2 {
		top: 0;
	}
	#about .row-2 .reverse {
		padding-top: 60px;
	}
	#about .row-2 .reverse h2 {
		left: auto;
		right: 5%;
	}
	#about .row-3 .parallax {
		height: 500px;
	}
	#about .row-4 .flex {
		flex-direction: row;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#about .row-4 .reverse {
		flex-direction: row-reverse;
	}
	#about .row-4 .flex .left,
	#about .row-4 .flex .right {
		width: 45%;
	}
	#about .row-4 .flex .left {
		padding-left: 10%;
	}
	#about .row-4 .reverse .left {
		padding-right: 10%;
		padding-left: 0;
	}
	#about .row-4 .padding .left {
		padding-bottom: 0;
	}
	#about .row-4 .left {
		padding: 0;
	}
/*--------------CONTACT------------------*/
	#contact .row-1 {
	    padding: 60px 0;
	    display: flex;
	    align-items: flex-start;
	    justify-content: space-between;
	    flex-wrap: wrap;
	}	
	#contact .row-1 h4 {
		width: 100%;
	}
	#contact .row-1 .left {
		width: 35%;
	}
	#contact .row-1 .right {
		width: 65%;
		padding-top: 0;
	}
	#contact .row-3 {
	    padding: 60px 0;
	}
	#contact .row-3 h3 {
		padding-bottom: 30px;
	}
/*--------------WORK------------------*/
	#work .row-1 {
		padding: 120px 5% 30px;
	}
	#work .row-1 p {
		width: 25%;
	}
	#work .row-2 {
		margin-top: -100px;
	}
	#work .row-2 .flex:first-child {
		margin-bottom: 30px;
	}
	#work .row-2 .flex {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 0 30px;
	}
	#work .row-2 .flex .left {
		width: 70%;
	}
	#work .row-2 .flex .right p {
		text-align: left;
		padding-left: 5%;
		padding-top: 0;
	}
	#work .row-2 .flex .right {
		width: 30%;
	}
	#work .row-2 .flex:nth-child(odd) {
		flex-direction: row-reverse;
	}
	#work .row-2 .flex:nth-child(odd) .left {
		width: 70%;
	}
	#work .row-2 .flex:nth-child(odd) .right {
		width: 30%;
	}
	#work .row-2 .flex:nth-child(odd) .right p {
		padding-right: 5%;
		text-align: right;
	}
/*--------------NEWS SINGOLA------------------*/
	.single-post article {
		padding: 120px 5% 40px;
	}
/*--------------CATEGORIA------------------*/
	#categoria .row-1 {
		height: 60vh;
	}
	#categoria .row-1 h3 {
		padding-bottom: 30px;
	}
	#categoria .row-1 .text {
		height: 100%;
	}
/*--------------SOTTOCATEGORIA------------------*/
	#sottocategoria .row-2 .prodotto {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}
	#sottocategoria .row-2 .prodotto .left,
	#sottocategoria .row-2 .prodotto .right {
		width: 48%;
	}
	#sottocategoria .row-2 .right {
	    padding: 50px 0 0;
	}
/*--------------PRODOTTO------------------*/
	#singolo_prodotto .row-2 .tabcontent .details p:first-child {
		width: 30%;
	}
	#singolo_prodotto .row-2 .tabcontent .details p:nth-child(2) {
		width: 68%;
	}
	#singolo_prodotto .row-2 .finiture {
	    padding: 60px 0;
	}
	#singolo_prodotto .row-2 .finiture .flex .tre {
		padding: 10px 0;
	}
	#singolo_prodotto .row-3 .downloads a {
		width: 32%;
	}
	#singolo_prodotto .row-4 {
		padding: 30px;
	}
	#singolo_prodotto .row-4 .finiture ul li {
		width: 25%;
	}
	#singolo_prodotto .row-4 ul li b, 
	#singolo_prodotto .row-4 ul li p {
		width: auto;
	}
	#singolo_prodotto .row-4 .combinazione {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
	}
	#singolo_prodotto .row-4 .combinazione .left,
	#singolo_prodotto .row-4 .combinazione .right {
		width: 48%;
	}
	#singolo_prodotto .row-4 .combinazione .left {
		padding: 30px 0 0;
	}
	#singolo_prodotto .row-4 .combinazione .left div {
	    margin-bottom: 40px;
	}
	#singolo_prodotto .row-4 .riassunto ul li b, 
	#singolo_prodotto .row-4 .riassunto ul li p {
		width: 50%;
	}
}
@media only screen and (min-width:1280px) {
	.header {
		line-height: normal;
		height: auto;
		display: flex;
		width: 100%;
		margin: 0 auto;
		align-items: center;
		height: 100px;
	}
	.logo {
		position: relative;
		left: 5%;
	}
	#search img {
		margin-right: 5%;
		top: 40px;
	}
	.scroll .header {
		position: fixed;
		background-color: #fff;
/* 		background-color: rgba(0, 0, 0, 0.50); */
/* 		background-color: #fff;
		color: #404547; */
	}
	/* nav */
	.nav {
		display: block;
		background-color: transparent;
		height: auto;
		width: 90%;
		position: relative;
	}
	.nav ul {
		margin-top: 0;
		text-align: right;
		padding-right: 100px;
		align-items: flex-start;
		justify-content: flex-end;
		flex-direction: row;
	}
	.nav ul li {
		padding: 0;
		display: inline-block;
		text-transform: none;
	}
	.nav ul li a {
		padding: 0 0 0 30px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		color: #000;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	.lite-bright .nav ul li a {
		color: #fff;
	}
	.scroll .nav ul li a{
		color: #000000;
	}
	.openclose {
		display: none;
	}
	.footer ul li {
		display: inline-block;
	}
	.footer ul li a {
		padding: 0 10px;
	}
	.footer ul li:after {
		content: '|';
	}
	.footer ul li:last-child:after {
		content: '';
	}
	.footer .left {
		width: 100%;
	    justify-content: flex-start;
		align-items: center;
	}
	.footer .left img {
		margin-right: 20px;
	}
	.footer .right {
		width: 20%;
	}
	.wpcf7-form {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.wpcf7-form .flex {
		flex-direction: column;
		width: 32%;
	}
	.wpcf7-form .flex div {
		width: 100%;
		margin-bottom: 40px;
	}
	.wpcf7-form .full {
		width: 100%;
		flex-direction: row;
		justify-content: flex-end;
		flex-wrap: nowrap;
		align-items: center;
	}
	.wpcf7-form .full div {
		width: auto;
		margin-bottom: 20px;
	}
	.wpcf7-form .full .button {
		margin-left: 30px;
		margin-bottom: 0;
	}
	.wpcf7-form textarea {
		height: 145px;
	}
	.wpcf7-acceptance {
		margin-top: 0;
	}
	.wpcf7-submit {
		margin-top: 0;
	}
	.wpml-ls-current-language {
		width: 80px;
		position: relative;
	}
	.wpml-ls-current-language a:after {
		content: '';
		background-image: url(img/header/menu.svg);
		background-size: 7px auto;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: 100%;
	}
	.wpml-ls-item .sub-menu {
		display: none;
		padding: 0;
		margin: 0;
		position: absolute;
	    top: 0;
	    left: 0;
	    margin-top: 30px;
	}
	.wpml-ls-item:hover .sub-menu {
		display: block;
	}
	.wpml-ls-flag img {
		width: 30px;
		padding:0 5px;
	}
	.wpml-ls-item .sub-menu a {
		padding: 0;
		margin: 0;
		font-size: normal;
	}
	.wpml-ls-item .sub-menu a:after {
		background-image: none;
	}
	.wpml-ls-item .sub-menu a img {
	    width: 80px;
		margin-left: 30px;
	}
/*--------------HOME------------------*/
	.home .nav a {
		color: #fff;
	}
	#home .row-4 .left h2 {
		padding-left: 10%;
	}
	#home .row-4 .right h2 {
	    padding-right: 20%;
	}
/*--------------ABOUT------------------*/
	#about .row-1 .right {
	    padding-left: 60%;
	    width: 90%;
	}
	#about .row-1 h2 {
	    padding-right: 3%;
	}
	#about .row-2 .left div {
	    padding: 40px 0 0 30%;
	}
	#about .row-2 .reverse .left div {
	    padding: 40px 30% 0 0;
	}
	#about .row-2 .reverse h2 {
	    right: 30%;
	}
/*--------------CONTACT------------------*/
	.contacts .nav ul li a,
	.contatti .nav ul li a  {
		color: #fff;
	}
	.contacts .header,
	.contatti .header {
		height: 80px;
		padding-top: 0;
	}
	.contacts #search img,
	.contatti #search img {
		top: 30px;
	}
	#contact .row-2 iframe {
		height: 500px;
	}
	#contact .row-3 .location {
		height: 70vh;
		background-size: 100% 70vh;
	}
	#contact .row-3 .location div {
		width: 33%;
		padding-bottom: 0;
	}
	#contact .row-3 .location div:nth-child(odd) {
		padding-right: 0;
	}
/*--------------WORK------------------*/
	#work .row-2 {
		margin-top: -90px;
	}
	#work .row-2 .flex {
		padding: 0 0 60px;
	}
	#work .row-2 .flex:first-child {
		margin-bottom: 60px;
		padding: 0 5% 60px;
	}
	#work .row-3 {
		padding: 60px 5%;
	}
	#work .row-3 h3 {
		font-size: 25px;
	}
	#work .row-3 a {
		padding: 30px 0 60px;
	}
	#work .row-3 .active .hover {
		padding-bottom: 60px;
	}
	#work .slick-next {
		height: 30px;
	}
	#work .slick-prev {
		height: 30px;
	}
/*--------------NEWS------------------*/
	#news .row-1 h3 {
		padding-top: 40px;
		padding-bottom: 0;
	}
	#news .row-2 article div {
		width: 29%;
	}
/*--------------NEWS SINGOLA------------------*/
	.single-post article {
		padding: 150px 0 60px;
		margin: 0 auto;
		max-width: 1200px;
	}
/*--------------SOTTOCATEGORIA---------------*/
	#sottocategoria .row-1 {
		padding: 60px 0 30px;
	}
	#sottocategoria .row-2 {
		padding-bottom: 30px;
	}
	#sottocategoria .row-2 .left img {
		max-width: 200px;
	}
	#sottocategoria .row-2 .left img, 
	#sottocategoria .row-2 .left .testo {
	    width: 50%;
	}
	#sottocategoria .row-2 .prodotto .left {
		width: 55%;
	} 
	#sottocategoria .row-2 .prodotto .right {
	    width: 40%;
	}
	#sottocategoria .row-2 .right a {
		font-size: 18px;
	}
/*--------------PRODOTTO------------------*/
	#singolo_prodotto .row-1 {
		padding: 60px 0 30px;
	}
	#singolo_prodotto .row-2 .left,
	#singolo_prodotto .row-2 .right {
		width: 50%;
	}
	#singolo_prodotto .row-2 .left {
		text-align: center;
	}
	#singolo_prodotto .row-2 .left img {
		max-width: 400px;
	}
	#singolo_prodotto .row-2 .right .tabcontent p {
		padding: 5px 0;
	}
	#singolo_prodotto .row-2 .finiture {
		padding: 30px 0 60px;
	}
	#singolo_prodotto .row-2 .first {
		padding: 0 !important;
	}
	#singolo_prodotto .row-2 .right .down .flex p,
	#singolo_prodotto .row-2 .finiture .flex .tre {
		padding: 15px 0;
	}
	#singolo_prodotto .row-4 .check {
		display: flex;
		align-items: flex-start;
		flex-direction: row;
		justify-content: space-between;
	}
	#singolo_prodotto .row-4 .check .left,
	#singolo_prodotto .row-4 .check .right {
		width: 45%;
	}
	#singolo_prodotto .row-4 .right .valori {
		justify-content: space-between;
	}
	#singolo_prodotto .row-4 .right .valori ul {
		width: 30%;
	}
	#singolo_prodotto .row-4 .finiture ul li {
		width: 20%;
	}
	#singolo_prodotto .row-4 .combinazione .left, 
	#singolo_prodotto .row-4 .combinazione .right {
		width: 45%;
	}
	#singolo_prodotto .row-4 .combinazione .tabella .flex .tre {
		padding: 15px 0;
	}
}
@media only screen and (min-width:1600px) {
	#search img {
		margin-right: 5%;
	}
	.nav {
		width: 90%;
	}
	.nav ul li a {
		font-size: 16px;
	}
	body {
		font-size: 16px;
	}
	.logo,
	.logo img {
	    max-width: 150px;
	}
/*--------------HOME------------------*/
	#home h1 {
		font-size: 90px;
	}
	#home h2 {
	    font-size: 70px;
	}
	#home .row-2 .text p {
	    width: 200px;
	}
	#home .row-4 .fascia div {
		width: 630px;
	}
	#home .row-3 {
		padding: 120px 0;
	}
	#home .row-4 .fascia {
		padding: 120px 30px 80px;
	}
	#home .row-4 .fascia h2 {
	    padding-top: 70px;
	}
	home .row-4 .left h2 {
	    padding-left: 13%;
	}
	#home .row-4 .right h2 {
	    padding-right: 18%;
	}
	#home .news .flex {
		max-width: 1000px;
	}
	#home .news .flex .right {
		height: 300px;
	}
	#home .row-5 .parallax {
		height: 600px;
	}
	#home .row-5 .parallax p {
		padding: 60px 0;
	}
/*--------------ABOUT------------------*/
	#about h1 {
		font-size: 90px;
	}
	#about .row-1 h2 {
	    padding-right: 10%;
	}
	#about .row-2 .flex .left, 
	#about .row-2 .flex .right {
	    width: 40%;
	}
	#about .row-2 .left div {
	    padding: 40px 0 0 25%;
	}
	#about .row-2 .reverse .left div {
	    padding: 40px 40% 0 0;
	}
	#about .row-2 .reverse h2 {
	    right: 35%;
	}
	#about .row-3 .parallax {
	    height: 700px;
	}
	#about .row-4 .flex .left {
	    padding-left: 20%;
	}
	#about .row-4 .reverse .left {
		padding-left: 0%;
		padding-right: 20%;
	}
/*--------------CONTACT------------------*/
	#contact .row-3 .location {
		height: 80vh;
		background-size: 100% 80vh;
	}
/*--------------PRODOTTO------------------*/
	#singolo_prodotto p {
		font-size: 18px;
	}
	#singolo_prodotto .row-2 .left {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	#singolo_prodotto .row-2 .left img {
	    max-width: 500px;
	} 
	#singolo_prodotto .row-4 .finiture ul {
		padding-bottom: 60px;
	}
	#singolo_prodotto .row-4 .combinazione .left {
		padding: 0;
	}
	#singolo_prodotto .row-4 .riassunto ul {
		padding-bottom: 0;
	}
	#singolo_prodotto .row-4 .finiture ul li {
	    width: 14%;
	}
}
@media only screen and (min-width:2000px) {
/*--------------ABOUT------------------*/
	#about .row-1 h2 {
	    padding-right: 15%;
	}
	#about .row-2 .reverse h2 {
	    right: 50%;
	}
	#about .row-2 .left div {
	    padding: 40px 0 0 20%;
	}
}


