@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400');

html, body {
	font-family: 'Titillium Web', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #000;
}

h1 {
	font-size: 2rem;
	margin-bottom: 36px;
	font-weight: 300;
}

h2 {
	font-size: 1.5rem;
	margin-bottom: 24px;
	font-weight: 300;
}

p {
	font-size: 1.2rem;
	font-weight: 300;
}

a {
	color: #0099FF;
	text-decoration: none;
	transition: 0.5s ease;
}

a:hover {
	color: rgba(0,153,255,0.667);
	text-decoration: none;
}

input {
	margin-bottom: 16px;
}

textarea {
	height: 96px;
	margin-bottom: 36px;
}

input, textarea {
	width: 100%;
	padding: 12px;
	border-radius: 0.25rem;
	border: 0;
}

.btn {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 196px;
	padding: 16px;
	font-weight: 400;
}

.btn:hover {
	transition: 0.5s ease;
}

.btn-primary {
	background-color: #0099FF;
	border: 1px solid #0099FF;
	opacity: 1;
}

.btn-primary:hover {
	background-color: rgba(0,154,255,0.667);
	border: 1px solid rgba(0,154,255,0.667);
}

.btn-outline-primary {
	color: #fff;
	border-color: #fff;
	opacity: 1;
}

.btn-outline-primary:hover {
	color: #fff;
	border-color: #fff;
	background-color: rgba(0,153,255,0);
	opacity: 0.667;
}

.oddgrey {
	background-color: #0A0A0A;
}

#header {
	background-image: url('../imgs/header_bg.jpg');
	background-position: center center;
	background-size: cover;
	text-align: center;
	min-height: 720px;
	padding: 40px 12.5%;
}

#header .btn {
	margin: 8px 20px;
}

#introduction .feature-image {
	background: linear-gradient(90deg, rgba(10,10,10,0.00) 50%, #0A0A0A 100%), url('../imgs/introduction_bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

#social .feature-image {
	background: linear-gradient(-90deg, rgba(0,0,0,0.00) 50%, #000000 100%), url('../imgs/social_bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

#phone .feature-image {
	background: linear-gradient(90deg, rgba(10,10,10,0.00) 50%, #0A0A0A 100%), url('../imgs/phone_bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
}

#promotion .feature-image {
	background: linear-gradient(-90deg, rgba(0,0,0,0.00) 50%, #000000 100%), url('../imgs/promotion_bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

#manager .feature-image {
	background: linear-gradient(90deg, rgba(10,10,10,0.00) 50%, #0A0A0A 100%), url('../imgs/manager_bg.png') no-repeat;
	background-position: center left;
	background-size: cover;
}

#order {
	color: #fff;
	background-color: #0099FF;
}

#contact-info {
	text-align: center;
}

.feature-row {
	height: 520px;
}

.feature-image {
	height: 100%;
}

.feature-text {
	color: #fff;
	padding: 120px 20%;
	margin: 0 auto;
}

@media screen and (max-width: 575px) {
	.btn {
		width: 100%;
	}
	#header {
		min-height: 620px;
		padding: 20px 12.5%;
	}
	#header .btn {
		margin: 8px 0;
	}
	.feature-row {
		height: auto!important;
		text-align: center;
	}
	.feature-image {
		height: 240px;
	}
	.feature-text {
		padding: 72px 12.5%;
	}
	#phone .feature-image {
		background-position: center bottom;
	}
}

@media (max-width: 767px) {
	#logo {
		max-width: 240px;
	}
	h1 {
		font-size: 1.75rem;
		margin-bottom: 36px;
	}
	
	p {
		font-size: 1.1rem;
	}
}