@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

@import url('font-awesome.min.css');

.indexImg
{			
	width: 100%;
}

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	body
	{
		background: #fff;
	}

	.text
	{
		/*font-family: 'Raleway', sans-serif;*/
		font-family: 'Open Sans', sans-serif;
		color: #898e96;
	}

	h1,h2,h3,h4,h5,h6, p
	{
		font-weight: 700;
		color: #011049;
	}
	
	.link-background
	{
		margin: 0 auto; 
		max-width: 500px; 
		display: flex; 
		justify-content: center;
		margin-bottom: 2em;
	}

	a.left
	{
		color: #011049;
		font-size: 1.2em;
		font-family: 'Open Sans', sans-serif;
		font-weight: 700;
		position: relative;
		text-decoration: none;
	}

	a.left:before {	
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: 0;
		left: 0;
		background-color: #011049;
		visibility: hidden;
		transform: scaleX(0);
		transition: all 0.3s ease-in-out;
	}

	a.left:hover:before {
		visibility: visible;
		transform: scaleX(1);
	  }
	
	.slideshow{
		margin-top: 1em;
		}

	.slidevertical img{
		max-width: 800px; 
		margin: 0 auto;
		display: flex; 
		justify-content: center;
	}

	.show  {
		display: block; 
		max-width:1200px; 
		max-height:800px; 
		width: auto; 
		height: auto;
		}

	.anchor{
		color: #011049;
		text-decoration: none;
	}

	.anchor i:hover, .anchor h3:hover
		{
		text-decoration: none;
		color:	#fff;
		}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .text
		{
			color: inherit;
			text-decoration: none;
		}
		
	strong, b
	{
		font-weight: 700;
		color: #696e76;
	}
	
	em, i
	{
		font-style: italic;
	}

	a
	{
		color: #011049;
		
	}

	sub
	{
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup
	{
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}
	
	hr
	{
		border: 0;
		border-top: solid 1px #ddd;
	}
	
	blockquote
	{
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	p, ul, ol, dl, table
	{
		margin-bottom: 1em;
	}

	header
	{
		margin-bottom: 3em;
		margin: 0px auto 2em auto;
		
	}

		header .byline
		{
			display: block;
			margin: 0.5em 0 0 0;
			padding: 0 0 0.5em 0;
		}
		
	footer
	{
		margin-top: 1em;
	}

	br.clear
	{
		clear: both;
	}

	/* Sections/Articles */
	
		section,
		article
		{
			margin-bottom: 3em;
		}
		
		section > :last-child,
		article > :last-child
		{
			margin-bottom: 0;
		}

		section:last-child,
		article:last-child
		{
			margin-bottom: 0;
		}

		.row > section,
		.row > article
		{
			margin-bottom: 0;
		}

	/* Images */

		.image
		{
			display: inline-block;
		}
		
			.image img
			{
				display: block;
				width: 100%;
				border-radius: 5px;
			}

			.image.featured
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.full
			{
				display: block;
				width: 100%;
			}
			
			.image.left
			{
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image.centered
			{
				display: block;
				margin: 0 0 2em 0;
			}

				.image.centered img
				{
					margin: 0 auto;
					width: auto;
				}

		.image-border
		{
			position: relative;
		}

		.image-border .border
		{
			position: absolute;
			top: 0px;
			left: 0px;
			width: 100%;
			height: 100%;
		}

		.image-border2
		{
			position: absolute;
			z-index: 2;
		}
		
		

	/* Lists */

		ul.default
		{
			list-style: disc;
			padding-left: 1em;
		}
		
			ul.default li
			{
				padding-left: 0.5em;
			}		
		
			ul.style1 li
			{
				padding: 1.5em 0 0 0;
				margin: 1.5em 0 0 0;
				border-top: solid 1px rgba(0,0,0,0.1);
			}
			
			ul.style1 li:first-child
			{
				padding-top: 0;
				margin-top: 0;
				border-top: none;
				box-shadow: none;
			}
			
			ul.style1 a
			{
				text-decoration: none;
				color: #898e96;
			}
			
			ul.style1 a:hover
			{
				text-decoration: underline;
			}
	
			ul.style2 > li
			{
				position: relative;
				padding: 0.7em 0 0.7em 2.5em;
			}
			
				ul.style2 > li:before
				{
					position: absolute;
					left: 0;
					top: 0.35em;
					display: block;
					color: #011049;
					width: 30px;
					height: 30px;
					line-height: 30px;
					text-align: center;
					font-size: 1.4em;
				}

				ul.style2 > li:first-child
				{
					padding-top: 0;
					border-top: none;
				}
				
					ul.style2 > li:first-child:before
					{
						top: 0;
					}
	
				ul.style2 a
				{
					text-decoration: none;
					color: #898e96;
				}
	
	
				ul.style2 a:hover
				{
					text-decoration: underline;
				}

			ul.style3 li
			{
				padding: 1.5em 0 1.5em 0;
				border-top: solid 1px rgba(0,0,0,0.1);
			}
			
				ul.style3 li:first-child
				{
					padding-top: 0;
					border-top: none;
				}
	
			ul.style3 a
			{
				text-decoration: none;
			}
	
	
				ul.style3 a:hover
				{
					text-decoration: underline;
				}

			ul.style3 h3
			{
				margin-bottom: 1em;
				text-transform: uppercase;
				font-weight: 700;
			}
			
			ul.style3 .list-icon
			{
				display: inline-block;
				margin-top: 0.20em;
				margin-right: 1em;
				padding-bottom: 2em;
				background: #011049;
				width: 56px;
				height: 56px;
				font-size: 1.5em;
				text-align: center;
				line-height: 56px;
				border-radius: 5px;
				color: #FFF;
			}

			ul.style3 .list-icon
			{
				display: inline-block;
				margin-top: 0.20em;
				margin-right: 1em;
				padding-bottom: 2em;
				background: #011049;
				width: 56px;
				height: 56px;
				font-size: 1.5em;
				text-align: center;
				line-height: 56px;
				border-radius: 5px;
				color: #FFF;
			}

			ul.icons > li
			{
				position: relative;
				padding: 2em 0em 2em 5em;
				border-top: solid 1px rgba(0,0,0,0.1);
			}
			
			ul.icons > li:before
			{
				position: absolute;
				left: 0;
				top: 1.2em;
				display: block;
				background: #011049;
				color: #FFF;
				width: 56px;
				height: 56px;
				line-height: 56px;
				text-align: center;
				font-size: 2em;
				border-radius: 5px;
				cursor: default;
			}

			ul.icons > li:first-child
			{
				padding-top: 0;
				border-top: none;
			}
			
				ul.icons > li:first-child:before
				{
					top: 0;
				}

			ul.icons h3
			{
				margin-bottom: 0.50em;
				text-transform: uppercase;
				font-weight: 700;
				font-size: 1em;
			}

		ul.social
		{
			text-align: center;
		}
		
			ul.social li
			{
				display: inline-block;
				padding: 0px 3px;
			}
		
			ul.social li span
			{
				display: none;
			}
			
			ul.social li a
			{
				display: inline-block;
				color: #FFF;
			}
			
			ul.social li a:before
			{
				display: inline-block;
				width: 30px;
				height: 30px;
				/*background: #011049;*/
				
				line-height: 30px;
				text-align: center;
				font-size: 1em;
				color: #FFFFFF;
				-moz-transition: background-color 0.25s ease-in-out;
				-webkit-transition: background-color 0.25s ease-in-out;
				-o-transition: background-color 0.25s ease-in-out;
				-ms-transition: background-color 0.25s ease-in-out;
				transition: background-color 0.25s ease-in-out;
			}

			ul.info li
			{
				padding: 1.5em 0 1.5em 0;
				border-top: solid 1px rgba(0,0,0,0.1);
			}
			
			ul.info li:first-child
			{
				padding-top: 0;
				border-top: none;
				box-shadow: none;
			}
			
			ul.info h3
			{
				display: inline-block;
				padding-bottom: 0.50em;
				font-size: 1.2em;
			}
			
			ul.info a
			{
				text-decoration: none;
				color: #898e96;
			}
			
			ul.info a:hover
			{
				text-decoration: underline;
			}

		ul.menu
		{
			cursor: default;
		}
		
			ul.menu li
			{
				display: inline-block;
				line-height: 1em;
				border-left: solid 1px #ddd;
				padding: 0 0 0 0.5em;
				margin: 0 0 0 0.5em;
			}
			
			ul.menu li:first-child
			{
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

		ul.actions
		{
			cursor: default;
		}
		
			ul.actions li
			{
				display: inline-block;
				margin: 0 0 0 0.5em;
			}
			
			ul.actions li:first-child
			{
				margin-left: 0;
			}

		ol.default
		{
			list-style: decimal;
			padding-left: 1.25em;
		}

			ol.default li
			{
				padding-left: 0.25em;
			}

	/* Meta */

		.meta
		{
			font-size: 0.70em;
		}
		
		.meta a
		{
			text-decoration: underline !important;
			color: #011049 !important;
		}
		
		.meta a:hover
		{
			text-decoration: none !important;
		}
		
		.meta .date
		{
			position: relative;
			display: inline-block;
		}

		.meta .date:before
		{
			opacity: 0.25;
			margin-right: 0.5em;
		}

		.meta .more
		{
			position: relative;
			display: inline-block;
			padding: 0em 0em 0em 1em;
		}

		.meta .more:before
		{
			content: '|';
			display: block;
			position: absolute;
			width: 16px;
			height: 16px;
			left: 0;
			top: 0;
			color: #898e96;
		}


	/* Forms */

			form input,
			form select,
			form textarea
			{
				-webkit-appearance: none;
			}
	
			form input[type=text],
			form input[type=password],
			form select,
			form textarea
			{
				-webkit-appearance: none;
				width: 100%;
				border: 0;
				padding: 0.90em;
				font-size: 1.2em;
				font-family: 'Open Sans', sans-serif;
				/*font-family: 'Noto Sans', sans-serif;*/
				font-weight: 300;
				border-radius: 6px;
				background: #fafafa;
				border: 1px solid #e8e8e8;
				-moz-transition: background-color 0.25s ease-in-out;
				-webkit-transition: background-color 0.25s ease-in-out;
				-o-transition: background-color 0.25s ease-in-out;
				-ms-transition: background-color 0.25s ease-in-out;
				transition: background-color 0.25s ease-in-out;
				outline: none;
			}
	
			form input[type=text]:focus,
			form input[type=password]:focus,
			form select:focus,
			form textarea:focus
			{
				background: #f0f2f5;
			}
			
			form textarea
			{
				height: 10em;
			}
			
			form .formerize-placeholder
			{
				color: #93989f !important;
			}
	
			form ::-webkit-input-placeholder
			{
				color: #93989f !important;
			}
	
			form :-moz-placeholder
			{
				color: #93989f !important;
			}
	
			form ::-moz-placeholder
			{
				color: #93989f !important;
			}
	
			form :-ms-input-placeholder
			{
				color: #93989f !important;
			}
	
			form ::-moz-focus-inner
			{
				border: 0;
			}
			
			form .button
			{
				margin-right: 1em;
			}
			
	/* Tables */
	
		table
		{
			width: 100%;
		}
		
			table.default
			{
				width: 100%;
			}
			
				table.default tbody tr:nth-child(2n+2)
				{
					background: #f4f4f4;
				}
				
				table.default td
				{
					padding: 0.5em 1em 0.5em 1em;
				}
				
				table.default th
				{
					text-align: left;
					font-weight: bold;
					padding: 0.5em 1em 0.5em 1em;
				}
			
				table.default thead
				{
					background: #444;
					color: #fff;
				}
				
				table.default tfoot
				{
					background: #eee;
				}
	/* Right side navigation */
		
		.elenco			
			{
			font-family: 'Open Sans', sans-serif;
			font-size:1.5em;
			line-height: 2.4em;
			font-style:italic;
			color:#011049;
			text-align: center;
			margin: 2.1em 0 0 2em;
			float:left;
			}
			

		.elenco a
		{
			border: 2px solid #011049;
			display: block;
			padding: 0.2em 0.7em 0.2em 0.7em;
			margin: 1.4em auto 1.3em auto;
			position: relative;
			border-radius: 50%;
			
			/* Ombre al testo */
			text-shadow: 0 0 1px #555;
 
			/* Bordi arrotondati */
			-webkit-border-radius: 40px 8px 40px 8px;
			-moz-border-radius: 40px 8px 40px 8px;
			-ms-border-radius: 40px 8px 40px 8px;
			-o-border-radius: 40px 8px 40px 8px;
			border-radius: 40px 8px 40px 8px;

			/* Ombre */
			-webkit-box-shadow: 0 6px 0 #011049, 0 8px 30px #a7d2e7;
			-moz-box-shadow: 0 6px 0 #011049, 0 8px 30px #a7d2e7;
			-ms-box-shadow: 0 6px 0 #011049, 0 8px 30px #a7d2e7;
			-o-box-shadow: 0 6px 0 #011049, 0 8px 30px #a7d2e7;
			box-shadow: 0 6px 0 #011049, 0 8px 30px #a7d2e7;
}
		
		
		.elenco a:hover
		{
			background:	#fff;
		}
		
	/* Buttons */
		
		.button
		{
			position: relative;
			display: inline-block;
			margin-top: 1em;
			padding: 0em 1em 0 1em;
			background: #a7d2e7;
			color: #fff !important;
			border-radius: 4px;
			border: 0;
			font-size: 1.1em;
			border-radius: 5px;
			line-height: 2.3em;
			text-decoration: none;
			font-weight: 700;
			-moz-transition: background-color 0.25s ease-in-out;
			-webkit-transition: background-color 0.25s ease-in-out;
			-o-transition: background-color 0.25s ease-in-out;
			-ms-transition: background-color 0.25s ease-in-out;
			transition: background-color 0.25s ease-in-out;
			text-align: center;
		}

			.button.icon:before
			{
				display: inline-block;
				position: relative;
				top: -0.15em;
				padding-right: 0.50em;
				font-size: 0.85em;
			}

			.button:hover
			{
				background: #011049;
			}
			
			.button:active
			{
				background: #2a61c8;
			}
		
			.button.alt
			{
				background: #292C31;
			}

				.button.alt:hover
				{
					background: #393C41;
				}
				
				.button.alt:active
				{
					background: #191C21;
				}
		
			.button.big
			{
				padding: 0.50em 1.5em;
			}
			
			.button.center
			{
				line-height: 2.3em;
				margin: 0px auto 1em auto;
				font-size: 1.8em;
				
			}
/* Frase er*/

		.frase
		{
			display: block;
			outline: 0;
			margin: 0px auto 1em auto;
			position: relative;
			border-radius: 50%;
			text-align: center;
			line-height: 60px;
			font-weight: 700;
			font-size: 1.3em;
		}
	/* Bubble Top */

		.bubble-top
		{
			display: block;
			outline: 0;
			margin: 0px auto 2em auto;
			width: 60px;
			height: 60px;
			background: #011049;
			position: relative;
			border-radius: 50%;
			text-align: center;
			line-height: 60px;
			font-size: 1.4em;
			font-weight: 700;
			color: #FFF;
			text-decoration: none;
			-moz-transition: background-color 0.25s ease-in-out;
			-webkit-transition: background-color 0.25s ease-in-out;
			-o-transition: background-color 0.25s ease-in-out;
			-ms-transition: background-color 0.25s ease-in-out;
			transition: background-color 0.25s ease-in-out;
		}

			.bubble-top:after
			{
				content: '';
				position: absolute;
				width: 0;
				height: 0;
				border-left: 10px solid transparent;
				border-right: 10px solid transparent;
				border-bottom: 15px solid #011049;
				left: 35%;
				top: -10px;
				-moz-transition: border-color 0.25s ease-in-out;
				-webkit-transition: border-color 0.25s ease-in-out;
				-o-transition: border-color 0.25s ease-in-out;
				-ms-transition: border-color 0.25s ease-in-out;
				transition: border-color 0.25s ease-in-out;
			}

			.bubble-top:hover
			{
				background: #a7d2e7;
			}

				.bubble-top:hover:after
				{
					border-bottom-color: #a7d2e7;
				}
			
			.bubble-top:active
			{
				background: #2a61c8;
			}		

				.bubble-top:active:after
				{
					border-bottom-color: #2a61c8;
				}

/*********************************************************************************/
/* Icons                                                                         */
/*********************************************************************************/

	.icon
	{
		text-decoration: none;
	}

		.icon:before
		{
			display: inline-block;
			font-family: FontAwesome;
			font-size: 1.25em;
			text-decoration: none;
			font-style: normal;
			font-weight: normal;
			line-height: 1;
			-webkit-font-smoothing:antialiased;
			-moz-osx-font-smoothing:grayscale;
		}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#header
	{
		position: relative;
		background: #edf3f5;
	}
	
/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

	#banner
	{
		color: #011049;
	}
	
		#banner header
		{
			text-align: center;
		}
		
		#banner header h2
		{
			color: #011049;
		}

			#banner header span
			{
				display: block;
				color: #011049;
			}
	
/*********************************************************************************/
/* Main                                                                          */
/*********************************************************************************/

	#main
	{
		position: relative;
		background: #edf3f5;
	}
	#main_2
	{
		position: relative;
		background: #edf3f5;
	}
	.recapiti span a
	{
		top: 2em;
	}
	
	
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
	
	#footer
	{
		position: relative;
		border-top: 1px solid #e6e7e7;
	}
	
	
/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

	#copyright 
	{
		position: relative;
		color: #575a5e;
		background: #eee;
	}
	
		#copyright .container
		{
			position: relative;
			border-top: 1px solid #cacdd2;
			border-bottom: 1px solid #cacdd2;
		}
	
		#copyright span
		{
			color: #575a5e;
		}
#copyright .telephone
	{
	font-size: 1.4em;
}
.telephone a { 
	text-decoration: none;
	} 
	
.social li a:hover i, .triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all 1.5s;
	-moz-transition: all 1.5s;
	-o-transition: all 1.5s;
	-ms-transition: all 1.5s;
	transition: all 1.5s;
}
.social i {
	color: #fff;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}
/*********************************************************************************/
/* Featured                                                                      */
/*********************************************************************************/
	
	#featured
	{
		position: relative;
		text-align: center;
	}
	
	
		#featured .pennant
		{
			display: inline-block;
			color: #011049;
			cursor: default;
		}
		
/*********************************************************************************/
/* Nuvolette                                                                */
/*********************************************************************************/		


	.cloud
	{
		background-color: #c9e0eb;
		width: 30%;
		border-radius: 50%;
		padding: 1%;
		margin: 1%;;
		float: left;
		display: block;
		
	}
	
	.cloud:hover
	 {
	 	background-color:#011049;
	 }
	 .cloud:hover a
	 {
		color: #fff;	 
	 }
	
	.line1
	{
		padding-bottom: 10%;
	}
	.line2
	{
		padding-bottom: 10%;
	}
	.line3
	{
		padding-bottom: 10%;
	}
	.line4
	{
		padding-bottom: 10%;
	}

	.iconservice
	{
		font-size: 20pt;
	}
	
/*********************************************************************************/
/* Mappa                                                                */
/*********************************************************************************/		
	.mappa {
		margin-top: 1em;	
		position: relative;
		max-width: 1200px;
		height: 600px;
	}
	.iframe {
		width: 100%;
		height: 100%;
	}
/*********************************************************************************/
/* Device Image                                                                  */
/*********************************************************************************/		

	#box1
	{
		position: relative;
		z-index: 1;
	}
	
	#box2
	{
		position: absolute;
		bottom: 0;
	}

	#box3
	{
		position: absolute;
		bottom: 0;
	}
	
	#box3:before
	{
		content: '';
		position: absolute;
		display: inline-block;
		width: 100%;
		height: 100%;
		left: -4.55em;
		bottom: -2px;
		z-index: 5;
	}

/*********************************************************************************/
/* Slidertron                                                                    */
/*********************************************************************************/		
		
	#slider
	{
		position: relative;
	}

	#slider .viewer
	{
		position: relative;
		overflow: hidden;
	}

		#slider .viewer:before
		{
			content: '';
			position: absolute;
			display: block;
			width: 100%;
			height: 100%;
			top: 0;
			z-index: 1;
		}

		#slider .viewer .reel
		{
			display: none;
		}

		#slider .viewer .reel .slide
		{
			overflow: hidden;
		}
		
		
