/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	border:0px;
	height:3px;
	margin:20px 0;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}

/* =Basic structure
-------------------------------------------------------------- */
/* Body, links, basics */
*{
	background: none;
	border: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
html {
	font-size: 87.5%;
}
body {
	color: #626262;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5em;
	font-family: 'Roboto', sans-serif;
}
a {
	outline: none;
	color: #d82230;
	text-decoration:none;
}
a:hover {
	/*color: #0f3647;*/
	text-decoration:underline;
}
img{
	max-width: 100%;
}
article{
	background-color:#fff;
}
address{
	font-style:normal;
}
p{
	margin: 0 0 10px 0;
}
.padding {
	padding: 0 10px;
}
.center {
	text-align: center;
}
img.alignleft{
	float:left;
}
/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

.clear{
	clear:both;
}
.wrapper{
	width:1190px;
	margin:0 auto;
	padding:0 5px;
}
.fw{
	float:left;
	display:table;
	width:100%;
}
.wblink a{
	display:block;
	width:100%;
	height:100%;
}
.wblink a:hover{
	text-decoration:none;
}
.row_centered {
	text-align:center;
}	
.col_centered {
	display:inline-block;
	float:none;
	/* reset the text-align */
	text-align:left;
	/* inline-block space fix */
	margin-right:-4px;
	vertical-align: top;
}
/* Header
-------------------------------------------------------------- */
.site-header{
	float:left;
	width:100%;
	padding: 25px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.sh-fixed{
	background: rgba(255,255,255,0.85)
}
	.logo{
		float: left;
		width: 170px;
		height: 70px;
		background: url(../img/logo.png) no-repeat;
		background-size: cover;
	}
	.main_navigation{
		float:left;
		width:auto;
		overflow:hidden;
		margin: 25px 0 0 125px;
	}
		.main_navigation ul{
			float: left;
		}
			.main_navigation ul li{
				float: left;
				margin-right: 30px;
			}
			.main_navigation ul li:last-child{ margin-right: 0 }
				.main_navigation ul li a{
					color: #1b2733;
					font-size: 15px;
				}
			.main_navigation ul li.current_page_item{
				text-decoration:underline;
			}
	.nav_trigger {
		display: none;
		border: 0;
		cursor: pointer;
		width: 40px;
		height: 35px;
		padding: 10px;
		position: absolute;
		top: 15px;
		right: 15px;
		text-indent: -9999px;
		z-index: 2000;
		border-radius: 3px;
		background: #a3c4e6 url(../img/menu.png) no-repeat 10px 10px;
		
		-webkit-transition-property: background;
		-moz-transition-property: background;
		-ms-transition-property: background;
		-o-transition-property: background;
		transition-property: background;
           
		-webkit-transition-duration: 0.4s;
		-moz-transition-duration: 0.4s;
		-ms-transition-duration: 0.4s;
		-o-transition-duration: 0.4s;
		transition-duration: 0.4s;
           
		-webkit-transition-timing-function: ease;
		-moz-transition-timing-function: ease;
		-ms-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
	}
	.nav_trigger.active{
		background: #a3c4e6 url(../img/menu_close.png) no-repeat 10px 10px;
	}
	.sh-lang{
		float: right;
		margin-top: 15px;
		border: 1px solid #a3c4e6;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
		.sh-lang select{
			color: #1b2733;
			padding: 6px 20px 6px 15px;
			border: 0;
			border-radius: 0;
			background: transparent url(../img/icon-arrow.png) no-repeat 85% 50%;
			background-size: 9px 4px;
			-webkit-appearance: none;
			-moz-appearance:    none;
			appearance:         none;
		}
/* Content
-------------------------------------------------------------- */
.site-content{
	float:left;
	width:100%;
}
	.site-content h2{
		color: #1b2733;
		font-size: 30px;
		line-height: 1.1em;
		font-weight: 300;
	}
	.banner-main{
		float: left;
		width: 100%;
		height: 950px;
		overflow: hidden;
		position: relative;
		background-position: 50% 100%;
		background-repeat: no-repeat;
	}
	.banner-main:after{
		content: "";
		display: block;
		width: 100%;
		height: 150px;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 2;
		background: url(../img/bg-banner-bottom.png) no-repeat 50% 100%;
	}
		.bm-bottle{
			position: absolute;
			right: 50%;
			bottom: -190px;
			margin-right: -495px;
			opacity: 0;
			transition: opacity 0.5s ease-in-out;
		}
		.bm-text{
			width: 100%;
			max-width: 590px;
			position: absolute;
			top: 280px;
			left: 15px;
		}
			.bm-text h1{
				color: #1b2733;
				font-size: 60px;
				line-height: 1.1em;
				font-weight: 300;
			}
			.bm-arrow{
				display: block;
				width: 70px;
				height: 70px;
				margin-left: -30%;
				position: absolute;
				left: 50%;
				bottom: 150px;
				z-index: 3;
				background: url(../img/icon-arrow-bottom.png) no-repeat;
				background-size: cover;
				animation: na_icon 1s linear 0s infinite alternate;
				-webkit-animation: na_icon 1s linear 0s infinite alternate;
			}
	.product-element{
		width: 100%;
		max-width: 570px;
		height: 370px;
		padding: 40px;
		margin-bottom: 30px;
		background: #f3f9fe;
	}
		.pe-col{ 
			float: left;
			width: 50%;
			height: 100%;
			position: relative;
		}
		.pe-col.lside::after{
			content: "";
			display: block;
			width: 30px;
			height: 2px;
			position: absolute;
			left: 0;
			bottom: 0;
			background: #ff2400;
		}
			.pe-col h3{
				color: #1b2733;
				font-size: 30px;
				font-weight: 300;
				line-height: 1.3em;
			}
			.pe-col h4{
				color: #1b2733;
				font-size: 18px;
				font-weight: 400;
				line-height: 1.3em;
				margin-bottom: 36px;
			}
			.pe-col p{
				color: #637282;
				font-size: 15px;
				line-height: 1.3em;
			}
	#advantages{
		padding: 150px 0 115px;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		background-size: cover;
	}
		#advantages h2{
			color: #fff;
			font-size: 30px;
			font-weight: 300;
			line-height: 1.3em;
		}
		.advantages-element{
			width: 100%;
			height: 70px;
			position: relative;
			padding-left: 100px;
			margin-bottom: 20px;
			line-height: 70px;
		}
			.advantages-element img{
				display: block;
				width: 70px;
				height: 70px;
				overflow: hidden;
				position: absolute;
				top: 0;
				left: 0;
			}
			.advantages-element p{
				color: #fff;
				font-size: 18px;
				line-height: 1.3em;
				vertical-align: middle;
				display: inline-block;
			}
	#spring{
		padding: 135px 0 85px;
	}
		#spring h3{
			color: #1b2733;
			font-size: 18px;
			font-weight: 400;
			line-height: 1.8em;
		}
		#spring p{
			color: #637282;
			font-size: 15px;
			line-height: 2em;
		}
	#difference{
		padding: 135px 0 70px;
		background: #f3f9fe;
	}
		#difference h3{
			color: #1b2733;
			font-size: 18px;
			font-weight: 400;
			margin-bottom: 10px;
		}
		#difference p{
			color: #637282;
			font-size: 15px;
			line-height: 2em;
		}
/* Footer
-------------------------------------------------------------- */	
.site-footer{
	float: left;
	width: 100%;
	padding-top: 288px;
	position: relative;
	background: #d3e8fd;
}
.site-footer::before{
	content: "";
	display: block;
	width: 100%;
	height: 150px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: url(../img/bg-site-footer-top-2.png) no-repeat 50% 0%;
	background-size: cover;
}
.site-footer::after{
	content: "";
	display: block;
	width: 100%;
	height: 400px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: url(../img/bg-site-footer-top-1.png) no-repeat 50% 0%;
	background-size: cover;
}
	.site-footer .container{
		position: relative;
		z-index: 3;
	}
		.site-footer h2{
			color: #1b2733;
			font-size: 30px;
			font-weight: 300;
			line-height: 1.1em;
		}
		.site-footer h3{
			color: #1b2733;
			font-size: 18px;
			font-weight: 400;
			line-height: 1.1em;
			margin-bottom: 20px;
		}
		.site-footer p{
			color: #637282;
			font-size: 15px;
		}
			.site-footer p strong{
				color: #1b2733;
				font-size: 18px;
				font-weight: 400;
				margin-bottom: 10px;
			}
				.site-footer p strong a{ color: #1b2733 }
		.contact-form{
			position: relative;
			width: 100%;
			margin-bottom: 100px;
		}
			.contact-form input,
			.contact-form textarea{
				width: 100%;
				padding: 15px 20px;
				border: 0;
				border-radius: 0;
				background: #fff;
			}
			.contact-form textarea{
				resize: none;
				height: 150px;
			}
			.contact-form input.wpcf7-submit{
				max-width: 270px;
				color: #fff;
				text-align: center;
				background: #025fd5;
			}
			.wpcf7 input::-webkit-input-placeholder,
			.wpcf7 textarea::-webkit-input-placeholder{
				color:#5b564d;
			}
			.wpcf7 input:-ms-input-placeholder,
			.wpcf7 textarea:-ms-input-placeholder{
				color:#5b564d;
			}
			.wpcf7 input:-moz-placeholder,
			.wpcf7 textarea:-moz-placeholder{
				color:#5b564d;
				opacity:1;
			}
			.wpcf7 input::-moz-placeholder,
			.wpcf7 textarea::-moz-placeholder{
				color:#5b564d;
				opacity:1;
			}

			.wpcf7 input.wpcf7-not-valid::-webkit-input-placeholder,
			.wpcf7 textarea.wpcf7-not-valid::-webkit-input-placeholder{
				color:#fff;
			}
			.wpcf7 input.wpcf7-not-valid:-ms-input-placeholder,
			.wpcf7 textarea.wpcf7-not-valid:-ms-input-placeholder{
				color:#fff;
			}
			.wpcf7 input.wpcf7-not-valid:-moz-placeholder,
			.wpcf7 textarea.wpcf7-not-valid:-moz-placeholder{
				color:#fff;
				opacity:1;
			}
			.wpcf7 input.wpcf7-not-valid::-moz-placeholder,
			.wpcf7 textarea.wpcf7-not-valid::-moz-placeholder{
				color:#fff;
				opacity:1;
			}
			.wpcf7 input.wpcf7-not-valid,
			.wpcf7 textarea.wpcf7-not-valid{
				color:#fff;
				background-color:#fd4250;
			}
			.wpcf7 span.wpcf7-not-valid-tip,
			.wpcf7 .ajax-loader,
			.wpcf7 div.wpcf7-validation-errors{
				display:none !important;
			}
			.wpcf7 div.wpcf7-mail-sent-ok{
				display: block;
				width: 100%;
				height: 100%;
				position: absolute;
				top: -40px;
				left: -10px;
				padding: 35% 0;
				border: 0px;
				color: #fff;
				font-size: 20px;
				font-weight: 300;
				text-align: center;
				background-color: rgb(81,178,0);
				background-color: rgba(81,178,0,0.9);
			}
	.sf-bottom{
		width: 100%;
		padding: 45px 0;
		border-top: 1px solid #f3f9fe;
	}
		.sf-bottom p{
			color: #637282;
			font-size: 15px;
			margin-bottom: 0;
		}
#bgSound{
	display: none;
    position: fixed;
    left: 0;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
}
/* Paginator
-------------------------------------------------------------- */
.navigation{
    height:30px;
	padding:20px 0;
	text-align:center;
}
.navigation .n-body a,
.navigation .n-body span{
	padding:0 5px;
	font-size:16px;
}
.navigation .n-body a{
	text-decoration:none;
	color:#0072bb;
}
.navigation .n-body a:hover{
	text-decoration:underline;
}
/* Helpers
-------------------------------------------------------------- */
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.info-block{
	float: left;
	width: 100%;
}

.marB30	{margin-bottom: 30px}

.padT25		{padding-top: 25px}
.padT30		{padding-top: 30px}
.padT80		{padding-top: 80px}
.padT125	{padding-top: 125px}

.padB60	{padding-bottom: 60px}
.padB90	{padding-bottom: 90px}
.padB120	{padding-bottom: 120px}

.hover-effect{
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-ms-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	   
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	   
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	-ms-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}
/* =Media queries
-------------------------------------------------------------- */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
@-webkit-keyframes na_icon {
    0% {
        -webkit-transform: translate(0px, 5px);
    }
    100% {
        -webkit-transform: translate(0px, -5px);
    }
}
@keyframes na_icon {
    0% {
        transform: translate(0px, 5px);
    }
    100% {
        transform: translate(0px, -5px);
    }
}
@media screen and (min-width: 1200px) {

}
@media screen and (max-width: 1440px) {
	.banner-main{ height: 890px }
}
@media screen and (max-width: 1366px) {
	.banner-main { height: 650px }
	.bm-text{ top: 160px }
	.bm-text h1{ font-size: 50px }
	.bm-bottle{ width: 250px }
	#advantages{ background-position: 55% 50%; }
}
@media screen and (max-width: 1280px) {
	#advantages{ background-position: 60% 50%; }
}
@media screen and (max-width: 1024px) {
	body{
		overflow:hidden;
	}
	.nav_trigger{
		display:block;
	}
	.main_navigation{
		display:none;
		position:fixed;
		top:0px;
		left:0px;
		width:100%;
		height:100%;
		margin:0px;
		padding:25% 0px 0px 0px;
		text-align:center;
		background: rgb(0,0,0);
		background: rgba(0,0,0,0.8);
	}
	.main_navigation ul,
	.main_navigation ul li{
		display:inline-block;
		width:100%;
	}
	.main_navigation ul li{
		line-height: 50px;
		margin:0px !important;
		padding:0px !important;
		border:0px !important;
		background: none !important;
	}
	.main_navigation ul li .sub-menu{
		width:100% !important;
		min-width:100% !important;
		position:static;
		margin-bottom:20px;
		border:0px !important;
		background: none !important;
	}
	.main_navigation ul li a,
	.main_navigation ul li .sub-menu li a{
		color: #fff;
		padding:0px !important;
		border:0px !important;
		background: none !important;
	}
	.sh-lang{ margin-right: 50px }
	.banner-main { height: 750px }
	.bm-bottle{
		margin-right: -385px;
		bottom: -120px;
	}
	.bm-text{ max-width: 420px }
	.bm-text h1{ font-size: 40px }
	#advantages{ padding: 60px 0 35px }
	.padB90{ padding-bottom: 45px }
	.padB120{ padding-bottom: 60px }
	.padT125{ padding-top: 60px }
	#spring{ padding: 60px 0 40px }
	#difference{ padding: 60px 0 40px }
	.site-footer{ padding-top: 138px }
	.contact-form{ margin-bottom: 50px }
	.sf-bottom{ margin-top: 20px; padding: 20px 0 }
}
@media screen and (max-width: 990px) {
	.bm-bottle{ margin-right: -345px }
	.product-element{ margin: 0 auto 30px }
	.marB30Tablet{ margin-bottom: 30px }
	.wpcf7 div.wpcf7-mail-sent-ok{ padding: 32% 0 }
}
@media screen and (max-width: 768px) {
	.bm-bottle{ margin-right: -325px }
	#advantages { background-position: 15% 50%; }
}
@media screen and (max-width: 568px) {
	.bm-text{ max-width: 90%; }
	.bm-arrow{ margin-left: -35px }
}
@media screen and (max-width: 414px) {
	.banner-main{ height: 650px }
	.bm-text{ top: 160px }
	.pe-col h3{ font-size: 20px }
	.site-content h2 { font-size: 24px !important }
	.product-element{ height:290px; padding: 20px }
}
@media screen and (max-width: 380px) {
	.banner-main{ height: 600px }
	.bm-text{ top: 140px }
	.bm-text h1 { font-size: 30px }
}
@media screen and (max-width: 320px) {

}