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

html {
  scroll-behavior: smooth;
}

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, .big p{
	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.7rem;
	color: var(--black);
}

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

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

p{
	font-size:17px;
	margin: 0;
	padding:0;
}

.contenuto p{
	padding-bottom:10px;
}


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

.container-left{
	padding-left: 5vw;	
	padding-right: 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);
}

.pl-fluid{
	padding-left: 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;
}

.pb40{
	padding-bottom:30px;
}

.pb30{
	padding-bottom:30px;
}

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

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

.pb20{
	padding-bottom:10px;
}

.items-end .w40{
	margin-top:30px;
}

/* Loader full screen */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--blue);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	overflow: hidden;
	transition: transform 0.4s ease;
}

/* Contenitore interno */
.loader-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Logo centrale */
.loader-logo {
	width: 220px; 
	margin-bottom: 25px;	
}

/* Cerchio spinner */
.spinner {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(255,255,255,0.5);
	border-top-color: #1e90ff; /* colore animazione */
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

/* Animazione pulsante logo */
@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.1); opacity: 0.8; }
}


/* 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:50;
	width:100%;
	margin: 0 auto;	
}

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

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

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

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

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

#header .navbar-nav li a{
	color:#fff;
	font-family: var(--wix);
	margin-left: 25px;
	font-size:18px;
}

#header .navbar-nav svg{
	position: relative;
	bottom: 2px;
	left:3px;
}

/* menu prodotti in apertura */

#prodotti-menu{
	width: 100%;
	height: 70vh;
	position: absolute;
	top:-70vh;
	left:0;
	opacity:0;
	visibility: hidden;
	display: flex;
	align-content: center;
	justify-content: center;
	transition: 0.3s;
	background-color: var(--blue);
}

.header-menu-open #prodotti-menu{
	top:0;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
	min-height: 100vh;
}

#search-menu{
	width: 100%;
	height: 40vh;
	position: absolute;
	top:-30vh;
	left:0;
	opacity:0;
	visibility: hidden;
	display: flex;
	align-content: center;
	justify-content: center;
	transition: 0.3s;
	background-color: var(--blue);
	
}



#search-menu input{
	width: 80%;
	margin: 0 10%;	
}

.header-search-open #search-menu{
	top:0;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
	min-height: 450px;
}

#prodotti-menu h3{
	color: var(--white);
}

#header #prodotti-menu ul{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	list-style: none;
	padding-left:0;
	margin-left:0;
}

#prodotti-menu ul li{
	width:100%;
	padding-bottom: 4px;
	padding-top: 4px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	transition:0.3s;
	margin-top: 9px;
}

#prodotti-menu ul li a{
	padding-left:0;
	margin-left:0;
	font-size: 1rem;
	transition: 0.3s;
	display: block;
	// text-transform: capitalize;
	opacity:0.55;
}

#prodotti-menu ul li:hover{
	color: var(--white);
	transition:0.3s;
}

#prodotti-menu ul li a:hover{
	opacity:1;
	transition: 0.3s;
}

#search-menu, #prodotti-menu{
	display: none;
}

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

/* colore menu_black */

.menu_black #header .navbar-nav li a{
	color: var(--blue);
} 

.menu_black #header svg g, .menu_black #header svg path{
	stroke: var(--blue);
}

.menu_black #header.border-bottom{
	border-bottom-color: rgba(0, 51, 102, 0.4);
}

.menu_black .logo_black_menu{
	display: block;
}

.menu_black .logo_white_menu{
	display: none;
}

.menu_black .openclose .uno, .menu_black .openclose .due, .menu_black .openclose .tre{
	background-color: var(--blue);
}

.menu_transparent .logo_black_menu{
	display: none;
}

.menu_transparent .logo_white_menu{
	display: block;
}

/* apertura sub menu */

.header-menu-open #header .navbar-nav li a, .header-search-open #header .navbar-nav li a{
	color: #fff;
}

.header-menu-open #header .navbar-nav path, .header-menu-open #header .search-menu g, .header-menu-open #header .search-menu path, .header-search-open #header .navbar-nav path, .header-search-open #header .search-menu g, .header-search-open #header .search-menu path{
	stroke:#fff;
}

.header-search-open #header .openclose .iconbar{
	background-color: var(--white);
}

.navmenu_open #header .search-menu g, .navmenu_open #header .search-menu path{
	stroke:#fff;
}

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

#header .search-menu.mobile {
	position: absolute;
	right: 8%;
	position: absolute;
	top: 38%;
	right: 12%;
	z-index: 90;
	cursor: pointer;
	display: block;
	margin-left: 0;
	margin-top: 0;
	margin-right:0;
}

#header .nav{
	display: none;
}

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

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

.nav-mobile svg{
	display: none;
}

.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;	
	font-size:17px;
}

.navmenu_open .nav-mobile{
	top:0;
	transition: 0.5s;
}
#header .openclose {
	position: absolute;
	top: 38%;
	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: 35px;
	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-menu 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 #menu-gdpr-menu {
	margin: 0;
	list-style-type: none;
	padding: 0;
}

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

#footer .social-icon svg{
	position: relative;
	top: -7px;
}
#footer .social-icon svg,#footer .social-icon path{
	width: 40px;
	height: auto;
	fill:#fff;
	transition:0.3s;
}

#footer .social-icon svg:hover{
	transform: scale(1.08);
	transition:0.3s;
}

/* PAGINE */

.uppercase{
	text-transform: uppercase;
}

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

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

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

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

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

hr.no-padding{
	padding: 0;
}

hr.no-margin{
	margin:0;
}
hr{
	border-top: 0.5px solid var(--blue);
}
.white-background{
	background-color: var(--white);
	color: var(--blue);
}

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

.blue-background p, .blue-background a, .blue-background label, .blue-background h1, .blue-background a, .blue-background h2, .blue-background h3, .blue-background h5{
	color: var(--white);
}

.blue-background .white-background h3, .blue-background .white-background p, .blue-background .white-background a, .blue-background .white-background h4, .blue-background .white-background h5{
	color: var(--blue) !important;
}

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

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

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

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

#table_azienda .seconda_colonna .round-image, #table_azienda .prima_colonna .round-image{
	margin-bottom:30px;
}
#table_azienda .seconda_colonna{
	border: 1px solid var(--blue);
	height: 300px;
}

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

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

#hero_section .button-acquisto{
	display: inline-block;
	font-family: var(--albert);
	background-color: #e57b22;
	color:#fff;
	border-radius:30px;
	position: fixed;
	top:50%;
	transform: translateY(-50%);
	right:-13px;
	z-index: 10;
	padding: 12px 22px;
	transform: rotate(270deg);
	transform-origin: top;
	transition: 0.3s;
	box-shadow: 0 0 5px rgba(225, 97, 44, 0.2);
}

#hero_section .button-acquisto:hover{
	background-color: #e1612c;
	color: var(--white);
	transition: 0.3s;
}

#hero_section .testo_hover{
	opacity:0;
	visibility: hidden;
	display: none;
}

#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.7) 0%, rgba(0, 51, 102, 0.55) 100%);
}

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

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

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

#breadcrumbs .breadcrumb_last{
	opacity: 0.5;
}

.tax-collezione #breadcrumbs, .tax-collezione #breadcrumbs a{
	color: var(--blue);
	font-weight: 600;
}

#breadcrumbs a{
	position: relative;
	transition: 0.3s;
	font-style: italic;

}

#breadcrumbs a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.3);
	opacity: 0;
}

.tax-collezione #breadcrumbs a::after{
	background-color: rgba(14, 45, 99, 0.4);
}

#breadcrumbs a:hover::after{
	opacity: 1;
	transition: 0.3s;
}

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

.buttonempty{
	width: auto !important;
	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: transparent;
	border-radius: 30px;
	padding: 16px 40px;
	border: 1px solid var(--white);
	margin-right:10px;
	transition:0.3s;
}

.buttonempty.active, .buttonempty:hover{
	background-color: var(--white);
	color: var(--blue) !important;
	transition:0.3s;
}
.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;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.w70{
	width:100%;
}

.w80{
	width:80%;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.menu_margin{
	padding-top:110px;
}

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

#collezione .box_plus{
	border: 1px solid var(--blue);
}

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

.h100{
	height:100%;
}
.slide-collezioni .slick-prev{
	background-image: url(img/header/left.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: -50px;
	right: 40px;
	z-index: 1;
	outline: none;
	width: 18px;
	height: 22px;
}

.slide-collezioni .slick-next{
	background-image: url(img/header/right.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	border: none;
	color: transparent;
	position: absolute;
	top: -50px;
	right: 10px;
	z-index: 1;
	outline: none;
	width: 18px;
	height: 22px;
}

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

.wpcf7 form.sent .wpcf7-response-output{
	background-color: var(--blue);
	color: var(--white);
	padding: 10px 11px;
	margin-left:0;
	margin-right: 0;
	border: 1px solid var(--white);
}

.wpcf7-not-valid-tip{
	font-size: 0.9rem;
	padding-bottom: 12px;
	color: var(--white);
}

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

#elenco_realizzazioni_collezione h3{
	color: var(--blue);
}


.general-icon{
	width: 80px;
	height:auto;
}
.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;
}

hr.blue {
	border: none; 
	border-bottom: 0.5px solid var(--blue);
}

#banner_divisorio {
	height: 350px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius:15px;
}

.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: 45%;
	margin-bottom:20px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--blue);
	padding: 1%;
	margin: 1%;
}

.color-options label.active{
	background-color: #fff;
}

#contact_form .color-options label.active{
	background-color: rgba(255,255,255,0.45);
}

#contact_form .color-options {
	border: 1px solid #fff;
}

#contact_form #selezione_colore{
	color: var(--white);
}

#contact_form .color-options label{
	border: 1px solid #fff;
}


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

/* .opzioni-repeater{
	display: inline-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 94%;
	padding-top: 30px !important;
	padding-bottom: 30px !important;
} */

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

.radio-label {
	display: inline-block;
	width: 30px; 
	height: 30px; 
	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: #bdb7a9; }
.radio-panna { background-color: rgb(230, 214, 144);}
.radio-panna1 { background-color: rgb(249, 222, 203); }
.radio-panna2 { background-color: rgb(241, 220, 191); }
.radio-giallo1 { background-color: rgb(251, 206, 67); }
.radio-giallo2 { background-color: rgb(253, 176, 18); }
.radio-giallo3 { background-color: rgb(251, 167, 16); }
.radio-arancio { background-color: rgb(254, 95, 30); }
.radio-rosso { background-color: rgb(244, 83, 65); }
.radio-azzurro { background-color: rgb(67, 176, 226); }
.radio-blu1 { background-color: rgb(4, 19, 76); }
.radio-blu2 { background-color: rgb(14, 45, 99);}
.radio-blu-notte { background-color: rgb(21, 35, 61); }
.radio-verde1 { background-color: rgb(9, 83, 82); }
.radio-verde-militare { background-color: rgb(66, 70, 50); }
.radio-verde2 { background-color: rgb(21, 59, 44); }
.radio-grigio1 { background-color: rgb(146, 141, 135); }
.radio-grigio2 { background-color: rgb(124, 119, 113); }
.radio-grigio3 { background-color: rgb(131, 127, 128); }
.radio-grigio4 { background-color: rgb(85, 87, 86);}
.radio-argento { background-color: rgb(132, 123, 118); }
.radio-nero { background-color: #362f27; }
.radio-trasparente { background-color: #cecece; }
.radio-retinato { background-color: #587e93; }

#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%);
  }
}

.grecaptcha-badge{
	display: none !important;
}


@media(max-width:991px){
	#cmplz-manage-consent .cmplz-show{
		font-size: 12px;
		padding-top: 5px !important;
		padding-bottom: 5px !important;
		height: 35px !important;
	}
}

#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode{
	max-width: 100%;
}

#cmplz-document a, #cmplz-document label{
	color: var(--blue);
}

/*------------------------------------*\
	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;
	}
	
	h5,.h5{
		font-family: var(--albert);
		font-size: 1.1rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	.box_plus{
		padding: 30px;
		height: 210px;
		margin-bottom:0;
	}
	
	.page-template-template-home .box_plus{
		padding: 30px;
		height: 380px;
		margin-bottom:0;
	}
	
	
	.box_info{
		padding: 30px;
		height: 260px;
		margin-bottom:0;
	}
	
	.small{
		font-size: 0.8rem;	 
	}
	
	.items-end .w40{
		margin-top:0;
	}
	
	#header .nav{
		display: flex;
		z-index: 10;
	}
	
	#header #menu-menu-principale .current_page_item a{
		text-decoration: underline;
	}
	#header .openclose {
		display: none;
	}
	
	#header .navbar-brand{
		width: 300px;
		height: auto;
	}
	
	#hero_section{
		height: 100vh;
		
	}
	
	#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;
	}
	
	#header .search-menu.mobile{
		display: none;
	}
	
	#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 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%;
	}
	
	.w45{
		width:45%;
	}
	
	.w48{
		width:48.5%;
	}
	
	.w50{
		width:49%;
	}
	
	.w60{
		width:60%;
	}
	
	.w70{
		width:70%;
	}
	
	.w53{
		width:53%;
	}
	
	.w60{
		width:60%;
	}
	
	.w68{
		width:68%;
	}
	
	.w90{
		width:87%;
	}
	.w100{
		width:100%;
	}
	.w30{
		width:30%;
	}

	.pb30{
		padding-bottom:30px;
	}
	
	.pb40{
		padding-bottom:40px;
	}
	.m-auto{
		margin: 0 auto;
	}
	
	.big, .big p{
		font-size: 1rem;   
	}
	
	.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%);
	}
	
	#hero_section .testo_hover{
		display: inline-block;
		font-family: var(--albert);
		background-color: rgba(255,255,255,0.7);
		color:var(--blue);
		border-radius:20px;
		position: fixed;
		top:50%;
		transform: translateY(-50%);
		right:110px;
		z-index: 10;
		padding: 50px;
		opacity:0;
		visibility: hidden;
		transition: 0.3s;
	}
	
	#hero_section .testo_hover.visible{
	  opacity:1;
	  visibility: visible;
	  transition:0.3s;
	}
	
	#banner_divisorio {
		height: 550px;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		border-radius:30px;
		overflow: hidden;
	}
	
	.seconda_colonna{
		border: 1px solid var(--blue);
		height: auto !important;
	}
	
	.seconda_colonna .p-fluid{
		justify-content: space-between;
		display: flex;
		height: auto;
		flex-direction: column;
	}
	
	#table_azienda .seconda_colonna .round-image, #table_azienda .prima_colonna .round-image{
		margin-bottom:0;
	}
	
	.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 var(--blue);
		padding: 30px 30px 10px 30px;
		margin-top:30px;
		margin-bottom:30px;
	}
	
	.color-options label{
		display: flex;
		align-items: center;
		width: 20%;
		margin-bottom:20px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		border: 1px solid var(--blue);
		padding: 1%;
		margin: 1%;
	}
	
	.color-options label img{
		width: 65px;
		height: auto;
		margin-bottom: 6px;
	}
	
	.color-options br{
		display: none;
	}

	#hero_section .button-acquisto{
		right:0;
	}
	
	.form_contatto_desktop{
		display: block;
	}
	
	.form_contatto_mobile{
		display: none;
	}
	
	.elenco-search, .collezioni-posts {
		display: flex;
		flex-wrap: wrap;
		gap: 2%; 
	}
	
	textarea{
		min-height: 163px;
	}
	
	.slide-collezioni .slick-prev{
		background-image: url(img/header/left.svg);
		background-repeat: no-repeat;
		background-color: transparent;
		border: none;
		color: transparent;
		position: absolute;
		top: -50px;
		right: 5%;
		z-index: 1;
		outline: none;
		width: 18px;
		height: 22px;
	}
	
	.slide-collezioni .slick-next{
		background-image: url(img/header/right.svg);
		background-repeat: no-repeat;
		background-color: transparent;
		border: none;
		color: transparent;
		position: absolute;
		top: -50px;
		right: 3%;
		z-index: 1;
		outline: none;
		width: 18px;
		height: 22px;
	}
	
	
	#terms-menu .elenco_pvc, #terms-menu .elenco_stampa{
		margin-top: 0;
	}
	
	#header #prodotti-menu ul{
		margin-top:10px;
	}
	
	#terms-menu .button.mt30{
		margin-top: 15px;
	}

}
@media only screen and (min-width:1600px) {
	
	.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.8rem;
		line-height: 1.3;
		color: var(--black);
	}
	
	h3,.h3{
		font-family: var(--wix);
		font-size: 2.3rem;
		font-weight: 600;
		line-height: 1.3;
	}
	
	#hero_section .h3{
		font-size: 2.5rem;
	}
	
	h4,.h4{
		font-family: var(--albert);
		font-size: 1.8rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	h5,.h5{
		font-family: var(--albert);
		font-size: 1.35rem;
		font-weight: 500;
		line-height: 1.1;
	}
	
	p{
		font-size:20px;
	}
	
	#hero_section .slide-text .container{
		max-width:1200px;
		margin: 0 auto;
	}
	
	#header .navbar-nav li a{
		color:#fff;
		margin-left: 40px;
		font-size:20px;
	}
	
	#header .search-menu{
		margin-left:40px;
		margin-right: 30px;
	}
	
	#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;
	}
	
	#banner_divisorio {
		height: 650px;
		min-height: 80vh;
	}
	
	#spedizione_express{
		height: 600px;
	}
	
	.page-template-template-home .box_plus{
		height: 340px;		
	}
	
	.items-end{
		align-items: end;
		margin-top:30px;
	}
	
	.big, .big p{
		font-size: 1.25rem;   
	}
	
	#contact_form, #banner_divisorio{
		background-attachment: fixed;
	}
	
	.collezioni-posts {
		display: flex;
		flex-wrap: wrap;
		gap: 2%; 
	}
	#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode{
		max-width: 1000px;
	}
	
}

@media only screen and (min-width:1800px) {
	.collezioni-posts {
		display: flex;
		flex-wrap: wrap;
		gap: 2%; 
	}
	
	#prodotti-menu ul li a{
		font-size: 1.1rem;
	}
	
	#terms-menu .elenco_pvc, #terms-menu .elenco_stampa{
		margin-top: 35px;
	}
	
	#terms-menu .button.mt30{
		margin-top: 40px;
	}
	
	#header #prodotti-menu ul{
		margin-top:20px;
	}
	
	
	
}

