	
@charset "utf-8";

*{margin:0;padding:0; outline: none;}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
:before, :after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
a:link{text-decoration: none; color: #fff}
a:visited{color: #fff}

@font-face 
{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat-Light.ttf'), url('../fonts/Montserrat-Light.ttf') format('truetype');
}

@font-face 
{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat-Medium.ttf'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
}

body 
{
	margin: 0px auto;
	padding: 0px;
	color: #fff;
	font-family: 'Montserrat';
	font-size: 17px;
	font-weight: 400;
	background: #000;
}

a
{
	outline: none;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

a:hover
{
	color: #fff;
}

strong
{
	font-weight: 700;
}

h1 
{
	font-family: 'Montserrat';
	font-size: 30px;
	font-weight: 700;
	margin: 0px;
	padding: 5px 0px;
	text-align: center;
	color: #fff;
	width: 100%;
}

h2
{
	font-family: 'Montserrat';
	font-size: 30px;
	font-weight: 700;
	margin: 0px;
	padding: 5px 0px;
	text-align: center;
	color: #fff;
	width: 100%;
}

h3
{
	font-size: 20px;
	font-weight: 700;
}

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

.clear 
{
	clear: both;
}

#hero
{
	position: relative;
	height: 100vh;
}

#slideshow
{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 520px;
}

#owl_slider
{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.owl-carousel .owl-stage-outer, 
.owl-carousel .owl-stage, 
.owl-carousel .owl-item
{
	position: relative;
	width: 100%;
	height: 100%;
}

.owl-carousel .item
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 0% 50%;
	background-size: 150% auto;
	/* mask-image: url('../img/logomarchio-maschera.svg');
	mask-size: 100vmin;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url('../img/logomarchio-maschera.svg');
	-webkit-mask-size: 100vmin;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center; */
}

@-webkit-keyframes move_slide
{
	0%
	{
		background-position: 0% 50%;
	}

	100%
	{
		background-position: 100% 50%;
	}
}

@keyframes move_slide 
{
	0%
	{
		background-position: 0% 50%;
	}

	100%
	{
		background-position: 100% 50%;
	}
}

.owl-carousel .owl-item.move .item
{
	animation: move_slide 10s linear forwards;
}

#maschera_box
{
	overflow: hidden;
}

#maschera_mobile
{
	display: none;
	width: auto;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

#maschera
{
	display: block;
	width: auto;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}

a.button
{
	display: inline-block;
	padding: 5px 15px;
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	font-weight: 700;
}

a.button:hover
{
	background-color: #e31818;
	border-color: #e31818;
}

footer
{
	position: relative;
}

footer #ego55logo
{
	width: 80px;
}


/*** MEDIA QUERY ***/

@media screen and (max-width: 991px)
{
	#maschera
	{
		display: none;
	}

	#maschera_mobile
	{
		display: block;
	}
}

@media screen and (max-width: 767px)
{
	h2
	{
		font-size: 25px;
	}
}


