html {
	
}

body {
	background: url(assets/img/street.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}

.container {
	margin-left: 150px;
}

/* === NAVBAR === */
.navbar-fixed-left {
	width: 140px;
	position: fixed;
	-webkit-border-radius: 0 0 15px 0;
	-moz-border-radius: 0 0 15px 0;
	border-radius: 0 0 15px 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 99;
}

.navbar-fixed-left .navbar-brand {
	color: #000;
	font-size: 24px;
	margin-top: 15px;
}

.navbar-fixed-left .navbar-nav > li {
  float: none;  /* Cancel default li float: left */
  width: 139px;
  font-size: 20px;
  color: #000;
}

.navbar-fixed-left .navbar-nav > li.current-menu-item,
.navbar-fixed-left .navbar-nav > li.current-menu-item > a {
	background: rgba(0, 0, 0, 0.3);
	font-weight: bold;
	color: #fff;
}

.navbar-fixed-left .navbar-nav > li > a {
	color: #000;
	margin: 10px 0 10px 5px;
}

.navbar-fixed-left + .container {
/*   padding-left: 160px; */
}

.container {
/*   height: 1000px; */
}

.wrapper {
	
}

/* === TOP BAR === */
.topbar {
	margin-right: 20px;
	min-height: 45px;
	padding: 10px;
}

.topbar .social {
	float: right;
}

.social {
	font-weight: 400;
	line-height: 1;
	margin-top: 2px;
}

.social a {
	display: inline-block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin-left: 5px;
}

.social .fa {
	color: #fff;
	font-size: 1.7em;
	text-align: center;
	margin-top: 6px;
}

/* === FRONT PAGE MAIN === */
.main-content {
/* 
	text-align: center;
	display: table;
	width: 100%;
	height: 100%;
 */
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	height: 100%;
}

.headline {
	margin: auto;
	text-align: center;
}

.main-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

}

.main-text h1 {
	font-size: 7em;
	color: #fff;
	text-shadow: 2px 2px 1px #000;
}

.main-text p.sub-text {
	font-size: 1.5em;
	color: #fff;
	text-shadow: 1px 1px 1px #000;
}

/* === BLOG PAGE === */
#content {
	margin-top: 20px;
}

.post {
	padding: 20px;
	margin-bottom: 20px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.8);
}

.post header {
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.post header h3 {
	padding: 0;
	margin-top: 0;
}

.post header h3 a {
	color: #000;
}

.post-excerpt p {
	font-size: 1.2em;
	text-indent: 30px;
}

/* === WIDGET AREA === */
aside {
	margin-top: 20px;
	padding: 0 0 0 20px;
	color: #000;
}

.widget {
	padding: 15px;
	margin-bottom: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.8);
}

/* === CONTACT PAGE === */
.form-area {
	margin-top: 20px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.8);
	padding: 15px;
	text-align: center;
}

.form-area input.pull-center {
	width: 240px;
	
}

@media all and (max-width : 768px) {
	body {
		background-size: 200% 1000px;
		background-position: 50% 0;
	}
	
	.container {
		margin-left: 0;
		margin-top: 260px;
	}
}

@media all and (max-width : 968px) {
	background-size: cover;
}