/* CSS Document */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800&subset=cyrillic');

/* Глобальные переменные */
:root {
  	--green-dark: #61892F;
  	--green-light: #86C232;
  	--gray-dark: #222629;
  	--gray-usual: #474B4F;
  	--gray-light: #6B6E70;
	--gray-lightest: #B7B9BA;
	--white-usual: #fff;
	--black: #0;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	background-color: var(--gray-dark);
	width: 100%;
	min-width: 320px;
	margin: 0;
}

header {
	background: var(--gray-usual);
	padding: 1em 0em;
	height: 11em;
}

main {
	min-height: 55vh;
	background: var(--white-usual);
	font-size: 0;
}

article {
	box-sizing: border-box;
	display: inline-block;
	width: calc(100% - 271.3px);
	font-size: 16px;
	line-height: 1.5;
	padding: 1em;
}

aside {
	display: inline-block;
	position: -webkit-sticky;
	position: sticky;
	top: 3.7em;
	vertical-align: top;
	width: 270px;
	margin: 3em 0;
	font-size: 14px;
	line-height: 1.5;
	border-left: 1px solid #ccc;
	-moz-border-image: -moz-linear-gradient(top, #ccc, transparent);
	-webkit-border-image: -webkit-linear-gradient(top, #ccc, transparent);
	border-image: linear-gradient(180deg, #ccc, transparent);
	border-image-slice: 1;
	-o-transition: .4s;
	-moz-transition: .4s;
	-webkit-transition: .4s;
	transition: .4s;
}

footer {
	line-height: 1;
	text-align: center;
	border-top: 10px solid var(--green-dark);
	color: var(--green-light);
}

.contact {
	background: var(--gray-light);
	font-size:18px;
	text-align: center;
	color: var(--green-light);
	padding: 0.5em 10em;
	line-height: 1.5;
}

.privacy {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--gray-usual);
	font-size:16px;
	text-align: left;
	color: var(--green-dark);
	padding: 15px 150px 15px 150px;
	text-decoration: none;	
}

.privacy a {
	color: var(--green-dark);
	text-decoration: none;
	line-height: 1.5;
	font-size:12px;
}
.privacy a:hover{
	text-decoration: underline;
	color: var(--white-usual);
}

#logo {
	float: left;
	margin-left: 1em;
	padding: 1em;
}
.flex_row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex_column{
	display: flex;
	flex-direction: column;
}
.logo_row{
	justify-content: space-between;
	align-items: center;
	width: 20%;
}
.flex_arms_row{
	display: flex;
	justify-content: center;
	align-items: center;
}
.arms_row{
	justify-content: center;
	align-items: center;
	padding: 0em 2em 2em 2em;
}

#id_header:hover #deviz {
	-ms-transform: scale(.95) translate(15px,4px);
	-moz-transform: scale(.95) translate(15px,4px);
	-webkit-transform: scale(.95) translate(15px,4px);
	transform: scale(.95) translate(15px,4px);
}

#deviz {
	opacity: .75;
	-o-transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	transition: 1s;
	width: 60%;
}
#deviz_txt1, #deviz_txt2, #deviz_txt3 {
	top: 0.7em;
	color: var(--white-usual);
	text-align: right;
	font-size: 1.3em;
	font-style: italic;
}
#deviz_txt1 {
	right: 0em;
	-moz-animation: deviz_1 3s ease-in-out;
	-webkit-animation: deviz_1 3s ease-in-out;
	animation: deviz_1 3s ease-in-out;
}
#deviz_txt2 {
	right: 0.6em;
	-moz-animation: deviz_2 3s ease-in-out;
	-webkit-animation: deviz_2 3s ease-in-out;
	animation: deviz_2 3s ease-in-out;
}
#deviz_txt3 {
	right: 1.2em;
	-moz-animation: deviz_3 3s ease-in-out;
	-webkit-animation: deviz_3 3s ease-in-out;
	animation: deviz_3 3s ease-in-out;
}

h1 {
	font-size: 1.8em;
	font-weight: bold;
	color: var(--green-light);
	text-transform: uppercase;
	line-height: 1.25;
	padding: 1em;
	text-align: center;
}
h2 {
	font-size: 1em;
	font-weight: bold;
	color: var(--green-dark);
	text-transform: uppercase;
	line-height: 1;
	text-indent: 50px;
	text-align: left;
}
h3 {
	font-size: 1.3em;
	color: var(--green-dark);
	line-height: 1;
	text-indent: 50px;
	text-align: center;
}
h4 {
	font-size: 1.3em;
	color: var(--green-dark);
	line-height: 1.5;
	text-indent: 50px;
	text-align: center;
	text-transform: uppercase;
}
h5 {
	font-size: 1.3em;
	color: var(--green-dark);
	line-height: 1;
	text-align: center;
}
p{
	text-indent: 50px;
	text-align: justify;
}

#logo-print, .sitemap_m {display:none;}

.page-width {
	min-width: 1000px;
	max-width: 1400px;
	margin: 0 auto;
}

#breadcrumbs {
	font-size: 1em;
	color: var(--white-usual);
	padding: 0.5em 0em;
	background: var(--gray-light);
}
#breadcrumbs a {
	color: var(--white-usual);
	opacity: .75;
	text-decoration: none;
}
.margin {
	margin-left: 10px;
}

#hright, #nav{
	-o-transition: .4s;
	-moz-transition: .4s;
	-webkit-transition: .4s;
	transition: .4s;
}

.hright{
	overflow: hidden;
	float: right;
	position: relative;
}

.tel {
	display: block;
/*	display: none;*/
    font-size: 1.7em;
	font-weight: bold;
	text-decoration: none;
	float: right;
	cursor: pointer;
	color: var(--white-usual);
	opacity: .75;
	margin-right: 1em;
}
.tel .active, .tel:hover {
	cursor: pointer;
	color: var(--white-usual);
	opacity: 1;
	text-decoration: underline;
}
.menu {
	float: right;
	margin: 0em 0.8em 0 0em;
	list-style-type: none;
}
.menu li {
	float:left;
	margin-left: 1em;
}
.menu a {
	display: block;
	margin-top: .3em;
	padding: .5em 2.7em;
	cursor: pointer;
	text-decoration: none;
	text-transform:uppercase;
	font-weight: bold;
	color: var(--gray-usual);
	background: var(--green-dark);
	border-radius: 0.6em;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: .5s;
}
.menu .active a, .menu a:hover {
	color: var(--white-usual);
	background: var(--green-light);
	padding-top: 0.7em;
	padding-bottom: 0.7em;
	margin-top: 0;
}

.img{
	margin: 10px;
	width: 300px;
}

table {
 	width: 80%;
	font-size: 0.8em;
  	border-top: 1px solid var(--green-dark);
  	border-collapse: collapse;
  	text-align: center;
  	border: 1px solid #dddddd;
	margin: 0 auto;
}

caption{
	font-size: 1.7em;
	font-weight: bold;
	color: var(--green-light);
}

td {
  	text-align: left;	
	padding: 2px;
	border: 2px solid var(--green-dark);
}
th {
  	text-align: center;
  	padding: 2px;
	border: 2px solid var(--green-dark);
}
.caption-color {
  	background-color: var(--gray-light);
	color: var(--white-usual);
}

.row-color {
  	background-color: var(--gray-lightest);
}
.column-center{
	text-align: center;
}

.e-mail{
	text-decoration: none;
	color: var(--green-light);
}
.e-mail:hover{
	text-decoration: underline;
	color: var(--white-usual);
}

.website{
	text-decoration: none;
	color: var(--black);
}
.website:hover{
	text-decoration: underline;
	color: var(--green-light);
}

.banner-out {
	overflow: hidden;
	text-align: left;
}

.banner-out a, .banner-out a:link, .banner-out a:visited, .banner-out a:active {
    color: var(--green-dark);
    text-decoration: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

.topcontainer {
	position: fixed;
	bottom: 7em;
	left: 0;
	width: 100%;
}
.topincontainer {
	position: relative;
	max-width: 1520px;
	min-width: 807px;
	margin:0 auto;
}
#toTop {
	position: absolute;
	cursor: pointer;
	bottom: 0;
	right: 0;
	display: none;
}
#toTop img {
	opacity: .5;
	-o-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
#toTop img:hover {opacity: .8;}

.banner, .banner-img, .banner-text {
	padding: .5em 0;
	margin: .5em 0;
	-o-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.banner {margin: 1em 0;}
.banner:hover {
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-moz-box-shadow: 0 0 8px #999999aa;
	-webkit-box-shadow: 0 0 8px #999999aa;
	box-shadow: 0 0 8px #999999aa;
}
.banner-img {
	display: inline-block;
	-webkit-filter: grayscale(.3) opacity(.75);
	filter: grayscale(.3) opacity(.75);
}
.banner-img:hover {
	-webkit-filter: drop-shadow(-2px 4px 6px #999999aa);
	filter: drop-shadow(-2px 4px 6px #999999aa);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.banner-text {margin-left: -1em;}
.banner-text:before {
	content:"";
	background-image: url(images/icons/icon-arr-right.png);
	width: 13px;
	height: 32px;
	display: inline-block;
}
.banner-text img, .banner-text span, .banner-text:before {vertical-align: middle;}
.banner-text img {margin-left: 1.5em;}
.banner-text span {margin-left: .5em;}
.banner-text:hover {margin-left: 0;}

.hidden {display: none !important;}

.text a {
	cursor: pointer;
	text-decoration: none;
	color: var(--black);
}
.text .active a, .text a:hover {
	color: var(--green-light);
	text-decoration: underline;
}

.form {
	background: #fff;
	padding: 2em;
	border-radius: .5em;
	text-align: center;
}
input, textarea {
	font-size: 1.2em;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #f0fff0;
	border-radius: 5px;
	border: 1px solid #ccc;
}
input:placeholder, textarea:placeholder {
	font-style: italic;
	color: #bbb;
}
input:focus, textarea:focus {
	outline: none;
	border: 1px solid var(--green-light);
}
#tel, #name, #company, #email, #text {
	display: block;
	width: 100%;
	text-align: left;
	margin: 10px 0;
}
input[type=checkbox] {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
.form-buttons input {
	cursor: pointer;
	color: var(--green-dark);
	margin: 20px 0;
	background: #def0ff;
	border: 1px solid var(--green-dark);
	-o-transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}
.form-buttons input:hover {
	border: 1px solid var(--green-light);
	color: var(--green-dark);
	-o-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	-o-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
	-ms-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
}
.error {
	color: #f00;
	font-size: .9em;
}
div.error {
	text-align: center;
	border: 1px dashed #f00;
	padding: 1em;
	margin: 0 0 1.5em;
}
.message {
	padding: 175px 0px;
	}
