/*
	Theme Name: Salariis
	Theme URI: https://www.dominio.it/
	Description: Salariis website 2024
	Version: 1.4.3
	
	Tags: HTML5, CSS3

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

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

:root{
	--beige: #A89A94;
}
/* 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;
}

body {
	font-family:'BrandonGrotesque Regular';
	font-weight: 400;
	font-size: 19px;
	color:#171816;
	background-color: #FFFFFF;
	padding:0;
	margin: 0;
	/* overflow-y: scroll; */
}
body.open {
	overflow-y: hidden;
}

.grecaptcha-badge {
	display: none;
}
img {
	max-width:100%;
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: middle;
}

#header img{
	vertical-align: baseline !important;
}
picture {
	display: grid;
}
.ios .parallax {
	background-attachment: scroll !important;
}

a {
	color:#000;
	text-decoration:none;
}
a:focus {
	text-decoration: none;
	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 {
	/* to do: cambiare font family */
	font-family:'RockwellNova Bold';
	font-weight: bold;
	font-size: 2rem;	
	padding:0;
	margin: 0;
	color: #A89A94;
}

h2 {
	font-family:'RockwellNova Bold';
	font-weight: bold;
	font-size: 1.5rem;
	color:#171816;
	padding:0;
	margin: 0;
}

.rockwell{
	font-family:'RockwellNova Bold';
	font-size: 1rem;
	line-height: 1.5;
	font-weight: bold;
}

.letter-spacing{
	letter-spacing: 5px;
}

h3 {
}
h4 {
}
h5 {
}
h6 {
}

p.medium{
	font-family:'BrandonGrotesque Medium';
	font-weight: 500;
	font-size: 1.2rem;
}

p.regular{
	font-family:'BrandonGrotesque Regular';
	font-weight: 400;
	font-size: 1.2rem;
}
.z-index{
	position: relative;
	z-index:1;
}
.up {
	position: fixed;
	top: 95%;
	right: 2%;
	z-index: 2;
}

.block{
	display: block;
}
.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: 3;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-active {
    background-color: #000;
}
.slick-dots li {
    display: inline-block;
    width: 12px;
    height: 12px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 50%;
    margin: 20px 5px 0;
    border: 1px solid #000;
}
.slick-dots button {
	color: transparent;
	background-color: transparent;
	display: contents;
}
.slick-prev {
	background-image: url(img/header/left-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: 5%;
	z-index: 1;
	outline: none;
	width: 30px;
	height: 30px;
}
.slick-next {
	background-image: url(img/header/right-white.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: 20%;
	right: 0;
	z-index: 1;
	outline: none;
	width: 30px;
	height: 30px;
}
/* FORM */
label {
	
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #000;
	margin-top: 20px;
	background-color: #fff;
	border: 1px solid #000;
	width: 100%;
}
input {
	height: 40px;
}
::placeholder {
	color: #000;
}
.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-form a {
	color: #000;
	text-transform: lowercase;
	font-size: 16px;
	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;
}
/* 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 {
	
}

.wpml-ls-native{
	color:#000;
}
.page-template-template-home .wpml-ls-native{
	color:#fff;
}

.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;
}

/* LOADER */

.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: #7E684E;
}
.loader-wrapper .loader {
	display: block;
	margin-left: 2px;
	margin-right: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 180px;
	height: auto;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1001;
	//border: 1px solid red;
}

.loader-wrapper .loader img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.linear-gradient{
	width: 180px;
	height: 100px;
	position: absolute;
	top:0;
	left: 0;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(126,104,78,0.8) 20%, rgba(126,104,78,1) 50%, rgba(126,104,78,0.8) 80%, rgba(255,255,255,0) 100%);
	animation: gradientAnimation 4s linear infinite alternate;
}

@keyframes gradientAnimation {
  0% {
	left: 0;
  }
  
  100% {
	left: 100%;
  }
}
/* --------------------- POPUP INFORMATIVO ------------------------------ */
.popup-info {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding: 10px;
    justify-content: center;
    align-items: center;
}
.popup-info .overlay {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
}
.popup-info .popup {
    width: 100%;
    max-width: 400px;
    display: block;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    height: fit-content;
}
.popup-info .popup h2 {
    margin-top: 0;
}
.popup-info .popup button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.divider{
	width: 60%;
	margin: 0 auto;
	height: 1px;
	background-color: #000;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

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

/* header */
.header {
	position: fixed;
	width: 100%;
	height: 100px;
}

.scroll .header{
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.scroll .logo-header {
	transform: scale(0.6);
	transition:0.4s;
	padding-top: 0;
}

.header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	transition:0.4s;
}

.header .container .logo-header{
	width: 50%;
	text-align: center;
	transition:0.4s;
	padding-top: 10px;
}

.header .container .logo-header img{
	width: 230px;
	height: auto;
	position: relative;
	z-index: 1000;
	transition:0.3s;
}
.header .container .lang-switch{
	width: 23%;
	text-align:left;
	font-size: 0.9rem;
	position: relative;
	z-index: 99;
}

.header .container .openclose{
	width: 23%;
	z-index:100;
	display: flex;
	justify-content: end;
}

/* nav */
.nav {
	display: none;
	background-color: color(display-p3 0.511 0.576 0.337 / 0.8);
	color: #000;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	justify-content: center;
	align-items: center;
	background-image: url(img/home/favicon.svg);
	background-size: 20% auto;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-position-x: 95%;
	background-position-y: 95%;
}
.open .nav {
	display: flex;
}
.close .nav {
	display: none !important;
}
.nav a {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}
.nav a:hover {
	text-decoration: underline;
}
.nav .current_page_item a {
	color: #333;;
}
.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;
}
/* .openclose {
	position: absolute;
	top: 35%;
	right: 5%;
	z-index: 90;
	cursor: pointer;
	display: block;
} */

.button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	padding: 0 20px;
	border: 1px solid #000;
	border-radius: 15px;
	color: #fff;
	font-weight: 600;
	color: #000;
	font-size: 0.9rem;
}
.open .openclose {
	display: flex;
	
}
.openclose .iconbar {
	height: 2px;
	width: 20px;
	background-color: #fff;
	display: block;
	margin: 5px 0;
}
.openclose img {
	max-width: 20px;
}
.openclose .uno {
	width: 20px;
	display: block;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose .tre {
	width: 20px;
	display: block;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose:hover .uno {
	width: 20px;
	display: block;
	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 .footer-waves{
	position: absolute;
	bottom: 0;
	left: 0;
	height: 110%;
	width: 100%;
	opacity: 0.1;
}

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

.container{
	width: 90%;
	margin: 0 auto;
	max-width: 1200px;
}

/* spaziature */

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

.text-left{
	text-align: left;
}

.text-right{
	text-align: right;
}

.white{
	color: #fff;
}

.beige{
	color: var(--beige);
}

.grey-background{
	background-color: #F7F7F7;
}

.brown-background{
	background-color: #A89A94;	
}
	

.black{
	color: #333;
}

.pb10{
	padding-bottom: 10px;
}

.pt10{
	padding-top: 10px;
}

.pb20{
	padding-bottom: 20px;
}
.pt20{
	padding-top: 20px;
}

.pb30{
	padding-bottom: 30px;
}

.pt30{
	padding-top: 30px;
}

.pb50{
	padding-bottom: 50px;
}

.pt50{
	padding-top: 50px;
}

.pb70{
	padding-bottom: 70px;
}

.pt70{
	padding-top: 70px;
}

.pb100{
	padding-bottom: 30px;
}
.mr30{
	margin-right: 30px;
}

.small{
	font-size: 0.8rem;
}

/*--------------GDPR------------------*/
.page-template-template-gdpr h2 {
	padding-bottom: 20px;
	padding-top: 60px;
}
.page-template-template-gdpr #cmplz-document 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%;
}
/*--------------pagine generali------------------*/


.header{
	z-index:99;
}



.wpml-ls-current-language span{
text-decoration: underline;
color:#000;
}

.page-template-template-home .wpml-ls-current-language span{
text-decoration: underline;
color:#fff;
}

.wpml-ls-legacy-list-horizontal a{
	padding:0 5px 0 0 !important;
	font-size:13px;
	position: relative;
}
.wpml-ls-legacy-list-horizontal li:first-child a{
position: relative;
}
.wpml-ls-legacy-list-horizontal li:first-child a::after{
	content:"";
	right:2px;
	bottom: 0;
	height: 100%;
	width:1px;
	background-color: #000;
	position: absolute;
}

.page-template-template-home .wpml-ls-legacy-list-horizontal li:first-child a::after{
	content:"";
	right:2px;
	bottom: 0;
	height: 100%;
	width:1px;
	background-color: #fff;
	position: absolute;
}

#hero-section{
	position: relative;
	height: 100vh;
}

#hero-section img{
	height: 100vh;
	
}

#hero-section .social-media{
	position: absolute;
	bottom: 7%;
	left: 5%;
	z-index: 19;
}

#hero-section .testo-hero{
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translate(-50%, -50%); 
	z-index: 19;
}

#presentazione{
	position: relative;
}

#presentazione .waves-right{
	position: absolute;
	height: 100%;
	width: auto;
	right:0;
	top:-20px;
	opacity: 0.3;
} 


#presentazione .presentazione-container .presentazione-text p:nth-child(1){
	padding-top: 50px;
}


.dots{
	position: absolute;
	right: 5%;
	top: 7%;
	width: 50px;
	height: auto;
	opacity: 0.2;
}

.h2-container{
	position: relative;
	text-align:center;
	display: flex;
	justify-content:center;
	flex-direction: column;
	align-items:center;
}

.h2-container .h2-dots{
	display: flex;
}

.h2-container .h2-dots span{
	width: 10px;
	height: 10px;
	border-radius:50%;	
	display:block;
	z-index: 99;
	position: relative;
	margin: 5px;
}

#elenco-bottiglie{
	position: relative;
	background-color: #fff09d;
	padding-top: 70px;
	padding-bottom: 130px;
	z-index:2;
}

#elenco-bottiglie .black-back{
	position:absolute;
	width: 50%;
	height: auto;
	left:0;
	top:-3%;
}

#elenco-bottiglie .slide-bottiglie{
	position: relative;
	z-index:3;
}
#elenco-bottiglie .container-bottiglia{
	/* display: flex;
	align-items: center;
	justify-content: space-between; */
}

#elenco-bottiglie .container-bottiglia .bottiglia,#elenco-bottiglie .container-bottiglia .bottiglia-testo{
	width: 90%;
	margin: 0 auto;
}

#elenco-bottiglie .container-bottiglia .bottiglia img{
	height: 350px;
	width: auto;
	margin: 0 auto;
}

.slide-bottiglie .slick-dots{
	bottom:-8%;
} 

.slide-bottiglie .slick-next{
	color: #000;
	background-image: url(img/header/next-black.svg) !important;
}

.slide-bottiglie .slick-prev{
	color: #000;
	background-image: url(img/header/next-black.svg) !important;
	transform: rotate(180deg);
}


.custom-shape-divider-top-1705499362 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.custom-shape-divider-top-1705499362 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 46px;
}

.custom-shape-divider-top-1705499362 .shape-fill {
	fill: #FFFFFF;
}


.custom-shape-divider-bottom-1705499461 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.custom-shape-divider-bottom-1705499461 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 46px;
}

.custom-shape-divider-bottom-1705499461 .shape-fill {
	fill: #FFFFFF;
}

#central-banner{	
	position: relative;
	/* margin-top: 20px; */
	padding-top: 50px;
	margin-bottom: -14%;
	padding-bottom:13%;
}
#central-banner .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 100px;
	padding-bottom: 100px;
	flex-wrap: wrap;
}
#central-banner .container img:nth-child(1){
	width: 70%;
	margin: 0 auto;
	padding-bottom: 50px;
}

#central-banner .container img:nth-child(2){
	width: 70%;
	margin: 0 auto;
}



#proprieta{
	position: relative;
}



#proprieta .waves-central{
	position: absolute;
	height: 105%;
	width: 100%;
	right:0;
	top:-3%;
	opacity: 0.1;
	z-index:3;
} 
/* #proprieta .descrizione-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
} */

/* #proprieta .descrizione-container .descrizione-img{
	width: 49%;
} */

#proprieta .descrizione-container .descrizione-text{
	padding-top: 50px;
}

/* #proprieta .descrizione-container .descrizione-text p{
	width: 70%;
	margin: 0 auto;
} */

#final-banner{
	margin-top: -5%;
	
}

.slide-bottiglie .slick-next{
	color: #000;
	background-image: url(img/header/next-black.svg) !important;
	height: 50px;
	width: 50px;
	right: 15%;
	display: flex;
	position: absolute;
	justify-content: space-between;
}

.slide-bottiglie .slick-next::after{
	content: "SCROLL";
	transform: rotate(270deg);
	width: 90px;
	position: absolute;
	right: -63px;
	top: 4px;
}

.slide-bottiglie .slick-prev{
	color: #000;
	background-image: url(img/header/next-black.svg) !important;
	height: 50px;
	width: 50px;
	left: 12%;
	top:19%;
	display: flex;
	position: absolute;
	justify-content: space-between;
}



#territorio{
	position: relative;
}
/* #territorio .territorio-container{
	display: flex;
	align-items: center;
	justify-content: space-between;
} */

/* #territorio .territorio-container .territorio-img, #territorio .territorio-container .territorio-text{
	width: 48%;
} */

#territorio .territorio-container .territorio-text{
	padding-top: 50px;
}

#vigneti{
	padding-bottom: 150px;
	margin-bottom: -14%;
	padding-bottom:30%;
	position: relative;
}

@keyframes moveUpDown {
  0% {
	transform: translateY(0);
  }
  50% {
	transform: translateY(-10px);
  }
  100% {
	transform: translateY(0);
  }
}

.oscillating {
  animation: moveUpDown 2s infinite;
}

#vigneti .carosello-vigneti .slick-slide{
	padding-left: 10px;
	padding-right: 10px;
}

#certificazioni{
	position: relative;
	overflow: inherit;
	height: 450px;
	z-index:10;
	margin-bottom: -50px;
}

#certificazioni .green-back{
	position: absolute;
	height: 105%;
	width: 100%;
	top: 0;
	left:0;
}
#certificazioni .bee{
	width: 100px;
	height: auto;
	position: relative;
	top: -20px;
	opacity:0;
}

/* #certificazioni p,#sostenibili p{
	width: 50%;
	margin: 0 auto;
} */

#vigneti .w70{
	width: 90%;
	margin: 0 auto;
}

#sostenibili{
	margin-bottom: -20%;
}
#certificazioni .elenco-icone{
	width: 70%;
	margin: 0 auto;
}

#instagram .ig-icon svg{
	width: 30px;
	height: auto;
}
#instagram {
	display: flex;
	padding-top: 50px;
	align-items:center;
	justify-content: space-between;
	margin-bottom: -20%;
	padding-bottom: 23%;
}

#instagram .carosello-vigneti{
	width: 48%;
}

#instagram .ig-text{
	width: 45%;
}

#instagram .carosello-vigneti .slick-slide{
	padding-left: 10px;
	padding-right:10px;
	
}

#instagram .carosello-vigneti .slick-slide img{
	border-radius: 20px;
	overflow: hidden;
}

.footer{
		position: relative;
		padding-top: 100px;
}
.footer .logo-footer{
		width: 150px;
		height: auto;
		margin: 0 auto;
}
.footer .info-contatto .mr30{
		margin-right:0;
}

.footer-privacy a{
	font-size: 14px;
	line-height: 1;
}

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

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

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

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

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


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

@media only screen and (min-width:768px) {
	.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 div {
		width: 48%;
	}
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.nav ul li {
		padding: 15px 0;
	}
	.nav a {
		font-size: 25px;
	}
}
@media only screen and (min-width:1024px) {
	
	h1 {
		
		font-weight: bold;
		font-size: 2.5rem;	
		padding:0;
		margin: 0;
		color: #A89A94;
	}
	
	h2 {
		font-family:'RockwellNova Bold';
		font-weight: bold;
		font-size: 2.2rem;
		color:#171816;
		padding:0;
		margin: 0;
	}
	
	.pb100{
		padding-bottom: 100px;
	}
	#hero-section{
		position: relative;
		height: 100%;
	}
	
	#hero-section img{
		height: 100%;
	}
	
	.header .container .logo-header{
		width: 20%;
		text-align: center;
		transition:0.4s;
	}
	
	.page-template-template-home .header .container .logo-header{
		width: 50%;
		text-align: center;
		transition:0.4s;
	}
	
	.header .container{
		transition:0.4s;
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 100px;
		max-width: 90%; 		
		position:relative;
		
		margin-top:0;
	}
	
	.page-template-template-home .header .container{
		top:50px;
	}
	
	.scroll .header .container {
		top: 10px;
	}
	
	.scroll .logo-header {
		transform: scale(0.35);
		transition:0.4s;
		padding-top: 0;
	}
	
	.wpml-ls-legacy-list-horizontal a{
		padding:0 20px 0 0 !important;
		font-size:1rem;
	}
	
	.header .container .logo-header img{
		width: 650px;
		height: auto;
		position: relative;
		z-index: 1000;
	}
	
	
	.wpml-ls-legacy-list-horizontal li:first-child a{
	position: relative;
	}
	.wpml-ls-legacy-list-horizontal li:first-child a::after{
		content:"";
		right:10px;
		bottom: 0;
		height: 100%;
		width:1px;
		background-color: #000;
		position: absolute;
	}
	
	.page-template-template-home .wpml-ls-legacy-list-horizontal li:first-child a::after{
		content:"";
		right:10px;
		bottom: 0;
		height: 100%;
		width:1px;
		background-color: #fff;
		position: absolute;
	}
	
	
	.header .container .lang-switch{
		width: 15%;
		text-align:left;
		font-size:1rem;
	}
	
	.header .container .openclose{
		width: 15%;
		z-index:100;
		display: flex;
		justify-content: end;
	}
	
	.header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		line-height: 0;
		height: 100px;
	}
	
	#hero-section .testo-hero{
		position: absolute;
		top: 250px;
		left: 50%;
		transform: translate(-50%, -50%); 
		z-index: 19;
	}
	
	#presentazione{
		position: relative;
	}
	
	#presentazione .waves-right{
		position: absolute;
		height: 100%;
		width: auto;
		right:0;
		top:-45px;
		opacity: 0.55;
	} 
	#presentazione .presentazione-container{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	#presentazione .presentazione-container .presentazione-img{
		width: 52%;
	}
	
	#presentazione .presentazione-container .presentazione-text{
		width: 45%;
	}
	
	#presentazione .presentazione-container .presentazione-text p{
		width: 70%;
		margin: 0 auto;
		
	}
	
	#presentazione .presentazione-container .presentazione-text p:nth-child(1){
		padding-top:0;
	}
	
	.w70{
		width: 70%;
		margin: 0 auto;
	}
	
	.footer .info-contatto .mr30{
		margin-right:30px !important;
	}
	
	#elenco-bottiglie{
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #FFF09D;
	}
	
	#elenco-bottiglie .black-back{
		position:absolute;
		width: 50%;
		height: auto;
		left:0;
		z-index:2;
		top:0;
	}
	
	#elenco-bottiglie .slide-bottiglie{
		width: 60%;
		margin: 0 auto;
	}
	#elenco-bottiglie .container-bottiglia{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	#elenco-bottiglie .container-bottiglia .bottiglia,#elenco-bottiglie .container-bottiglia .bottiglia-testo{
		width: 45%;
	}
	
	#elenco-bottiglie .container-bottiglia .bottiglia img{
		height: 650px;
		width: auto;
		margin: 0 auto;
	}
	
	.slide-bottiglie .slick-dots{
		bottom:-5%;
	} 
	
	.slick-next {
		top: 45%;
	}
	
	.slide-bottiglie .slick-next{
		color: #000;
		background-image: url(img/header/next-black.svg) !important;
		height: 50px;
		width: 50px;
		right: -17%;
		display: flex;
		position: absolute;
		justify-content: space-between;
	}
	
	

	.slide-bottiglie .slick-prev{
		color: #000;
		background-image: url(img/header/next-black.svg) !important;
		height: 50px;
		width: 50px;
		top:43%;
		left: -15%;
		display: flex;
		position: absolute;
		justify-content: space-between;
	}
	
	.slide-bottiglie .slick-next::after{
		content: "SCROLL";
		transform: rotate(270deg);
		width: 90px;
		position: absolute;
		right: -63px;
		top: 4px;
	}
	
	#central-banner{
		background-attachment:fixed;
		margin-top: 20px;
		position: relative;
	}
	#central-banner .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-top: 100px;
		padding-bottom: 50px;
	}
	#central-banner .container img:nth-child(1){
		width: 30%;
		text-align:center;
	}
	
	#central-banner .container img:nth-child(2){
		width: 40%;
		text-align:center;
	}
	
	#proprieta{
		position: relative;
	}
	
	
	
	#proprieta .waves-central{
		position: absolute;
		height: 105%;
		width: 100%;
		right:0;
		top:-10%;
		opacity: 0.1;
		z-index:3;
	}
	#proprieta .descrizione-container{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	#proprieta .descrizione-container .descrizione-img{
		width: 49%;
	}
	
	#proprieta .descrizione-container .descrizione-text{
		width: 49%;
		padding-top:0;
	}
	
	#proprieta .descrizione-container .descrizione-text p{
		width: 70%;
		margin: 0 auto;
	}
	
	#final-banner{
		margin-top: -5%;
		
	}
	#territorio{
		position: relative;
	}
	#territorio .territorio-container{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	#territorio .territorio-container .territorio-img, #territorio .territorio-container .territorio-text{
		width: 48%;
		padding-top:0;
	}
	
	#vigneti{
		padding-bottom: 150px;
		margin-bottom: -10%;
		padding-bottom:16%;
	}
	
	
	#vigneti .carosello-vigneti .slick-slide{
		padding-left: 10px;
		padding-right: 10px;
	}
	
	#certificazioni{
		position: relative;
		overflow: inherit;
		height: 500px;
	}
	
	#certificazioni h2{
		padding-top: 70px;
	}
	
	#certificazioni .green-back{
		position: absolute;
		height: 105%;
		width: 100%;
		top: 0;
		left:0;
	}
	#certificazioni .bee{
		width: 100px;
		height: auto;
		position: relative;
		top: -20px;
	}
	
	#certificazioni p,#sostenibili p{
		width: 50%;
		margin: 0 auto;
	}
	
	#sostenibili{
		margin-bottom: -10%;
	}
	#certificazioni .elenco-icone{
		width: 18%;
		margin: 0 auto;
	}
	#instagram .ig-icon svg{
		width: 30px;
		height: auto;
	}
	#instagram {
		display: flex;
		align-items:center;
		justify-content: space-between;
		margin-bottom: -20%;
		padding-bottom: 23%;
	}
	
	#instagram .carosello-vigneti{
		width: 58%;
	}
	
	#instagram .ig-text{
		width: 40%;
	}
	
	#instagram .carosello-vigneti .slick-slide{
		padding-left: 10px;
		padding-right:10px;
		
	}
	
	#instagram .carosello-vigneti .slick-slide img{
		border-radius: 20px;
		overflow: hidden;
	}
	
	.footer{
		position: relative;
		padding-top: 130px;
		
	}
	.footer .logo-footer{
			width: 220px;
			height: auto;
			margin: 0 auto;
	}
	.footer .info-contatto{
			display: flex;
			justify-content: center;
	}
	
	.dots{
		position: absolute;
		right: 5%;
		top: 7%;
		width: 50px;
		height: auto;
		opacity: 1;
	}
	
	#vigneti .w70{
		width: 50%;
	}
}
@media only screen and (min-width:1280px) {

}
@media only screen and (min-width:1600px) {
	.container{
		width: 90%;
		margin: 0 auto;
		max-width: 1400px;
	}
}


