.navbar {
	margin-bottom: 0px !important;
}

/**
 * Home Page - index.html
 */
.home_bg {
	/*
	background: url(../images/home-bg.jpg) no-repeat scroll 50% top / cover;
	background: url(../images/home-bg-fixed.jpg) no-repeat scroll 50% top / cover; 
	*/
	background: url(../images/home-bg.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%; 
	height: 900px;
}

.home_badge {
	left: 55%; 
	top: 60%; 
	position:relative;
}


/* Large monitor and laptops */
@media (min-width: 1200px) {
 
}
 
/* Portrait Tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
 
}

/* Portrait Tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
 
}
 
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
	.home_badge {
		top: 10%; 
		left: 35%; 
	}
	
}
 
/* Landscape phones and smaller */
@media (max-width: 480px) {
	.home_bg {
		height: 600px;
	}
	.home_badge {
		left: 15%; 
		top: 10%; 
	}
}

