/*
	Theme Name: Bertazzon
	Theme URI: https://bertazzon.net
	Description: Arredamento
	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 14px/1.4 'CenturyGothic', Helvetica, Arial, sans-serif;
	color:#454545;
	background-color: #F2EDEA;
}
/* 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;
}
a {
	color:#454545;
	text-decoration:none;
}
a:hover {
	color:#454545;
}
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-size: 40px;
	text-transform: uppercase;
}
h2 {
	font-size: 28px;
	text-transform: uppercase;
}
h3 {
	font-size: 16px;
	text-transform: uppercase;
}
h4 {
	font-size: 16px;
	font-family: 'Libre Caslon Text', serif;
}
.pulsante {
	text-transform: uppercase;
	padding: 5px 20px;
	background-color: transparent;
	border: 1px solid #454545;
	border-radius: 5px;
	display: inline-block;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.pulsante:hover {
	background-color: #454545;
	border: 1px solid #454545;
	color: #fff;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.blocco {
	position: relative;
	overflow: hidden;
	display: flex;
}
.text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
}
.up {
	position: fixed;
	top: 95%;
	right: 2%;
	z-index: 2;
}
.up img {
	max-width: 30px;
	cursor: pointer;
}

.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: 8px;
    height: 8px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 5px 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.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 1;
	outline: none;
}
.slick-slide div {
	display: grid;
}

/* FORM */
.wpcf7-form {
	padding-top: 30px;
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #454545;
	margin-bottom: 30px;
	background-color: #fff;
	border: none;
	width: 100%;
}
input {
	height: 30px;
}
.wpcf7-form #privacy {
	height: auto;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	padding: 6px;
	margin-bottom: 0;
	max-width: 6px;
	border: 1px solid #454545;
}
.wpcf7-form #privacy:checked {
	background-color: #454545;
}
span.wpcf7-list-item {
	margin: 0;
}
.wpcf7-submit {
	margin-top: 30px;
	border: 1px solid #454545;
	background-color: transparent;
	border-radius: 5px;
	padding: 0 50px;
    height: 40px;
    line-height: 35px;
    margin-bottom: 0;
    max-width: 150px;
}
.wpcf7-submit:hover {
	background-color: #454545;
	color: #fff;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing,
.wpcf7 form.sent .wpcf7-response-output {
	border: none;
}
div.wpcf7-response-output {
	padding: 0;
}
.wpcf7-spinner {
	display: none;
}
/* 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: 1px solid #333;
  	outline: none;
  	cursor: pointer;
  	transition: 0.3s;
  	margin: 0.5%;
  	text-transform: uppercase;
  	color: #000;
  	padding: 5px;
  	font-size: 13px;
}

/* Create an active/current tablink class */
.tab button.active {
  	color: #fff;
  	font-weight: bold;
  	background-color: #333;
}
.tab .first {
	width: 99%;
}
.tab .secondo,
.tab .terzo,
.tab .quarto,
.tab .quinto {
	width: 49%;
}
/* Style the tab content */
.tabcontent {
 	display: none;
 	padding: 30px 0 0;
  	border-top: none;
  	flex-direction: column;
}

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

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

/* header */
.header {
	position: absolute;
	width: 100%;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.40);
	z-index: 10;
}
/* logo */
.logo {
	position: absolute;
	top: 0;
	left: 5%;
	z-index: 20;
	margin-top: 18px;
}
.logo img {
	max-width: 100px;
}
/* nav */
.nav {
	display: none;
	background-color: #6B5F5A;
	color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
	background-image: url(img/header/foglia-bertazzon.png);
	background-size: 70%;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.nav a {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: bold;
}
.nav .current_page_item a {
	color: #b09a8e;
}
.nav ul {
	list-style-type: none;
	text-align: center;
	width: 100%;
}
.nav ul li {
	padding: 30px 0;
	line-height: 1;
}
.openclose {
	position: absolute;
	top: 0;
	right: 5%;
	z-index: 90;
	margin-top: 30px;
	cursor: pointer;
}
.openclose img {
	max-width: 20px;
}
/* footer */
.footer {
	background-color: #6B5F5A;
	padding: 30px 5%;
	color: #fff;
}
.footer .colonna {
	border-bottom: 1px solid #fff;
	padding: 20px 0;
}
.footer .colonna:nth-child(3) {
	border: none;
}
.footer h2 {
	padding-bottom: 20px;
}
.footer a {
	color: #fff;
}
.footer .logo-footer img {
	max-width: 150px;
}
.footer .social img {
	max-width: 20px;
	max-height: 20px;
}
.footer .trattino {
	width: 10px;
	height: 1px;
	background-color: #fff;
	display: inline-block;
	vertical-align: super;
	margin: 0 5px;
}
.copyright {
	background-color: #F2EDEA;
	padding: 1% 5%;
	font-size: 12px;
}
.wpml-ls-item {
	display: inline-block;
}
.wpml-ls-item span {
	color: #fff;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/


/*--------------HOME------------------*/
#home h1 {
	padding: 10px 0;
}
video {
	width: 100%;
	height: 56.2vw;
	display: grid;
}
#home .fascia-2 {
	padding: 30px 5%;
	text-align: center;
}
#home .fascia-2 h3 {
	padding-bottom: 30px;
}
#home .fascia-2 .divider {
	margin: 30px auto 0;
}
#home .fascia-3 {
	padding: 0 5% 30px;
}
#home .fascia-3 .right {
	padding: 30px 0;
}
#home .fascia-3 .right h2 {
	padding: 10px 0;
}
#home .fascia-3 .right .freccia {
	margin-top: 20px;
}
#home .fascia-4 {
	padding: 0 5% 30px;
	text-align: center;
}
#home .fascia-4 .divider {
	margin: 0 auto 60px;
}
#home .fascia-4 .realizzazioni {
	padding-top: 30px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: left;
}
#home .fascia-4 .realizzazioni div {
	width: 50%;
	padding: 2%;
}
#home .fascia-5 {
	text-align: center;
}
#home .fascia-5 h2 {
	padding-bottom: 30px;
}
.recensioni {
	background-image: url(img/home/recensioni.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 300px;
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.instagram {
	text-align: center;
	padding: 30px 5%;
}
.instagram h2 {
	padding-bottom: 20px;
}
.instagram .desktop {
	display: none;
}
.call-to-action {
	padding: 30px 5%;
	text-align: center;
	background-image: url(img/home/foglia-bertazzon.png);
	background-size: 30% auto;
	background-repeat: no-repeat;
	background-position: right center;
	background-attachment: scroll;
	overflow: hidden;
	background-position-x: 110%;
	background-position-y: 65%;
	background-color: #fff !important;
}
.call-to-action p {
	margin-bottom: 20px;
}
.divider {
	width: 200px;
	height: 1px;
	display: block;
	background-color: #707070;
	margin: 0 auto 30px;
}
.freccia {
	text-transform: uppercase;
	display: inline-block;
}
.freccia img {
	max-width: 20px;
	margin-left: 10px;
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-ms-transition-duration: 2s;
	-moz-transition-duration: 2s;
}
.freccia:hover img {
	transform: translateX(20px);
	-webkit-transform: translateX(20px);
	-o-transform: translateX(20px);
	-moz-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transition-duration: 2s;
	-webkit-transition-duration: 2s;
	-o-transition-duration: 2s;
	-ms-transition-duration: 2s;
	-moz-transition-duration: 2s;
}
/*--------------ABOUT------------------*/
#about .fascia-2 {
	padding: 30px 5%;
}
#about .fascia-2 p {
	padding: 20px 0;
}
#about .fascia-2 .row-2,
#about .fascia-2 .row-3 {
	padding-top: 30px;
}
#about .fascia-2 .row-3 .right {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
#about .fascia-2 .row-3 .right img {
	width: 48%;
}
#about .parallax {
	background-image: url(img/about/parallax.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 300px;
	background-attachment: scroll;
}
/*--------------RESIDENZIALE/COMMERCIALE------------------*/
#residenziale .fascia-2 {
	text-align: center;
	padding: 30px 5%;
}
#residenziale .fascia-2 h1 {
	padding-bottom: 20px;
	font-size: 25px;
}
#residenziale .fascia-3 {
	padding: 30px 5%;
}
#residenziale .fascia-3 #all {
	display: flex;
}
#residenziale .fascia-3 .tabcontent div {
	padding-bottom: 30px;
}
#residenziale .divider {
	margin: 0 auto;
	padding: 0;
}
#residenziale .fascia-3 .tabcontent h2 {
	padding: 10px 0;
}
/*--------------RESIDENZIALE SINGOLO------------------*/
.single-residenziali h1 {
	font-size: 25px;
	padding: 10px 0;
}
.single-residenziali .fascia-2 {
	padding: 30px 5%;
}
.single-residenziali .fascia-2 .right {
	padding-bottom: 30px;
}
.single-residenziali .fascia-3 {
	text-align: center;
	padding: 30px 5% 20px;
}
.single-residenziali .fascia-3 h2 {
	padding-bottom: 20px;
}
.single-residenziali .parallax {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 300px;
	background-attachment: scroll;
}
.single-residenziali .fascia-3 a {
	margin-bottom: 20px;
	display: grid;
}
.single-residenziali .correlati {
	padding: 0 5% 30px;
}
.single-residenziali .correlati h2 {
	text-align: center;
	margin-bottom: 20px;
}
.single-residenziali .correlati div {
	margin-bottom: 20px;
}
/*--------------COMMERCIALE SINGOLO------------------*/
.single-commerciali h1 {
	font-size: 25px;
	padding: 10px 0;
}
.single-commerciali .fascia-2 {
	padding: 30px 5%;
}
.single-commerciali .fascia-2 .right {
	padding-bottom: 30px;
}
.single-commerciali .fascia-3 {
	text-align: center;
	padding: 30px 5% 20px;
}
.single-commerciali .fascia-3 h2 {
	padding-bottom: 20px;
}
.single-commerciali .parallax {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 300px;
	background-attachment: scroll;
}
.single-commerciali .fascia-3 a {
	margin-bottom: 20px;
	display: grid;
}

/*--------------CONTATTI------------------*/
.contatti .header,
.contacts .header,
.kontakte .header {
	position: relative;
}
#contatti .fascia-2 {
	background-color: #F2EDEA;
	text-align: center;
	padding: 30px 5% 20px;
}
#contatti .fascia-3 {
	padding: 0 5% 10px;
	background-color: #F2EDEA;
	text-align: center;
}
#contatti .fascia-3 h2 {
	padding-bottom: 20px;
	background-color: #F2EDEA;
	position: relative;
	z-index: 1;
	height: 70px;
}
#contatti .fascia-3 h3 {
	font-weight: bold;
}
#contatti .fascia-3 .flex {
	text-align: left;
	margin-top: -65px;
	position: relative;
	z-index: 0;
}
#contatti .fascia-3 .flex div {
	padding: 20px 0;
}
iframe {
	filter: grayscale(100%);
}
/*--------------PRIVACY------------------*/
.cookie-policy .header,
.privacy-policy .header {
	background-color: #6B5F5A;
	height: 80px;
	line-height: 80px;
	position: relative;
}
.cookie-policy .openclose,
.privacy-policy .openclose {
	margin-top: 0;
}
.cookie-policy section,
.privacy-policy section {
	padding: 30px 0;
}
.cookie-policy .logo,
.privacy-policy .logo {
	margin-top: 15px;
}
.cookie-policy h1,
.privacy-policy h1 {
	padding-bottom: 20px;
}
.cookie-policy h2,
.privacy-policy h2 {
	margin-bottom: 10px;
}
.cookie-policy h2 {
	padding-top: 20px;
}
/*--------------SHOWROOM------------------*/
#showroom h1 {
	font-size: 25px;
	padding: 10px 0;
}
#showroom .fascia-2 {
	padding: 30px 5%;
}
#showroom .fascia-2 .right {
	padding-bottom: 30px;
}
#showroom .fascia-3 {
	text-align: center;
	padding: 30px 5% 20px;
}
#showroom .fascia-3 h2 {
	padding-bottom: 20px;
}
#showroom .parallax {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 300px;
	background-attachment: scroll;
}
#showroom .fascia-3 a {
	margin-bottom: 20px;
	display: grid;
}
/*--------------GDPR------------------*/
.page-template-template-gdpr h2 {
	padding-bottom: 20px;
	padding-top: 60px;
}
.page-template-template-gdpr 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:'CenturyGothic';
	src:url('fonts/CenturyGothic.eot');
	src:url('fonts/CenturyGothic.eot?#iefix') format('embedded-opentype'),
		url('fonts/CenturyGothic.woff') format('woff'),
		url('fonts/CenturyGothic.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}

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

@media only screen and (min-width:768px) {
	.wpcf7-form h2 {
		text-align: center;
	}
	.wpcf7-form label {
		font-size: 18px;
	}
	.wpcf7-form .flex p {
		display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: space-between;
	    align-items: flex-start;
	    align-content: center;
	}
	.wpcf7-form .flex span {
		width: 48%;
		text-align: left;
	}
	.wpcf7-form .wpcf7-acceptance {
		width: 100% !important;
		font-size: 14px;
		text-align: left;
	}
	.wpcf7-submit {
		margin-top: 0;
		display: block;
		float: right;
	}
	div.wpcf7-response-output {
		font-size: 20px;
		text-align: right;
	}
	.touch .parallax {
		background-attachment: scroll;
	}
	.nav ul li {
		padding: 30px 0;
	}
	.nav a {
		font-size: 20px;
	}
	.footer {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.footer .colonna {
		width: 33%;
		text-align: center;
		border: none;
	}
	.footer .colonna:nth-child(2) {
		border-left: 1px solid #fff;
		border-right: 1px solid #fff;
		padding: 0 30px; 
	}
	.copyright {
		text-align: center;
	}
	.tab .first {
		width: 99%;
	}
	.tab .secondo,
	.tab .terzo,
	.tab .quarto,
	.tab .quinto {
		width: 24%;
	}
	.horeca-commerciale .tab .secondo,
	.horeca-commerciale .tab .quarto {
		width: 49%;
	}
	.horeca-commercial .tab .secondo,
	.horeca-commercial .tab .quarto {
		width: 49%;
	}
	.horeca-kommerziell .tab .secondo,
	.horeca-kommerziell .tab .quarto {
		width: 49%;
	}

/*--------------HOME------------------*/
	video {
		height: 56.3vw;
	}
	#home .fascia-2 p {
		text-align: left;
		column-count: 2;
	}
	#home .fascia-3 .content {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: flex-start;
	}
	#home .inverse .content {
		flex-direction: row-reverse;
	}
	#home .fascia-3 .right, 
	#home .fascia-3 .left {
		width: 45%;
	}
	.call-to-action p {
		max-width: 490px;
		margin: 0 auto 20px;
	}
	.instagram .desktop {
		display: block;
	}
	.instagram .mobile {
		display: none;
	}
/*--------------RESIDENZIALE/COMMERCIALE------------------*/
	#residenziale .fascia-2 p {
		column-count: 2;
		text-align: left;
		column-gap: 30px;
	}
	#residenziale .fascia-3 .tabcontent {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#residenziale .fascia-3 .tabcontent div {
		width: 48%;
	}
/*--------------RESIDENZIALE SINGOLO------------------*/
	.single-residenziali .fascia-2 {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.single-residenziali .fascia-2B {
		flex-direction: row;
	}
	.single-residenziali .fascia-2 .right,
	.single-residenziali .fascia-2 .left {
		width: 48%;
	}
	.single-residenziali .fascia-2 .right {
		padding-bottom: 0;
	}
	.single-residenziali .fascia-3 .popup-gallery {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.single-residenziali .fascia-3 .popup-gallery a {
		width: 48%;
	}
	.single-residenziali .correlati {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.single-residenziali .correlati h2 {
		width: 100%;
	}
	.single-residenziali .correlati div {
		width: 48%;
	}

/*--------------COMMERCIALE SINGOLO------------------*/
	.single-commerciali .fascia-2 {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.single-commerciali .fascia-2B {
		flex-direction: row;
	}
	.single-commerciali .fascia-2 .right,
	.single-commerciali .fascia-2 .left {
		width: 48%;
	}
	.single-commerciali .fascia-2 .right {
		padding-bottom: 0;
	}
	.single-commerciali .fascia-3 .popup-gallery {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.single-commerciali .fascia-3 .popup-gallery a {
		width: 48%;
	}

/*--------------CONTATTI------------------*/
	#contatti .fascia-3 {
		padding: 0 5% 60px;
	}
	#contatti .fascia-3 .flex {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-top: -105px;
	}
	#contatti .fascia-3 .flex .left,
	#contatti .fascia-3 .flex .testo {
		width: 48%;
	}
	iframe {
		height: 650px;
		width: 100%;
	}
/*--------------SHOWROOM------------------*/
	#showroom .fascia-2 {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#showroom .fascia-2B {
		flex-direction: row;
	}
	#showroom .fascia-2 .right,
	#showroom .fascia-2 .left {
		width: 48%;
	}
	#showroom .fascia-2 .right {
		padding-bottom: 0;
	}
	#showroom .fascia-3 .popup-gallery {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#showroom .fascia-3 .popup-gallery a {
		width: 48%;
	}
}
@media only screen and (min-width:1024px) {
	.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: 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: 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);
	}
	.szoom:hover {
		transition-duration: 2s;
		-webkit-transition-duration: 2s;
		-o-transition-duration: 2s;
		-moz-transition-duration: 2s;
		-ms-transition-duration: 2s;
		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);
	}
	body {
		font-size: 16px;
	}
	.header {
		height: 100px;
	}
	.logo {
		position: absolute !important;
	}
	.logo img {
		max-width: 150px;
	}
	.nav {
		width: 95%;
		height: auto;
		right: 0;
		left: auto;
		padding: 20px 0;
		background-size: 50%;
		background-image: none;
		background-color: transparent;
		position: relative;
		display: block;
	}
	.nav ul {
		text-align: right;
	}
	.nav a {
		font-size: 14px;
	}
	.nav .current_page_item a {
		font-weight: bold;
		color: #fff;
		border-bottom: 1px solid #fff;
		height: 30px;
		padding-bottom: 10px;
	}
	.nav ul li {
		padding: 20px 0 20px 10px;
		display: inline-block;
	}
	.openclose {
		margin-top: 35px;
		display: none;
	}
	.openclose img {
	    max-width: 25px;
	}
	.footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		text-align: center;
		padding: 60px 5%;
	}
	.footer .colonna {
		width: 33.333333%;
		border: none;
		padding: 0;
	}
	.footer .colonna:nth-child(2) {
		border-left: 1px solid #fff;
		border-right: 1px solid #fff;
	}
	.copyright {
		text-align: center;
	}
	.wpcf7-form {
		padding: 60px 5%;
	}
	.divider {
		margin: 0 auto 60px;
	}
	.tab {
		width: 800px;
		margin: 0 auto;
	}
	.tab button {
		letter-spacing: 2px;
		font-size: 14px;
	}
	.tabcontent {
		width: 800px;
		margin: 0 auto;
	}
	.wpml-ls-item a:hover {
		text-decoration: none;
	}
	.wpml-ls-item-en {
		padding: 0 !important;
	}
	.wpml-ls-item-de {
		padding: 0 !important;
	}
	.wpml-ls-current-language a span {
		font-weight: bold;
	}
/*--------------HOME------------------*/
	#home .fascia-2 {
		padding: 60px 5%;
	}
	#home .fascia-2 h3 {
		padding-bottom: 60px;
	}
	#home .fascia-2 p {
		column-gap: 30px;
	}
	#home .fascia-2 .divider {
		margin: 60px auto 0;
	}
	#home .fascia-3 {
		padding: 0 5%;
	}
	#home .fascia-3 .right {
		padding: 20px 0 0;
	}
	#home .inverse .content {
		align-items: center;
		padding: 0 5% 60px;
	}
	#home .fascia-4 .realizzazioni {
		max-width: 1200px;
		margin: 0 auto;
	}
	#home .fascia-4 .realizzazioni div {
		padding: 0 2% 60px;
	}
	.recensioni {
		height: 600px;
	}
	.instagram {
		padding: 60px 5%;
	}
	.call-to-action {
		padding: 60px 5%;
		background-attachment: fixed;
	}
/*--------------ABOUT------------------*/
	#about .fascia-2 {
		padding: 60px 5%;
	}
	#about .fascia-2 .row-1,
	#about .fascia-2 .row-2,
	#about .fascia-2 .row-3 {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
	}
	#about .fascia-2 .left,
	#about .fascia-2 .right {
		width: 40%;
	}
	#about .fascia-2 .row-2 {
		flex-direction: row-reverse;
		padding-top: 0;
		margin-top: 30px;
	}
	#about .fascia-2 .row-3 .right {
		align-items: flex-start;
	}
	#about .fascia-2 .row-3 .right img:first-child,
	#about .fascia-2 .row-3 .left {
		margin-top: 60px;
	}
	#about .fascia-2 p {
		max-width: 400px;
	}
	#about .parallax {
		background-attachment: fixed;
	}
/*--------------RESIDENZIALE/COMMERCIALE------------------*/
	#residenziale .fascia-2 p {
		column-gap: 50px;
		max-width: 800px;
		margin: 0 auto;
	}
	#residenziale .fascia-2 {
		padding: 60px 5%;
	}
	#residenziale .fascia-3 {
		padding: 60px 5%;
	}
	#residenziale .fascia-3 .tabcontent div {
		padding-bottom: 60px;
	}
/*--------------RESIDENZIALE SINGOLO------------------*/
	.single-residenziali .fascia-2 {
		padding: 60px 5%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.single-residenziali .parallax {
		height: 500px;
		background-attachment: fixed;
	}
	.single-residenziali .fascia-3 {
		padding: 60px 5% 40px;
		max-width: 1200px;
		margin: 0 auto;
	}
	.single-residenziali .fascia-3 h2 {
		padding-bottom: 30px;
	}
	.single-residenziali .fascia-3 a {
		margin-bottom: 40px;
	}
	.single-residenziali .correlati {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 5% 60px;
	}
	.single-residenziali .correlati h2 {
		padding-bottom: 30px;
	}
	.single-residenziali .correlati div {
		margin-bottom: 0;
	}
/*--------------COMMERCIALI SINGOLO------------------*/
	.single-commerciali .fascia-2 {
		padding: 60px 5%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.single-commerciali .parallax {
		height: 500px;
		background-attachment: fixed;
	}
	.single-commerciali .fascia-3 {
		padding: 60px 5% 40px;
		max-width: 1200px;
		margin: 0 auto;
	}
	.single-commerciali .fascia-3 h2 {
		padding-bottom: 30px;
	}
	.single-commerciali .fascia-3 a {
		margin-bottom: 40px;
	}
/*--------------CONTATTI------------------*/
	#contatti .fascia-2 {
		padding: 60px 0 0;
	}
	#contatti .fascia-3 h2 {
	    padding-bottom: 30px;
	}
/*--------------PRIVACY------------------*/
	.cookie-policy .header, 
	.privacy-policy .header {
		height: 100px;
		line-height: 100px;
	}
	.cookie-policy .logo, 
	.privacy-policy .logo {
	    margin-top: 18px;
	}
/*--------------SHOWROOM------------------*/
	#showroom .fascia-2 {
		padding: 60px 5%;
		max-width: 1200px;
		margin: 0 auto;
	}
	#showroom .parallax {
		height: 500px;
		background-attachment: fixed;
	}
	#showroom .fascia-3 {
		padding: 60px 5% 40px;
		max-width: 1200px;
		margin: 0 auto;
	}
	#showroom .fascia-3 h2 {
		padding-bottom: 30px;
	}
	#showroom .fascia-3 a {
		margin-bottom: 40px;
	}

}
@media only screen and (min-width:1280px) {
	h1 {
		font-size: 50px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 18px;
	}
	.nav ul li {
		padding: 20px 0 20px 20px;
		display: inline-block;
	}
	.wpcf7-form .wpcf7-acceptance span {
		width: 100%;
	}
/*--------------HOME------------------*/
	#home .inverse {
		margin-top: -30px;
	}
/*--------------CONTATTI------------------*/
	#contatti .fascia-3 .flex .testo {
		display: flex;
		justify-content: space-between;
		align-items: start;
		flex-direction: row;
	}
	#contatti .fascia-3 .flex .testo div {
		width: 48%;
	}
	iframe {
		height: 600px;
	}
}
@media only screen and (min-width:1600px) {
	.tab button {
		font-size: 16px;
	}
	.tab,
	.tabcontent {
		width: 1000px;
	}
/*--------------ABOUT------------------*/
	#about .fascia-1 img {
		height: 100vh;
	}
	#about .parallax {
		height: 500px;
	}
/*--------------RESIDENZIALE------------------*/
	#residenziale .fascia-2 p {
		max-width: 980px;
	}
}


