@font-face {
  font-family: 'Century';
  src: url('fonts/gothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CenturyBold';
  src: url('fonts/CenturyGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Segoe';
  src: url('fonts/SegoeUIRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SegoeBold';
  src: url('fonts/SegoeUIBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'IcoMoon';
  src: url('fonts/icomoon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.icomoon{
    font-family: 'IcoMoon';
}
.search-toggle{
    position: absolute;
    width: 80px;
    height: 80px;
    text-align: center;
    right: 0;
    top: 100px;
    font-size: 28px;
    color: #86b625;
    cursor: pointer;
    transition: .3s;
}
.search-toggle:hover{
    color: #fff;
}
body{
    font-family: 'Segoe';
}
.img-to-back{
    overflow: hidden;
}
.img-to-back div{
    height: 100%;
}

h1,h2,h3,h4{
    font-family: 'CenturyBold';
}
h2{
	font-size: 27px;
}
h3{
    font-size: 24px;
}
.t2{
    text-transform: uppercase;
    font-family: CenturyBold;
    font-size: 28px;
    line-height: 1.1;
    color: #333;
    margin-bottom: 30px;
}
.t3{
    text-transform: uppercase;
    font-family: CenturyBold;
    font-size: 24px;
    line-height: 1.1;
    color: #333;
    margin-bottom: 20px;
}
.t5{
    font-family: CenturyBold;
        font-size: 21px;
    line-height: 1.1;
    color: #333;
    margin-bottom: 20px;
}
b{
    font-weight: normal;
    font-family: 'SegoeBold'!important;
}
html{min-width: 970px;}
body.no-scroll{
    overflow-y: hidden;
}
 .page__block{
        margin-bottom: 140px;
}
.block__title{
    margin-top: -6px;
}
.block__title_inline{
    float: left;
    margin-right: 50px;
}
.block__description{
    float: left;
    display: inline-block;
    width: 400px;
}
.gray-merge{
    display: block;
    position: relative;
}
.gray-merge::before{
    content: "";
    display: block;
    position: absolute;
    left: 230px;
    right: 0;
    bottom: 0;
    height: 140px;
    background-color: #f3f3f5;
}
.gray-merge-2{
    display: block;
    position: relative;
}
.gray-merge-2::before{
    content: "";
    display: block;
    position: absolute;
    left: 300px;
    right: 0;
    bottom: 0;
    height: 140px;
    background-color: #f3f3f5;
}
.content{
    font-size: 16px;
}
.space-55{
    display: block;
    height: 55px;
}
#recall-form{
    margin-bottom: 0;
}
.masonry{
    margin-left: 300px;
    position: relative;
}
.masonry-left{
    width: 55%;
    border-right: 10px solid transparent;
    height: 620px;
    position: relative;
    float: left;
}
.masonry a .object-link__title{
    opacity: 0;
    -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
    position: absolute;
    bottom: 20px;
    left: 20px;
    transition: .5s;
    font-family: CenturyBold;
    font-size: 18px;
    color: #000;
    display: inline-block;
    background-color: rgba(255,255,255,.5);
    padding: 10px 15px;
}
.masonry a:hover .object-link__title {
    opacity: 1;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
}
.masonry .masonry-right {
    float: left;
    width: 45%;
    height: 620px;
}
.objects-block__masonry-right_top {
    position: relative;
    height: 315px;
}
.masonry-right_bottom {
    position: relative;
    height: 305px;
}
.masonry a {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.title-h3 {
    text-transform: uppercase;
    font-family: CenturyBold;
    line-height: 29px;
    font-size: 24px;
}
.examples-title {
    position: absolute;
    top: 250px;
    left: 0;
    width: 220px;
}
.main__objects{
    position: relative;
}
#panel{
    position: fixed;
    top: 0;
    left: 80px;
    right: 0;
    z-index: 1000;
}
.scroll-icon{
    position: fixed;
    bottom: 50px;
    left: calc(50vw - 50px);
    right: calc(50vw - 50px);
    height: 50px;
    background-image: url(img/scroll.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30px;
    z-index: 100;
    transition: .5s;
    -webkit-animation: scrolling  0.7s infinite ease-in-out;
            animation: scrolling  0.7s infinite ease-in-out;
    opacity: 1;
}
.scroll-icon.fade-out{
    opacity: 0;
    transition: .5s;
}

@-webkit-keyframes scrolling{
    0%{
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
    40%{
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    90%{
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
    100%{
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
}

@keyframes scrolling{
    0%{
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
    40%{
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    90%{
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
    100%{
        -webkit-transform: translateY(50px);
                transform: translateY(50px);
    }
}
.shadow .page-shadow{
	top:0;
	left: 0;
	right: 100vw;
	bottom: 0;
	position: fixed;
	background-color: transparent;
    transition: .5s;
    z-index: 28;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.page-shadow img{
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}
.shadow.active .page-shadow{
	right: 0;
	background-color: rgba(0,0,0,.8);
    padding-left: 400px;
}
.page-shadow img.active{
    opacity: 1;
}
.scroll-banner{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(img/banner.png);
    background-color: #01032b;
    background-size: 100vw;
    background-position: 0 0;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 20;
}
.scroll-banner__content{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: #01032b;
    transition: background-color 1s;
}
.scroll-banner__left{
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 65vw;
    background-color: #060b28;
}
.scroll{
    position: fixed;
    top:0;
    left: 0;
    padding: 20px;
    font-size: 18px;
    background-color: #fff;
    z-index: 200;
}
.main-title{
    background-image: url(img/title-lines.png);
    background-position: 0 0;
    background-repeat: repeat-x;
    padding-top: 76px;
    font-size: 18.8px;
    color: #8fc12c;
    line-height: 30px;
    font-family: CenturyBold;
    width: 410px;
    float: right;
    margin-right: -120px;
    margin-top: 37vh;
    letter-spacing: 1px;
    opacity: 1;
    transition: .5s;
}
.main-title i.fa{
    font-size: 14px;
    position: relative;
    top: -1px;
    left: 3px;
}
.main-title.fade-out{
    margin-right: -200px;
    transition: .5s;
    opacity: 0;
}
.scroll-banner__menu{
    position: absolute;
    bottom: 89px;
    width: 287px;
    right: 0;
}
.scroll-banner__logo{
    position: absolute;
    width: calc(50vw - 100px);
    height: 450px;
    left: 50vw;
    background-image: url(img/l_03.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    top: calc(50vh - 225px);
    z-index: 30;
}
.blue-logo{
    position: fixed;
    background-image: url(img/l_06.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: calc(50vw - 100px);
    height: 450px;
    top: calc(50vh - 225px);
    left: 50vw;
}
.blue-grid{
    top: -182px;
    right: -155px;
    position: absolute;
    width: 600px;
    height: 800px;
    background-image: url(/images/blue-grid.png);
    background-repeat: no-repeat;
    background-position: 161px 188px;
}
.scroll-banner__contacts{
    position: fixed;
    bottom: 32px;
    left: calc(50vw + 50px);
    width: calc(50vw - 100px);
    padding-left: 16%;
    transition: .5s;
    opacity: 1;
}
.scroll-banner__contacts.fade-out{
    opacity: 0;
    bottom: 60px;
    transition: .5s;
}
.scroll-banner__contacts span{
    display: block;
    padding: 5px 0;
    color: #fff;
}
#canvas{
    top: -182px;
    right: -155px;
    position: absolute;
    opacity: 0;
    transition: 1s;
}
@media(min-width: 1250px){
    .blue-logo,
	.scroll-banner__logo{
		width: 500px;
		left: calc(50vw - 12px);
	}
	.scroll-banner__contacts{
		width: 500px;
	    left: calc(50vw - 12px);
	    padding-left: 191px;
	}
	.scroll-banner__menu{
		width: 330px;
	}
	.main-title{
		width: 450px;
		font-size: 20.8px;
		line-height: 32px;
	}
}
@media(min-width: 1400px){
    .blue-logo,
    .scroll-banner__logo{
        width: 500px;
        left: calc(60vw);
    }
    .col-sm-5{
        width: 52%;
    }
    .scroll-banner__contacts{
        left: calc(60vw);
    }
}
.sidebar__menu{
    margin-top: 10vh;
    margin-left: 70px;
}
.sidebar__link{
    color: #8fc12c;
    padding: 2vh 0;
    font-size: 18px;
    display: block;
    font-family: Century;
}
.sidebar__link:hover{
    color: #333;
}
@media(max-height: 740px){
    .sidebar__menu{
        margin-top: 40px;
    }
    .sidebar__link{
        padding: 16px 0;
    }
}
.br-1{
   display: block;
   height: 10px;
}
.br-2{
   display: block;
   height: 20px;
}
.br-3{
   display: block;
   height: 30px;
}
.br-4{
   display: block;
   height: 40px;
}
.br-5{
   display: block;
   height: 50px;
}
.content{
    padding-left: 160px;
    padding-right: 0px;
    padding-bottom: 50px;
    
    transition: 1s;
}

.index-padding-top{
    height: 100vh;
}

.content_top{
    padding-top: 0px!important;
}
.page__h1{
	margin-top: -6px;
    margin-bottom: 22px;
}
.page__head{
	height: 150px;
	padding-left: 160px;
}
.page__breadcrumb{
	float: left;
	margin-top: 40px;
}
.content-block{
    opacity: 0;
    transition: .5s;
    padding-top: 40px;
    font-size: 16px;
    line-height: 24px;
    color: #0a0a0a;
}
.content-block p{
    margin: 0 0 22px;
}
/*
.content-block h2{
	text-transform: uppercase;
}
*/
.content-block h4{
    font-family: CenturyBold;
}
.block__description ul,
.content-block ul{
    padding-left: 0px;
    list-style: none;
    line-height: 20px;
}
.block__description ul li,
.content-block ul li{
    margin-bottom: 7px;
    position: relative;
    padding-left: 34px;
}
.block__description ul li::before,
.content-block ul li::before{
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 2px;
    background-color: #a0d702;
}
.content-block .col-sm-5 {
    width: 41.66666667%;
}
.pad-right{
    padding-right: 90px;
    max-width: 1260px;
}
@media(min-width: 1400px){
    .pad-right{
        max-width: 1600px;
    }
}
.pad-bottom{
    padding-bottom: 100px;
}
.pad-top{
    padding-top: 80px;
}
.grey-block{
    position: relative;
}

.grey-block::before{
    content:"";
    top: 0;
    left: 230px;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    background-color: #f3f3f5;
}
.grey-block-2{
    position: relative;
}

.grey-block-2::before{
    content:"";
    top: 0;
    left: 300px;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    background-color: #f3f3f5;
}
/*-------------------------*/
.ajax-page{
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 10px 0px;
    background-color: #fff;
    transition: .5s;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateY(-101vh);
        -ms-transform: translateY(-101vh);
            transform: translateY(-101vh);
    padding-left: 160px;
    background-color: #f3f3f5;
    padding-left: 160px;
    padding-top: 100px;
    padding-right: 100px;
    overflow-y: auto;
    z-index: 2;
}
.ajax-page_open{
    -webkit-transform: translateY(0vh);
        -ms-transform: translateY(0vh);
            transform: translateY(0vh);
}
.ajax-page__close{
    position: absolute;
    top: 20px;
    right: 100px;
    font-size: 60px;
    cursor: pointer;
    color: #8fc12c;
}
.ajax-page__close:hover{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
/*-------------------------*/
.search-window{
    position: fixed;
    top: 0;
    box-shadow: 0px 0px 10px 0px;
    background-color: #fff;
    transition: .5s;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateY(-101vh);
        -ms-transform: translateY(-101vh);
            transform: translateY(-101vh);
    padding-left: 160px;
    background-color: #f3f3f5;
    padding-left: 160px;
    padding-top: 100px;
    padding-right: 100px;
    overflow-y: auto;
    z-index: 25;
}
.search-page_open{
    -webkit-transform: translateY(0vh);
        -ms-transform: translateY(0vh);
            transform: translateY(0vh);
}
.search-page__close{
    position: absolute;
    top: 20px;
    right: 100px;
    font-size: 60px;
    cursor: pointer;
    color: #8fc12c;
}
.search-page__close:hover{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
/*-------------------------*/
.benefits p{
    padding-top: 40px;
    margin-bottom: -5px!important;
    position: relative;
}
.benefits p::before{
    content: "1";
    position: absolute;
    color: #000;
    font-size: 63px;
    font-family: CenturyBold;
    font-style: italic;
    top: 32px;
    left: -12px;
    opacity: 0.05;
}
.benefits p:nth-child(1)::before{
    content:"1";
}
.benefits p:nth-child(2)::before{
    content:"2";
}
.benefits p:nth-child(3)::before{
    content:"3";
}
.benefits p:nth-child(4)::before{
    content:"4";
}
.benefits p:nth-child(5)::before{
    content:"5";
}
.benefits p:nth-child(6)::before{
    content:"6";
}
.benefits p:nth-child(7)::before{
    content:"7";
}
.benefits p:nth-child(8)::before{
    content:"8";
}
.benefits p:nth-child(9)::before{
    content:"9";
}
/*-------------------------*/
.vacancy-photo{ 
	position:relative; 
	height: 540px;
	margin-top: -45px;
}
.vacancy-photo::before{ position: absolute; content:""; background-color:#f3f3f5; display:block;top: 50px; right:70px;bottom:65px;left:80px;}
.vacancy-photo__photo-left{ 
	background-color:  #999;
	background-size:cover; 
	background-repeat:no-repeat; 
	position:absolute;
	bottom:0;
	left:0;
	height:310; 
	width:275px;
}
.vacancy-photo__photo-right{ 
	background-color:  #999;
	background-size:cover; 
	background-repeat:no-repeat; 
	position:absolute;
	top:0;
	right:0;
	height:310; 
	width:275px;
}
/*-------------------------*/
.personal-block{
    padding: 100px 0 80px;
}
.personal-block h2{
	margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
}
.personal{}
.personal__item{
    float: left;
    width: 50%;
}
.personal-item{
    height: 310px;
    margin-bottom: 50px;
    position: relative;
    padding-top: 180px;
}
.personal-item__name{
    color: #010020;
    line-height: 27px;
    margin-bottom: 19px;
    width: 230px;
    font-family: 'CenturyBold';
    font-size: 19px;
    letter-spacing: -0.5px;
}
.personal-item__status{
    width: 230px;
    font-size: 16px;
    color: #505050;
}
.personal-item__photo{
    position: absolute;
    top: 0;
    left: 230px;
    width: 285px;
    bottom: 0;
    background-color: #999;
    background-size: cover;
    background-position: center center;
}
/*-------------------------*/
.contact-us{
    margin-top: 130px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.contact-us h4{
    font-size: 18px;
}
.contact-us p{
    font-size: 18px;
    font-family: Century;
    color: #555;
}
.contact-us h2{
    margin-top: -5px;
    margin-bottom: 9px;
    font-size: 29px;
}
/*-------------------------*/
.feedback-form{
    font-size: 14px;
}
.feedback-form__row{
    margin-bottom: 40px;
}
.feedback-form__button{
    float: right;
}
.feedback-form textarea.auto-height-textarea{
    height: 40px;
    line-height: 25px;
    resize:none;
}
.auto-height-textarea {
    min-height: 40px;
    padding: 5px 0;
}
.noscroll {
    overflow: hidden;
}
.hiddendiv-for-text{
    display: none;
    white-space: pre-wrap;
    min-height: 40px;
    padding: 5px 0;
    word-wrap: break-word;
    line-height: 25px;
    font-family: CenturyBold;
    border-bottom: 2px solid #000;
}

/*-------------------------*/
.photo-grid{
    margin-top: -55px;
}
.photo-grid__photo{
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-color: #cecece;
}
.photo-grid__photo_min{
    height: 220px;
    margin-bottom: 10px;
}
.grid-item_left{
    width: 55%;
    height: 450px;
    float: left;
    padding-right: 10px;
}
.grid-item_right{
    width: 45%;
    height: 450px;
    float: left;
}
.grid-item_bottom{
    width: 100%;
    clear: both;
    height: 220px;
    padding-top: 10px;
}
    
.main-menu__left{
    float: left;
    width: 140px;
}
.main-menu__right{
    margin-left: 140px;
    height: 110px;
    background-image: url(img/tree-line.png);
    background-repeat: repeat-x;
    background-position: bottom;
}
.main-menu__link{
    color: #fff;
    display: block;
    margin: 10px 0px;
}
.main-menu__link:hover{
    color: #8fc12c;
}

.sidebar{
    position: fixed;
    top:0;
    bottom:0;
    left: -320px;
    transition: .5s;
    background-color: #fff;
    border-right: 1px solid #999;
    width: 400px;
    z-index: 30;
}
.sidebar.sidebar_dark{
    background-color: #151546;
    background-image: url(img/banner.png);
    background-size: cover;
    background-position-x: right;
    border: none;
}
.sidebar.sidebar_dark
.sidebar__link{
    color: #fff;
}
.sidebar.sidebar_dark
.sidebar__link:hover{
    color: #8fc12c;
}
.sidebar.open{
	left: 0;
	transition: .5s;
        box-shadow: 0px 0px 5px 5px rgba(0,0,0,.5);
}
.title.underline span,
h2.underline span{
    font-size: 30px;
    display: inline-block;
    padding-right: 5px;
    background-image: url(img/green.png);
    background-repeat: repeat-x;
    background-position: bottom;
    position: relative;
}
h3{
    font-size: 20px;
}
.link-1{
    color: #505050;
    display: inline-block;
    padding: 2px 0;
    border-bottom: 1px solid #303030;
    letter-spacing: 0;
    font-family: SegoeBold;
    line-height: 15px;
}
.link-1:hover{
    color: #505050;
    border-color: transparent;
}
.link-2{
    color: #505050;
    font-family: SegoeBold;
    display: inline-block;
    padding: 0px 0;
    border-bottom: 1px solid #90c02e;
    letter-spacing: 0;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 1px;
}
.link-2:hover{
    color: #505050;
    border-bottom: 2px solid #90c02e;
    margin-bottom: 0;
}
.link-control{
    letter-spacing: 30px;
}
.sidebar .btn-icon{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    color:  #fff;
}
.sidebar__toggle{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    cursor: pointer;
    background-color: transparent;
    transition: .5s;
    background-image: url(img/toggle-menu.png);
    background-repeat: no-repeat;
    background-position: 26px 26px;
    padding: 19px;
}
.sidebar__toggle:hover{
    background-color: rgba(255,255,255,0.1);
    transition: .5s;
}
.sidebar.open .sidebar__contacts{
    bottom: 50px;
    right: 70px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    transition: .5s;
}
.sidebar__contacts{
    position: absolute;
    color: #bfc0c1;
    font-size: 13px;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    right: -91px;
    bottom: 300px;
    font-weight: bold;
    letter-spacing: 1px;
    font-style: italic;
    transition: .5s;
}
.sidebar__contacts span{
    margin-right: 30px;
}
.form-block{
        margin: 0 -10px;
        position: relative;
    }
    .form-block__left{
        width: 50%;
        float: left;
        padding: 0 10px;
    }
    .form-block__right{
        width: 50%;
        float: left;
        padding: 0px 10px;
    }
    .form-block__input-block{
        padding: 10px 0;
        position: relative;
    }
    .form-block__input-block label{
        display: block;
    }
    .form-block__input{
        width: 100%;
        height: 40px;
        padding: 0 10px;
        border: 1px solid #999;
        outline:none;
    }
    .form-block__textarea{
        width: 100%;
        height: 210px;
        resize: none;
        padding: 10px 10px;
        border: 1px solid #999;
    }
    .input_required{}
    .form-error{
        position: absolute;
        top: 10px;
        right: 0;
        color: red;
        font-style: italic;
    }
    .message{
        position: absolute;
        top:0;
        left: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
        transition: 1s;
        text-align: center;
        padding-top: 50px;
        color: #8fc12c;
        font-size: 20px;
        background-color: #fff;
        font-family: CenturyBold;
    }
/*---------------------*/
.success-form{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    font-size: 20px;
    font-family: Century;
    line-height: 30px;
    color: #8fc12c;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
}
.success-form.active{
    pointer-events: all;
    opacity: 1;
}
.success-form.success-form_gray{
}
/*---------------------*/
.icon-block{
    margin-top: 20px;
}
.icon-block a{
    position: relative;
    top: -18px;
}
/*---------------------*/
.icon-circle{
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 2px solid #90c02e;
    background-position: center center;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 20px;
}
.icon-circle_quote {
    background-image: url(/images/quote-icon.png);
}
.icon-circle_car{
    background-image: url(/images/auto-icon.png);
}
/*------------------*/
span.space{
    display: inline-block;
    width: 20px;
}
/*-----------------*/
.front-products{
    position: relative;    
    margin-top: 30px;
}
.front-products::before{
    content: "";
    position: absolute;
    width: 80vw;
    height: 100%;
    top: 0;
    left: 280px;
    background-color: #f3f3f5;
}
.front-products__item{
    height: 380px;
    width: 430px;
    position: relative;
}
.front-products__item_right{
    float: right;
}
.front-products__item-back{
    position: absolute;
    top: 0;
    left: 145px;
    width: 285px;
    height: 340px;
    background: #f5f5f5;
    
}
.front-products__item-back div{
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    background-size: cover;
    background-position: center center;
    transition: .5s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.front-products__item-back::after{
    position: absolute;
    content: "";
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #012a5d, #47b9d6);
    opacity: 0.8;
    transition: .5s;
}
.front-products__item-back:hover::after{
    opacity: 0;
    transition: .5s;
}
.front-products__item-back:hover div{
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
    transition: .5s;
}
@media(min-width: 1400px){
    .front-products__item_right{
        float: none;
    }    
    .front-products__item-back{
        width: 65%;
    }
    
    .front-products__item{
        width: auto;
    }
}
@media(max-width: 1230px){
    .front-products__item-back{
        width: 65%;
        width: calc(100% - 175px);
        height: 250px;
    }
    .front-products__item .front-products__item-title{
        top: 235px;
    }
    .front-products__item{
        width: 100%;
        height: 290px;
    }
    .front-products>.row{
        margin-right: -120px;
    }
    .row.reviews-block{
        margin-right: -120px;
    }
    .content{
        padding-left: 110px;
    }
}
.front-products__item-submenu{
    position: absolute;
    bottom: 80px;  
    width: 130px;
}
.front-products__item-submenu a{
    display: block;
    color: #4f4f4f;
    line-height: 14px;
    font-family: SegoeBold;
    margin-bottom: 7px;
    font-size: 13px;
}
a:hover i{
    left: 14px;
    transition: .5s;
}
a i{
    transition: .5s;
    color: #99c53e;
    font-size: 16px;
    position: relative;
    top: 0px;
    left: 10px;
    width: 0;
}
.front-products__item-title{
    font-family: CenturyBold;
    font-size: 24px;
    text-transform: uppercase;
    color: #060c27;
    position: absolute;
    line-height: 30px;
    top: 324px;
    left: 0;
}
.front-products__item-title span{
    position: relative;
}
.front-products__item-title:hover{
    color: #060c27;
}
.front-products__item-title::before{
    content: "";
    width: 0%;
    display: block;
    position: absolute;
    bottom: 2px;
    height: 7px;
    background-image: url(img/green.png);
    transition: .5s;
}
.front-products__item-title:hover::before{
    width: 100%;
    transition: .5s;
}
/*----------------------*/
.green-back{
    position: relative;
}
.green-back::before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 60%;
    bottom: 0;
    background-color: #86b625;
    right: 0;
}
@media(min-width: 1400px){
    .green-back::before{
        left: 65%;
        width: 44vw;
    }
}
/*------------------------*/
.seven-block__text-block{
    margin-left: 493px;
    margin-top: -78px;
}
.seven-title{
    margin-top: 150px;
}
.seven-block{
    position: relative;
    padding-bottom: 150px;
}
.seven-block__number{
    font-family: SegoeBold;
    color: #2164ab;
}
input[name="amin-seven"]{
    display: none;
}
.seven-block__list.styled-list ul li::before{
    top: 21px;
}
.seven-block__list.styled-list li::after {
    content: "";
    display: none;
}
.seven-block__list.styled-list label{
    cursor: pointer;
}
.seven-block__list.styled-list label::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    transition: .5s;
    bottom: 6px;
    height: 3px;
    background-color: #90c02e;
}
input[name="amin-seven"] + label:hover::after,
input[name="amin-seven"]:checked + label::after{
    width: 125px;
}
.seven-block__hide-desc{
    opacity: 0;
    transition: 1s;
}
.seven-block__hide-desc.visible{
    opacity: 1;
}
input[name="amin-seven"]:checked + label.seven-block__hide-desc{
    opacity: 1;
    line-height: 20px;
}
.seven-block{
    float: left;
}
.seven-block__list{
    float: left;
}
.seven-block__number{
    top: 40px;
    left: 180px;
    position: absolute;
    transition: 1s;
    opacity: 1;
}
#canvas-seven{
    position: absolute;
	
}
#canvas-seven.gray{
	left: 200px;
    top: 100px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: .1;
}
.fucking-nine{
    position: absolute;
    font-size: 150px;
    font-family: SegoeBold;
    color: #2164ab;
    line-height: 0.7;
	opacity: 0;
	pointer-events: none;
	transition: 1s;
}
.seven-block__hide-desc{
    position: absolute;
    left: 100px;
    width: 400px;
}
.seven-block__number b,
.seven-block__number span,
.seven-block__number small{
    transition: .5s;
}
.seven-block__number b{
    font-size: 210px;
    color: #2164ab;
    display: block;
    font-family: SegoeBold;
    line-height: 186px;
}
.seven-block__number span{
    font-size: 18px;
    letter-spacing: 2px;
    display: block;
    padding-left: 15px;
}
.seven-block__number small{
    font-size: 13px;
    padding-left: 15px;
    font-family: SegoeBold;
}
/*
.seven-block__hide-desc {
    position: absolute;
    top: -21px;
    left: -68px;
    width: 330px;
    color: #333;
    opacity: 0;
    transition: .5s;
}
.seven-block__hide-desc p{
    font-family: Segoe;
}
*/
p.hide-desc__title{
    font-size: 18px;
    font-family: SegoeBold;
}
.seven-block__list{
    margin-left: 600px;
    position: relative;
    width: 500px;
}
.seven-block__list::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24%;
    right: -24%;
    background-image: url(/bitrix/templates/m5/img/logo.png);
    background-repeat: no-repeat;
    background-position: 30% 60px;
    background-size: contain;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: .08;
}
/*---------------------*/
.styled-list ul{
    padding: 0;
    list-style: none;
    margin: 0;
    font-family: SegoeBold;
    margin-bottom: 25px;
}
.styled-list li{
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: #4f4f4f;
    position: relative;
    margin-left: -30px;
    cursor: pointer;
}
.styled-list li::before{
    content: "";
    position: absolute;
    display: block;
    width: 9px;
    height: 2px;
    top: 21px;
    left: 0;
    background-color: #a1d600;
}
.styled-list li::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    transition: .5s;
    bottom: 6px;
    height: 3px;
    background-color: #90c02e;
}
.styled-list li.active::after,
.styled-list li:hover::after{
    width: 125px;
}
/*---------------------*/
.btn-1{
    font-family: SegoeBold;
    display: inline-block;
    padding: 9px 27px 8px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 2px solid #a1d600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color .3s;
    background-color: transparent;
    color: #4f4f4f;
    position: relative;
}
.btn-1:hover{
    color: #4f4f4f;
    background-color: #a1d600;
    transition: .3s;
}
a.btn-1:focus{
    color: #4f4f4f;
    border: 2px solid #a1d600;
    outline:none;
    box-shadow:none;
}
/*---------------------*/
.objects-block__text-block{
    margin-left: 330px;
    margin-top: -62px;
}
.objects-block{
    position: relative;
    padding-bottom: 50px;
}
.objects-block__title{
    position: absolute;
    top:130px;
    left: 0;
}
.objects-block__title h3{
    margin-bottom: 15px;
}
.objects-block__masonry{
    margin-left: 300px;
    margin-right: -100px;
}
.objects-block__masonry a{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.objects-block__masonry-left{
    width: 55%;
    padding-right: 10px;
    height: 620px;
    position: relative;
    float: left;
}
.objects-block__masonry-left a{
    right: 10px;
}
.objects-block__masonry-right{
    float: left;
    width: 45%;
    height: 620px;
}
.objects-block__masonry-right_top a{
    bottom: 10px
}
.objects-block__masonry-right_top{
    position: relative;
    height: 315px;
    padding-bottom: 10px;
}
.objects-block__masonry-right_bottom{
    position: relative;
    height: 305px;
}
/*---------------------*/
.reviews-block{
    padding-top: 50px;
    position: relative;
}
.reviews-block::before{
    content: "";
    position: absolute;
    left: 300px;
    bottom: 0;
    top: 0;
    width: 80vw;
    background-color: #f3f3f3;
    display: block;
    background-image: url(/images/quote-white.png);
    background-repeat: no-repeat;
    background-position: 0 174px;
}
.reviews-block__slider{
    margin-left: 370px;
    overflow: hidden;
}
.reviews-block__slider .owl-nav{
    display: none;
}
.reviews-block__title{
    position: absolute;
    top:170px;
    left: 0;
}
.reviews-block__title p{
    width: 300px;
}
.h-300{
    height: 300px;
}
/*---------------------*/
.reviews-slider{}
.reviews-slider__item{
    float: left;
    padding: 0 30px 30px 30px;
}
.reviews-slider__item-title{
    font-family: SegoeBold;
    padding: 13px 0px 10px 59px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-position: 0 5px;
    height: 60px;
    position: relative;
}
.reviews-slider__item-text{
    margin-bottom: 10px;
}
.reviews-slider .owl-dot{
    display: inline-block;
    height: 15px;
    padding-top: 13px;
    cursor: pointer;
    margin-right: 8px;
}
.reviews-slider .owl-dot span{
    width: 41px;
    height: 2px;
    display: block;
    background-color: #949494;
    margin-top: 2px;
}
.owl-dots{
    position: relative;
    top: -40px;
    letter-spacing: 8px;
    padding-left: 40px;
    clear: both;
}
.reviews-slider .owl-dot.active{
    padding-top: 11px;
}
.reviews-slider .owl-dot.active span{
    height: 4px;
    background-color: #a1d600;
}
/*---------------------*/
.file{
    background-position: 0 0;
    padding: 5px 0 0 32px;
    font-family: SegoeBold;
    background-repeat: no-repeat;
    color: #4f4f4f;
    display: inline-block;
    height: 27px;
    margin-bottom: 20px;
}
.file span{
    border-bottom: 1px solid #4f4f4f;
    padding-bottom: 2px;
}
.file:hover span{
    border-bottom: none;
    color: #4f4f4f;
}
.file_pdf{
    background-image: url(/images/pdf-icon.png);
}
.file_jpg{
    background-image: url(/images/jpg-icon.png);
}
/*--------------------*/
.uc{
    text-transform: uppercase;
}
/*---------------------*/

/*---------------*/
.recall-form{
    margin-top: -140px;
}
.recall-form_inner{
    margin-top: 100px;
}
.input-group{
    padding-bottom: 30px;
}
input#name{
    width: 170px;
}
input#phone{
    width: 270px;
}
label.for-file{
    font-weight: normal;
    font-family: SegoeBold;
    margin-top: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}
.input_file{
    display: none;
}
label.for-file i{
    font-size: 16px;
    color: #a1d600;
    margin-right: 10px;
    top: 1px;
    position: relative;
}
/*---------------*/
.input-1{
    border-bottom: 2px solid #000;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: transparent;
    font-family: Century;
    font-style: italic;
    margin-right: 10px;
    outline: none;
    line-height: 36px;
}
.input-1:focus{
    border-bottom: 2px solid #5f5f5f;
}
.input_block{
	width: 100%;
	display: block;
}
/*---------------*/
.footer{
    position: relative;
    margin-bottom: -50px;
}
.footer__left{
    width: 300px;
    position: absolute;
    top: 0;
    padding-top: 45px;
}
.footer__contacts{
    margin-bottom: 100px;
}
.footer__contacts span{
    display: block;
    color: #656565;
    line-height: 30px;
    font-family: Century;
}
.footer__map{
    margin-left: 300px;
    height: 540px;
    background-image: url(/images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.footer__menu .main-menu__link {
    color: #060c27;
    font-family: CenturyBold;
}
.footer__menu .main-menu__right{
    height: 142px;
    padding-top: 1px;
}
.footer__menu .main-menu__left{
    padding-top: 1px;
}
.footer__menu .main-menu__link:hover{
    color: #8fc12c;
}
.footer__copy{
    clear: both;
    margin-top: 30px;
}
.footer__copy span {
    display: block;
    font-family: Century;
    font-size: 15px;
    line-height: 30px;
}
/*-----------------*/
.input-row{
    margin-bottom: 10px;
    position: relative;
}
.input-row input{
    display: block;
    position: relative;
    width: 100%;
}
.fly-form{
    width: 400px;
    position: fixed;
    top: 100px;
    left: 160px;
    -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
            transform: translateX(-100vw);
    transition: 1s;
}
.btn-block{
    display: block;
}
.fly-form input::-webkit-input-placeholder,
.fly-form input::::-moz-placeholder,
.fly-form input:::-moz-placeholder,
.fly-form input:::-ms-input-placeholder{
    color:#c0392b;
    font-size: 18px;
}
input[placeholder]          {text-overflow:ellipsis;}
input::-moz-placeholder     {text-overflow:ellipsis;} 
input:-moz-placeholder      {text-overflow:ellipsis;} 
input:-ms-input-placeholder {text-overflow:ellipsis;} 
.input-1{
    font-family: CenturyBold; font-style:normal;
}
::-webkit-input-placeholder {font-family: Century; font-style:italic;}
::-moz-placeholder          {font-family: Century; font-style:italic;}/* Firefox 19+ */
:-moz-placeholder           {font-family: Century; font-style:italic;}/* Firefox 18- */
:-ms-input-placeholder      {font-family: Century; font-style:italic;}
/*-----------------*/
.btn-icon{
    display: block;
    border: 2px solid #a1d600;
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 37px;
    padding-right: 4px;
    font-size: 17px;
    border-radius: 4px;
    background-color: #3d3d63;
}
.btn-icon i{
    transition: .5s;
}
.btn-icon:hover i{
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px); 
}
.btn-icon_top{
    position: absolute;
    top: -29px;
    left: 0;
}
.seven-block__list{
    width: auto;
    margin-left: 0;
    float: none;
}
.seven-block{
    float: none;
}
.seven-block__hide-desc {
    position: absolute;
    left: 100px;
    right: 30px;
    width: auto;
}
.seven-block__list::before{
    display: none;
}
.gray-logo-back::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(/bitrix/templates/m5/img/logo.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: .08;
}
.styled-list li{
    margin-left: 0;
}

.free-html{
	position: relative;
}
.free-html img{
	max-width: 100%;
}
.with-gost{
    position: relative;
}
.with-gost::after{
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url(/bitrix/templates/m5/img/gost.png);
    content:"";
    bottom: 20px;
    left: 20px;
    background-size: contain;
    background-repeat:no-repeat;
    background-position: center;
    display: block;
}