@charset "utf-8";
/* ==|== primary styles =====================================================
   Author: Kostadin Stamenov Panchev
   kspanchev@gmail.com
   ========================================================================== */



/* ----------- Full page tag------------- */
* {
	box-sizing: border-box;
}
html,
body,
article {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}
/*----------------------------------------*/
.fullscreen {
	padding: 0;
	margin: 0;
	min-height: 100%;
	position: relative;
}
.flex1 {
	flex: 1;
}
.flex2 {
	flex: 2;
}
.flex3 {
	flex: 3;
}
.flexbox img {
	padding: 5%;
}
.images_sidebar img {
	padding: 5%;
}
/*
=================================
main navigation
================================
*/
.main_nav {
	top: 0;
	width: 100%;
	background-color: rgba(255,255,255,1.00);
	z-index: 99;
}
.main_nav ul {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.main_nav ul li {
	padding: 5px;
}
.main_nav ul li:hover {
	background-color: rgba(255,255,255,1.00);
}
.main_nav ul li:hover a {
	color: rgba(92,92,92,1.00);
}
.main_nav ul li a {
	text-decoration: none;
	color: #ff6514;
	font-size: .9em;
}
/*end main navigation*/

/*
=================================
 background images
================================
*/


#middle_fullscreen {
	background: url(../images/middle.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
	height: 80%;
}
#last_fullscreen {
	background: url(../images/last.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
	height: 100%;
}
/*
=================================
content
================================
*/

section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px;
	background-color: rgba(255,255,255,1);
}

section p {
	font-size: 1em;
}

/*-------------fancy box-----------------*/

a.fancybox img {
	border: none;
	-o-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a.fancybox:hover img {
	position: relative;
	z-index: 999;
	-o-transform: scale(1.03, 1.03);
	-ms-transform: scale(1.03, 1.03);
	-moz-transform: scale(1.03, 1.03);
	-webkit-transform: scale(1.03, 1.03);
	transform: scale(1.03, 1.03);
}
