body {
	padding: 20px;
}

.border {
	display: block;
	position: fixed;
	background-color: #000;
	z-index: 100;
		transition: height .3s ease .1s, width .3s ease .1s;
		-webkit-transition: height .3s ease .1s, width .3s ease .1s;
}

.border.spread {
	width: 100%;
	height: 100%;
		transition: height .3s ease, width .3s ease;
		-webkit-transition: height .3s ease, width .3s ease;
}

.border-top {
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
}

.border-right {
	top: 0;
	right: 0;
	width: 20px;
	height: 100%;
}

.border-bottom {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
}

.border-left {
	top: 0;
	left: 0;
	width: 20px;
	height: 100%;
}

h1, h3, h4, h5, h6, strong {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

h1 {
	margin-top: 60px;
}

h2 {
	font-family: 'Libre Baskerville', serif;
	font-size: 20px;
	line-height: 30px;
}

h3 {
	margin-bottom: 20px;
}

.index-no {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 120px;
	margin-bottom: 0;
	padding-bottom: 0;
}

a, a:hover, a:active, a:visited, a:focus {
	color: #ff5a00;
	text-decoration: none;
	padding: 4px 4px;
	border-bottom: 1px solid #fff;
		transition: border .3s ease;
}

a.active {
	border-bottom: 1px solid #ff5a00;
}

p {
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 26px;
}

#references {
	margin-top: 60px;
	margin-bottom: 60px;
}

#references p {
	font-size: 12px;
	margin-bottom: 14px;
}

blockquote {
	font-family: 'Libre Baskerville', serif;
	font-weight: 400;
	font-style: italic;
	padding: 0;
	border: none;
	color: #ff5a00;
}

.inquote {
	color: #000;
	font-size: 14px;
	font-style: normal;
	margin-top: 20px;
}

blockquote.intro-quote {
	padding: 20px;
	background-color: #000;
	color: #fff;
	margin: 60px 0;
	letter-spacing: .8px;
}

blockquote.intro-quote header {
	margin-bottom: 20px;
}

figure {
	margin-bottom: 40px;
}

.index-img {
	margin-top: 60px;
}

.al-right {
	text-align: right;
}

.main-navigation {
	position: fixed;
	top: 0;
	left: 30%;
	background-color: #000;
	z-index: -1000;
	opacity: 0;
	transform: translate(0, -100%);
		transition: opacity .3s ease;
		-webkit-transition: opacity .3s ease;
}

.main-navigation.open {
	width: 70%;
	height: 100%;
	z-index: 1000;
	opacity: 1;
	transform: translate(0, 0);
		transition: opacity .3s ease .3s;
		-webkit-transition: opacity .3s ease .3s;
}

ul.navigation li.current a{
	color: #ff5a00;
}

.burger {
	display: block;
	position: fixed;
	top: 40px;
	left: 40px;
	width: 40px;
	height: 40px;
	z-index: 1100;
}

.burger:hover {
	cursor: pointer;
}

.burger .line {
	display: block;
	position: relative;
	width: 100%;
	height: 6px;
	background-color: #000;
		transition: all .3s ease;
}

.burger.active .line, .burger:hover .line {
	background-color: #ff5a00;
}

.burger .line:nth-of-type(1) {
	transform: translate(0, 0);
}

.burger .line:nth-of-type(2) {
	transform: translate(0, 6px);
}

.burger .line:nth-of-type(3) {
	transform: translate(0, 12px);
}

ul.navigation {
	list-style: none;
	padding-left: 0;
	margin: 120px 0 0 35px;
}

ul.navigation li {
	padding-bottom: 35px;
}

ul.navigation li a {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 200;
	color: #fff;
	text-decoration: none;
	border: none;
}

.nextpage {
	width: 100%;
	min-height: 100px;
	background-color: #000;
	text-align: center;
	margin-top: 60px;
	border: none;
}

.nextpage a {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	display: inline-block;
	line-height: 100px;
	font-size: 18px;
	text-align: center;
	color: #aaa;
	text-decoration: none;
	transition: color .3s ease;
	border: none;
}

.nextpage a:hover {
	color: #ff5a00;
}

hr {
	border-color: #000;
}

.video-native video {
	max-width: 100%;
	height: auto;
}

/* Custom */
@media only screen and (max-width : 900px) {
	body {
		padding-left: 80px;
		padding-top: 70px;
	}

	.nextpage {
		width: calc(100% + 60px);
		margin-left: -60px;
	}
}

/* LG */
@media only screen and (max-width : 1200px) {

}

/* MD */
@media only screen and (max-width : 992px) {

}

/* SM */
@media only screen and (max-width : 768px) {

}

/* XS */
@media only screen and (max-width : 480px) {
	.border-top {
		height: 70px;
	}

	.burger {
		top: 20px;
		left: 20px;
	}

	.burger .line{
		background-color: #fff;
	}

	body {
		padding-left: 20px;
	}

	.nextpage {
		width: 100%;
		margin-left: 0px;
	}

}


