	
@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: #000}
a:visited{color: #000}

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

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

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

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

a:hover
{
	color: #000;
}

strong
{
	font-weight: 700;
}

h1 
{
	font-size: 65px;
	font-weight: normal;
	margin: 0px;
	padding: 5px 0px;
	text-align: center;
	color: #000;
	width: 100%;
}

h2
{
	font-size: 65px;
	font-weight: normal;
	margin: 0px;
	padding: 5px 0px;
	text-align: center;
	color: #000;
	width: 100%;
}

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

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

.clear 
{
	clear: both;
}

#hero
{
	position: relative;
	height: 100vh;
	padding: 10vh 0vh;
}

#slideshow
{
	position: absolute;
	width: 80%;
	height: 100%;
}

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

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

.owl-carousel .owl-item
{
	padding: 30px;
}

#owl_slider .item
{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: contain;
}

#owl_slider .item span
{
	display: inline-block;
	transform: translate(-25px, -25px);
}

.hero_content
{
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
}


footer
{
	position: relative;
}

#ego55logo
{
	position: absolute;
	width: 75px;
	transform: rotate(-90deg);
	bottom: 15vh;
	right: 0px;
}


/*** MEDIA QUERY ***/

@media screen and (max-width: 991px)
{
	#hero
	{
		padding: 0px;
		height: auto;
	}

	#slideshow
	{
		position: relative;
		width: 100%;
		height: 70vh;
	}

	#owl_slider .item
	{
		background-size: cover;
	}

	.owl-carousel .owl-item
	{
		padding: 0px;
	}

	.hero_content
	{
		height: auto;
		transform: translate(0px, -150px);
	}

	.row
	{
		margin-left: 0px;
		margin-right: 0px;
	}
}


