/**********************************
Universal Styles             	
***********************************/  

@import url('reset.css');

body {
  font-family: Bodoni;
}

h2 {
	font-size: 3em;
	margin-bottom: 50px;
}

#logo {
	margin: 0 auto;
	width: 400px;
	display: block;
	transition: all 0.25s linear;
}

#main_header {
	width: 100%;
	height: 400px;
	background-color: #eb1c24;
	border-bottom: 4px solid #000;
	padding: 40px 0px 0px 0px;
	box-shadow: 0px 0px 5px #000;
	overflow: hidden;

	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1000;

	transition: all 0.25s linear;
}

/*
#main_header:after {
    content: " ";
    display: block;
    height: 0;
    clear: both; 
    visibility: hidden;
}*/

#main_header img {
		max-width: 250px;
		animation: example 8s linear alternate;

		/*
		float: left;
		margin: 20px;
		*/
}


@keyframes example {
  	0% {
  		transform: translate(-500px, -500px) scale(5) rotate(-100deg);
  	}

  	100% {
  		transform: translate(0px, 0px), scale(1);
  	}

}

@font-face {
  font-family: Bodoni;
  src: url(../fonts/BodoniFLF-Bold.ttf);
}


/*********************
Main Navigation
**********************/

#main_nav {
	width: 100%;
	position: absolute;
	bottom: 0px;
}


#main_nav li {
	float: left;
	width: 16.6666666666%;
}



#main_nav li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	border: solid 3px #a9a9a9;
	background-color: #000;
	font-size: 1.2em;
	padding: 20px 0px;
	position: relative;
	z-index: 1000;
	transition: all 0.2s linear;
}

#main_nav li a:hover {
	transform: scale(2);
	z-index: 1001;
}

/*********************
Slideshow
**********************/

@keyframes s1animation {
  0% {
  	transform: scale(1);
  }
  100% {
   	transform: scale(1.5);
  }
}

@keyframes slide_info_up {
  0% {
	bottom: -10%;
  }
  100% {
	bottom: 10%;
  }
}

section#slide_show {
	width: 100%; /* Considering Arrow Move Effect On Both Sides +30 */
	/*width: 1180px;*/
	/*width: 1260;*/
	position: relative;
	margin-top: 500px;
	height: 925px;
	box-shadow: 0px 0px 10px #000;
	overflow: hidden;
	z-index: 100;
	background: #FFF;
}

section#slide_show #slide_show_view {
	width: 100%;
	margin: 0 auto;
	position: relative;
	height: 925px;
}

section#slide_show .slide {
	/*
	width: 1060px;
	height: 400px;
	*/
	width: 100%;
	height: 925px;

	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;

	transition: opacity 2s linear;
	-webkit-transition: opacity 2s linear;
	-moz-transition: opacity 2s linear;
	-o-transition: opacity 2s linear;
	-ms-transition: opacity 2s linear;
}


section#slide_show #slide_show_view img {
	max-width: 100%;
	margin: 0 auto;
	display: block;	
}

section#slide_show #slide_show_view p {
	width: 50%;
	font-size: 3em;
	position: absolute;
	bottom: 10%;
	/*bottom: -380px;*/
	background-color: rgba(0,0,0,0.8);
	color: #FFF;
	z-index: 1000;
	padding: 20px;
	box-shadow: 0px 0px 3px #FFF;
}

/*s1*/
section#slide_show #s1-home {
	opacity: 1;
	z-index: 5;	

	/*
	position: relative;
	padding-bottom: 56.25% !important; 
	padding-top: 25px;
	height: 0;
	*/
}


section#slide_show #s1-home img {
	opacity: 1;
	z-index: 5;
  	animation: s1animation 10s ease-in-out alternate infinite;	
}

section#slide_show #s1-home p {
	animation: slide_info_up 5s ease-in-out;
}

/*s2*/
section#slide_show #s2-home img {
  	animation: s1animation 10s ease-in-out alternate infinite 13s;	
}

section#slide_show #s2-home p {
	animation: slide_info_up 5s ease-in-out 13s;
}

/*s3*/
section#slide_show #s3-home img {
  	animation: s1animation 10s ease-in-out alternate infinite 26s;
}

section#slide_show #s3-home p {
	animation: slide_info_up 5s ease-in-out 26s;
}

/*s4*/
section#slide_show #s4-home img {
  	animation: s1animation 10s ease-in-out alternate infinite 39s;
}

section#slide_show #s4-home p {
	animation: slide_info_up 5s ease-in-out 39s;
}

/*s5*/
section#slide_show #s5-home img {
  	animation: s1animation 10s ease-in-out alternate infinite 40s;
}

section#slide_show #s5-home p {
	animation: slide_info_up 5s ease-in-out 40s;
}

section#slide_show ul#slide_show_nav {
	width: 330px;
	position: absolute;
	left: 50%;
	bottom: 33px;
	margin-left: -165px;
	z-index: 200;

	transform: scale(2);

	/*
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 10;
	margin-left: auto;
	margin-right: auto;
	*/
}

section#slide_show ul#slide_show_nav ul:after {
	content: " ";
    display: block;
    height: 0;
    clear: both; 
    visibility: hidden;
}

section#slide_show ul#slide_show_nav li {
	width: 14px;
	height: 14px;
	background-color: rgba(0,0,0,0.0);
	cursor: pointer;
	margin-left: 55px;
	border: solid 4px #000;
	float: left;

	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-o-border-radius: 100%;
	-ms-border-radius: 100%;

	transition: all 0.35s linear;
	-webkit-transition: all 0.35s linear;
	-moz-transition: all 0.35s linear;
	-ms-transition: all 0.35s linear;
	-o-transition: all 0.35s linear;
	/*
	-webkit-transition: background-color 0.5s linear;
	-moz-transition: background-color 0.5s linear;
	-o-transition: background-color 0.5s linear;
	-ms-transition: background-color 0.5s linear;
	*/
}

section#slide_show ul#slide_show_nav li:hover {
	background-color: #FFF !important;

	transform: scale(1.3) !important;
	-webkit-transform: scale(1.3) !important;
	-moz-transform: scale(1.3) !important;
	-ms-transform: scale(1.3) !important;
	-o-transform: scale(1.3) !important;
}

section#slide_show ul#slide_show_nav li:active {
	background-color: #FFF !important;

	transform: scale(1.1) !important;
	-webkit-transform: scale(1.1) !important;
	-moz-transform: scale(1.1) !important;
	-ms-transform: scale(1.1) !important;
	-o-transform: scale(1.1) !important;
}

section#slide_show ul#slide_show_nav li:first-child {
	background-color: #FFF;
	margin-left: 0;

	transform: scale(1.3);
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-o-transform: scale(1.3);
	-ms-transform: scale(1.3);
}

#menu_box {
	  background-image: linear-gradient(#FF0000, #9E1A1A);
	  color: #FFF;
	  text-decoration: none;
	  display: block;
	  margin: 0 auto;
	  width: 30%;
	  text-align: center;
	  font-size: 3em;
	  margin-top: 100px;
}

#videos_catalog {
	width: 100%;
	margin: 100px auto;
	text-align: center;
}

#videos_catalog video {
	margin-bottom: 120px;
	transition: all 0.25s linear;
	box-shadow: 0px 0px 5px #000;
}

#videos_catalog video:hover {
	transform: scale(1.3);
	box-shadow: 0px 0px 10px #000;
}


#about_us {
	text-align: center;
	line-height: 40px;
	background-color: #eb1c24;
	padding: 50px 0px;
	color: #FFF;
	box-shadow: 0px 0px 10px #000;
}



/*********************
Flint VS Detroit
**********************/

@font-face {
  font-family: myFirstFont1;
  src: url(../fonts/CrushNBurn-Regular.ttf);
}

@font-face {
  font-family: myFirstFont2;
  src: url(../fonts/BlackRavens.ttf),
  	   url(../fonts/BlackRavens.otf);
}


#flintvsdetroit {
	width: 100%;
	background: #ebba44;
	overflow: hidden;
}

#flintvsdetroit img {
	z-index: 100;
	position: relative;
}

#flintvsdetroit h2 {
  font-size: 9em;
  font-family: myFirstFont1;
}

#flintvsdetroit p {
  color: #FFF;
  font-size: 3em;
  font-family: myFirstFont2;	
   text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

#flint_detroit_text {
	position: relative;
	left: -200px;
	opacity: 0;
	transition: all 5s ease-in-out;
}

#flintvsdetroit:after {
	content: " ";
    display: block;
    height: 0;
    clear: both; 
    visibility: hidden;
}

/*********************
Gallery
**********************/

#gallery {
	width: 1300px;
	margin: 100px auto;
}


#gallery img {
	max-width: 600px;
	float: left;
	margin-right: 100px;
	margin-bottom: 120px;
}

#gallery img:nth-child(odd) {
	margin-right: 0px;
}



@media screen and (max-width: 1300px) {
  #gallery {
  	width: 600px;
  }
  img {
  	margin-right: 0px;
  }

}

/*********************
Testimonials
**********************/

#testimonials {
	font-size: 1em;
	text-align: center;
	width: 100%;
	padding: 100px 0px;
	color: #FFF;
	background-color: #eb1c24;
}

#testimonials p {
	max-width: 40%;
	line-height: 40px;
	margin: 0 auto;
}

#test_con {
	transition: all 8s ease-in-out;
	opacity: 0;
	position: relative;
	top: -100px;
}

/*********************
Footer
**********************/

#main_footer {
	width: 100%;
	box-shadow: 0px 0px 20px #000; 
	margin-top: 100px;
	font-size: 3em;
	text-align: center;
	line-height: 95px;
	padding-top: 20px;
    background-color: red;
    color: #FFF;
    border-top: solid 3px #000;
    text-shadow: 0px 0px 10px #000;
    padding: 50px 0px;
}

#main_footer img {
	max-width: 300px;
}

#main_footer span {
	font-family: 'typicons';
}

#main_footer a {
	color: #FFF;
	text-decoration: none;
}

#main_footer a:hover {
	text-decoration: underline;
}


