/****************** SETUP ********************/
* {border: 0; margin: 0; padding: 0;
	font-family: 'Rajdhani', sans-serif;}
	
body {     
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 12px;
	color: #000;
	background: #fff;
	text-align: left;
	max-width: 100%;
	min-width: 320px;
	/*opacity: 0;*/
}
a {	
	color: #000;
	text-decoration: none; 
}
p {
	width: 100%;
	text-align: justify;
}
nav ul { list-style: none; }

.clr::after { clear: both; }

h1 			{font-size: 55px;font-weight: bold;}
h2,h3,h4 	{font-size: 14px;font-weight: normal; }

/****************** BASIC CLASS ********************/
.main-container	{
	max-width: 1700px;
	width: calc(100% - 100px);
	margin: 0 auto;
	display: flex;
	box-sizing: border-box;
}
.main-container-extended	{
	width: 100%;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}
.container 	{display: flex;box-sizing: border-box;min-width: 200px;}


.box-half 	{flex-basis: 50%;min-width: 320px;box-sizing: border-box;}
.box-small	{flex-basis: 33.3%;float: left;box-sizing: border-box;}
.box-large	{flex-basis: 66.6%;float: left;box-sizing: border-box;}

.column-two {flex-direction: row;flex-wrap: wrap;justify-content: center;align-items: stretch;padding-top: 40px;}
.column-two .footer-box, .column-two .box-news, .column-two .box-attachments {flex-basis: 50%;} 

/****************** HEADER ********************/
	header {
		flex-wrap: wrap;
		border-bottom: 2px #ff7d3d solid;
		width: 100%;
		align-items: center;
	}
	#logotyp {
		padding: 20px;
		flex-grow: 1;
	}
	#logotyp img {
	}
	#menu {
		justify-content: flex-start;
		flex-direction: column;
		align-items: flex-end;
		flex-wrap: wrap;
		flex-grow: 9;
		box-sizing: border-box;
		padding: 20px;
	}
		#contact_links {
			flex-direction: row;
			justify-content: flex-start;
		}
		#contact_links a	{
			font-size: 18px;
			text-transform: uppercase;
		}
		#contact_links a:nth-child(1)	{
			padding-right: 20px;
		}
		#contact_links a:nth-child(2)	{
			padding-left: 20px;
			position: relative;
		}
		#contact_links a:nth-child(2)::after	{
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			width: 1px;
			background: #ff7d3d;
		}
		nav{
			flex-direction: row;
			justify-content: flex-end;
			height: 100%;
		}
		nav a{font-size: 16px;padding: 20px 0 0px 20px;}
		nav a:hover{font-weight: bold;}
/****************** SLIDER BOX ********************/
	.box-slider {
		width: 100%;
		position: relative;
		border-bottom: 100px #ff7d3d solid;
	}
	.box-slider img {max-width: 100%;}
	#box-slider-text {
		width: 500px;
		padding: 10px 20px;
		background: #ff7d3d;
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		position: absolute;
		top: 35%;
		left: calc(50% - 250px);
		text-align: center;
	}
/****************** BOX OF BOXES ********************/
	.box-ofBoxes {
		justify-content: space-between;
		align-items: stretch;
		margin-top: -150px;
		position: relative;
		z-index: 10;
	}
	.box-ofBoxes-subpage {
		justify-content: space-between;
		align-items: stretch;
		padding: 50px 0;
		position: relative;
		z-index: 10;
	}
	.box-ofBoxes-item {
		width: 30%;
		flex-direction: column;
		align-items: center;
		background: #fff;
		border: 1px #ff7d3d solid;
		border-top: 11px #ff7d3d solid;
	}
	.box-ofBoxes-item-title {
		padding: 20px 0 10px;
		position: relative;
		width: 100%;
		text-align: center;
		font-weight: bold;
		font-size: 24px;
	}
	.box-ofBoxes-item-title::after {
		content: "";
		bottom: 0;
		left: 45%;
		right: 45%;
		height: 3px;
		background: #ff7d3d;	
		position: absolute;
	}
	.box-ofBoxes-item-desc {
		line-height: 28px;
		font-size: 16px;
		padding: 10px 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.box-ofBoxes-item-desc p{
		text-align: center;
		padding: 3px 0;
	}
	.box-ofBoxes-item-desc a{
		position: relative;
		text-align: center;
		padding: 3px 0;
	}
	.box-ofBoxes-item-desc a::after{
		position: absolute;
		bottom: 3px;
		left: 0;
		right: 0;
		height: 1px;
		background: #ff7d3d;
		content: "";
	}
	

/****************** PAGE BOX ********************/
	.box-page {
		flex-direction: column;
		box-sizing: border-box;
		padding: 50px 0;
	}
		.box-page-title {
			text-align: center;
			position: relative;
		}
		.box-page-title::after {
			content: "";
			bottom: 0;
			right: calc(50% - 50px);
			width: 100px;
			height: 3px;
			background: #ff7d3d;	
			position: absolute;
		}
		.box-page-desc{
			padding: 20px;
		}
		.box-page-desc p{
			text-align: center;
			line-height: 28px;
			padding: 10px;
			font-size: 18px;
			box-sizing: border-box;
		}



#content-footer {
	border-top: 1px #c2c2c2 solid;
	justify-content: space-between;
	padding: 10px 0;
	position: relative;
	align-items: flex-start;
}
#content-footer::after {
	content: "";
	top: -5px;
	left: 0;
	right: 0;
	height: 1px;
	background: #c2c2c2;
	position: absolute;
}
#footer-menu {
	padding: 0;
}
#footer-menu nav a{font-size: 14px;padding: 10px 10px 0px 0 !important;}
#copyrights {text-align: left;padding: 10px 0;font-size: 14px; line-height: 28px;}
#creators p {text-align: right;padding: 0px 0;font-size: 14px; line-height: 34px;}



/****************** GALLERY BOX ********************/
	.imgContainer {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
		.imgContainer-item {
			position: relative;
			flex-direction: column;
			justify-content: center;
			text-align: center;
			box-sizing: border-box;
			padding: 20px;
			flex-basis: 25%;
			overflow: hidden;
		}
		.imgContainer-item img{
			max-width: 100%;
			max-height: 300px;
		}

/****************** ATTACHMENTS BOX ********************/
	.box-attachments {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 20px 0;
	}
		.box-attachments-item {
			min-width: 150px;
			text-align: center;
		}

/****************** IMAGE BOX ********************/
	.box-image {
		background: #cecece;
		align-items: center;
		justify-content: center;
		padding: 10px 0;
				flex-grow: 1;
	}






