@charset "UTF-8";
/* CSS Document */

*, 
*:after, 
*:before 
{	
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
}

.clearfix:before, 
.clearfix:after 
{	
		display: table;
		content: '';
}

.clearfix:after 
{	
	clear: both;
}

.clearfix2:before, 
.clearfix2:after 
{	
		content: " ";
		display: table;
}

.clearfix2:after 
{	
		clear: both;
}

html, 
body, 
.container, 
.header, 
.bg-img 
{	
		height: 100%;
}

body, 
html 
{	
		font-size: 100%;
		/*GLOBAL MULTIPLIER AFFECTING EVERYTHING*/
		/************************************************************************************************************************************************************************************************************FONT SIZE*/
		padding: 0;
		margin: 0;
}
	
html 
{	
		font-family:'Lato', Calibri, Arial, sans-serif;
		-webkit-text-size-adjust:100%;
		    -ms-text-size-adjust:100%;
		overflow: hidden;
		/*This last parameter (overflow) makes it is possible to disable scroll in the first page,
		forcing to press the button, and then scroll over the entire text...
		but it is not possible to go back to the initial picture, nor scrolling nor in any other way*/
}
	
body 
{	
		color: #69606b;
		/*GENERAL FONT*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/		
		line-height: 1.5;
		font-family: 'Lato',Calibri,Arial,sans-serif;
		font-weight: normal;
		text-rendering: optimizeLegibility;
		-webkit-font-smoothing: antialiased;
		overflow-x: hidden;
		margin:0;
}
		
.top 
{	
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		text-transform: uppercase;
		font-weight: 100;
		font-size: 2.5em;
		/*NAVIGATION SYMBOL*/
		/************************************************************************************************************************************************************************************************************FONT SIZE*/
		margin-top: -0.4em;
		padding-top: 0;
		margin-left: 0.1em;
		z-index: 10000;
}

.top a 
{	
		text-decoration: none;
		/*Essential for avoiding the
		blue underlining of the navigation symbol*/
}

.top a > span 
{	
		text-decoration: none;
		outline: none;
		color: #89867e;
		/*NAVIGATION SYMBOL*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
}

.icon 
{	
		max-width: 12em;
		margin-bottom: 4em;
}

.header 
{	
		margin: 0 auto;
		min-height: 560px;
		width: 100%;
}

.bg-img 
{	
		background: rgb(250,200,50);
		/*BG PRE PUSH-EFFECT*/
		                                                                                                                                                                                                                                     /***********/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
		                                                                                                                                                                                                                                     /***********/
}

.title 
{	
		z-index: 1000;
		margin: 0 auto;
		padding: 0 0.75em 0 0.75em;
		width: 100%;
		text-align: center;
		position: fixed;
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
		        transform: translateX(-50%) translateY(-50%);
}

.title h1 
{	
		line-height: 1;
		padding: 0 0.75em 0.2em 0.75em;
		/*TITLE H1*/
		/***************************************************************************************************************************************************************PADDING*/
		color: #4b4b4b;
		/*TITLE H1*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
		font-weight: 800;
		font-size: 3.5em;
		/*TITLE H1*/
		/************************************************************************************************************************************************************************************************************FONT SIZE*/
		margin: 0 auto;
		/*TITLE H1*/
		/***************************************************************************************************************************************************************MARGIN*/
}

.title p 
{	
		color: #4b4b4b;
		/*TITLE P*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
		padding: 0 0.75em 0.6em 0.75em;
		/*TITLE P*/
		/***************************************************************************************************************************************************************PADDING*/
		font-weight: 300;
		font-size: 1.25em;
		/*TITLE P*/
		/************************************************************************************************************************************************************************************************************FONT SIZE*/
		margin: 0 2em 0 2em;
		/*TITLE P*/
		/***************************************************************************************************************************************************************MARGIN*/
}

.title p.subline 
{	
		line-height: 1;
		margin: 0 auto;
		/*TITLE SUBLINE*/
		/***************************************************************************************************************************************************************MARGIN*/
		font-size: 2.5em;
		/*TITLE SUBLINE*/
		/************************************************************************************************************************************************************************************************************FONT SIZE*/
}

button.trigger 
{	
		position: fixed;
		bottom: 30px;
		left: 50%;
		z-index: 5000;
		display: block;
		margin-left: -0.5em;
		padding: 0;
		width: 1em;
		height: 1em;
		border: none;
		background: transparent;
		color: transparent;
		font-size: 2em;
		/*TRIGGER DATA-INFO AND ARROW*/
		/************************************************************************************************************************************************************************************************************FONT SIZE*/
		font-weight: 600;/**/
		cursor: pointer;
}
	
.container:not(.notrans) button.trigger 
{	
		-webkit-transition: opacity 0.3s 0.5s;
		        transition: opacity 0.3s 0.5s;
}

.container.modify:not(.notrans) button.trigger 
{	
		opacity: 0;
		pointer-events: none;
		-webkit-transition-delay: 0s;
		        transition-delay: 0s;
}

button 
{	
		font-family:inherit;
		margin:0;
		line-height:normal;
		text-transform:none;
}

button.trigger::before 
{	
		position: absolute;
		bottom: 100%;
		left: -150%;
		padding: 0em;
		width: 400%;
		color: #89867e;
		/*TRIGGER DATA-INFO*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
		content: attr(data-info);
		font-size: 0.4em;
		-webkit-backface-visibility: hidden;
		        backface-visibility: hidden;
}

button.trigger:focus 
{	
		outline: none;
}

button.trigger span 
{	
		position: absolute;
		display: block;
		overflow: hidden;
		width: 100%;
		height: 100%;
}

button.trigger span::before 
{	
		position: relative;
		top: -20px;
		left: 0;
		width: 100%;
		height: 100%;
		color: #89867e;
		/*TRIGGER ARROW SYMBOL*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
		content: "\2193";
		/*Unicode symbol for an HTML downwards arrow*/
		text-transform: none;
		line-height: 0.5;
		speak: none;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
}

strong 
{	
		font-weight:bold;
}

.intro-effect-push:not(.notrans) .header,
.intro-effect-push:not(.notrans) > .title,
.intro-effect-push:not(.notrans) .content > div 
{	
		-webkit-transition-property: opacity, -webkit-transform;
		        transition-property: opacity, transform;
		-webkit-transition-duration: 1s;
		        transition-duration: 1s;
}

.intro-effect-push:not(.notrans) .header 
{	
		-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
		        transition-timing-function: cubic-bezier(0.7,0,0.3,1);
		-webkit-transition-duration: 1.2s;
		        transition-duration: 1.2s;
}

.intro-effect-push .header 
{	
		position: absolute;
		z-index: 1500;
}

.intro-effect-push > .title 
{	
		position: relative;
		top: auto;
		left: auto;
		padding: 6em 1em 2em;
}

.intro-effect-push .content > div 
{	
		margin-top: 50px;
		color: #69606b;
		/*MAIN TEXT COLOR*/
		/******************************************************************************************************************************************************************************************************************************************COLOR*/
}

.intro-effect-push > .title,
.intro-effect-push .content > div 
{	
		-webkit-transform: translateY(400px);
		        transform: translateY(400px);
		opacity: 0;
}

.intro-effect-push.modify > .title,
.intro-effect-push.modify .content > div 
{	
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 1;
}

.intro-effect-push.modify .header 
{	
		opacity: 0;
		-webkit-transform: translateY(-100%) scale(0.9);
		        transform: translateY(-100%) scale(0.9);
}

.intro-effect-push.modify:not(.notrans) > .title 
{	
		-webkit-transition-delay: 0.5s;
		        transition-delay: 0.5s;
}

.intro-effect-push.modify:not(.notrans) .content > div 
{	
		-webkit-transition-delay: 0.6s;
		        transition-delay: 0.6s;
}

@media screen and (max-width: 47em) 
{	
	.title 
	{	
			font-size: 85%;
			/*TITLE CONTENT*/
			/************************************************************************************************************************************************************************************************************FONT SIZE*/
	}
}

@media screen and (max-width: 27em) 
{	
	.title 
	{		
			font-size: 75%;
			/*TITLE CONTENT*/
			/************************************************************************************************************************************************************************************************************FONT SIZE*/
	}
}