/* -------------------------------------------------------------- css 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, input, select, textarea{margin: 0;padding: 0;font-size: 100%;vertical-align: baseline;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;}article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display: block;}blockquote, q{quotes: none;}blockquote:before, blockquote:after,q:before, q:after{content: '';content: none;}table{border-collapse: collapse;border-spacing: 0;}input,select, textarea{outline: none;resize:none;}input[type="submit"]{cursor: pointer;border:none;}
/* -------------------------------------------------------------- base layout -------------------------------------------------------------- */
html,body{
	height: 100%;
	margin:0;
	padding: 0;
}
body{
	line-height: 1;
	font-family: 'proxima_nova';
	font-size: 18px;
	background-color: #f9f9f9;
}
#wrap{
	height: 100%;
	margin-bottom: -130px;
	padding-bottom: 130px;
}
#page{
	position: relative;
	min-height: 100%;
}
.page_buffer {
    height: 130px;
}
.cnt{
	max-width: 85%;
	margin-left: auto;
	margin-right: auto;
}
.clr:after{content: '.';display: block;clear: both;visibility: hidden;height: 0;}
/* -------------------------------------------------------------- typography -------------------------------------------------------------- */
@font-face {
    font-family: 'proxima_nova';
    src: url('../fonts/pn_reg.woff2') format('woff2'),
         url('../fonts/pn_reg.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova';
    src: url('../fonts/pn_bold.woff2') format('woff2'),
         url('../fonts/pn_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'proxima_nova';
    src: url('../fonts/pn_light.woff2') format('woff2'),
         url('../fonts/pn_light.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
h1{
	font-size:40px;
	line-height:58px;
	text-transform: uppercase;
}
h2{
	font-size:38px;
	line-height: 42px;
	text-transform: uppercase;
}
h3{
	font-size:24px;
	line-height:28px;
	font-weight: 600;
}
a{
	color:#000;
	text-decoration: none;
	outline: none !important;
}
a:hover{
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
}
.bodyfield p,.bodyfield ul,.bodyfield ol{
	color:#000;
	font-size: 18px;
	line-height: 25px;
	margin:0 0 18px 0;
}
.bodyfield ul,.bodyfield ol{
	margin-left: 20px;
}
.bodyfield li{
	margin-bottom: 10px;
	list-style-image: url(../img/marker.png);
}
hr{
	display: block;
	border:none;
	height: 1px;
	background: #e1e1e1;
}
strong{
	font-weight: 600;
}
.link,.bodyfield a{
	color: #76009d;
    border-bottom: 1px solid #76009d;
}
.link:hover,.bodyfield a:hover{
	color: #4d0066;
	border-bottom: 1px solid #4d0066;
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
}
.btn{
	display: inline-block;
	position: relative;
	overflow: hidden;
	background: #8cbe46;
	height: 49px;
	line-height: 49px;
	border-radius: 5px;-webkit-border-radius: 5px;-moz-border-radius: 5px;-o-border-radius: 5px;
	color: #fff;
	font-size: 20px;
	z-index: 2;
	width: 100%;
	max-width: 320px;
	text-align: center;
}
.btn:hover{
	background-color: #7aa939;
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
}
.btn_text{
	display: block;
	cursor: pointer;
	user-select: none;
	position: relative;
	padding: 0 40px;
}
.btn input{
	display: block;
	width: 100%;
	background: none;
	color: #fff;
	line-height: 49px;
	border:none;
	-webkit-appearance:none;
	font-family: 'proxima_nova';
	font-weight: 500;
}
.modal_form .btn{
	display: table;
	margin: 0 auto;
}
.ink {
	display: block; position: absolute;
	background: #6c9a2d;
	border-radius: 100%;
	transform: scale(0);
}
.ink.animate {animation: ripple 0.65s linear;}
@keyframes ripple {
	100% {opacity: 0; transform: scale(2.5);}
}
.extra{
	color: #8cbe46 !important;
}
a.extra:hover{
	color: #7aa939 !important;
}
.fullink{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	color: transparent;
}
/* -------------------------------------------------------------- forms -------------------------------------------------------------- */
input[type="text"],input[type="email"],input[type="password"],textarea{
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
	width: 100%;
	border:1px solid #d3d3d3;
}
input.error, textarea.error, select.error{
	background-color: #ffcece;
}
.modal_overlay{
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,.5);
	transition:.3s ease;-webkit-transition:.3s ease;-moz-transition:.3s ease;
}
.modal_overlay.visible{
	display: block;
	animation: overlay .3s;
    -webkit-animation: overlay .3s;
}
@keyframes overlay{from{opacity:0;}to{opacity:1;}}
@-webkit-keyframes overlay{from{opacity:0;}to{opacity:1;}}
.modal_form{
	position: fixed;
	z-index: 11;
	top: -1000px;
	left: 50%;
	background: #fff;
	padding: 80px 100px;
	width: 800px;
	margin: 0 0 0 -400px;
	border:1px solid #e1e1e1;
}
.modal_form.visible{
	top: 50%;
	animation: modal .5s;
    -webkit-animation: modal .5s;
}
@keyframes modal{from{opacity:0;top:-50%;}to{opacity:1;top:50%;}}
@-webkit-keyframes modal{from{opacity:0;top:-50%;}to{opacity:1;top:50%;}}
.modal_form__close{
    width: 40px;
    height: 40px;
    background: url(../img/close.png) no-repeat;
    cursor: pointer;
    float: right;
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    position: absolute;
    top: 80px;
    right: 100px;
}
.modal_form__close:hover{
	transform:scale(.95);-webkit-transform:scale(.95);-moz-transform:scale(.95);-o-transform:scale(.95);
}
.modal_form__heading{
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 35px;
    padding: 0 30px 25px 30px;
}
.modal_form__heading .title{
	float: left;
	width: 70%;
	font-size: 24px;
	font-weight: 500;
	margin-top: 5px;
}
.form-item{
	position: relative;
	margin-bottom: 30px;
}
.form-item label{
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 18px;
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
}
.form-item label.pos{
    top: -6px;
    font-size: 14px;
    background: #fff;
}
.form-item input{
	height: 56px;
	line-height: 56px;
	font-size: 18px;
	font-family: 'proxima_nova';
	padding: 0 30px;
	border:1px solid #e3e3e3;
	border-radius: 30px;-webkit-border-radius: 30px;-moz-border-radius: 30px;-o-border-radius: 30px;
}
.modal_form input[type="submit"]{
	padding: 0 60px;
}
.modal_form .desc{
	font-size: 16px;
	line-height: 20px;
	clear: both;
	padding-top: 20px;
}
.success{
	text-align: center;
}
.modal_form textarea{
	height: 100px;
	font-size: 16px;
	font-family: 'proxima_nova';
	line-height: 20px;
	padding: 20px;
}
/* -------------------------------------------------------------- header -------------------------------------------------------------- */
.hdr{
	height: 110px;
	background: #fff;
  	box-shadow: 2.5px 4.33px 8px 0px #e3e3e3;-webkit-box-shadow: 2.5px 4.33px 8px 0px #e3e3e3;-moz-box-shadow: 2.5px 4.33px 8px 0px #e3e3e3;-o-box-shadow: 2.5px 4.33px 8px 0px #e3e3e3;
	z-index: 9;
	padding-top: 10px;
	font-weight: 500;
}
.hdr .cnt{
	position: relative;
}
.hdr__logo{
	position: relative;
	float: left;
	width: 17%;
	margin-top: 1px;
	z-index: 2;
}
.hdr__logo img{
	max-width: 100%;
	height: auto;
}
.hdr__desc{
	position: absolute;
    top: 15px;
    width: 100%;
    font-size: 18px;
    left: 0;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 28px;
}
.hdr__nav{
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
    padding: 20px;
    text-align: center;
    visibility: hidden;
    box-shadow: 2.5px 4.33px 8px 0px rgb(86, 86, 86);-webkit-box-shadow: 2.5px 4.33px 8px 0px rgb(86, 86, 86);-moz-box-shadow: 2.5px 4.33px 8px 0px rgb(86, 86, 86);-o-box-shadow: 2.5px 4.33px 8px 0px rgb(86, 86, 86);
}
.hdr__nav.fixed{
	opacity: 1;
	visibility: visible;
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
}
.hdr__nav li{
	display: inline-block;
	vertical-align: top;
	margin-right: 3%;
	font-weight: 500;
}
.hdr__nav li:last-child{
	margin-right: 0;
}
.hdr__nav li a:hover{
	color: #8cbe46;
}
.hdr__contacts{
	position: relative;
	z-index: 2;
	float: right;
	padding-top: 15px;
	margin-top: 5px;
	text-align: right;
}
.hdr__contacts .phone{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
/* -------------------------------------------------------------- footer -------------------------------------------------------------- */
.ftr{
	position: relative;
	text-align: center;
	padding: 60px 0;
	box-shadow: 0 0 20px #e3e3e3;
}
.ftr .cnt{
	position: relative;
	z-index: 1
}
.ftr h2{
	margin-bottom: 40px;
	font-weight: 300;
	text-transform: none;
}
.ftr__phone{
    display: inline-block;
    margin-bottom: 20px;
    font-size: 100px;
    border-bottom: 1px solid rgba(140, 190, 70, 0.35);
}
.ftr .or{
	font-size: 38px;
	margin-bottom: 20px;
}
.ftr__info{
	width: 80%;
	margin: 20px auto 0;
	text-align: left;
	max-width: 1000px;
}
.ftr__info li{
	float: left;
	display: block;
	width: 31%;
	margin-right: 3.33333%;
	line-height: 36px;
}
.ftr__info li:nth-child(2n){text-align: center;}
.ftr__info li:nth-child(3n){margin-right: 0;text-align: center;}
.ftr__desc{
	font-weight: 500;
	margin-top: 50px;
}
.bottom_fiexed{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(230, 33, 23, 0.55);
	padding: 10px 0;
	color: #fff;
	text-align: center;
	z-index: 9;
}
/* -------------------------------------------------------------- fscreen -------------------------------------------------------------- */
.fscreen{
	background: url(../img/top_bg.jpg) no-repeat top center;
	background-size: cover;
	padding-top: 90px;
	text-align: center;
}
.fscreen h1{
	margin-bottom: 40px;
}
.fscreen__desc{
	font-size: 22px;
	line-height: 34px;
	margin-bottom: 65px;
}
.fscreen__desc .extra{
	font-weight: bold;
}
.action{
	margin: 60px auto 0 auto;
	display: table;
	width: 100%;
	text-align: left;
	max-width: 1200px;
}
.action__info,
.action__text{
	display: table-cell;
	vertical-align: top;
}
.action__info{
	position: relative;
	width: 60%;
	padding: 30px;
	background-color: #fff;
	box-shadow: 0 0 20px #e3e3e3;
}
.action__info:after{
    content: '';
    position: absolute;
    top: 60px;
    right: -20px;
    width: 20px;
    height: 90px;
    background: url(../img/trg.png) no-repeat;
}
.action__text{
	width: 40%;
	padding: 60px 0 0 5%;
}
.action__text h2{
	text-transform: none;
	text-align: left;
}
.action__text p{
	font-size: 19px;
	line-height: 30px;
	margin-bottom: 30px;
}
.action__info__img,.action__info__text{
	display: table-cell;
	vertical-align: top;
}
.action__info__text{
	padding: 10px 0 0 5%;
}
.action__info__text h3{
	margin-bottom: 20px;
}
/* -------------------------------------------------------------- services -------------------------------------------------------------- */
section{
	margin-bottom: 60px;
}
section h2{
	text-align: center;
	margin-bottom: 30px;
}
.services__list{
	background: url(../img/services_bg.jpg) no-repeat;
	background-size: cover;
}
.services__list li{
	position: relative;
	float: left;
	width: 33.3333333333%;
	border:1px solid #e3e3e3;
	text-align: center;
	padding: 40px 40px 60px 40px;
	list-style: none;
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
	cursor: pointer;
	margin: 0 -1px -1px 0;
}
.service__title{
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 40px;
}
.service__button{
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
}
.service__button .btn{
	height: 28px;
	line-height: 28px;
}
.services__list li:hover{
	background-color: #8cbe46;
}
.services__list li:hover .service__title{
	color: #fff;
}
.services__list li:hover .btn{
	background-color: #fff;
	color: #000;
}
.services__list .service__info{
	width: 100%;
	background: url(../img/arrow.png) no-repeat #8cbe46;
	cursor: default;
	display: table;
	padding: 0;
}
.services__list .service__info p{
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	font-size: 30px;
	line-height: 34px;
	font-weight: bold;
	text-align: center;
	/*padding-left: 10%;*/
}
/* -------------------------------------------------------------- staff -------------------------------------------------------------- */
.person{
	padding: 25px 0;
	box-shadow: 0 0 20px #e3e3e3;
	background-color: #fff;
	padding: 30px 10% 50px;
	display: table;
	width: 100%;
	border:1px solid transparent;
}
.person:hover{
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
	border-color: #8cbe46;
}
.person__img,
.person__info{
	display: table-cell;
	vertical-align: top;
}
.person__img{
	position: relative;
	width: 20%;
	padding-right: 5%;
}
.person__img:after{
	content: '';
	position: absolute;
	bottom: -25px;
	left: 160px;
	width: 60px;
	height: 60px;
	background: url(../img/grail.png) no-repeat;
}
.person__name{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 25px;
}
.bodyfield .person__desc{
	margin: 0;
}
.person__desc li{
	display: inline-block;
	vertical-align: top;
	width: 45%;
	background: url(../img/marker.png) no-repeat 0 7px;
	padding: 0 0 0 30px;
}
.person__desc li:nth-child(2n){
	margin-left: 5%;
}
.merged .person{
	float: left;
	width: 50%;
	padding: 30px;
}
.btn.big{
	display: table;
	margin: 50px auto 0;
	max-width: 400px;
}
/* -------------------------------------------------------------- docs -------------------------------------------------------------- */
.docslist{
	padding: 0 80px;
}
.docslist li{
	text-align: center;
	list-style: none;
}
.docs_title{
	margin-top: 20px;
	line-height: 24px;
	padding: 0 10px;
	font-size: 16px;
}
.owl-prev,
.owl-next{
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -35px;
	font-size: 0;
	cursor: pointer;
}
.owl-prev{
	left: 0;
}
.owl-next{
	right: 0;
}
.docs .owl-prev{
	background: url(../img/slider.png) no-repeat -5px 5px;
}
.docs .owl-next{
	background: url(../img/slider.png) no-repeat -147px 5px;
}
.photoslist{
	text-align: center;
}
.photoslist li{
	list-style: none;
}
.photoslist .owl-prev{
	left: 5%;
    background: url(../img/slider.png) no-repeat -13px -104px;
}
.photoslist .owl-next{
	right: 5%;
    background: url(../img/slider.png) no-repeat -147px -104px;
}
/* -------------------------------------------------------------- why us -------------------------------------------------------------- */
.why_us_list > li{
	box-shadow: 0 0 20px #e3e3e3;
	background-color: #fff;
	padding: 30px;
	float: left;
	width: 33.333333333%;
	text-align: center;
	list-style:none;
}
.why_us_list > li.first{
	float: none;
	width: 100%;
	height: auto !important;
}
.why_us_list p{
	font-size: 24px;
	line-height: 30px;
	margin-top: 30px;
}
.why_us_list > li.first h3{
	font-size: 28px;
	margin-bottom: 30px;
}
.why_us_list > li.first ul{
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}
.why_us_list > li.first ul li{
	float: left;
	width: 33.333%;
	text-align: left;
	font-size: 20px;
	line-height: 26px;
}
/* -------------------------------------------------------------- reviews -------------------------------------------------------------- */
.review{
	position: relative;
	float: left;
	width: 48%;
	margin: 0 2% 2% 0;
	list-style: none;
}
.review:nth-child(2n){
	margin-right: 0;
}
.play{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -57px 0 0 -57px;
	cursor: pointer;
	transition:.2s ease;-webkit-transition:.2s ease;-moz-transition:.2s ease;-o-transition:.2s ease;
}
.play:hover{
	transform:scale(.95);-webkit-transform:scale(.95);-moz-transform:scale(.95);-o-transform:scale(.95);
}
span.soglasen-txt{
    height: 56px;
    line-height: 56px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}
@media screen and (min-width: 800px){
    .fscreen h1.trezv-muzh{
        font-size: 60px;
    }
}
.form-item.robots{
	position: absolute;
	transform: scale(0);
}