/* General */
.text-graphic {
	display: block;
	width: 60%;
	height: auto;
	margin: auto;
}
.orange-bar {
	background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}
/* Typography */
html {
	font-size: 16px;
}
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6,#navbar a.site-nav-link {
	font-family: 'Exo', sans-serif;
}
html, p, a, blockquote {
	font-family: 'Open Sans', sans-serif;
}
strong {
	font-weight: bold;
}
h1,.h1 {
	font-weight: 500;
	font-size: 4rem;
}
h2,.h2 {
	font-weight: 500;
	font-size: 2.6rem;
}
h5,.h5 {
	font-weight: 300;
}
.lead {
	font-size: 1.3rem;
}
.border-white {
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
.unordered-list {
	list-style: disc;
}
.ordered-list {
	list-style: decimal;
}
em {
	font-style: italic;
}
@media only screen and (max-width: 991px) {
	html {
		font-size: 14px;
	}
	h1,.h1 {
		font-size: 3.5rem;
	}
}
/* Colours */
.bg-orange-grad {
	background-color: #F12711;
	background-image: linear-gradient(to left, #F12711, #F5AF19);
}
.bg-dark {
	background-color: #333;
}
.text-white {
	color: #FFF;
}
.text-orange {
	color: #F12711;
}
/* Buttons */
a.btn-hollow {
	border: 2px solid #333;
	color: #333;
	border-radius: 0;
}
/* Navigation */
#navbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 999;
}
#navbar .site-logo {
	height: 50px;
	width: auto;
}
#navbar a.site-nav-link {
	font-weight: bold;
	color: #FFF;
}
@media only screen and (min-width: 992px) {
	#navbar {
		width: 60vw;
		margin-left: 10vw;
	}
	#navbar a.site-nav-link {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width: 991px) {
	#navbar .site-logo {
		height: 35px;
	}
}
/* Home */
#main-hero {
	padding-top: 150px;
	padding-bottom: 100px;
	background-size: cover;
	background-position: center;
}
#main-hero .hero-content h1,
#main-hero .hero-content h5 {
	color: #FFF;
}
img#fox-tail {
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 300px;
	height: auto;
}
#opener-text {
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
}
#marketing-channel-logos img {
	height: 20px;
	width: auto;
}
.service-box {
	border-radius: 15px;
	background-color: #FAFAFA;
	box-shadow: 0 0 5px #DDD;
}
.service-box h3:after {
	content: " ";
	display: block;
	width: 100%;
	background-color: #F12711;
	height: 3px;
	margin-top: 15px;
	margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) {
	#main-hero .hero-content {
		width: 70%;
	}
	#marketing-channel-logos img {
		height: 25px;
	}
}
@media only screen and (max-width: 1199px) {
	img#fox-tail {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	#marketing-channel-logos img {
		height: 12.5px;
	}
}
/* Footer */
#footer {
	border-top: 1px solid #FFF;
}
/* Blog */
.article-box {
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.article-img img {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	width: 100%;
	height: auto;
	display: block;
}