/****************** 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: 40px;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;}


.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: no-wrap;
		border-top: 3px #ff6901 solid;
		width: 100%;
		align-items: center;
		background: #0b1d33;
	}
	#logotyp {
		padding: 20px;
		flex-grow: 1;
		
	}
	#logotyp img {
	}
	#navigation {
		flex-grow: 9;
		justify-content: flex-end;	
		align-items: center;
			
	}
	#menu {
		justify-content: center;
		flex-direction: column;
		align-items: flex-end;
		flex-wrap: wrap;
		box-sizing: border-box;
		padding: 0 20px;
			position: relative;
	}
	
		#menu::after	{
			content: "";
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			width: 1px;
			background: #ff7d3d;
		}
		
		#contact_links {
			flex-direction: row;
			justify-content: flex-start;
		}
		
		
		#contact_links a	{
			font-size: 18px;
			text-transform: uppercase;
			padding: 10px 20px;
		}
		nav{
			flex-direction: row;
			justify-content: flex-end;
			height: 100%;
		}
		nav a{
			font-size: 16px;
			padding: 10px;
			color: #fff;
		}
		nav a:hover{font-weight: bold;}
/****************** SLIDER BOX ********************/
	.box-slider {
		width: 100%;
		position: relative;
		align-items: stretch;
		color: #fff;
	}
	#slider-img-container, #slider-news {
		flex-basis: 50%;
		flex-grow: 1;
	}
	#slider-img-container 		{overflow: hidden;justify-content: center;align-items: center;}
	#slider-img-container img 	{min-height: 100%;}
	
	#slider-news {
		background: #ff8500;
		padding: 20px;
		box-sizing: border-box;
	}
	#slider-news-mainTitle {
		padding-bottom: 10px;
		font-size: 34px;
		color: #fff;
		font-weight: bold;
		position: relative;
	}
	#slider-news-mainTitle::after {
		content: "";
		bottom: 0;
		left: 0;
		width: 100px;
		height: 2px;
		position: absolute;
		background: #fff;
		
	}
		.slider-news-item {position: relative;padding: 20px 0;}
		.slider-news-item::after {
			content: "";
			bottom: 0;
			left: 0;
			right: 0;
			height: 1px;
			background: #e06b00;
			position: absolute;
		}
		.news-title {
			font-size: 22px;
			font-weight: bold;			
		}
		.news-description {
			font-size: 14px;			
		}
		.news-link {
			padding-top: 10px;	
		}
		.news-link a{
			font-size: 12px;
			font-weight: bold;	
			color: #fff;			
		}
	

/****************** PROMO LINKS ********************/
#promo-links {
	background: #0b1d33;
	padding: 20px 0;
}
	#promo-links-container {
		align-items: stretch;
	}
		.promo-item {
			flex-basis: 33.33%;
			justify-content: center;
			align-items: center;
			padding: 20px;
			display: flex;
			flex-direction: column;
			border-right: 1px #ff8500 solid;
		}
		.promo-item:last-child {
			border-right: none;
		}
			.promo-title {
				max-width: 70%;
				text-align: center;
				color: #fff;
				font-size: 24px;
				text-transform: uppercase;
			}
			.promo-link {
				color: #ff8500;
				font-size: 28px;
			}
	

/****************** PAGE BOX ********************/
	.main-content {
		flex-direction: column;
		box-sizing: border-box;
		padding: 50px 0;
	}
		.main-content-title {
			text-align: left;
			border-bottom: 1px #ff8500 solid;
			padding-bottom: 20px;
			width: 100%;
			color: #0d1a2a;
			display: flex;
			justify-content: space-between;
			align-items: baseline;
		}
		.main-content-title a{
			text-align: right;
			font-size: 18px;
			color: #b2b2b2;
		}
		.main-content-text{
			padding: 20px 0;
		}
		.main-content-text p{
			text-align: justify;
			line-height: 28px;
			padding: 10px 0;
			font-size: 18px;
			box-sizing: border-box;
		}
		.main-content-text ul{
			padding: 10px 30px;
		}
		.main-content-text ul li{
			font-size: 18px;
			line-height: 34px; 
		}
		.main-content-text iframe{
			width: 100%;
		}
		
		.main-content-blocks{
			padding: 20px 0;
			display: flex;
			flex-wrap: wrap;
			width: 100%;
			justify-content: space-between;
			align-items: stretch;
		}
		.main-content-block{
			flex-basis: 31%;
			margin: 1%;
			box-sizing: border-box;
			padding: 20px 20px;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: flex-start;
			overflow: hidden;			
			border: 1px #b2b2b2 solid;
			margin-bottom: 40px;
			min-width: 280px;
			flex-grow: 1;
		}
			.main-block-img{
				box-sizing: border-box;
			}
			.main-block-img img{
				width: 100%;
			}
			.main-block-title {
				font-size: 18px;
				font-weight: bold;
				text-align: left;
				padding: 10px;
				width: 100%;
			}
			.main-block-desc {
				font-size: 14px;
				width: 100%;
				line-height: 24px;
			}
			.main-block-link{
				padding-top: 10px;
				width: 100%;
				text-align: left;
			}
			.main-block-link a{
				color: #ff8500;
				font-weight: bold;
				font-size: 14px;
			}

footer {
		display: flex;
		flex-wrap: no-wrap;
		border-bottom: 3px #ff6901 solid;
		width: 100%;
		align-items: center;
		background: #0b1d33;
}

#content-footer {
	justify-content: space-between;
	padding: 10px 0;
	position: relative;
	align-items: flex-start;
}
#footer-menu {
	padding: 0;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
#footer-menu nav a{font-size: 18px;padding: 10px 10px 0px 0 !important;}
#copyrights {text-align: left;padding: 10px 0;font-size: 14px; line-height: 28px;color: #fff;}
#creators p {text-align: right;padding: 0px 0;font-size: 12px; line-height: 34px;color: #fff;}
#creators p a{color: #fff;}



/****************** GALLERY BOX ********************/
	.box-gallery {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.box-gallery-item {
		min-width: 280px;
		position: relative;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		padding: 30px 10px 10px;
		flex-basis: 25%;
		flex-grow: 1;
	}
		.box-gallery-item a {
			height: 200px;
			background: #000;		
		}
		.box-gallery-item::after {
			content:"";
			position: absolute;
			bottom: -10px;
			left: 10px;
			right: 10px;
			height: 3px;
			background: #000;
			z-index: -1;
			-webkit-transition: bottom 0.5s, background 0.5s; /* Safari */
			transition: bottom 0.5s, background 0.5s;		
		}
		.box-gallery-item-title {
			padding: 10px 0;
			font-size: 18px;
			font-weight: bold;
		}
	
	.box-gallery-item:hover::after{
			bottom: 0px;	
	}

	@media all and (max-width:860px) { 
		.promo-item {
			flex-basis: 100%;		
			border-right: none;
			position: relative;
		}
		.promo-item::after{
			content: "";
			position: absolute;
			bottom: 0;
			left: 45%;
			right: 45%;
			background: #ff8500;
			height: 1px;
		}
		#promo-links-container {flex-wrap: wrap;}
	}
	@media all and (max-width:799px) { 
		.box-slider {flex-direction: column;} 
		#slider-img-container, #slider-news {flex-basis: 100%;}
	}


