@charset "utf-8";
body {
	background: #000;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 18px;
	color: #000;
	overflow-x: hidden;
}
a {
	color: #194368;
	text-decoration: none;
}
a:hover {
	color: #e14d4d;
}
aside.clr {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}
* {
	box-sizing: border-box;
}
.container {
	max-width: 1000px;
	min-width: 300px;
	margin: 0 auto;
	padding: 20px 10px;
}
/* HEADER */
#main {
	font-family: 'Ubuntu Mono', Arial, sans-serif;
	position: fixed;
	top: 0;
	left: 0;
	display: table;
	width: 100%;
}
#main header {
	display: table-cell;
	vertical-align: middle;
	line-height: 4em;
	text-align: center;
}
@media (max-width: 899px) {
	body {
		font-size: 0.9em;
	}
}
@media (max-width: 549px) {
	body {
		font-size: 0.7em;
	}
}
@media (max-width: 359px) {
	body {
		font-size: 0.63em;
	}
}
/* loogtyp - start */
#main header img {
	/* zoom: 0.9; */
	max-width: 560px;
}
@media (max-width: 799px) {
	#main header img {
		/* zoom: 0.9; */
		max-width: 500px;
	}
}
@media (max-width: 699px) {
	#main header img {
		/* zoom: 0.8; */
		max-width: 460px;
	}
}
@media (max-width: 599px), (max-height: 499px) {
	#main header img {
		/* zoom: 0.7; */
		max-width: 420px;
	}
}
@media (max-width: 499px), (max-height: 399px) {
	#main header img {
		/* zoom: 0.6; */
		max-width: 380px;
	}
}
@media (max-width: 399px), (max-height: 299px) {
	#main header img {
		/* zoom: 0.5; */
		max-width: 280px;
	}
}
/* loogtyp - koniec */
#main header h1,
#main header h2 {
	display: block;
	font-weight: normal;
}
#main header h1 {
	font-size: 4.8em;
	color: #706f6f;
}
#main header h2 {
	font-size: 3em;
	color: #e14d4d;
}
#main #lapka_down {
	position: absolute;
	bottom: 10%;
	right: -10%;
	font-size: 5.5em;
	cursor: pointer;
	color: #fff;
	opacity: 0;
	-webkit-transition: 1s linear;
	-mz-transition: 1s linear;
	-o-transition: 1s linear;
	transition: 1s linear;
}
#main #lapka_down.show {
	-webkit-animation: move_down 1s infinite alternate;
	-moz-animation: move_down 1s infinite alternate;
	-o-animation: move_down 1s infinite alternate;
	animation: move_down 1s infinite alternate;
	opacity: 0.5;
	right: 2%;
}
@-webkit-keyframes move_down { from { bottom: 10%; } to { bottom: 5%; } }
@-moz-keyframes move_down { from { bottom: 10%; } to { bottom: 5%; } }
@-o-keyframes move_down { from { bottom: 10%; } to { bottom: 5%; } }
@keyframes move_down { from { bottom: 10%; } to { bottom: 5%; } }
@media (max-width: 449px), (max-height: 349px) {
	#main #lapka_down {
		font-size: 3.5em;
	}
}
/* KONTAKT */
#kontakt {
	position: relative;
	background: #f4f4f4;
	border-top: 8px solid #dedede;
	display: table;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
#kontakt .content {
	display: table-cell;
	vertical-align: middle;
	padding-bottom: 40px;
}
#kontakt h2 {
	display: inline-block;
	text-transform: uppercase;
	font-size: 1.8em;
	line-height: 1.2em;
	margin: 0 auto 35px;
	border-bottom: 2px solid #e14d4d;
}
#kontakt h2:last-of-type {
	margin: 0 auto 10px;
}
#kontakt ul li {
	font-size: 1.6em;
	margin-bottom: 35px;
	line-height: 0.9em;
}
#kontakt a::before,
#kontakt a::after {
	content: '[';
	display: inline-block;
	margin-right: 10px;
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	-o-transform: translateX(20px);
	transform: translateX(20px);
	opacity: 0;
	-webkit-transition: 0.3s, opacity 0.2s;
	-moz-transition: 0.3s, opacity 0.2s;
	-o-transition: 0.3s, opacity 0.2s;
	transition: 0.3s, opacity 0.2s;
}
#kontakt a::after {
	content: ']';
	margin-right: 0;
	margin-left: 10px;
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-o-transform: translateX(-20px);
	transform: translateX(-20px);
}
#kontakt a:hover::before,
#kontakt a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
}
#kontakt ul li span {
	font-size: 0.6em;
	color: #e14d4d;
}
@media (max-width: 399px) {
	#kontakt h2 {
		font-size: 1.55em;
	}
	#kontakt h2 span {
		display: none;
	}
	#kontakt ul li {
		font-size: 1.5em;
	}
}
#kontakt .hr {
	border-bottom: 2px dashed #194368;
	width: 200px;
	height: 1px;
	margin: 0 auto 25px;
}
#kontakt address {
	text-align: center;
	line-height: 1.5em;
	margin-top: 10px;
	font-style: normal;
	font-size: 1.1em;
}
#kontakt address span {
	color: #e14d4d;
}
#kontakt #lapka_up {
	position: absolute;
	top: 10%;
	right: -10%;
	font-size: 5.5em;
	cursor: pointer;
	color: #000;
	opacity: 0;
	-webkit-transition: 1s linear;
	-mz-transition: 1s linear;
	-o-transition: 1s linear;
	transition: 1s linear;
}
#kontakt #lapka_up.show {
	opacity: 0.3;
	right: 2%;
	-webkit-animation: move_up 1s infinite alternate;
	-moz-animation: move_up 2s infinite alternate;
	-o-animation: move_up 1s infinite alternate;
	animation: move_up 1s infinite alternate;
}
@-webkit-keyframes move_up { from { top: 10%; } to { top: 5%; } }
@-moz-keyframes move_up { from { top: 10%; } to { top: 5%; } }
@-o-keyframes move_up { from { top: 10%; } to { top: 5%; } }
@keyframes move_up { from { top: 10%; } to { top: 5%; } }
@media (max-width: 449px), (max-height: 349px) {
	#kontakt #lapka_up {
		font-size: 3.5em;
	}
}
/* FOOTER */
footer {
	background: #000;
	text-align: center;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 45px;
}