body {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 16px;
	margin: 0px;
	color: #fefefe;
}

#content {
	margin-top: 104px;
}

.hero-video {
	position: fixed;
	height: 100vh;
	width: 100%;
	object-fit: cover;
  	z-index: -1;
	transform: translateX(calc((100% - 100vw) / 2));
}

.canvas-background {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

section.header {
	font-size: 38px;
	color: #fefefe;
	font-weight: 200;
	padding: 0px 0px 0px 0px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 1);
	animation-name: glowing;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}

h1, h2, h3, h4, h5 {
	font-weight: 100;
	color: #fefefe;
}

/* - Header */
#header {
	height: 60px;
	position: fixed;
	top: 0px;
	z-index: 1000;
	width: 100%;
}

.modal-open #header {
	z-index: 1000;
}

#header .logo-container {
	font-size: 32px;
	position: absolute;
	top: 8px;
	left: 8px;
}

#header .main-menu-btn {
	position: absolute;
	padding: 8px;
	top: 8px;
	right: 8px;
}

#header .logo {
	margin-top: 2px;
	height: 84px;
}

#header .brand {
	display: inline-block;
	padding: 0px;
}

#header .address {
	float: right;
	padding-top: 14px;
	padding-left: 10px;
	font-size: 22px;
	font-weight: 400;
	color: #333;
}

.main-menu {
	position: fixed;
	top: -100px;
	bottom: -250px;
	left: 100%;
	width: 150%;
	z-index: 10000;
	padding-top: 150px;
	background: #333333aa;
	color: #fefefe;
	transition: transform 0.25s;
	transform-origin: -100px -100px;
	backdrop-filter: blur(3px);
}

.menu-open .main-menu {
	transform: rotate(25deg);
}

/* Navigation */
#header .header-navbar {
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: right;
}

#header .navbar {
	margin: 0;
	line-height: 24px;
}

#header .navbar li {
	width: 100%;
	font-size: 18px;
	padding: 0px;
	margin-left: 0;
	padding-left: 0;
	text-align: left;
	transition: background-color 0.4s, box-shadow 0.4s;
	list-style: none;
}

#header .navbar li:hover {
    -webkit-box-shadow: 0px 3px 0px 0px rgba(30, 30, 30, 0.1);
	-moz-box-shadow: 0px 3px 0px 0px rgba(30, 30, 30, 0.1);
	box-shadow: 0px 3px 0px 0px rgba(30, 30, 30, 0.1);
}

#header .navbar li:hover a {
	color: #fefefe;
}

#header .navbar li.active {
	-webkit-box-shadow: 0px 3px 0px 0px rgba(196, 26, 19, 0.2);
	-moz-box-shadow: 0px 3px 0px 0px rgba(196, 26, 19, 0.2);
	box-shadow: 0px 3px 0px 0px rgba(196, 26, 19, 0.2);
}

#header .navbar li.active a {
	color: #fefefe;
}

#header .navbar li a {
	color: #fefefe;
	font-weight: 400;
	display: inline-block;
	padding: 10px 15px;
}

#header .navbar li a:hover {
	text-decoration: none;
}

#header .navbar li.social-btn {
	border: 0 none;
	padding: 0px 10px;
}

#header .navbar li.social-btn a {
	width: 30px;
	display: block;
	text-align: center;
}

/* Forms */
input, textarea, select, button {
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	font-size: 14px;
}

/* Footer */
#footer {
	font-size: 14px;
	background-color: #292d33;
	color: #fefefe;
	padding: 20px 0px;
	width: 100%;
}

#footer a {
	color: #bebebe;
	margin-bottom: 4px;
}

#footer .footer-category .footer-category-header {
	color: #d35400;
	margin-bottom: 5px;
}