/* @import url('https://rsms.me/inter/inter.css');  */
@import url('https://fonts.googleapis.com/css?family=Inter:300,400,500,700&display=swap');
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) 
	{
  		html { font-family: 'Inter', sans-serif; }
	}

html, body { height: 100%; scroll-behavior: smooth;	} 

*{
	padding: 0px;
	margin: 0px;
	border: 0;
	font-family: inherit;
	box-sizing: border-box;
/*	transition: all 0.2s ease; */

}

body {
	font-weight: 400;
	font-size: 0.94rem;
	line-height: 1.4;
	color: #F5F5F7;
	width: 100%;
	background-color: #000;
}

img {
	max-width: 100%;
	height: auto;
}


/* grids
--------------------------------------------- */

.container {
	width: 90%;
	margin: auto;
   max-width: 1140px;
}

.card {
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: .25rem;
	padding: 15px;

}

.container-grid .row {
	display: grid;
}

.row-1 {	grid-template-columns: 1fr; }
.row-1-1 {	grid-template-columns: repeat(2, 1fr); }
.row-1-1-1 {	grid-template-columns: repeat(3, 1fr); }
.row-1-1-1-1 {	grid-template-columns: repeat(4, 1fr); }
.row-1-1-1-1-1 {	grid-template-columns: repeat(5, 1fr); }
.row-1-1-1-1-1-1 {	grid-template-columns: repeat(6, 1fr); }

.row-1-2 {	grid-template-columns: 1fr 2fr; }
.row-2-1 {	grid-template-columns: 2fr 1fr; }
.row-1-3 {	grid-template-columns: 1fr 3fr; }
.row-3-1 {	grid-template-columns: 3fr 1fr; }
.row-1-2-2 {	grid-template-columns: 1fr 2fr 2fr; }
.row-1-1-3 {	grid-template-columns: 1fr 1fr 3fr; }
.row-3-2-1 {	grid-template-columns: 3fr 2fr 1fr; }

.row-minmax { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  }

.container-grid .row {
	grid-column-gap: 30px;
}

@media only screen and (max-width: 576px) {	
	.container-grid .row-sm 
	
		{
		display: block;
		width: 100%;
		}
	}

@media only screen and (max-width: 768px) {	
	.container-grid .row-md 
	
		{
		display: block;
		width: 100%;
		}
	}
	
@media only screen and (max-width: 992px) {	
	.container-grid .row-lg 
	
		{
		display: block;
		width: 100%;
		}
	}

@media only screen and (max-width: 1200px) {	
	.container-grid .row-xl 
		{
		display: block;
		width: 100%;
		}
	}


/* general
--------------------------------------------- */
	

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.bg-gray {
	background-color: #F4F4F4;
	color: #1d1d1f;
}

.bg-dark-gray {
	background-color: #0A0A0A;
}

.full-with {
	width: 100%;
}

.hidden {
	display: none;
}

h1 {
	font-size: 300%;
	font-weight:	600;
	padding: 0.5em 0px;
	text-shadow: 3px 3px 3px rgba(0,0,0, 0.5)
}

img.logo-h1 {
	width: 80%;
}

h2 {
	font-size: 250%;
	font-weight: 300;
	padding: 0.5em 0px;
}

h3 {
	font-size: 150%;
	font-weight:	400;
	padding: 0.5em 0px;
}

.subtitle {
	font-size: 150%;
	max-width: 36em;
	margin: auto;
}

a {	
	color: #fff;
}

.nounderlinea a {
	text-decoration: none;
}

a:hover img {
	opacity: 0.9;
}

.divider {
	display: block;
	width: 60px;
	border-bottom: 6px solid #2D383E;
	margin: 20px 0px 20px 0px;
}



/* 
--------------------------------------------- */

.header {
	background-color: #fff;
	position: fixed;
	width: 100%;
	padding: 10px 0px 0px 0px;
	border-bottom: 1px solid #000;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
	z-index: 10;
	background-color: #0A0A0A;
}

.header-top {
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
}

.header-top::after {
	display: block;
	clear: both;
	content: "";
}

.logo {
	width: 200px;
	max-width: 50%;
	display: block;
	padding: 0px 0px 0px 0px;
	margin-right: 20px; 
	float: left;
	display: inline-block;
}

.flag {
	height: 12px;
	width: 15px;
}

/* menu
--------------------------------------------- */

.header-bottom {
	background-color: #141416;
}

#menu {
	text-align: center;
}

#menu li , #menu-contact li {
	list-style: none;
	display: inline-block;
	padding: 0px 0px;
	position: relative;
}	

#menu a:hover , #menu-contact a:hover , .menu-2 a:hover {
	opacity: 0.8;
}

.menu-2 {
	display: block;
	float: right;
	font-weight: 500;
}

.menu-2 li {
	list-style: none;
	display: inline-block;
}

.menu-2 a , #menu a {
	text-decoration: none;
	color: #F5F5F7;
	padding: 0.7em;
	margin: 4px;
	display: inline-block;
}

#menu a {
	color: #F5F5F7;
	font-weight: 500;
}

#menu a:hover {
	color: #F5F5F7;
}


.button {
	border-radius: 3px;
	border: 1px solid #0044AA;
	font-size: inherit;
	padding: 0.7em;
	cursor: pointer;
	display: inline-block;
	margin-top: 2px;
	margin-bottom: 2px;
}

a.button , .button a {
	text-decoration: none;
	color: #0044AA;
	font-weight: 700;
}

.button-full , #menu a.button-full ,  .menu-2 a.button-full {
	background-color: #0044AA;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	color: #FFF !important;
}

a.button-full:hover , .button-full:hover {
	background-color: #1A73E8;
}

.mobile-only {
	display: none !important;
}





#menu ul {
	display: none;
}

#menu li:hover ul {
	display:	block;
	position: absolute;
	width: 300px;
	z-index: 5;
	background-color: rgba(0,0,0,0.95);
	padding: 1em;
	left: 0px;
}

#menu li:hover ul li {
	display: block;
	text-align: left;
	padding: 0px;
}

#menu li ul li a {
	padding: 0.2em;
	color: #fff;
	display: block;
}

#menu_top_prodotti:hover ul li a:hover {	
	text-decoration:	underline;
}



/*	================================================================ */

.main {
	padding-top: 132px;
}

p {
	padding: 0.5em 0px;
}

.main ul li {
	margin-left: 14px;
	padding: 0.5em 0px;
}

table {
	width: 100%;
	 border-collapse: collapse;
}

.table-tecnica tr td {
	border-bottom: 1px solid black;
	padding: 0.5em;
}

tr:nth-child(even) {background: #F4F4F4}
tr:nth-child(odd) {background: #FFF}


/*	================================================================ */

	#big_header { 
		position: relative;
	}

	#big_header_bg {
		background-position: center top;
		background-attachment:	fixed;
		background-repeat: no-repeat;
		opacity: 0.2;
		background-size: cover;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		z-index: -1;
		/*
		filter: grayscale(100%);
		*/
	}
	

/*	================================================================ */

.footer_contatti_box {
	text-align: center;
	background-color: #FFBF00;
	background-color: #0044AA;
	padding: 30px 0px;
}

.footer_contatti {
	background-color: #FFF;
	padding: 30px 30px;
	margin: 30px auto;
	color: #212529;
}

.footer_contatti a {
	color: inherit;
}

.noteprivacy {
	opacity: 0.5;
}

/*	================================================================ */

.subfooter {
	padding: 30px 0px 40px 0px;
/*	background-color: #1A1A1A; */
	color: white;
	border-top: 2px solid black;
}

.subfooter a {
	color: #FFF;
}

.subfooter a:hover {
	text-decoration: none;
}


/*	================================================================ */

.iframe-560-315 {
	position: relative;
	width: 100%;
	height: 0px;
	padding-bottom: 57%;
}

.iframe-video-youtube {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}			


/*	================================================================ */

#menu_swapper {
		display: none;
		float: right;
		margin-right: 20px;
		cursor: pointer;
		margin-top: 8px;
		padding: 5px 10px;
	}

#menu_swapper img {
	margin-right: 10px;
}

#menu_swapper:hover {
	background-color:	#252525;
}

.mini-icon {
	height: 10px;
	margin-right: 10px; 
}

/* ============================================================= */

label {
	margin: 2em 0px 0.5em;
	display: block;
	text-align: left;
	font-weight: bold;
}



input, textarea, select {
	margin: 0px auto;
	padding: 0px;
	background-color: White;
	outline: none;
	border: 1px solid #FFBF00;
	border: 1px solid grey;
	font-family: 	inherit;
	font-size: 100%;
	padding: 1em;
	line-height: 1.5em;
	border-radius: 3px;
	display: block;
	width: 100%;
	transition: all 0.2s ease;
	}

input[type='checkbox'] 
	{
		display: inline;
		width: auto;
	}

.inline {
	display: inline !important;
}	


input[type='reset'] 
	{
		display: inline;
	}
	
textarea {
	height: 11.4em;
}


input , textarea
	{
	box-shadow: 0 0 0 3px #F4F4F4;
	color: black;
	}
	
input:hover , textarea:hover
	{
	box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.2);
	}

	

/* ============================================================= */


#lightbox_viewer_box > * , #lightbox_img_box > * {
	box-sizing: border-box;
}

#lightbox_viewer_closer_2 {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	text-align: center;
	z-index: 20;
	background-color: rgba(0, 0, 0, 0.85);
}
			
#lightbox_viewer_closer {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	text-align: center;
	z-index: 21;
}

#lightbox_img_box {
	animation-iteration-count:1;
	animation:slightbox 0.1s;
}

@keyframes slightbox
{
	 0%   {
		opacity: 0.1;
	 } 
	 
	 50%   {
		opacity: 100.0;
	 } 
	 
}

			
#lightbox_img_box {
	display: inline-block;
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
	top: 5%; 
	left: 0;  
	right: 0;  
	margin: auto;	
	/*
	animation:slightbox 0.7s;
	animation-iteration-count:1;
	*/
	position: relative;
}	

#lightbox_img_box img {		
	max-width: 100%;
	max-height: 85vh;
	position: relative;
	top: 0px;
	left: 0px;
	z-index: 24;
	border: 1px solid rgba(255, 255, 255, 0.50);
	animation:slightbox 0.7s;
	animation-iteration-count:1;
	background-color: white;
	vertical-align: top;
}
	
	
#lightbox_viewer_closer img:hover {
	opacity: 1;
}	

	
a#lightbox_viewer_prev , a#lightbox_viewer_next {
	display: block;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 45%;
	z-index: 26;
	transition: all 0.2s ease;
	/* background-color: rgba(0,0,0,0.3); */
	text-decoration: none;
	color: #fff;
	font-size: 60px;
	/*	padding-top: calc(25% - 20px); */
	opacity: 0.5;
	outline: 0;
}

a#lightbox_viewer_prev svg , a#lightbox_viewer_next svg {
	position: absolute;
  	top: 50%;
	transform: translateY(-50%);
}

a#lightbox_viewer_next svg {
  	right: 20px;
}

	
a#lightbox_viewer_prev {
	text-align: left;
	padding-left: 20px;
}

a#lightbox_viewer_next {
	text-align: right;
	padding-right: 20px;
}		
		
a#lightbox_viewer_next {
	left: auto;
	right: 0px;
}

a:hover#lightbox_viewer_prev {
	/* background-color: rgba(0, 0, 0, 0.1); */
	/* background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0)); */
	opacity: 0.8;
}	

a:hover#lightbox_viewer_next {
	/* background-color: rgba(0, 0, 0, 0.1); */
	/* background-image: linear-gradient(to right, rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.5)); */
	opacity: 0.8;
}
	
#lightbox_viewer_closer_top {
	display: block;
	background-color: rgba(0, 0, 0, 0.85);
	position: absolute;
	z-index: 28;
	top: -10px;
	right: -10px;
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding: 7px 12px;
	color: #fff;
	border-radius: 50%;
}


#lightbox_label {
	position: absolute;
	z-index: 28;
	top: 100%;
	left: 0%;
	width: 100%;
	font-size: 12px;
	text-decoration: none;
	padding: 7px 12px;
	color: #fff;
}


/* ============================================================= */

/*	
@media only screen and (max-width: 479px) {
*/

@media only screen and (max-width: 800px) {

	.main {
		padding-top: 60px;
	}

	.menu-2 {
		display: none;
	}

	#menu_swapper {
		display: block;
	}
	
	.box_nav #menu {
		display: none;
	}
	
	.box_nav_show #menu {
		display:	block;
		max-height: 80vh;
		overflow: auto;
		clear: both;
		padding-top: 0em;
		padding-bottom: 2em;
	}
	
	#menu li:hover ul {
		display:	none;
	}
	
	#menu li:hover ul li {
		display:	none;
	}
	
	#menu li {
		display: block;
		text-align: center;
	}
	
	#menu li a {
		display: block;
		padding: 0.35em;
	}
	
	.mobile-only { display: block !important; }
	
	}
	
	
/* ============================================================= */
	
canvas {
  display: block;
  vertical-align: bottom;
}
/* ---- tsparticles container ---- */
#tsparticles {
  position: absolute;
  width: 100%;
  height: 100%;
  animation:myfirst 4s;
  animation-iteration-count:1;
}

.intro-huge {
  width: 100%;
  padding-top: 15vh;
  padding-bottom: 35vh;
}

.frame-fade-in {
/* 	opacity: 0%; */
}

@keyframes myfirst
	{
			0%   { opacity: 0%; }
			100%   { opacity: 100%; }
	}

#tsparticles_fader {
	display: block;
	width: 100%;
	height: 300px;
	position:	absolute;
	bottom: 0px;
	background-image: url(tsparticles_fader.png);
	background-repeat: repeat-x;
	background-position: center bottom;
}
	
/* ============================================================= */

#icon-social-box a , .icon-social-box a {
	text-decoration: none;
	color: white;
}

#icon-social-box img , .icon-social-box img {
	max-width: 100%;
	padding: 10px;
	margin: 10px auto;
}

#a_1 , .a_1 { box-shadow: 0px 0px 5px red;}
#a_1:hover , .a_1:hover { box-shadow: 0px 0px 10px red;}

#a_2 , .a_2  { box-shadow: 0px 0px 5px #15A3FA;}
#a_2:hover , .a_2:hover { box-shadow: 0px 0px 10px #15A3FA;}

#a_3 , .a_3  { box-shadow: 0px 0px 5px #D32681;}
#a_3:hover , .a_3:hover { box-shadow: 0px 0px 10px #D32681;}

#a_4 , .a_4  { box-shadow: 0px 0px 5px #0A66C2;}
#a_4:hover , .a_4:hover { box-shadow: 0px 0px 10px #0A66C2;}

#icon-social-box , .icon-social-box {
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
}

#icon-social-box img , .icon-social-box img {
	margin: 10px;
	border-radius: 15px;
}
