
body{
	width: 100vw;
	height: 100vh;
	min-width: 250px;
	min-height: 350px;
	margin: 0;
	background-color: #000;
	
	/* flex-box - page */
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-content: center;
		align-items: stretch;
}


/* HEADER */
header{
	position: relative;
	width: 100%;
	min-height: 70px;
	max-height: 80px;
	background-color: #25408E;
	/* flex */
	align-self: auto;
	
	box-shadow: 0px 2px 2px #000;
	z-index: 10;
	box-sizing: border-box;
}

	header > div{
		position: relative;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		/* flex-box */
			display: flex;
			justify-content: flex-start;
			align-items: center;
	}

	header > div > h1{
		margin: 0;
		cursor: pointer;
		font-weight: normal;
	}
	
	header > div > h1 > a{
		color: #FFF;
		text-decoration: none;
	}

	header > div > h1:first-of-type{
		margin-top: 10px;
		margin-left: 10px;
		margin-right: 10px;
		
		/* text */
			font-family: D_MEDIUM;
			font-size: 14vw;
	}

	header > div > h1:last-of-type{
		max-width: 170px;
		margin-right: 10px;
		padding-top: 5px;
		padding-left: 10px;
		border-left: 2px solid #fff;
		
		/* text */
			font-family: D_BOOK;
			font-size: 5.3vw;
	}

	#menuButton{
		min-width: 50px;
		height: 50px;
		margin-left: auto;
		margin-right: 10px;
		border: 3px solid #fff;
		border-radius: 30%;
		cursor: pointer;
		
		/* flex-box - for image */
			display: flex;
			justify-content: center;
			align-items: center;
	}
/* /HEADER */

main{
	position: relative;
	width: 100%;
	min-height: auto;
	flex: 1;
	overflow: hidden;
	
	z-index: 9;
}

main > div{
	position: relative;
	width: 100%;
	height: 100%;
	
	/* flex-box - page */
		display: flex;
		align-items: stretch;
}

nav#menu{
	position: absolute;
	right: 100%;
	width: 100%;
	height: 100%;
    overflow: auto;
	
	z-index: 6;
}

	nav#menu div:nth-child(1){
		width: inherit;
		height: inherit;
	}

	nav#menu div:nth-child(2){
		position: absolute;
		top: 0;
		width: inherit;
		height: inherit;
		background-color: #000;
		
		opacity: 0.5;
	}
	
#content{
	width: 100%;
	height: 100%;
	background-color: #F2722A;
	overflow: auto;
	
	z-index: 5;
	
	/* flex-box - page */
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-content: center;
		align-items: center;
}

#content section{
	position: relative;
	width: 100%;
	min-height: auto;
	flex: 1;
	padding: 3vw;
	box-sizing: border-box;
}
	#content article{
		width: 100%;
		height: 100%;
		padding: 10pt 15pt;
		background-color: #fff;
		box-shadow: 1px 1px 5px	1px	#444;
		box-sizing: border-box;
		
		/* flex-box - for section */
			display: flex;
			flex-direction: column;
			flex-wrap: wrap;
			justify-content: flex-start;
			align-items: flex-start;
	}
	
	#content article h3{
		font-family: D_MEDIUM;
		font-size: 35px;
		width: 100%;
		text-align: center;
		color: #1d257c;
		text-decoration: underline;
	}
	
	#content article h4{
		font-family: D_MEDIUM;
		font-size: 20px;
		width: 100%;
		padding-top: 10px;
		padding-bottom: 0px;
		margin-bottom: 10px;
		text-align: center;
		color: #1d257c;
	}
	
	#content article > div{
		width: 100%;
		height: auto;
	}
	
	#content article p{
		font-family: D_LIGHT;
		font-size: 18px;
		text-align: center;
	}
	
	#content article#contact p{
		font-size: 18px !important;
		margin-bottom: 7px !important;
	}
	
	#content article#contact a{
		color: #1d257c;
	}
	
	#content article#contact h4{
		margin-top: 10px;
	}
	
	#content article#contact iframe{
		min-height: 250px;
	}
	
	#content article#contact img{
		width: 50%;
	}
	
	#content article div p{
		margin-top: 0px;
		padding-top: 0px;
	}


#content footer{
	position: relative;
	width: 100%;
	height: auto;
	background-color: #25408E;
	
	box-shadow: 0px -2px 2px #000;
	box-sizing: border-box;
}

#content footer > div{
	position: relative;
	width: 100%;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	
	/* flex-box */
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: stretch;
}

#content footer > div > div{
	position: relative;
	height: auto;
	flex: 1;
	min-height: 100px;
	padding-bottom: 5px;
}

#content footer > div > div:first-of-type{
	border-bottom: 2px solid #fff;
}

#content footer > div > div:last-of-type{
	padding-top: 20px;
}

#content footer h3{
	margin: 0;
	padding: 0;
	padding-bottom: 8px;
	font-family: D_MEDIUM;
	font-size: 7vw;
	text-decoration: underline;
}

#content footer img{
	margin: 0;
	padding: 0;
	width: 150px;
	height: auto;
	margin-top: 5px;
}

#content footer ul{
	margin: 0;
	padding: 0;
}

#content footer ul li{
	list-style-type: none;
	font-family: D_BOOK;
	font-size: 5vw;
}

#content footer ul > li > a{
	color: #fff;
}

#upLine{
	position: relative;
	width: 100%;
	height: 0;
}

a#arrowUP{
	position: absolute;
	bottom: 60px;
	right: 20px;
	width: 50px;
	height: 50px;
	z-index: 100;
	display: none;
	opacity: 0.8;
}
	
a#arrowUP > div{
	position: relative;
	width: 50px;
	height: 50px;
	
	box-sizing: border-box;
	border: 3px solid #fff;
	border-radius: 30%;
	cursor: pointer;
	background-color: #3FAD48;
	background-image: url("../images/arrowUP.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 85%;
}






.logoShadow{
  -webkit-filter: drop-shadow(0 0 4px #80B6E5 );
  filter: drop-shadow(0 0 4px #80B6E5);
}

.blurClass{
	-webkit-filter: blur(2px); /* Safari */
	filter: blur(2px);
}

.unselectable{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}