@charset "utf-8";
/* CSS Document */

	body {
	background-color: #000000;
	}

	h1 {
	font-size: 150%;
	font-family: 'Alfa Slab One', cursive;
	margin-left: 15px;
	padding-bottom: 10px;
	}

	h2 {
	font-size: 200%;
	font-family: 'Alfa Slab One', cursive;
	margin-left: 15px;
	padding-bottom: 10px;
	}
	
	h3 {
	font-size: 250%;
	font-family: 'Alfa Slab One', cursive;
	margin-left: 15px;
	padding-bottom: 10px;
	}
		
	.wrapper {
	width: 100%;
	background-color: #ffffff;
	padding: 0;
	font-family: 'Lato', Helvetica, Arial, sans-serif;
	font-weight:400;
	font-size: 100%;
	margin: 0 auto;
	}
	
	.element {
  	position: fixed;
  	bottom: 0;
  	right: 0;
	}

/* animation */

	#animated-button {
	position: fixed;
	top: 170px;
	right: 23px;
	width: 100px;
    text-align: center;
    padding: 0;
	}

	.animated { 
 	-webkit-animation-name: bounceIn;
 	-webkit-animation-duration: 4s;
 	-webkit-animation-iteration-count: 5;
 	-webkit-animation-timing-function: ease-out;
 	-webkit-animation-fill-mode: forwards;
	
 	animation-name: bounceIn;
 	animation-duration: 4s;
 	animation-iteration-count: 10;
 	animation-timing-function: ease-out;
 	animation-fill-mode: forwards;
	} 

/*
 * Animation for webkit
*/
@-webkit-keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
    40% {-webkit-transform: translateY(-30px);} 
    60% {-webkit-transform: translateY(-15px);} 
} 
  
@keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
    40% {transform: translateY(-30px);} 
    60% {transform: translateY(-15px);} 
} 
  
/*
 * Adding the animation to our element
*/
	.bounce { 
    -webkit-animation-name: bounce; 
    animation-name: bounce; 
}

/* end animation */
	

/* ----------------------------------------------------------*/
/* navigation attributes - section, colors, rollovers, links */
/* ----------------------------------------------------------*/
	
	nav.desktop {
	display: block; 
	}
	
	nav.tablet {
	display: none; 
	}
	
	nav.mobile {
	display: none; 
	}
	
	nav {
	width: 100%;
	background-color: #000000; /* background of top nav bar */
	margin: 0;
	padding: 0;
	}

	nav ul {
	background: ;
	overflow: hidden;
	color: black;
	padding: 0;
	text-align: center;
	margin: 0;
	
	-webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-o-transition: max-height 0.4s;
	transition: max-height 0.4s;
	}
	
	nav ul li {
	display: inline-block;
	padding: 25px 5% 25px 5%;
	}

	nav ul li:hover {
	color: #ffffff;
	background-image:url(../images/grnbg.png);
	}

	nav a { text-decoration: none; color: inherit; }
	nav a:link { color: white; }
	nav a:visited { color: white; }
	nav a:active { color: white; }
	nav a:hover { color: red; }

/* ----------------------------------------------------------- */

	.handle {
	width: 100%;
	text-align: left;
	box-sizing: border-box;
	background: #000000;
	padding: 25px;
	cursor: pointer;
	color: white;
	display: none;
	}
	
	header {
	width: 100%;
	background-image: url(../images/image01.png);
	background-repeat: no-repeat;
    background-position: center;
	height: 500px;
	padding: 0px;
	color: white;
	margin: 0;
	}
	
	section {
	width: 100%;
    text-align: center;
	}
	
	.section_desktop {
	display: block;
	}
	.section_tablet {
	display: none;
	}
	.section_mobile {
	display: none;
	}

	.spacebox1 {
    display: inline-block;
    margin: 0 auto;
	max-width: 1200px;
	}
	
	.spacebox2 {
    display: inline-block;
    margin: 0 auto;
	padding-top: 110px;
	}
	
/* ----------------------------------------- */
	
	.responsive-image1 {
  	max-width: 100%;
  	height: auto;
	}
	
/* -------Load Time Animation--------------- */



/* ----------------------------------------- */	
	
	.footer_desktop {
	display: block; 
	}
	
	.footer_tablet {
	display: none; 
	}
	
	.footer_mobile {
	display: none; 
	}
	
	footer {
	width: 100%;
	text-align: center;
	background-image: url(../images/bottom01.png);
	background-repeat: no-repeat;
    background-position: center;
	height: 360px;
	padding-top: 0;
	color: white;
	margin: 0;
	}
	
	footer a { text-decoration: none; color: inherit; }
	footer a:link { color: white; }
	footer a:visited { color: white; }
	footer a:active { color: white; }
	footer a:hover { color: #af070b; }





/* ----------for tablet------------------------------------------------- */
@media only screen and (min-width: 581px) and (max-width: 852px){

	header {
	width: 100%;
	background-image: url(../images/image01.png);
	background-repeat: no-repeat;
    background-position: center;
	height: 500px;
	padding: 0px;
	color: white;
	margin: 0;
	}

	nav.desktop {
	display: none; 
	}
	
	nav.tablet {
	display: block; 
	}
	
	nav.mobile {
	display: none; 
	}

	.section_desktop {
	display: none;
	}
	.section_tablet {
	display: block;
	}
	.section_mobile {
	display: none;
	}

	.footer_desktop {
	display: none; 
	}
	
	.footer_tablet {
	display: block; 
	}
	
	.footer_mobile {
	display: none; 
	}
	
	.spacebox3 {
    display: inline-block;
    margin: 0 auto;
	padding-top: 110px;
	}
}

/* -----for mobile----------------------------------------------------- */
@media only screen and (min-width: 1px) and (max-width: 580px){
	
	header {
	width: 100%;
	background-image: url(../images/image03.png);
	background-repeat: no-repeat;
    background-position: center;
	height: 364px; 
	padding: 0px;
	color: white;
	}
	
	nav.desktop {
	display: none; 
	}
	
	nav.tablet {
	display: none; 
	}
	
	nav.mobile {
	display: block; 
	}
	
	nav ul {
	max-height: 0;	
	}
	
	.showing {
	max-height: 20em;	
	}

	nav ul li {	
	box-sizing: border-box;
	width: 100%;
	padding: 20px;
	text-align: left;
	}

	.section_desktop {
	display: none;
	}
	.section_tablet {
	display: none;
	}
	.section_mobile {
	display: block;
	}

	#animated-button {
	position: fixed;
	top: 80px;
	right: 10px;
	width: 60px;
    text-align: center;
    padding: 0;
	}

	.handle {
	 display:block;
	 color: white;
	}

	.footer_desktop {
	display: none; 
	}
	
	.footer_tablet {
	display: none; 
	}
	
	.footer_mobile {
	display: block; 
	}
	
	.spacebox4 {
    display: inline-block;
    margin: 0 auto;
	padding-top: 120px;
	}

}

