@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@100..900&family=Wix+Madefor+Display:wght@400..800&display=swap');

/*
	Theme Name: Emmebi Teloni - Website
	Description: Emmebi Teloni - Website theme 2025
	Version: 1.4.3
	Author: Digitalia Srl
	Author URI: https://www.digitalia.srl
	Tags: HTML5, CSS3
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*  FONTS e COLORI */
:root {
	--lightblue: #E0E6EF; 
	--blue: #003366;
	--darkblue: #02609D;
	--black: #010202;
	--white: #FFFFFF; 
	--wix: "Wix Madefor Display", sans-serif; 
	--albert: "Albert Sans", sans-serif; 
}

/* GENERAL */
html,body {  
	margin:0;
	padding:0px;
	background-color:var(--lightblue);
	color:var(--black);
	font-family: var(--albert);
	font-weight: 400;
	line-height: 1.3;
	font-size: 16px !important;
	text-rendering:optimizeLegibility;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
}

@media (min-width: 1400px){ 
	html,body {
		font-size: 18px !important;
	}
}


img,a img {
	border:none!important;
	object-fit: cover;
	width:100%;
	height:100%;
	vertical-align: middle;
}

::-moz-selection {
	background:none repeat scroll 0 0 #FFF;
	color:var(--black);
}

* {
	outline:0!important;
}

b,strong,.bold { 
	font-weight:600;
}

a,a:visited { 
	outline-style:none;
	text-decoration:none;
	color:var(--black);
}

a:hover {  
	cursor:pointer !important;
	text-decoration:none;
}


/* TYPO */

.wix{
	font-family: var(--wix);
	/* font-weight: 400; */
}

.albert{
	font-family: var(--albert);
	/* font-weight: 400; */
}
.big{
	font-size: 1.2rem;   
}
.small{
	font-size: 0.9rem;	 
}

.medium{
	font-weight: 500;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{ 
	color:var(--black);
	padding:0;
	margin:0;
}

h1{
	font-family: var(--albert);
	font-weight: 600;
	font-size:2rem;
	color: var(--blue);
}

.h1{
	font-family: var(--albert);
	font-weight: 600;
	line-height: 1;
	font-size:3rem;
	color: var(--black);
}

h2,.h2{
	font-family: var(--wix);
	font-weight: 500;
	font-size:2rem;
	color: var(--black);
}


h3,.h3{
	font-family: var(--wix);
	font-weight: 600;
	font-size:1.3rem;
	color: var(--black);
}

h4,.h4{
	font-family: var(--albert);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.1;
}

p{
	margin: 0;
	padding:0;
}

.border-bottom{
	border-bottom:1px solid var(--blue);
}

/* SPAZIATURE */

@media(min-width: 1400px){
	.container-fluid{
		padding-left: 10vw;
		padding-right: 10vw;
	}
	.container-left{
		padding-left: 10vw;	
		padding-right: 0;
	}
	.container-right{
		padding-right: 10vw;	
		padding-left: 0;
	}	
}

@media (min-width: 992px){ 
	.container-fluid{
		padding-left: 5vw;
		padding-right: 5vw;
	}
	.container-left{
		padding-left: 5vw;	
		padding-right: 0;
	}
	.container-right{
		padding-right: 5vw;	
		padding-left: 0;
	}
}

.m-fluid {
	margin: clamp(1rem, 3vw, 2rem);
}

.mx-fluid {
	margin-left: clamp(1rem, 3vw, 2rem);
	margin-right: clamp(1rem, 3vw, 2rem);
}

.my-fluid {
	margin-top: clamp(1rem, 3vw, 2rem);
	margin-bottom: clamp(1rem, 3vw, 2rem);
}

.mt-fluid {
	margin-top: clamp(1rem, 3vw, 2rem);
}

.mb-fluid {
	margin-bottom: clamp(1rem, 3vw, 2rem);
}

.m2-fluid {
	margin: clamp(2rem, 6vw, 4rem);
}

.mt2-fluid {
	margin-top: clamp(2rem, 6vw, 4rem);
}

.mb2-fluid {
	margin-bottom: clamp(2rem, 6vw, 4rem);
}

.mx2-fluid {
	margin-left: clamp(2rem, 6vw, 4rem);
	margin-right: clamp(2rem, 6vw, 4rem);
}

.my2-fluid {
	margin-top: clamp(2rem, 6vw, 4rem);
	margin-bottom: clamp(2rem, 6vw, 4rem);
}

/* Padding */

.p-fluid {
	padding: clamp(1rem, 3vw, 2rem);
}

.px-fluid {
	padding-left: clamp(1rem, 3vw, 2rem);
	padding-right: clamp(1rem, 3vw, 2rem);
}

.py-fluid {
	padding-top: clamp(1rem, 3vw, 2rem);
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.pt-fluid {
	padding-top: clamp(1rem, 3vw, 2rem);
}

.pb-fluid {
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.p2-fluid {
	padding: clamp(2rem, 6vw, 4rem);
}

.px2-fluid {
	padding-left: clamp(2rem, 6vw, 4rem);
	padding-right: clamp(2rem, 6vw, 4rem);
}

.py2-fluid {
	padding-top: clamp(3rem, 6vw, 4rem);
	padding-bottom: clamp(3rem, 6vw, 4rem);
}

.pt2-fluid {
	padding-top: clamp(3rem, 6vw, 4rem);
}

.pb2-fluid {
	padding-bottom: clamp(3rem, 6vw, 4rem);
}

.ml10{
	margin-left:10px;
}

.mt30{
	margin-top:30px;
}
.inline-block{
	display: inline-block;
}

.py20{
	padding-top: 20px;
	padding-bottom:20px;
}

.pb20{
	padding-bottom:10px;
}

/* LOADER */

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* GSAP */


.animated-text .word {
  white-space: nowrap;
  display: inline-block;
}

.animated-text .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

/* 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.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%);
}


/* HEADER */

#header{
	position: absolute;
	top:0;
	left:0;
	z-index:10;
	width:100%;
	margin: 0 auto;	
}

#header .navigazione{
	height:110px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2%;
}

#header .navbar-brand{
	width: 230px;
	height: auto;
	position: relative;
	left:2%;
}

#header .navbar-brand svg{
	width: 100%;
	height:100%;
}

#header.border-bottom{
	border-bottom: 1px solid rgba(255,255,255,0.75);
}

#header #navigazione_open ul li a{
	color: var(--white);
	font-family: var(--wix);
	font-size:3rem;
}

#header .menu ul{
	list-style: none;
	margin:0;
	padding:0;
	display: flex;
	align-items: center;
}

#header .menu ul li a{
	color:#fff;
	margin-left: 25px;
}

#header .search-icon{
	margin-left: 30px;
	margin-top: 7px;
	margin-right:25px;
}

#header .nav{
	display: none;
}

.nav-mobile{
	top: -80vh;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: var(--blue);
	height: 75vh;
	position: absolute;
	transition: 0.5s;
	left:0;
	z-index:3;
	width: 100%;
}

.nav-mobile .quaranta-logo-mobile{
	width: 80px;
	height: auto;
	
}

.nav-mobile ul{
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding:0;
	margin:0;
	margin-top: 50px;
}

.nav-mobile ul li{
	text-align: center;
	margin-top:20px;
}
.nav-mobile a{
	color:#fff;	
}

.navmenu_open .nav-mobile{
	top:0;
	transition: 0.5s;
}
#header .openclose {
	position: absolute;
	top: 36%;
	right: 5%;
	z-index: 90;
	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;
}

#header .quaranta-logo{
	max-height: 111px;
	width: auto;
}

.whatsapp-icon{
	position: fixed;
	bottom: 30px;
	right: 25px;
	border-radius: 50%;
	width: 55px;
	height: 55px;
	background-color: #25D366;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(0,0,0, 0.25);
	transition: 0.3s;
	transform: scale(1);
	transition: 0.4s;
}

.whatsapp-icon:hover{
	transform: scale(1.08);
	transition: 0.4s;
}

.page-template-page-home .navbar .navbar-brand g, .page-template-page-home .navbar .navbar-brand path{
	fill: #fff;
}

#introduzione_emmebi .titolo_iniziale{
	color: var(--blue);
}

#spedizione_express .container.pb2-fluid{
	padding-bottom:0;
}

#spedizione_express .spedizione-express {
	display: none;
}

#presentazione_azienda .sezione_spedizione.pt2-fluid{
	padding-top:0;
}

#presentazione_azienda h3{
	margin-bottom:30px;
}
.header-search-open .search-close{
	display: block;
}

.search-close, .header-search-open .search-open{
	display: none;
}

.header-menu-open, .header-search-open {
	position: fixed;
	width: 100%;
 }
 
 .content strong{
	 color: var(--blue);
	 font-weight: 400;
 }
 
 .search-icon btn:hover{
	 cursor: pointer !important;
 }
 
 .header-menu-open #header, .header-search-open #header{
	 background-color: var(--dark-green);
 }
 
 .search-open svg, .search-close svg{
	 position: relative;
	 top: -2px;
 }
 
 .slideshow-recensioni .slick-slide{
	 margin-right: 10px;
	 margin-left: 10px;
 }
 
 .single-recensione{
	 border: 1px solid rgba(0, 51, 102, 0.3);
	 padding: 50px;
	 border-radius: 10px;
 }
 
 .single-recensione .border-bottom{
	 border-bottom: 1px solid rgba(0, 51, 102, 0.3);
 }
 
 .form_contatto_desktop{
	 display: none;
 }
 
 .form_contatto_mobile{
	 display: block;
 }
 
#search-menu{
	display: none;
	margin-top: 30px;
}
/* FOOTER */

#footer .navbar-nav ul{
	margin: 0;
	list-style: none;
	padding:0;
}

#footer a:hover{
	text-decoration: underline;
}

#footer .social-section{
	margin-top:15px;
}

#footer .border-bottom{
	border-bottom: 1px solid rgba(255,255,255,0.75);
}

#footer .copyright-section{
	width:70%;
	margin-left: 5%;
}

#footer .navbar-nav ul li a{
	font-family: var(--albert);
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 7px;
	display: block;
	font-size: 1.3rem;
}

#footer a{
	color:var(--white);
}

/* PAGINE */

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

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

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

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

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

.white-background{
	background-color: var(--white);
	color: var(--blue);
}

.blue-background{
	background-color: var(--blue);
	color: var(--black);
}

.lightblue-background{
	background-color: var(--lightblue);
	color: var(--black);
}

.round-image{
	border-radius:10px;
	overflow: hidden;
}

.rounded-frame{
	border-radius:30px 30px 0 0;
	overflow: hidden;
}

.container{
	width:90%;
	margin: 0 auto;
}

#hero_section{
	background-repeat: no-repeat;
	background-position: center; 
	background-size: cover;
	overflow: hidden;
	height: 80vh;
	width: 100%;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}

#hero_section .video-background{
	width:100%;
	height: 100%;
}

.slideshow-recensioni .slick-slide img{
	width: auto !important;
	height: 30px !important;
}

#hero_section .slide-text{
	position: absolute;
	bottom: 0;
	left:0;
	width:100%;
	height: auto;
}

.z-index{
	position: relative;
	z-index:2;
}
.relative{
	position: relative;
}

.overlay{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: #003366;
	background: linear-gradient(180deg, rgba(0, 51, 102, 0.6) 0%, rgba(0, 51, 102, 0.45) 100%);
}

.overlayblue{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: var(--blue);
	opacity: 0.6;
}

.immagine_anteprima .overlayblue{
	transition:0.55s;
	opacity: 0.3;
}

.immagine_anteprima .pointer{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:70px;
	transition:0.55s;
	height: 70px;
	z-index:3;
	opacity:0;
}

.immagine_anteprima:hover .overlayblue{
	opacity:0.7;
	transition:0.55s;
}
.immagine_anteprima:hover .pointer{
	opacity:1;
	transition:0.55s;
}

.button{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-family: var(--albert);
	font-weight: 400;
	color: var(--blue) !important;
	font-size:1rem;
	background-color: var(--white);
	border-radius: 30px;
	padding: 16px 40px;
}

input[type="submit"]{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-family: var(--albert);
	font-weight: 500;
	color: var(--blue) !important;
	font-size:1rem;
	background-color: var(--white);
	border-radius: 30px;
	width: 200px;
	margin-top: 40px;
}

input[type="radio"]{
	width:20px;
	height:20px;
}


.buttonblue{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-family: var(--albert);
	font-weight: 400;
	color: var(--white) !important;
	font-size:1rem;
	background-color: var(--blue);
	border-radius: 30px;
	padding: 16px 40px;
}

.form-half br{
	display: none;
}

.button:hover,.buttonblue{
	text-decoration: none;
}

.button svg, .buttonblue svg{
	left: 7px; 
	position: relative;
	transition: 0.3s;
}

.button:hover svg, .buttonblue:hover svg{
	left: 12px; 
	transition: 0.3s;
}

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

.m-auto{
	margin:0 auto;
}

.mt10{
	margin-top:10px;
}

.mb10{
	margin-bottom:10px;
}

.w80{
	width:80%;
}
.box_plus{
	padding: 30px;
	border: 1px solid var(--blue);
	border-radius: 10px;
}

.box_info{
	padding: 30px;
	border: 1px solid var(--white);
	background-color: var(--white);
	border-radius: 10px;
}

.h100{
	height:100%;
}


.immagine_anteprima{
	width: 100%;
	height: 100%;
}
span.opacity, p.opacity{
	opacity:0.75;
}



.form-half p, .form-half span{
	width:100%;
	display: block;
}

label{
	color: #fff;
	font-size: 0.9rem;
}

#contatti_emmebi label{
	color: var(--black);
}

input{
	width:calc(100% - 15px);
	background-color: var(--white);
	color: var(--blue);
	border-radius:10px;
	outline: none;
	border:none;
	height:45px;
	margin-bottom:20px;
	padding-left:15px;
}

select{
	width:100%;
	background-color: var(--white);
	color: var(--blue);
	border-radius:10px;
	outline: none;
	border:none;
	height:48px;
	margin-bottom:20px;
	padding-left:15px;
}



input[type="file"]{
	padding-top: 9px;
	height:36px;
}

.wpcf7-list-item{
	margin:0;
}
input[type="checkbox"]{
	width:15px;
	height:15px;
	margin-bottom:0;
	margin-right:10px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	border-color:#fff;
	background-color: #fff;
	color:var(--blue);
}

textarea{
	width:calc(100% - 15px);
	background-color: var(--white);
	color: var(--blue);
	border-radius:10px;
	outline: none;
	border:none;
	height: 100%;
	/* height:45px; */
	margin-bottom:20px;
	padding-top: 15px;
	padding-left:15px;
}

:placeholder{
	color: var(--blue);
}

#presentazione_azienda .bigtext{
	font-family: var(--albert);
	font-size: 4rem;
	font-weight: 600;
	display: block;
}

.slider-text{
	font-family: var(--albert);
	font-size: 3rem;
	font-weight: 500;
	color: rgba(255,255,255,0.4);
}

#presentazione_azienda .circle_text{
	padding: 14px 20px;
	display: inline-block;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--blue);
	color:var(--blue);
	border-radius: 30px;
	font-size: 1.5rem;
	margin-right: 15px;
	margin-bottom:20px;
}

#presentazione_azienda .europe-image{
	position: relative;
	margin-bottom:30px;
	width:90%;
	height: auto;
	left:50%;
	transform: translateX(-50%);
}

.box_plus .check-icon{
	width: 80px;
	height:auto;
}

.box_info .check-icon{
	width: 80px;
	height:auto;
}

.slider-footer {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.dekra-logo{
	width:170px;
	height: auto;
}

.scrolling-wrapper {
  display: flex;
  width: max-content; /* larghezza totale del testo duplicato */
  animation: scroll-infinite 25s linear infinite;
}

.scrolling-text {
  white-space: nowrap;
  margin: 0 2rem; /* spazio tra le due copie per evitare sovrapposizioni */
}

#contact_form{
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
}

.color-options	{
	border: 1px solid #fff;
	padding: 10px;
	margin-top:30px;
	margin-bottom:30px;
}

.color-options label{
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom:20px;
}

.color-options br{
	display: none;
}
.color-options p{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

input[type="radio"] {
	display: none; 
}

.radio-label {
	display: inline-block;
	width: 25px; 
	height: 25px; 
	border-radius: 50%; 
	margin-right: 8px; 
	cursor: pointer;
	border: 2px solid #ccc; 
}

input[type="radio"]:checked ~ .radio-label {
	border: 2px solid #000; /* Bordo attivo */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Aggiungi un'ombra per evidenziare */
}
.radio-bianco { background-color: #ffffff; }
.radio-panna { background-color: rgb(230, 214, 144);}
.radio-panna1 { background-color: rgb(230, 214, 144); }
.radio-panna2 { background-color: rgb(225, 204, 79); }
.radio-giallo1 { background-color: rgb(248, 243, 43); }
.radio-giallo2 { background-color: rgb(250, 210, 1); }
.radio-giallo3 { background-color: rgb(229, 190, 1); }
.radio-arancio { background-color: rgb(244, 190, 17); }
.radio-rosso { background-color: rgb(162, 35, 29); }
.radio-azzurro { background-color: rgb(34, 113, 179); }
.radio-blu1 { background-color: rgb(37, 40, 80);}
.radio-blu2 { background-color: rgb(14, 41, 75); }
.radio-blu-notte { background-color: rgb(30, 33, 61); }
.radio-verde1 { background-color: rgb(1, 93, 82); }
.radio-verde-militare { background-color: rgb(66, 70, 50); }
.radio-verde2 { background-color: rgb(41, 85, 69); }
.radio-grigio1 { background-color: rgb(165, 165, 165); }
.radio-grigio2 { background-color: rgb(215, 215, 215); }
.radio-grigio3 { background-color: rgb(181, 184, 177); }
.radio-grigio4 { background-color: rgb(157, 161, 255);}
.radio-argento { background-color: rgb(125, 127, 125); }
.radio-nero { background-color: #000000; }

#colori-pvc .wpcf7-list-item, #colori-rete .wpcf7-list-item{
	display: flex;
	align-items: center;
}

#colori-pvc .wpcf7-list-item-label, #colori-rete .wpcf7-list-item-label{
	color:#fff;
}

@keyframes scroll-infinite {
  0% {
	transform: translateX(0);
  }
  100% {
	transform: translateX(-50%);
  }
}



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

@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {
	html,body {  		
		font-size: 18px !important;		
	}
	.pt2-fluid {
		padding-top: clamp(2rem, 6vw, 4rem);
	}
	
	.py2-fluid {
		padding-top: clamp(2rem, 6vw, 4rem);
		padding-bottom: clamp(2rem, 6vw, 4rem);
	}
	
	.pb2-fluid {
		padding-bottom: clamp(2rem, 6vw, 4rem);
	}
	
	
	
	h1{
		font-family: var(--albert);
		font-weight: 600;
		font-size:3rem;
		color: var(--blue);
	}
	
	.h1{
		font-family: var(--albert); /* per bigtitles */
		font-weight: 500;
		font-size:4rem;
		line-height: 0.85;
		color: var(--black);
	}
	
	h2,.h2{
		font-family: var(--wix);
		font-weight: 600;
		font-size:2.3rem;
		line-height: 1.3;
		color: var(--black);
	}
	
	h3,.h3{
		font-family: var(--wix);
		font-size: 2.1rem;
		font-weight: 600;
		line-height: 1.3;
	}
	h4,.h4{
		font-family: var(--albert);
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	.box_plus{
		padding: 30px;
	}
	
	.box_info{
		padding: 30px;
	}
	
	.small{
		font-size: 0.9rem;	 
	}
	
	#header .nav{
		display: flex;
	}
	
	#header .openclose {
		display: none;
	}
	
	#header .navbar-brand{
		width: 300px;
		height: auto;
	}
	
	#hero_section{
		height: 100vh;
		/* display: flex;
		align-items: start;
		justify-content: end;
		flex-direction: column; */
	}
	
	#hero_section .slide-text{
		position: absolute;
		bottom: 0;
		left:0;
		width:100%;
		height: auto;
	}
	
	#hero_section .video-background{
		width:100%;
		height: 100%;
	}
	
	#hero_section video{
		vertical-align: baseline;
		width:100%;
		height: 100%;
		object-fit: cover;
	}
	
	#presentazione_azienda h3{
		margin-bottom:0;
	}
	
	
	#spedizione_express .container.pb2-fluid{
		padding-bottom: clamp(2rem, 6vw, 4rem);
	}
	
	#presentazione_azienda .sezione_spedizione.pt2-fluid{
		padding-top: clamp(2rem, 6vw, 4rem);
	}
	
	/* #plus_emmebi .box_plus h4{
		height: 120px;
	} */
	
	#plus_emmebi .box_plus p{
		height: 185px;
	}
	
	.panel p {
		margin: 30px auto;
		font-size: 18px;
	}
	
	.logo img {
		max-width: 150px;
	}
	.w10{
		width:10%;
	}
	
	.pb20{
		padding-bottom:20px;
	}
	.w20{
		width: 18%;
	}
	
	.w30{
		width:28%;
	}
	
	.w32{
		width:32%;
	}
	
	.w40{
		width:40%;
	}
	
	.w50{
		width:49%;
	}
	
	.w53{
		width:53%;
	}
	
	.w60{
		width:60%;
	}
	
	.w90{
		width:87%;
	}
	
	.w30{
		width:30%;
	}

	.pb30{
		padding-bottom:30px;
	}
	.m-auto{
		margin: 0 auto;
	}
	.menu_margin{
		margin-top:110px;
	}
	
	.d-flex{
		display: flex;
	}
	.justify-content-between{
		justify-content: space-between;
	}
	
	.justify-content-center{
		justify-content: center;
	}
	
	#presentazione_azienda .circle_text{
		padding: 14px 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--blue);
		color:var(--blue);
		border-radius: 30px;
		font-size: 1.5rem;
		margin-right: 15px;
		margin-bottom:0;
	}
	
	.flex-column{
		flex-direction: column;
	}
	.align-items-center{
		align-items: center;
	}
	
	.slideshow-recensioni .slick-slide{
		 margin-right: 15px;
		 margin-left: 15px;
	 }
	
	#presentazione_azienda .europe-image{
		position: absolute;
		top: -40%;
		width:65%;
		height: auto;
		left:50%;
		transform: translateX(-50%);
	}
	
	#presentazione_azienda .bigtext{
		font-family: var(--albert);
		font-size: 6rem;
		font-weight: 600;
	}
	
	.d-wrap{
		flex-wrap: wrap;
	}
	
	.align-items-end{
		align-items: end;
	}
	.justify-content-end{
		justify-content:end;
	}
	
	#spedizione_express{
		background-repeat: no-repeat; 
		background-position: center; 
		background-size: cover; 
		/* height:650px; */
	}
	
	#spedizione_express .spedizione-express {
		display: block;
		position: absolute;
		width: 60%;
		z-index:1;
		height: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.single-recensione{
		border: 1px solid rgba(0, 51, 102, 0.3);
		padding: 50px;
		border-radius: 10px;
		height: 380px;
	}
	
	.form-half, .wpcf7-form-control-wrap{
		width:100%;
		max-width: 100%;
		display: flex;
	}
	
	.slick-dots {
		position: absolute;
		right: 50%;
		transform: translateX(-50%);
		top: 100%;
		margin: 0 auto;
		z-index: 1;
		width: 100%;
		height:20px;
		text-align: center;
	}
	
	.slick-dots .slick-active {
		background-color: var(--blue);
		border-color: var(--blue);
	}
	
	.slider-text{
		font-family: var(--albert);
		font-size: 4.5rem;
		font-weight: 500;
		color: rgba(255,255,255,0.4);
	}
	
	.slick-dots li {
		display: inline-block;
		width: 10px;
		height: 10px;
		overflow: hidden;
		background-color: #A1B4C9;
		border-radius: 50%;
		margin: 20px 5px 0;
		border: 1px solid #A1B4C9;
	}
	
	.slick-dots button {
		color: transparent;
		background-color: transparent;
		display: contents;
	}
	
	.slideshow-recensioni .slick-dots{
		bottom: 110%;		
		left:50%;
		padding:0;
		transform: translateX(-50%);
	}
	
	.wpcf7-form .container-form{
		display: flex;
		justify-content: space-between;
		margin-bottom:20px;
	}
	
	.form-half{
		width: 32%;
		flex-direction: column;
	}
	
	#footer .social-section{
		margin-top:0;
	}
	
	#footer .copyright-section{
		
		width:90%;
		margin: 0 auto;
	}
	
	.text-end{
		text-align: end;
	}
	
	.color-options	{
		border: 1px solid #fff;
		padding: 30px 30px 10px 30px;
		margin-top:30px;
		margin-bottom:30px;
	}
	
	.color-options label{
		display: flex;
		align-items: center;
		width: 25%;
		margin-bottom:20px;
	}
	
	.color-options br{
		display: none;
	}
	.color-options p{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.form_contatto_desktop{
		display: block;
	}
	
	.form_contatto_mobile{
		display: none;
	}

}
@media only screen and (min-width:1600px) {
	
	#presentazione_azienda .bigtext{
		font-family: var(--albert);
		font-size: 8.5rem;
		font-weight: 600;
	}
	
	#plus_emmebi .box_plus p{
		height: 120px;
	}
	
	.box_plus{
		padding: 50px;
	}
	
	.h1{
		font-family: var(--albert); /* per bigtitles */
		font-weight: 500;
		font-size:5.8rem;
		line-height: 0.85;
		color: var(--black);
	}
	
	h2,.h2{
		font-family: var(--wix);
		font-weight: 600;
		font-size:2.7rem;
		line-height: 1.3;
		color: var(--black);
	}
	
	h3,.h3{
		font-family: var(--wix);
		font-size: 2.2rem;
		font-weight: 600;
		line-height: 1.3;
	}
	
	h4,.h4{
		font-family: var(--albert);
		font-size: 1.7rem;
		font-weight: 500;
		line-height: 1.1;
	}
}

