@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo&family=Creepster&family=Oswald&display=swap');

@font-face {
	font-family: 'metalManiaFont';
	src: url('../fonts/MetalMania-Regular.ttf');
}

* {
  margin: 0;
  padding: 0;
  /*font-family: 'Poppins', sans-serif;*/
  /*font-family: metalManiaFont;*/
}

body {
  background-color: #262322;
  /*background-color: #0b0c0c;*/
  min-height: 1000px;
  min-width: 360px;
  font-family: Creepster;
}

/* Color Palette - Elements */
.orange { color: #ff7d00; }

.black { color: #262322; }

.white { color: #f7f5fb; }

.blue { color: #2176ff; }

.lightblue { color: #4cc9f0; }

.green { color: #00FF00; }

.red { color: #FF0000; }

a {
	color: #f7f5fb;
}

a:hover {
	color: #ff7d00;
}

section {
  display: flex;
  position: relative;
  width: 100%;
  /*width: 100vw;*/
  height: auto;
  /*height: 100vh;*/
  overflow: hidden;
  justify-content: center;
  align-items: center;
  /*background-color: #100F0D;*/
  /*border: 1px solid yellow;*/
  margin: 100px 0 100px 0;
}

section.parallax {
	/*display: none;*/
	visibility: hidden;
	/*height: 100vh;*/
	height: 0;
	margin-top: 0;
	margin-bottom: 0;
}

section.static {
	/*display: block;*/
	visibility: visible;
	height: 100vh;
	margin-top: 0;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 360px;
  height: 100px;
  /*background: linear-gradient(to top, #100F0D, transparent);*/
  z-index: 10000;
  pointer-events: none;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  /*background: linear-gradient(to top, #100F0D, transparent);*/
  z-index: 10000;
  pointer-events: none;
}

section .parallaxImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

section .header {
	display: none;
}

#title {
	position: relative;
	margin-top: -400px;
	color: #f7f5fb;
	filter: drop-shadow(0px 0px 3px #000);
	font-size: 15vw;
	font-family: Creepster;
	z-index: 1;
}

#title2 {
	position: relative;
	margin-top: -400px;
	color: #f7f5fb;
	filter: drop-shadow(0px 0px 3px #000);
	font-size: 15vw;
	font-family: Creepster;
	z-index: 1;
}

#scrollDown {
	position: absolute;
	/*margin-top: 1000px;
	margin-bottom: -300px;*/
	bottom: 50px;
	padding: 10px 0;
	color: #FFF;
	/*filter: drop-shadow(0px 0px 1px #FFF);*/
	text-shadow: 1px 1px 2px black, 0 0 25px white;
	font-size: 2em;
	font-family: Creepster;
	z-index: 3;
}

#scrollDown2 {
	position: absolute;
	/*margin-top: 1000px;
	margin-bottom: -300px;*/
	bottom: 50px;
	padding: 10px 0;
	color: #FFF;
	/*filter: drop-shadow(0px 0px px #FFF);*/
	text-shadow: 1px 1px 2px black, 0 0 25px white;
	font-size: 2em;
	font-family: Creepster;
	z-index: 3;
}

#fg {
  z-index: 2;
}

.content {
	display: flex;
	/*flex-flow: column wrap;*/
	flex-flow: row wrap;
	overflow: hidden;
	justify-content: center;
	align-content: center;
	position: relative;
	/*top: 0;*/
	left: auto;
	/*margin: 20px;
	padding: 10px 0;*/
	text-align: center;
	color: #f7f5fb;
	/*(background-color: #100F0D;*/
	font-size: 3em;
	/*border: 1px dashed gray;
	border-radius: 10px;*/
}

/* Floating Social Media Bar Style Starts Here */

.fl-navbar {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	position: fixed;
	width: 100%;
	min-width: 180px;
	height: auto;
	right: 0;
	top: 0;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.5);
}

.fl-fl {
	/*background: rgba(0, 0, 0, 0.5);*/
	/*text-transform: uppercase;*/
	letter-spacing: 3px;
	padding: 4px;
	/*width: auto;*/
	height: auto;
	/*position: fixed;
	top: 0;
	left: 0;*/
	z-index: 1000;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
  }
  
  .fab {
	font-size: 20px;
	color: #fff;
	padding: 5px 0;
	width: 40px;
	margin-left: 8px;
  }
  
  .fl-fl a {
	display: block;
	color: #fff !important;
	font-size: 16px;
	text-decoration: none;
  }

  .fl-fl i {
	  vertical-align: middle;
  }
  
/* Floating Social Media Bar Style Ends Here */

.footer {
	position: fixed;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 0;
	text-align: center;
	bottom: 0;
	background-color: #100F0D;
	background-color: rgba(0, 0, 0, 0.5);
	color: #f7f5fb;
	font-size: 20px;
}

/*
.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 360px;
	height: 20px;
	background: linear-gradient(to top, #100F0D, transparent);
	z-index: 10000;
	pointer-events: none;
  }

.footer::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	min-width: 360px;
	height: 20px;
	background: linear-gradient(to top, #100F0D, transparent);
	z-index: 10000;
	pointer-events: none;
  }
  */

.flexRow {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flexRow .column {
	flex-flow: column nowrap;
}

.flexRow .row {
	flex-flow: row nowrap;
}

.flexItem {
	position: relative;
	flex: 1;
	min-width: 340px;
	/*min-height: 360px;*/
	/*width: 30%;*/
	margin: 5px;
	padding: 5px 0;
	/*border: 1px solid darkslategrey;*/
	/*background-color: gray;*/
	border-radius: 10px;
	vertical-align: middle;
	text-align: center;
}

.flexItem .subFlex {
	min-width: 50%;
	max-width: 210px;
}

.sizeHalf {
	/*min-width: 50%;*/
	min-width: 100px;
	max-width: 200px;
}

.size1 {
	/*background-color: green;*/
	max-width: 420px;
}

.size2 {
	/*background-color: blue;*/
	max-width: 635px;
}

.size3 {
	/*background-color: red;*/
	max-width: 1280px;
}

.auto {
	height: auto;
}

.short {
	height: 70px;
}

.medium {
	height: 360px;
}

.tall {
	height: 500px;
}

.huge {
	height: 1000px;
}

.left {
	justify-content: left;
	text-align: left;
}

.right {
	justify-content: right;
	text-align: right;
}

.center {
	justify-content: center;
	text-align: center;
}

.flexItemBanner {
	color: #f7f5fb;
	font-size: 40px;
}

.flexItemHeader {
	
	color: #ff7d00;
	font-size: 36px;
	margin: 10px 0;
	/*text-decoration: underline;*/
}

.flexItemContent {
	font-family: Arvo, sans-serif;
	font-size: 26px;
	margin: 5px;
}

.flexItemContent p {
	margin: 10px 0;
}

.flexItemContent p.small {
	font-size: 80%;
}

.flexItemContent ul {
	font-size: 70%;
	margin: 0 20px;
}

.flexItemContent img {
	max-width: 300px;
}

.flexItemContent a img {
	max-width: 300px;
}

.googleMap {
	margin: 20px;
}

/* Media queries - mobile - landscape orientation */
@media screen and (orientation: landscape) {
	#title {
		margin-top: -100px;
	}

	#title2 {
		margin-top: -100px;
	}

	#scrollDown {
		bottom: 10px;
		font-size: 3em;
	}

	#scrollDown2 {
		bottom: 10px;
		font-size: 3em;
	}
}

/* Media queries - 420px width */
@media screen and (min-width: 420px) {
	.fl-navbar {
		background-color: transparent;
		flex-flow: column nowrap;
		/*right: -380px;*/
		top: 60px;
		width: auto;
	}

	.fl-fl {
		background: rgba(0, 0, 0, 0.5);
		width: 180px;
		height: 40px;
		position: relative;
		right: -135px;
		z-index: 1000;
		margin-top: 2px;
		margin-bottom: 2px;
		padding: 0;
		-webkit-transition: all .25s ease;
		-moz-transition: all .25s ease;
		-ms-transition: all .25s ease;
		-o-transition: all .25s ease;
		transition: all .25s ease;
		border-radius: 16px;
	  }

	  .fl-fl:hover {
		right: -30px;
	  }

	  .fab {
		font-size: 10px;
		width: 40px;
		margin-left: 8px;
	  }

	section .header {
		display: inline;
		position: absolute;
		font-size: 50px;
		top: 50px;
		left: auto;
		margin-bottom: 20px;
		color: white;
		text-shadow: gray;
	}

	section.parallax {
		/*display: block;*/
		visibility: visible;
		height: 100vh;
	}

	section.static {
		/*display: none;*/
		visibility: hidden;
		height: 0;
	}

	#scrollDown {
		bottom: 0;
		font-size: 3em;
	}

	#scrollDown2 {
		bottom: 0px;
		font-size: 3em;
	}

	.flexItemBanner {
		font-size: 54px;
	}

	.flexItemHeader {
		font-size: 44px;
	}

	/*.flexItemContent img {
		max-width: 400px;
	}*/
}

/* Media queries - 1080px width */
@media screen and (min-width: 1080px) {
	section .header {
		font-size: 100px;
		top: 200px;
	}

	.flexItemBanner {
		font-size: 72px;
	}
}