@import url('https://fonts.googleapis.com/css?family=Saira+Condensed:400,600|Roboto');

@font-face {
	font-family: CalibriBackup;
	src: url('/font/Calibri.ttf');
}

* {
	box-sizing: border-box;
}

/* ---------------------- TOP BAR ---------------------- */
/* In my case, it'll just read "Tristan Volk". Woo!  */
.topbar {
	top: 0;
	left: 0;
	position: fixed;
	height: 56px;
	width: 100%;
	z-index: 2;
	background: rgb(256, 256, 256);
	transition: 0s;
	min-width: 275px;
	z-index: 5;
	box-shadow: 0 2px 10px rgba(20, 20, 20, .35);
	white-space: nowrap;
	overflow: hidden;
}

.topbar .topbar-content {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.background-layer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	z-index: 5;
}

.menu {
	display: none;
	position: fixed;
	min-width: 220px;
	width: 55vw;
	z-index: 200;
	top: 0;
	left: -100vw;
	background: rgb(256, 256, 256);
	height: 100%;
	box-shadow: 2px 0 10px rgba(20, 20, 20, .35);
	transition: 0.4s;
}

.menu hr {
	margin: 0;
	border: 0;
	background: rgb(190, 190, 190);
	height: 2px;
}

.menu .button {
	font-family: 'Saira Condensed', sans-serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: rgb(50, 50, 50);
	height: 50px;
	width: 100%;
	transition: 0.2s;
	display: block;
	line-height: 50px;
	padding-left: 14px;
	margin: 0;
	position: relative;
}

.menu .button:focus .hover,
.menu .button:hover .hover {
	opacity: 0.2;
	left: 0;
}

.menu .button:active .hover {
	background: rgb(204, 101, 53);
	transition: 0.15s;
}

.menu .close-menu {
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 700;
	font-size: 24px;
	text-decoration: none;
	text-transform: uppercase;
	background: rgb(50, 50, 50);
	color: rgb(256, 256, 256);
	transition: 0.2s;
	margin: 0;
	line-height: 24px;
	text-align: center;
	width: 100%;
	padding: 15px 0;
	-webkit-user-select: none;
	/* Safari 3.1+ */
	-moz-user-select: none;
	/* Firefox 2+ */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	/* Standard syntax */
	position: relative;
	cursor: pointer;
}

.menu .close-menu i {
	float: left;
	width: 0;
}

.menu .close-menu:focus .hover,
.menu .close-menu:hover .hover {
	opacity: 0.2;
	left: 0;
}

.menu .close-menu:active .hover {
	background: rgb(204, 101, 53);
	transition: 0.15s;
}

.menu .socials {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	position: relative;
	display: inline-block;
	font-size: 34px;
	line-height: 34px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	-webkit-user-select: none;
	/* Safari 3.1+ */
	-moz-user-select: none;
	/* Firefox 2+ */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	/* Standard syntax */
}

.menu .socials a {
	padding: 0;
	color: rgb(50, 50, 50);
	text-decoration: none;
	transition: 0.2s;
	margin: 0;
}

.menu .socials a:hover {
	color: rgb(0, 115, 177);
	opacity: 1;
}

.menu .socials a:active {
	color: rgb(204, 101, 53);
}

/* ------------------- TOP BAR - NAME ------------------ */
.topbar .menu-button.menu-title {
	background: rgb(50, 50, 50);
	color: rgb(248, 248, 248);
}

.topbar-content a {
	line-height: 0;
}

/* -------------- TOP BAR - MENU BUTTON -------------- */
.topbar .menu-extend {
	display: none;
	top: 0;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	/* Safari 3.1+ */
	-moz-user-select: none;
	/* Firefox 2+ */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	/* Standard syntax */
}

.topbar .menu-extend i {
	font-family: 'Saira Condensed', sans-serif;
	font-size: 18px;
	color: rgb(50, 50, 50);
	height: 100%;
	padding: 0 14px;
	transition: 0.2s;
	display: inline-block;
	line-height: 56px;
	top: 0;
	cursor: pointer
}

.topbar .menu-extend:hover i,
.topbar .menu-extend:focus i {
	color: rgb(0, 115, 177);
}

.topbar .menu-extend:active i {
	color: rgb(204, 101, 53);
}

.topbar .menu-button {
	font-family: 'Saira Condensed', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: rgb(50, 50, 50);
	padding: 0 30px;
	transition: 0.2s;
	display: inline-block;
	height: 38px;
	line-height: 38px;
	margin: 0;
	text-align: center;
	background: rgb(243, 243, 243);
	overflow: hidden;
	position: relative;
	text-transform: uppercase;
}

.rectangle {
	background: rgb(256, 256, 256);
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
}

.rectangle.hover {
	background: rgb(0, 115, 177);
	left: -100%;
	transition: 0.2s;
	opacity: 0;
}

.skew {
	background: rgb(256, 256, 256);
	width: 40px;
	height: 200%;
	transform: rotate(20deg);
	top: -50%;
	position: absolute;
}

.skew.left {
	left: -30px;
}
.skew.right {
	right: -30px;
}

.skew.hover {
	height: 400%;
	width: 100%;
	background: rgb(0, 115, 177);
	top: -100%;
	left: -100%;
	transition: 0.2s;
	opacity: 0;
}

.topbar a {
	text-transform: uppercase;
	text-decoration: none;
	outline: none;
}

.topbar a:hover .hover,
.topbar a:focus .hover {
	opacity: 0.2;
	left: 0;
}

.topbar a:active .hover {
	background: rgb(204, 101, 53);
	transition: 0.15s;
}

/* ----------------- TOP BAR - CAPTION ----------------- */
/* This is the caption text that shows underneath    */
/* the name and disappears when you scroll down.     */
.bottom-text {
	display: block;
	text-align: center;
	top: 43px;
	left: 0;
	position: absolute;
	transition: 0.2s;
	width: 100%;
}

.bottom-text hr {
	display: inline-block;
	border: 0;
	height: 2px;
	background: rgb(144, 147, 151);
	width: 15px;
}

.bottom-text h2 {
	display: inline-block;
	margin: 0 10px;
	color: rgb(95, 95, 95);
	font-size: 22px;
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 300;
}

/* ----------------- TOP BAR - SOCIALS ----------------- */
/* The captions, icons, and links to the different   */
/* socials that are available.                       */
.topbar .menu-social {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	position: absolute;
	display: inline-block;
	right: 7px;
	line-height: 56px;
	-webkit-user-select: none;
	/* Safari 3.1+ */
	-moz-user-select: none;
	/* Firefox 2+ */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	/* Standard syntax */
	line-height: 38px;
}

.topbar .menu-social a {
	padding: 0;
	font-size: 20px;
	color: rgb(50, 50, 50);
	text-decoration: none;
	transition: 0.2s;
	margin: 0;
	cursor: pointer;
}

.topbar .menu-social a:active {
	color: rgb(204, 101, 53);
}

.topbar .menu-social a:hover,
.topbar .menu-social a:focus {
	color: rgb(0, 115, 177);
}

.topbar .menu-social .backdrop {
	background: rgba(20, 20, 20, .04);
	width: 100%;
	left: -8px;
}

/* ------------------- BODY PROPERTIES ----------------- */
/* When you scroll down for example, we can make the */
/* background a slightly different colour!           */
.body {
	background: rgb(248, 248, 248);
	transition: 0.2s;
	margin: 0;
	min-width: 275px;
}

/* -------------- CONTENT - TOP PAGE TITLE ------------- */
/* This is the title at the top of the page, which   */
/* will stick to the topbar when you scroll down.    */
.title-outer {
	margin: 0 auto;
	position: absolute;
	transition: 0.2s;
	width: 100%;
	left: 0;
	top: 0px;
	opacity: 0;
}

.title-outer.on {
	top: 75px;
	opacity: 1;
}

.title-outer .title-bottom {
	margin: 0 auto;
	width: 1000px;
}

.title-outer .title {
	font-size: 25px;
}

.title.down {
	margin: 0 auto;
	position: absolute;
	transition: 0.2s;
	padding: 0;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
	color: rgb(256, 256, 256);
	display: block;
	z-index: 0;
}

.title.down.on {
	position: fixed;
	opacity: 1;
	padding: 56px 0 0 0;
	background: rgb(50, 50, 50);
	box-shadow: 0 2px 5px rgba(20, 20, 20, .25);
	z-index: 4;
}

/* ---------------- CONTENT - PAGE TITLES --------------- */
/* These are titles that can be used on any page, for */
/* consistency. There are different states as well.   */
.title {
	font-family: 'Saira Condensed', sans-serif;
	color: rgb(50, 50, 50);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	left: 0;
	font-weight: bold;
	font-size: 23px;
	text-transform: uppercase;
}

.title hr {
	flex: 1 1;
	display: block;
	border: 0;
	height: 2px;
	background: rgb(190, 190, 190);
	margin-left: 10px;
}

.title.center hr {
	flex: 0 0;
	margin: 0px;
}

.title.tab {
	font-size: 20px;
	padding: 0 0 0 15px;
}

/* ------------------------------------------------------ */
/* ------------------ RESPONSIVE DESIGN ----------------- */
/* ------------------------------------------------------ */
@media screen and (max-width: 1060px) {
	.topbar .topbar-content {
		padding: 0 20px;
	}

	.title-outer .title-bottom {
		padding: 0 15px;
		width: auto;
	}
}

@media screen and (max-width: 630px) {
	.hide-small-window, .topbar .hide-small-window {
		display: none;
	}

	.topbar .menu-extend {
		display: inline-block;
	}

	.topbar .menu-title {
		margin: 0 auto;
		display: table;
	}

	.topbar .menu-social {
		display: none;
	}

	.background-layer.on {
		display: block;
	}

	.menu {
		display: block;
	}

	.menu.on {
		left: 0;
	}

	.topbar .topbar-content {
		padding: 0;
	}
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-thumb {
	background: rgb(190, 190, 190);
}

::-webkit-scrollbar-track {
	background: rgba(190, 190, 190, 0.5);
	border-color: rgba(190, 190, 190, 0.5);
	margin-left: 5px;
	border-width: 1px;
	border-style: solid;
}