/* CORE.CSS */

	/* FONTS */

		/* SOURCE SANS PRO */
		@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900';

		/* FONTAWESOME */
		@import 'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.min.css';

	/* END OF FONTS */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #0c0707;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 26px;
	text-rendering: optimizeLegibility;
}

noscript {
	position: fixed;
	display: block;
	top: 118px;
	left: 0;
	width: 100%;
	color: #0c0707;
	background-color: #956d5a;
	font-family: 'Source Sans Pro', sans-serif;
	padding: 12px 18px;
	z-index: 100;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
}

noscript span {
	display: table;
	font-size: 18px;
	font-weight: 300;
	margin: 0 auto;
}

.row {
	position: relative;
	display: table;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.row::after, .clearfix::after {
	content: '';
	float: none;
	clear: both;
}

.col {
	position: relative;
	width: 100%;
	padding: 0 18px;
}

.btn {
	cursor: pointer;
	display: table;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 26px;
	font-weight: 300;
	line-height: 20px;
	text-transform: uppercase;
	background-color: transparent;
	border-radius: 12px;
	color: #0c0707;
	border: 2px solid #0c0707;
	padding: 16px 22px;
	transition: all .3s ease-in-out;
	outline: none;
}

.btn:hover {
	color: #956d5a;
	background-color: #0c0707;
}

.btn i {
	font-size: 20px;
	display: block;
	float: right;
	margin-top: 1px;
	margin-left: 7px;
}

section {
	width: 100%;
	max-width: 100%;
}

.fill {
	height: 2000px;
}

/* END OF CORE.CSS */