/*
	Theme Name: Digitalia
	Theme URI: https://europemeetsmiami.com/
	Description: Meet Miami
	Version: 1.4.3
	Author: Jacopo Zane
	Author URI: https://www.digitalia.srl
	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 {
	overflow-y: scroll;
	font-family: "Montserrat", serif;
	font-optical-sizing: auto;
	font-style: normal;
}
body.navmenu_open {
	overflow-y: hidden;
}
section {
	overflow: hidden;
}
/* clear */
.clear:before,
.clear:after {
    display:table;
}

aside {
	max-width: 100%;
}

.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:#3e3e3e;
	text-decoration:none;
	cursor: pointer;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
}
ul {
	list-style-type: none;
}
h1,h2,h3,h4,h5,h6,p {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
h1 {
}
h2 {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}
strong, b {
	
}
.divider {
	
}
.pulsante {
	display: inline-block;
	color: #202220;
	border-radius: 30px;
	background-color: #ABCEAE;
	text-transform: uppercase;
	font-weight: 800;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	padding: 0 30px;
}
.pulsante:hover {
	
}
.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: start;
	justify-content: center;
	flex-direction: column;
}
.flex-mobile {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	display: flex;
}
.flex-mobile .left,
.flex-mobile .right {
	width: 50%;
}
.reverse-mobile {
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	display: flex;
}

/* bottone filtro */
.btn-filtro {
	display: inline-block;
	margin-right: 5px;
	font-size: 18px;
	padding: 10px 5px;
	background-color: #fff;
	border: 1px solid #999;
	cursor: pointer;
	user-select: none;
}
.btn-filtro.active {
	background-color: #999;
}

/* spinner */
spinner {
	display: inline-block;
	width: 80px;
	height: 80px;
}
spinner::after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #fd175b;
	border-color: #fd175b transparent #fd175b transparent;
	animation: dg_loader_animation 1.2s linear infinite;
}


/*------------------------------------*\
    ELEMENTI
\*------------------------------------*/

/* SLIDE */
.slick-dots {
	position: absolute;
    right: 0;
    bottom: 5%;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.slick-dots .slick-current {
    background-color: #ff5028;
}
.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 #ff5028;
}
.slick-dots button {
	color: transparent;
	background-color: transparent;
	display: contents;
}
.slick-prev {
	background-image: url(img/header/arrow-left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	background-size: 100% auto;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	left: -5%;
	z-index: 1;
	outline: none;
	width: 20px;
	height: 50px;
}
.slick-next {
	background-image: url(img/header/arrow-right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	background-size: 100% auto;
	border: none;
	color: transparent;
	position: absolute;
	top: 45%;
	right: -5%;
	z-index: 1;
	outline: none;
	width: 20px;
	height: 50px;
}
#home .row-2 .slick-prev {
	background-image: url(img/header/arrow-left-white.svg);
}
#home .row-2 .slick-next {
	background-image: url(img/header/arrow-right-white.svg);
}
.slide-contatore .slick-dots li {
	border: none;
	width: auto;
	height: auto;
	display: none;
}
.slide-contatore .slick-dots .slick-current {
	background-color: transparent;
	color: #fff;
	display: block;
    width: fit-content;
}
.slide-contatore .slick-dots a {
	color: #fff;
	font-size: 14px;
}

/* FORM */
label {
	font-size: 12px;
	margin-left: 20px;
}
input,
textarea {
	outline: none;
	padding: 5px;
	color: #fff;
	height: 40px;
	margin-top: 5px;
	background-color: #202220;
	border: 1px solid #ABCEAE;
	width: 100%;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	padding-left: 20px;
}
::placeholder {
	color: #596259;
	font-size: 12px;
	font-weight: 500;
}
.wpcf7-form .wpcf7-acceptance input {
	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 .wpcf7-acceptance input: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 {
	width: 200px;
}
.wpcf7-submit:hover {
}
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: #fff;
}
/** TABS **/

.tabulator {
    position: relative;
    margin: 10px 0px;
}
.tabulator header,
.tabulator content {
    position: relative;
}

.tabulator header {
    background: unset;
    padding: 0;
    margin: 0;
}
.tabulator button {
    background-color: white;
    border: 2px solid grey;
    color: grey;
    border-radius: 5px 5px 0px 0px;
    border-bottom: 0px;
    position: relative;
    top: 2px;
    margin-right: 1px;
}

.tabulator tab {
    width: 100%;
    display: block;
    background-color: white;
    border: 2px solid black;
    display: none;
    padding: 10px;
}

.tabulator tab.active {
    display: block;
}
.tabulator button.active {
    z-index: 2;
    font-weight: 750;
    border-color: black;
    color: black;
}
/* 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;
}
.accordion.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;
}
/*------------------------------------*\
	LIGHTBOX
\*------------------------------------*/

.lightbox-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
}
.lightbox-wrapper[aria-visible="true"] {
    display: flex;
}
.lightbox-wrapper img {
    max-width: 100%;
}
.lightbox-wrapper .lightbox-background {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.72);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.lightbox-wrapper.striped .lightbox-background {
    background: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,0.66),
        rgba(0,0,0,0.66) 10px,
        rgba(0,0,0,0.64) 10px,
        rgba(0,0,0,0.64) 20px
    );
}
.lightbox-wrapper .lightbox-container {
    width: calc(100% - 40px);
    height: auto;
    z-index: 10;
    position: relative;
    color: white;
    user-select: none;
    pointer-events: none;
}
.lightbox-wrapper .lightbox-content {
    width: 100%;
    max-width: 550px;
    height: auto;
    z-index: 10;
    margin: 0 auto;
}
.lightbox-wrapper .lightbox-content * {
    margin: 0;
    padding: 0;
}
.lightbox-arrows {
    position: absolute;
    top: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}
.lightbox-arrows.left {
    left: 0px;
}
.lightbox-arrows.right {
    right: 0px;
}
.lightbox-wrapper .lightbox-header {
    text-align: right;
}
.lightbox-wrapper .lightbox-header .close {
	max-width: 30px;
}
.lightbox-wrapper .lightbox-body {
    background-color: #000;
    border-radius: 2px;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.67);
    margin: 10px 0px;
    overflow: hidden;
    color: #fff;
}
.lightbox-wrapper i.fa {
    cursor: pointer;
    position: relative;
}
.lightbox-wrapper .lightbox-popup {
    padding: 15px;
}
.lightbox-wrapper .lightbox-footer {
    display: none;
}
.lightbox-wrapper .lightbox-footer-sx {
    width: calc(100% - 90px);
    font-size: 1.2em;
}
.lightbox-wrapper .lightbox-footer-dx {
    width: 90px;
    text-align: right;
}
.lightbox-wrapper .lightbox-footer h6 {
    font-weight: 400;
    font-size: 14px;
}
.lightbox-wrapper .lightbox-footer h5 {
	color: #fff;
	font-size: 16px;
}
.lightbox-wrapper .lightbox-footer-dx h5{
    font-weight: 200;
    font-size: 14px;
    color: #fff;
}
.lightbox-wrapper .lightbox-container h5,
.lightbox-wrapper .lightbox-container h3,
.lightbox-wrapper .lightbox-container h6,
.lightbox-wrapper .lightbox-container img,
.lightbox-wrapper .lightbox-container i.fa {
    pointer-events: initial;
    color: #fff;
}	
.lightbox-wrapper .lightbox-container img {
	display: block;
}
.lightbox-wrapper.singolo .lightbox-arrows,
.lightbox-wrapper.singolo .lightbox-footer-dx h5 {
    display: none;
}
.lightbox-wrapper .lightbox-container a {
    color: inherit;
    text-decoration: none;
}
.lightbox-wrapper .lightbox-container .hover {
	padding: 10px;
}
.lightbox-wrapper .close {
	cursor: pointer;
}
.lightbox-wrapper .next, 
.lightbox-wrapper .prev {
	width: 30px;
}

/*------------------------------------*\
	ANIMAZIONI
\*------------------------------------*/

.zoom {
	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);
}
.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: 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;
}
.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;
}
.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 rotation-inverse {
	0% {transform: rotateZ(0);}
	25% {transform: rotateZ(-90deg);}
	50% {transform: rotateZ(-180deg);}
	75% {transform: rotateZ(-270deg);}
	100% {transform: rotateZ(-360deg);}
}

@keyframes lampeggio {
	0% {opacity:0;}
	25% {opacity:0.5;}
	50% {opacity:1;}
	75% {opacity:0.5;}
	100% {opacity:0;}
}

@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);}
}

@keyframes dg_loader_animation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* Animations */

/* Fade */
.fade {
    opacity: 0;
    transition: 1.7s all cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.fade.in-page {
    opacity: 1;
}
.fade-in {
    transform: translateY(50px);
    opacity: 0;
    transition: 1s all cubic-bezier(0.53, 0.03, 0.01, 0.46);
}
.fade-in.delay-200 {
	transition-delay: 200ms;
}
.fade-in.delay-400 {
	transition-delay: 400ms;
}
.fade.delay-200 {
	transition-delay: 200ms;
}
.fade.delay-400 {
	transition-delay: 400ms;
}

.fade-in.in-page {
    transform: translateY(0);
    opacity: 1;
}

.reveal-from-left img, .reveal-from-left .overlay, .reveal-all.reveal-from-left * {
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
    transition: 1.7s all cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-from-left.in-page img, .reveal-from-left.in-page .overlay, .reveal-all.reveal-from-left.in-page * {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-from-right img, .reveal-from-right .overlay {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: 1.7s all cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-from-right.in-page img, .reveal-from-right.in-page .overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 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;
}
/*--------------BLOG------------------*/
.pagina-del-blog {
	display: flex;
}
.pagina-del-blog > main {
	width: 70%;
}
.pagina-del-blog > aside.sidebar {
	width: 30%;
}
/*--------------GDPR------------------*/
.page-template-template-gdpr section {
	background-image: linear-gradient(to bottom right, #557C59, #0F2612);
}
.page-template-template-gdpr section div {
	max-width: 800px;
}
.page-template-template-gdpr section h2 {
	padding-bottom: 20px;
	padding-top: 60px;
}
.page-template-template-gdpr section h3 {
	color: #EDF7ED;
	padding: 30px 0 10px;
}
.page-template-template-gdpr section h4 {
	color: #f9cca0;
	padding: 30px 0 10px;
}
.page-template-template-gdpr section p {
	color: #EDF7ED;
	font-size: 14px;
}
.page-template-template-gdpr section ul {
	padding: 10px 0;
	list-style-type: disc;
	list-style-position: inside;
}
.page-template-template-gdpr section li {
	color: #EDF7ED;
	font-size: 14px;
}
#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
\*------------------------------------*/

.montserrat-light {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-medium {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.montserrat-semibold {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.montserrat-extrabold {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}



/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* page loader*/
loader {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	left: 0px;
	z-index: -1;
	user-select: none;
	pointer-events: none;
}
.pagina_caricata loader {
	display: none;
}
/* main */
main {
	min-height: 640px;
}
/* wrapper */
.wrapper {
	width:100%;
	margin: 0 auto;
	max-width: 100vw;
	overflow: hidden;
	overflow-y: auto;
	opacity: 0.0;
	transition: opacity 0.46s ease;
}
.pagina_caricata .wrapper {
	opacity: 1;
}
.content {
	max-width:1600px;
	width:90%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
	transition: all 1s linear;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
}
.home .header-widget-area {
    opacity: 0;
}
.header-widget-area {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(16, 18, 18, 0.90);
    padding: 50px 0 10px;
	transition: opacity 0.45s ease;
    user-select: none;
}
.header-widget-area.visibile {
    opacity: 1.0;
    pointer-events: initial;
}
.wpml-ls-legacy-list-horizontal {
	padding: 0;
}
.wpml-ls-legacy-list-horizontal a {
	padding: 10px 0 0;
}
.wpml-ls-current-language {
	padding-right: 5px !important;
}
/* logo */
.logo {
	text-align: center;
	background-color: rgba(0, 0, 0, 0.7);
	padding-top: 10%;
	padding-bottom: 10px;
	display: none;
}
.logo img {
	max-width: 70px;
}
/* nav */
.nav {
	user-select: none;
	pointer-events: none;
	background-image: linear-gradient(to bottom right, #557C59, #0F2612);
	display: flex;
	color: #fff;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	justify-content: center;
	align-items: center;
	transition: opacity 0.7s linear;
	opacity: 0;
}
.navmenu_open .nav {
	user-select: none;
	pointer-events: unset;
	opacity: 1.0;
}
.navmenu_open .logo {
	display: block;
	background-color: transparent;
	position: relative;
	z-index: 201;
	text-align: left;
	padding-top: 5%;
	padding-left: 5%;
}
.mobile .navmenu_close .nav { 
	opacity: 0.0;  
} 
.nav a {
	color: #EDF7ED;
    font-weight: 500;
	text-transform: uppercase;
	font-size: 16px;
}
.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;
}
/* closebutton */
.openclose {
	position: absolute;
	top: 35%;
	right: 5%;
	z-index: 250;
	cursor: pointer;
	display: block;
}
.navmenu_open .openclose {
	display: flex;
}
.openclose .iconbar {
	height: 2px;
	width: 20px;
	background-color: #fff;
	display: block;
	margin: 5px 0;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-ms-transition-duration: 1s;
}
.openclose img {
	max-width: 20px;
}
.openclose .uno {
	width: 15px;
}
.openclose .tre {
	width: 12px;
}
.openclose:hover .uno {
	width: 20px;
}
.openclose:hover .tre {
	width: 20px;
}
/* footer */
.footer {
	text-align: center;
	background-image: linear-gradient(to top right, #557C59, #0F2612);
	padding-bottom: 60px;
}
.footer > div {
	width: 100%;
}
.footer .content {
	background-image: url(img/footer/foglia.svg);
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 120px auto;
	max-width: 100%;
}
.footer .content .newsletter {
	display: none;
}
#custom_html-2 {
	text-align: left;
	padding-left: 5%;
	padding-top: 30px;
	display: none;
}
#custom_html-2 img {
	max-width: 120px;
}
#nav_menu-2 {
	padding-top: 60px;
}
#nav_menu-2 li {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #557C59;
}
#nav_menu-2 a {
	color: #EDF7ED;
	font-weight: 500;
}
#custom_html-3 {
	padding: 0 0 30px;
}
#custom_html-3 img {
	max-width: 20px;
	max-height: 18px;
	margin: 0 10px;
}
#text-2 p {
	font-size: 12px;
}
#text-2 img {
	max-width: 170px;
	margin: 20px 0 30px;
}
#nav_menu-3 a {
	color: #edf7ed;
	font-size: 12px;
}
#nav_menu-4,
#text-3 {
	display: none;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/

/*--------------HOME------------------*/
#home .row-1 {
	width: 100vw;
	height: 290vh;
	overflow: hidden;
	position: relative;
	background-color: rgba(0, 0, 0, 0.30);
}
#home .row-1 .sfondo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}
#home .row-1 .sfondo {
	width: 110%;
    height: 110vh;
    object-fit: cover;
    transform: scale(1.5) translate(12%, 15%);
    will-change: transform;
    transition: transform 0.1s linear;
}
#home .row-1 .parallax {
	padding: 0 5%;
	position: relative;
	top: -100px;
	left: 0;
	z-index: 2;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
}
#home .row-1 .parallax-2 {
	padding: 0 5%;
	position: relative;
	bottom: 8%;
	left: 0;
	z-index: 2;
	height: 75vh;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: end;
	flex-direction: column;
}
#home .row-1 .parallax-2 img {
	width: 150px;
	margin: 10px 0;
}
#home .row-1 .parallax-3 {
	padding: 0 5%;
	position: relative;
	top: -100px;
	left: 0;
	z-index: 2;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
}
#home .row-1 .number {
	text-align: center;
}
#home .row-1 .number .flex {
	margin: 0 auto;
}
#home .row-1 .number .flex div {
	border-bottom: 1px solid #fff;
	padding: 30px 0;
}
#home .row-1 .number .flex div:last-of-type {
	border-bottom: none;
}
#home .row-1 .number h2 {
	font-weight: 800;
	font-size: 40px;
}
#home .row-1 h3 {
	font-weight: 300;
}
#home .row-1 h1 {
	width: 70%;
}
#home .row-1 p {
	color: #EDF7ED;
	font-size: 18px;
	font-weight: 600;
	padding-top: 10px;
	line-height: 25px;
}
#home .row-2 {
    text-align: center;
    padding: 40px 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100vw;
    background-image: linear-gradient(to bottom right, #557C59, #0F2612);
}
#home .row-2 h2 {
	font-weight: 800;
	padding-bottom: 40px;
}
#home .row-2 .slick-slide {
    width: 100%;
} 
#home .row-2 .carosello .image {
	width: 85% !important;
	overflow: hidden;
	transition: width 0.5s linear;
	position: relative;
	border-radius: 30px;
}
#home .row-2 .carosello .slick-current .image {
	width: 100% !important;
	transition: width 0.5s linear;
	overflow: hidden;
}
#home .row-2 .carosello .image .testo {
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
	text-align: left;
	padding: 15px;
	background-image: linear-gradient(to top, #000, transparent 80%);
}
#home .row-2 .carosello .slick-current .image .testo {
	opacity: 1;
	transition-duration: 1s;
	overflow: hidden;
}
#home .row-2 .carosello {
	color: #EDF7ED;
    width: 100%;
    height: 55vh;
}
#home .row-2 .carosello h4 {
	font-weight: 700; 
}
#home .row-2 .carosello p {
	font-weight: 400;
}
#home .row-4 p {
	text-transform: uppercase;
	color: #202220;
	font-weight: 500;
	padding-bottom: 20px;
}
#home .row-4 {
    text-align: center;
    padding: 40px 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to bottom right, #F9CCA0, #F9AC5F);
}
#home .row-4 h2 {
	font-weight: 800;
	margin-bottom: 10px;
	color: #202220;
}
#home .row-4 .carosello .image {
	width: 80% !important;
	overflow: hidden;
	transition: width 0.5s linear;
	border-radius: 30px;
}
#home .row-4 .carosello .slick-current .image {
	width: 100% !important;
	transition: width 0.5s linear;
	overflow: hidden;
}
#home .row-4 .carosello .image .testo {
	opacity: 0;
}
#home .row-4 .carosello .slick-current .image .testo {
	opacity: 1;
	transition-duration: 1s;
	overflow: hidden;
	width: 250px;
}

#home .row-4 .carosello {
	color: #EDF7ED;
	display: block;
    align-items: center;
	justify-content: center;
    height: 55vh;
    width: 100%;
    margin-bottom: 20px;
}
#home .row-4 .pulsante {
	width: 200px;
    margin: 0 auto;
    background-color: #1F4124;
    color: #fff;
}
#home .row-3 {
	position: relative;
	height: 70vh;
    overflow: hidden;
    background-color: black;
}
#home .row-3 h2 {
	font-weight: 800;
	margin-bottom: 40px;
	color: #fff;
}
#home .row-3 .sfondo-2 {
	width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease-out;
}
#home .row-3 .text {
	align-items: center;
	width: 90%;
	left: 5%;
}
#home .row-3 .testo {
	color: #202220;
	padding: 10px;
	background-color: #E5F2E5;
	border-radius: 10px;
}
#home .row-3 .testo h3 {
	color: #202220;
	font-weight: 800;
	padding: 10px 0 0;
	font-size: 23px;
}
#home .row-3 .testo img {
	border-radius: 10px;
}
#home .row-3 .testo .flex {
	display: flex;
	align-items: start;
	justify-content: start;
	flex-direction: column;
}
#home .row-3 .testo .flex div {
	display: flex;
	width: 100%;
}
#home .row-3 .testo .flex img {
	max-width: 12px;
	margin-right: 5px;
}
#home .row-3 .testo h2 {
	font-weight: 800;
	font-size: 40px;
}
#home .row-3 .testo p {
	font-weight: 500;
	padding: 10px 0;
}
#home .row-3 .pulsante {
	width: 200px;
	text-align: center;
	margin: 10px auto;
	display: block;
}
#home .row-5 {
	position: relative;
	height: 100vh;
    overflow: hidden;
    background-color: black;
    background-image: linear-gradient(to bottom right, #557C59, #0F2612);
}
#home .row-5 .sfondo-3 {
	width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease-out;
    opacity: 0.6;
}
#home .row-5 h2 {
	font-weight: 800;
	font-size: 40px;
	text-transform: none;
}
#home .row-5 h3 {
	color: #EDF7ED;
	font-weight: 800;
	font-size: 20px;
	padding: 30px 0 10px;
}
#home .row-5 p {
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
}
#home .row-5 .text {
	width: 90%;
	left: 5%;
	color: #EDF7ED;
}
#home .slick-track {
	display: flex;
	align-items: center;
}
/*--------------ABOUT------------------*/
#about .row-1 {
	width: 100vw;
	height: 165vh;
	overflow: hidden;
	position: relative;
	background-color: rgba(0, 0, 0, 0.60);
	transition: background-color 0.1s ease-out;
}
#about .row-1 .sfondo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}
#about .row-1 .sfondo {
	width: 110%;
    height: 110vh;
    object-fit: cover;
    transform: scale(1.5) translate(12%, 15%);
    will-change: transform;
    transition: transform 0.1s linear;
}
#about .row-1 .parallax {
	padding: 0 10%;
	position: relative;
	top: 30px;
	left: 0;
	z-index: 2;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
}
#about .row-1 .parallax-2 {
	padding: 0 10%;
	position: relative;
	bottom: 10%;
	left: 0;
	z-index: 2;
	height: 70vh;
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: end;
	flex-direction: column;
}
#about .row-1 .parallax-2 h1 {
	display: none;
}
#about .row-1 .parallax-2 img {
	border-radius: 30px;
}
#about .row-1 .parallax a {
	color: #EDF7ED;
	text-decoration: underline;
}
#about .row-1 h1 {
	font-size: 40px;
	color: #EDF7ED;
	font-weight: 700;
	padding-bottom: 20px;
}
#about .row-1 p {
	color: #EDF7ED;
	font-size: 18px;
	font-weight: 600;
	padding-top: 10px;
	line-height: 25px;
}
/*--------------FUTURE------------------*/
#future .row-3 {
	position: relative;
	padding: 150px 5%;
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#future .row-3 .intro h1 {
	font-size: 40px;
	color: #EDF7ED;
	font-weight: 700;
	padding-bottom: 20px;
}
#future .row-3 .intro p {
	color: #EDF7ED;
    font-size: 18px;
    font-weight: 600;
    padding-top: 10px;
    line-height: 25px;
    padding-bottom: 30px;
}
#future .row-3 .intro .pulsante {
	margin-bottom: 30px;	
}
#future .row-3 article .testo {
	padding: 10px;
	background-color: #E5F2E5;
	border-radius: 10px;
	margin-bottom: 40px;
}
#future .row-3 article .testo h3 {
	color: #202220;
	font-weight: 800;
	padding: 10px 0 0;
	font-size: 23px;
}
#future .row-3 article .testo img {
	border-radius: 10px;
}
#future .row-3 article .testo .flex {
	display: flex;
	align-items: start;
	justify-content: start;
	flex-direction: column;
}
#future .row-3 article .testo .flex div {
	display: flex;
	width: 100%;
}
#future .row-3 article .testo .flex img {
	max-width: 12px;
	margin-right: 5px;
}
#future .row-3 article .testo p {
	font-weight: 500;
	padding: 10px 0;
	color: #202220;
}
#future .row-3 article .pulsante {
	width: 210px;
	text-align: center;
	margin: 10px auto;
	display: block;
}
.popup h3 {
	color: #EDF7ED;
	font-size: 16px !important;
	text-align: center;
	font-weight: 700;
	padding-bottom: 10px;
}
.popup p {
	color: #EDF7ED;
	text-align: center;
	font-size: 12px;
	padding-bottom: 30px;
}
.popup {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.70);
}
.popup .quadrato {
	position: absolute;
	z-index: 3;
	width: 90%;
	height: auto;
	background-color:rgba(32, 34, 32, 0.90);
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
    overflow-y: scroll;
    border: 1px solid #ABCEAE;
    max-width: 450px;
}
.popup .quadrato .wpcf7 p {
	text-align: left;
	padding-bottom: 20px;
}
.popup .close {
	color: #fff;
	text-align: right;
	font-size: 15px;
	cursor: pointer;
	position: absolute;
    z-index: 3;
    top: 2%;
    right: 5%;
}
.popup label {
	text-align: left;
}
.popup .invia p {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 0 !important;
}


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

@media only screen and (min-width:768px) {
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.nav ul li {
		padding: 15px 0;
	}
	.nav a {
		font-size: 25px;
	}
	.footer {
		height: auto;
	}
/*--------------HOME------------------*/
	#home .row-2 {
		padding: 30px 5%;
	}
	#home .row-2 .carosello {
		justify-content: center;
	}
	#home .row-2 .carosello .image,
	#home .row-2 .carosello .slick-current .image {
		width: 90% !important;
	}
	#home .row-2 .carosello .image .testo {
		opacity: 1;
		padding: 5%;
	}
	#home .row-2 .carosello .slick-current .image .testo {
		width: auto;
	}
	#home .row-2 .carosello {
		max-width: 1100px;
		margin: 0 auto;
		height: auto;
	}
	#home .row-4 {
		background-image: linear-gradient(to bottom, #F9CCA0, #F9AC5F);
		padding: 30px 5%;
	}
	#home .row-4 .carosello .image,
	#home .row-4 .carosello .slick-current .image {
		width: 90% !important;
	}
	#home .row-4 .carosello .image .testo {
		opacity: 1;
		padding: 5%;
	}
	#home .row-4 .carosello .slick-current .image .testo {
		width: auto;
	}
	#home .row-4 .carosello {
		max-width: 1100px;
		margin: 0 auto;
		height: auto;
	}
	#home .row-4 h2 {
		color: #202220;
	}
	#home .row-4 p {
		padding-bottom: 20px;
		color: #202220;
	}
	#home .row-4 .carosello .pulsante {
		display: none;
	}
	#home .row-4 .pulsante {
        margin: 30px auto 0;
	}
}
@media only screen and (min-width:1024px) {
	.touch .parallax {
		background-attachment: scroll !important;
	}
	.flex-desktop {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		display: flex;
	}
	.flex-desktop .left {
		width: 55%;
	}
	.flex-desktop .right {
		width: 40%;
	}
	.reverse-desktop {
		align-items: center;
		justify-content: start;
		flex-wrap: wrap;
		display: flex;
		flex-direction: row-reverse;
	}
	.reverse-desktop .right {
		width: 59%;
	}
	.reverse-desktop .left {
		width: 41%;
	}
	#home .slick-track {
		display: block;
	}
	/*------------------------------------*\
	    RESPONSIVE - layout desktop
	\*------------------------------------*/
	
	/* header */
	
	/* nav */
	.pagina-desktop .nav {
		display: block;
		background-color: transparent;
		height: auto;
		width: 100%;
		position: relative;
		background-image: none;
		opacity: 1.0;
		pointer-events: unset;
		user-select: unset;
		text-align: center;
		line-height: 100px;
	}
	.pagina-desktop .nav ul {
		margin-top: 0;
		text-align: center;
		display: inline-block;
	}
	.pagina-desktop .nav ul li {
		padding: 0 20px;
		display: inline-block;
		text-transform: none;
	}
	.pagina-desktop .nav ul li a {
		height: 30px;
		line-height: 30px;
		font-size: 15px;
		letter-spacing: 1px;
		color: #ABCEAE;
		font-weight: 700;
	}
	.pagina-desktop .nav ul .current-menu-item a {
		background-color: rgba(237, 247, 237, 0.20);
		border-radius: 20px;
		padding: 10px 30px;
	}
	.pagina-desktop .openclose {
		display: none;
	}
	.pagina-desktop .logo {
		max-width: 150px;
		width: 100%;
		position: absolute;
		left: 0;
		top: 20%;
		display: block;
		background-color: transparent;
		padding: 0;
		z-index: 100;
	}
	.wpml-ls-legacy-list-horizontal a {
		padding: 0;
	}
	.header-widget-area {
		display: none;
	}
	aside {
		max-width: 30%;
	}
	header.header {
		background-color: rgba(32, 34, 32, 0.7);
	}
	h3 {
		font-size: 35px !important;
	}
	h2 {
		font-size: 30px !important;
	}
	.footer .content {
		padding: 30px 5% 0;
		background-size: 190px auto;
	}
	#custom_html-2 {
		padding: 0;
		margin-right: 30px;
		display: block;
	}
	#custom_html-2 img {
	    max-width: 80px;
	}
	#nav_menu-2 {
		display: none;
	}
	#nav_menu-4,
	#text-3 {
	    display: flex;
	}
	#text-3  {
		margin-right: 30px;
	}
	#text-3 p {
		font-size: 10px;
		text-align: left;
		text-transform: none;
	}
	#text-3 img {
		margin-top: 10px;
		max-width: 100px;
	}
	#nav_menu-4 ul {
		display: inline-flex;
		font-size: 14px;
		margin-bottom: 5px;
	}
	#nav_menu-4 ul li {
		padding: 0 5px;
	}
	#nav_menu-4 a {
		color: #EDF7ED;
		font-weight: 500;
	}
	.footer-widget-area {
		display: flex;
		align-items: end;
		justify-content: flex-start;
		flex-direction: row;
		border-top: 1px solid #557C59;
		padding-top: 30px;
		margin-top: 30px;
	}
	#text-2,
	#nav_menu-3 {
		display: none;
	}
	#custom_html-3 {
		padding: 0;
	}
	#custom_html-3 .textwidget {
		display: flex;
		align-items: center;
	}
	.footer .content .newsletter {
		display: block;
		color: #EDF7ED;
		width: 90%;
		left: 5%;
		text-align: left;
	}
	.footer .content .newsletter h2 {
		font-weight: 800;
		font-size: 40px;
		text-transform: none;
	}
	.footer .content .newsletter h3 {
		color: #EDF7ED;
		font-weight: 800;
		font-size: 18px !important;
		padding: 0 0 30px;
		text-transform: none;
	}
	.footer .content .newsletter p {
		font-size: 14px;
		font-weight: 500;
		padding: 10px 0;
		text-transform: none;
	}
	.wpcf7-form .flex {
		display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    justify-content: space-between;
	    align-items: end;
	    align-content: center;
	}
	.wpcf7-form .flex div {
		width: 23%;
	}
	.wpcf7-form .invia p {
		display: flex;
	}
	.wpcf7-submit {
		height: 40px !important;
		line-height: 40px !important;
	}
	.pulsante {
		font-size: 16px;
	}
/*--------------HOME------------------*/	
	#home .row-1 {
		height: 210vh;
	}
	#home .row-1 .sfondo {
		transform: scale(1) translate(0%, 0%);
	}
	#home .row-1 h1 {
	    width: 400px;
	}
	#home .row-1 p {
		padding-top: 20px;
	}
	#home .row-1 .parallax {
		top: 0;
		align-items: center;
	}
	#home .row-1 .parallax-2 {
		width: 1000px;
		margin: 0 auto;
		bottom: 0;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	#home .row-1 .parallax-2 img {
		margin: 20px 0 10px;
		width: 200px;
	}
	#home .row-1 .parallax-3 {
		height: 20vh;
	}
	#home .row-2,
	#home .row-4 {
		height: auto;
		padding: 60px 0;
	}
	#home .row-3 {
		height: 80vh;
	}
	#home .row-3 .sfondo-2 {
		transform: scale(1.5);
	}
	#home .row-3 .testo {
		padding: 20px;
		width: 100%;
		max-width: 700px;
	}
	#home .row-3 .testo .flex {
		flex-direction: row;
	}
	#home .row-3 .testo .flex div {
		width: 200px;
		align-items: center;
	}
	#home .row-3 .testo .flex div:nth-child(2) {
		justify-content: end;
	}
	#home .row-3 .testo .flex img {
		max-width: 18px;
	    max-height: 20px;
	}
	#home .row-3 .testo h3 {
		font-size: 23px !important;
	}
	#home .row-3 .row {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#home .row-4 .pulsante {
		width: 300px;
	}
	#home .row-4 p {
		padding-bottom: 30px;
	}
	#home .row-5 {
		display: none;
	}
	#home .row-1 .number .flex {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#home .row-1 .number .flex div {
		border-bottom: none;
		border-right: 1px solid #fff;
		padding: 0 60px;
	}
	#home .row-1 .number .flex div:last-of-type {
		border-right: none;
	}
	#home .row-1 .number h2 {
		font-size: 50px !important;
	}
/*--------------ABOUT------------------*/
	#about .row-1 {
		display: flex;
		flex-direction: row;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.30);
	}
	#about .row-1 .parallax {
		top: 0;
	}
	#about .row-1 .parallax-2 {
		align-items: start;
		justify-content: center;
		bottom: 0;
		padding: 0 0 0 5%;
		height: 100vh;
	}
	#about .row-1 .parallax-2 h1 {
		display: block;
	}
	#about .row-1 .parallax-2 img {
		max-width: 350px;
	}
/*--------------FUTURE------------------*/
	#future .row-3 .intro {
		display: flex;
		justify-content: space-between;
		align-items: end;
	}
	#future .row-3 .intro p {
		max-width: 600px;
	}
	#future .row-3 article .testo {
		padding: 20px;
		width: 48%;
	}
	#future .row-3 article .testo .flex {
		flex-direction: row;
	}
	#future .row-3 article .testo .flex div {
		width: 200px;
		align-items: center;
	}
	#future .row-3 article .testo .flex div:nth-child(2) {
		justify-content: end;
	}
	#future .row-3 article .testo .flex img {
		max-width: 18px;
	    max-height: 20px;
	}
	#future .row-3 article .testo h3 {
		font-size: 23px !important;
	}
	#future .row-3 article {
		display: flex;
		justify-content: space-between;
		align-items: start;
		flex-wrap: wrap;
	}
	.popup .wpcf7-form .flex div {
        width: 100%;
    }
    .popup label {
	    padding-left: 0;
    }

}
@media only screen and (min-width:1280px) {
	.parallax {
		background-attachment: fixed !important;
	}
	#custom_html-2 {
		margin-right: 80px;
	}
	#text-3 {
        margin-right: 60px;
    }
    #nav_menu-4 ul li {
        padding: 0 25px;
    }
/*--------------FUTURE------------------*/
    #future .row-3 article .row {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#future .row-3 article .testo .flex div {
		width: 140px;
	}
	#future .row-3 .intro p {
        max-width: 800px;
    }



}
@media only screen and (min-width:1600px) {
	#home .row-2 .carosello,
	#home .row-4 .carosello {
		max-width: 1400px;
	}
	#home .row-1 .number .flex div {
		padding: 0 100px;
	}
/*--------------ABOUT------------------*/
	#about .row-1 .parallax-2 img {
		max-width: 500px;
	}
	#about .row-1 p {
		max-width: 500px;
	}
/*--------------FUTURE------------------*/
	#future .row-3 article .testo .flex div {
		width: 200px;
	}
	#future .row-3 .intro p {
        max-width: 1000px;
    }

}

