@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url(fonts/Poppins-ExtraLight.ttf);
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url(fonts/Roboto-Medium.ttf);
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url(fonts/Roboto-Bold.ttf);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Roboto", Arial, sans-serif;
	font-size: medium;
	font-weight: 500;
	line-height: 1.5;
	color: white;
}

html {
	height: 100%;
}

body {
	height: 100%;
	background-color: rgb(51, 3, 16);
}

.noScroll {
	overflow: hidden;
}

header {
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 0px;
	z-index: 4;
}

header .mainMenu {
	background-image: linear-gradient(rgb(51, 3, 16), rgba(51, 3, 16, 0.7) 80%, rgba(51, 3, 16, 0));
}

li {
	list-style-type: none;
	font-family: "Roboto", Arial, sans-serif;
}

header li {
	font-family: "Poppins", Verdana, sans-serif;
	padding: 20px 2.5% 10px;
	float: right;
}

#menuOpen, #menuClose {
	display: none;
	padding: 20px 2.5% 10px;
	cursor: pointer;
}

#rwdMenuBg {
	background-color: rgb(51, 3, 16);
	opacity: 0.75;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

#home #rwdMenuBg {
	background-color: black;
}

header .icon img {
	height: 30px;
	width: auto;
}

.rwdMenu {
	display: none;
}

header .rwdMenu li {
	float: none;
	padding: 10px max(2.5%, 10px);
}

#archivUl li {
	text-align: left;
	vertical-align: top;
	padding-right: max(4%, 30px);
	margin-bottom: 20px;
	display: inline-block;
}

#archivUl li h2 {
	cursor: pointer;
}

.imgSlider {
	font-size: 0;
	white-space: nowrap;
	overflow: hidden;
}

.imgSlider img.sliderImg {
	height: 100%;
}

footer li {
	font-family: "Poppins", Verdana, sans-serif;
	padding: 13px 2.5% 0;
	float: left;
}

.clear {
	clear: both;
	display: block;
}

#home {
	background-color: black;
	background-image: url("media/homeBG2.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 75% 100%;
}

#home .mainMenu {
	background-image: linear-gradient(black, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0));
}

#home #headerTitle {
	display: none;
}

footer {
	height: 60px;
	margin-top: -60px;
}

.footerExclude {
	min-height: 100%;
}

.footerPush {
	margin-bottom: 90px;
}

.windowSized .footerPush {
	margin-bottom: 60px;
}

.mainContent {
	margin: 35px 10% 0;
}

#home .mainContent {
	margin: 35px 5%;
}

.fadeBottom {
	width: 100%;
	height: 50px;
	position: fixed;
	bottom: 0;
	background-image: linear-gradient(rgba(51, 3, 16, 0), rgb(51, 3, 16));
	z-index: 1;
}

#home .fadeBottom {
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
}

h1 {
	font-family: "Poppins", Verdana, sans-serif;
	font-size: 6em;
	font-weight: 200;
	line-height: 1.2;
	max-width: 100%;
}

h2, header a {
	font-family: "Poppins", Verdana, sans-serif;
	font-size: 1.5em;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 8px;
}

#home h2 {
	font-size: 2em;
	color: #4a101f;
	margin-left: 50px;
}

h3, footer a {
	font-family: "Poppins", Verdana, sans-serif;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.4;
	margin: 8px 0;
}

hr {
	position: absolute;
	right: 0;
	width: 33%;
	border: none;
	border-top: 2px solid white;
}

#home hr {
	border-style: none;
	border-top: 4px solid rgb(51, 3, 16);
}

footer hr {
	right: auto;
	left: 0;
}

p {

}

b, th {
	color: rgb(252, 197, 197);
	font-weight: 700;
}

a {
	color: white;
	text-decoration: none;
}

table {
	border: none;
	width: 100%;
}

th {
	text-align: left;
}

.columnL {
	width: 44%;
	margin: 30px auto 30px 3%;
}

.columnR {
	width: 44%;
	margin: -150px 3% -150px auto;
}

.singleColumn {
	width: 60%;
	margin: 30px auto 30px 3%;
}

.singleColumnR {
	width: 60%;
	margin: 30px 3% 30px auto;
}

#toTop img {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

#toTop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 60px;
	height: 54px;
	z-index: 3;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}

#toTop.hidden {
	transition: opacity 0.5s, visibility 0s 0.5s;
	opacity: 0;
	visibility: hidden;
}

#toTop.visible {
	transition: opacity 0.5s;
	opacity: 1;
	visibility: visible;
}

#arrowLeft, #arrowRight {
	transition: opacity 0.5s, visibility 0s 0.5s;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

#arrowLeft.visible, #arrowRight.visible {
	transition: opacity 0.5s;
	opacity: 1;
	visibility: visible;
}

@media only screen and (max-width: 992px) {
	header .text {
		display: none;
	}
	
	#menuOpen {
		display: block;
	}
	
	#home {
		background-image: url("media/homeBG2.jpg");
		background-size: auto 75%;
		background-repeat: no-repeat;
		background-position: 100% 100%;
	}
}

@media only screen and (max-width: 768px) {
	h1 {
		font-size: 4em;
		word-wrap: break-word;
	}
	
	#home h2 {
		margin-left: 30px;
	}
	
	footer a {
		font-size: 1em;
	}
	
	footer li {
		padding-top: 16px;
	}
	
	.mainContent {
		margin: 35px 5% 0;
	}
	
	#home {
		background-image: url("media/homeBG2.jpg");
		background-size: auto 75%;
		background-repeat: no-repeat;
		background-position: 60% 100%;
	}
}

@media only screen and (max-width: 600px) {
	h1 {
		font-size: 2.8em;
	}
	
	h2 {
		font-size: 1.2em;
	}
	
	h3 {
		font-size: 1em;
	}
	
	#toTop {
		position: fixed;
		right: 15px;
		bottom: 60px;
	}
}
