/* general */
html,body{
	margin: 0px;
	padding: 0px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-size: 18px;
	font-weight: normal; 
	line-height: 1.2;
	color: #ffffff;			
}
a{
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(0,0,0,0);
	transition: all 0.5s;			
}		
a:hover{
	border-bottom: 1px solid rgba(255,255,255,1);
}
.no-hover{border-bottom: 1px solid rgba(0,0,0,0) !important;}
/* main */
.main-container{
	position: relative;
	width: 100%;
	height: 100vh;
	background: url(/images/banner-main.jpg) bottom no-repeat;
	background-size: cover;
}
.logo-container{
	position: absolute;
	top: 5%;
	left: 0;
	right: 0;
	width: 220px;
	height: 72px;
	margin: auto;
	background: url(/images/logo-mcity-white.png) center no-repeat;
	background-size: cover;
	z-index: 5;
}
.overlay{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,88,143, 0.45);
	/*background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(45,224,253,0.1) 80%);*/
	z-index: 2;
}
.info-container{
	position: absolute;
	width: 90%;
	top: 25%;
	left: 10%;			
	margin: 10px auto;			
	z-index: 5;
	text-align: center;
}
.info-item{
	display: inline-block;
	width: 28%;
	margin: 2% 2%;
	color: #ffffff;
	text-align: left;
	vertical-align: top;
}
.info-item img{
	width: auto;
	height: 100%;
	max-height: 70px;
	margin-bottom: 5%;
}
/* footer */
.footer-txt{
	position: absolute;
	width: 30%;
	left: 0;
	right: 0;
	bottom: 0px;
	margin:2% auto 0% auto;
	text-align: center;
	z-index: 4;
}
.footer-txt p{
	margin-top: 10%;
	text-align: center;
}
.footer-txt img{
		width: 50px;
		height: auto;				
		margin-right: 5px;
}
.footer-mail{
	display: inline-block;
	text-align: left;
}
.footer-curve{
	position: absolute;
	width: 100%;
	height:340px;
	bottom: 0;
	left: 0;
	z-index: 3;
	/*background: rgba(0,0,0, 0.45);
	border-top-left-radius: 90px;*/
	background: url(/images/footer-curve.png) right bottom no-repeat;
	background-size: contain;
}
@media print, screen and (min-width: 768px) and (max-width: 991px) {
	html,body{font-size: 16px;}
	.info-container{
		width: 100%;
		left: 0;
	}
	.info-item img{max-height: 55px;}
	.footer-txt{width: 49%;}
}
@media print, screen and (max-width: 767px) {
	html,body{				
		font-size: 16px;
		background: #00588f;
	}
	.logo-container{
		position: relative;
		top: auto;
		padding: 5% 0px 0px 0px;
		background-size: contain;
	}
	.overlay{background: linear-gradient(0deg, rgba(0,88,143,1) 8%, rgba(36,124,180,0.8) 27%);}
	.info-container{
		position: relative;
		top: auto;
		width: 100%;
		left: 0;
	}
	.info-item{
		position:relative;
		width: 90%;
		margin: 5% 0px;
		padding: 0px 5%;
	}
	.info-item img{max-height: 60px;}
	.footer-txt{
		position:relative;
		width: 90%;
		margin: 0px;
		padding: 7% 5% 5% 5%;
		background: #333333;
		font-size: 14px;
	}
	.footer-txt img{width: 40px;}
	.footer-curve{display: none;}
}