@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i');

*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*:before,
*:after{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

img{
    border: none;
}
textarea{
    overflow: auto;
}
input,
textarea,
input:active,
textarea:active{
         outline: none transparent!important;
    box-shadow: none;

    -moz-outline: none!important;
}
input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}
:focus{
    outline: none;
}

::-webkit-input-placeholder{
    color: rgba(0,0,0,.5);
}
::-moz-placeholder{
    color: rgba(0,0,0,.5);
}/* Firefox 19+ */
:-moz-placeholder{
    color: rgba(0,0,0,.5);
}/* Firefox 18- */
:-ms-input-placeholder{
    color: rgba(0,0,0,.5);
}
/*---------------
    Main styles
---------------*/
.clear{
    clear: both;
}
.left{
    float: left;
}
.right{
    float: right;
}

html{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
    color: #000;
    font-family: Roboto;
    font-size: 18px;

    background: #fafafa;

    -webkit-text-size-adjust: 100%;
}

body.hide{
    overflow: hidden;

    height: 100%;
}

.site_wrap{
    position: relative;

    overflow: hidden;
}

.cont{
    position: relative;

    max-width: 1200px;

    margin: 0 auto;
    padding: 0 15px;
}


.aside_left{
    width: 260px;
}

.section_center{
    width: calc(100% - 280px);
    max-width: 860px;
}


.form .line_flex{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.form .line_form{
    margin-bottom: 20px;
}

.form .line_flex .line_form{
    width: calc(50% - 20px);
}

.form .line_form > label{
    display: block;

    margin-bottom: 10px;

    color: #222;
    font-weight: 700;
}

.form .input,
.form textarea{
    display: block;

    width: 100%;
    height: 40px;

    padding: 0 10px;

    color: #000;
    font: 14px Roboto;

    border: 1px solid #fff;
    background: #fff;

    transition: .2s linear;
}

.form textarea{
    height: 74px;

    padding: 10px 10px;

    resize: none;
}

.form .input:focus,
.form textarea:focus{
    border-color: #009f64;
}

.form .submit_btn{
    display: inline-block;
    vertical-align: top;

    height: 36px;

    padding: 0 15px;

    color: #fff;
    font: 500 12px Roboto;

    border: 1px solid #fff;
    background: transparent;

    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    transition: .2s linear;
}

.contacts .form .submit_btn,
.modal .form .submit_btn{
    color: #fff;

    border-color: #009f64;
    background: #009f64;
}

.form .submit_btn:hover{
    color: #000;

    background: #fff;
}

.contacts .form .submit_btn:hover,
.modal .form .submit_btn:hover{
    color: #fff;

    border-color: #00be64;
    background: #00be64;
}

.form .box_btn{
    display: flex;

    margin-top: 2px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .agree{
    width: calc(50% - 10px);
}

.checkbox + .checkbox{
    margin-top: 15px;
}

.checkbox input[type=checkbox]{
    display: none;
}

.checkbox input[type=checkbox] + label{
    position: relative;

    display: inline-block;
    vertical-align: middle;

    padding-left: 22px;

    font-size: 14px;

    cursor: pointer;
}

.checkbox.white input[type=checkbox] + label{
    color: #fff;
}

.checkbox input[type=checkbox] + label:before{
    position: absolute;
    top: 2px;
    left: 0;

    width: 12px;
    height: 12px;

    border: 1px solid #fff;

    content: '';
    transition: .2s linear;
}

.checkbox input[type=checkbox] + label:after{
    position: absolute;
    top: 2px;
    left: 0;

    width: 12px;
    height: 12px;

    opacity: 0;
    background: url(../images/ic_check.svg) 50% 50% no-repeat;
    background-size: 9px auto;

    content: '';
    transition: .2s linear;
}

.checkbox input[type=checkbox]:checked + label:after{
    opacity: 1;
}


.form .block_flex{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.form .block_flex .selectWrap{
    width: calc(50% - 10px);
    max-width: 160px;
}

.selectWrap{
    width: 100%;
}

.selectWrap select{
    display: none;
}

.selectWrap  .nice-select{
    position: relative;

    display: block;

    text-align: left;
}

.selectWrap .nice-select .current{
    display: block;
    overflow: hidden;

    padding: 0 40px 0 20px;

    color: rgba(34,34,34,.50);
    line-height: 50px;

    border: 1px solid #e8ecf0;
    border-radius: 3px;
    background: #fff;

    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: border .2s linear;
}

.selectWrap .nice-select .current.selected{
    color: #222;
}

.selectWrap .nice-select.open .current{
    border-color: #fff;
    border-radius: 4px 4px 0 0;
}

.selectWrap .nice-select .current:after{
    position: absolute;
    top: 50%;
    right: 18px;

    display: block;

    width: 6px;
    height: 11px;

    margin-top: -4px;

    background: url(../images/arrow_slider1.svg) 0 0 no-repeat;

    content: '';
    transform: rotate(-90deg);
}

.selectWrap .nice-select.open .current:after{
    transform: rotate(90deg);
}

.selectWrap .nice-select .list{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;

    display: none;
    overflow: auto;

    width: 100%;

    padding-bottom: 10px;

    border-radius: 0 0 4px 4px;
    background: #fff;
}

.selectWrap .nice-select.open .list{
    display: block;
}

.selectWrap .nice-select .list li{
    display: block;

    width: 100%;

    padding: 5px 20px;

    color: #004199;

    list-style: none;

    cursor: pointer;
    text-decoration: none;
    transition: .2s linear;
}

.selectWrap .nice-select .list li:hover{
    color: #222;
}

.selectWrap .nice-select .list li.selected{
    font-weight: 700;
}

.selectWrap .nice-select .list li:first-child{
    display: none;
}

.buttonUp{
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 999;

    display: none;
}

.buttonUp a{
    display: block;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    background: #009f64 url(../images/arrow1.svg) 48% 50% no-repeat;
    background-size: auto 20px;

    transform: rotate(90deg);
}
/*---------------
   Анимации
---------------*/
.amenities .item .icon{
    visibility: hidden;
}

.animated{
    visibility: visible !important;
}
/*---------------
   Header
---------------*/
header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;

    width: 100%;

    padding-bottom: 12px;

    background: rgba(0,0,0,.3);
}

header.header_inner{
    background: #000;
}

header .ing_fon{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}

header .ing_fon .img{
	opacity: .7;
    position: absolute;
    top: -10px;
    left: 0;

    width: 100%;
    height: calc(100vh + 10px);
    min-height: 460px;

    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;

    transition: background-image .4s linear;

    filter: blur(10px);
}

header.fixed{
    position: fixed;

    padding: 12px 0;

    background: #fff;

    -webkit-animation: moveDown .5s;
            animation: moveDown .5s;
}

header.fixed .ing_fon{
    display: none;
}

header .top_line{
    position: relative;

    margin-bottom: 12px;
    padding: 13px 0;

    border-bottom: 1px solid #fff;
}

header.fixed .top_line{
    display: none;
}

header .cont{
    position: static;

    display: flex;

    max-width: 100%;

    padding: 0 50px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .mob_menu_link{
    position: relative;

    display: none;

    width: 20px;
    height: 22px;

    margin-left: 15px;
    padding: 2px 0;
}

header .mob_menu_link span{
    position: relative;

    display: block;

    height: 2px;

    margin: 0 auto;

    border-radius: 50px;
    background: #fff;

    transition: .2s linear;
}

header .mob_menu_link span + span{
    margin-top: 6px;
}


header .mob_menu_link.active span:nth-child(2){
    opacity: 0;
}

header .mob_menu_link.active span:nth-child(1){
    top: 8px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

header .mob_menu_link.active span:nth-child(3){
    top: -8px;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

header .logo{
    position: relative;

    width: 183px;
}

header .logo img{
    display: block;

    max-width: 100%;
}

header .logo .black{
    display: none;
}

header.fixed .logo .white{
    display: none;
}

header.fixed .logo .black{
    display: block;
}

header .info{
    position: relative;

    color: #fff;
    font-size: 16px;

    text-transform: uppercase;
}
header .mail{
    position: relative;

    margin-left: auto;
}

header .mail a{
    position: relative;

    display: block;

    padding-left: 32px;

    color: #fff;
    font-weight: 500;
    line-height: 22px;

    text-decoration: none;
}

header .mail a:before{
    position: absolute;
    top: 0;
    left: 0;

    width: 22px;
    height: 22px;

    background: url(../images/ic_mail.svg) 0 0 no-repeat;

    content: '';
}

header .tel{
    position: relative;

    margin-left: 30px;
}

header .tel a{
    position: relative;

    display: block;

    padding-left: 32px;

    color: #fff;
    font-weight: 500;
    line-height: 22px;

    text-decoration: none;
}

header .tel a:before{
    position: absolute;
    top: 0;
    left: 0;

    width: 22px;
    height: 22px;

    background: url(../images/ic_tel.svg) 0 0 no-repeat;

    content: '';
}

header .tel_mob{
    position: relative;

    display: none;
}

header .tel_mob a{
    display: block;

    width: 22px;
    height: 22px;

    background: url(../images/ic_tel.svg) 0 0 no-repeat;
}

header .mail_mob{
    position: relative;

    display: none;
}

header .mail_mob a{
    display: block;

    width: 22px;
    height: 22px;

    background: url(../images/ic_mail.svg) 0 0 no-repeat;
}

header .call{
    position: relative;

    margin-left: 12px;
}

header .call a{
    display: block;

    min-width: 124px;

    color: #fff;
    font-size: 11px;
    line-height: 28px;

    border: solid 1px #fff;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s linear;
}

header .call a:hover{
    color: #000;

    background: #fff;
}

header .lang{
    position: relative;

    display: flex;

    margin-left: 34px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

header .lang a{
    position: relative;

    display: block;

    color: #fff;
    font-size: 16px;

    text-decoration: none;
    text-transform: uppercase;
    transition: .2s linear;
}

header .lang a:hover{
    color: #009f64;
}

header .lang a.active:hover{
    color: #fff;
}


header .lang a + a{
    margin-left: 18px;
}
header .header-sitemap{
  background: url(/img/Site_Map.svg) no-repeat 50%;
  width: 28px;
  background-size: contain;
}
header .header-sitemap.mobile{
  display: none;
}

header .lang a.active:before{
    position: absolute;
    bottom: -5px;
    left: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: #fff;

    content: '';
    transform: translateX(-50%);
}

header .box_menu{
    /*position: relative;*/

    display: flex;

    margin-left: auto;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .box_menu .lang{
    display: none;

    margin: 30px 0 0;
}

header .menu{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

header .menu .item_menu + .item_menu{
    margin-left: 40px;
}

header .menu a{
    position: relative;

    display: block;

    color: #fff;
    font-size: 20px;
    line-height: 25px;

    text-decoration: none;
    transition: .2s linear;
}

header.fixed .menu a{
    color: #000;
}

header .menu a span{
    position: relative;
}

header .menu a.active span:before{
    position: absolute;
    bottom: -8px;
    left: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: #fff;

    content: '';
    transform: translateX(-50%);
}

header.fixed .menu a.active span:before{
    background: #000;
}

header .menu .item_menu > a:not(.active) span:after,
header .menu .item_menu ul li a span:after,
header .menu .item_menu > a.view span:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    background-color: #009f64;
    transition: transform 0.3s;
}

header .menu .item_menu:hover > a span:after,
header .menu .item_menu ul li a:hover span:after,
header .menu .item_menu > a.view:not(.active) span:after{
    transform: scaleX(1);
}
/*Новые Стили*/
header .menu .sub_menu{
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgba(0,0,0,.7);
    z-index: 99;

    display: none;
}

header .menu .item_menu:hover .sub_menu{
    display: block;
}

header .menu .sub_menu:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 100%;
    height: 25px;
}

header .menu .sub_menu ul{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;

    margin-left: -15px;
    padding: 2px 0 12px 0;
}

header .menu .sub_menu ul li{
    list-style: none;

    margin: 10px 0 0 15px;

    width: calc(20% - 15px);
}

header .menu .sub_menu ul li a{
    font-size: 14px;
    letter-spacing: -0.1px;
    color: #fff;
}
/*End Новые Стили*/

header .link_lk{
    margin-left: 50px;
}

header .link_lk a{
    position: relative;

    display: block;

    padding-left: 35px;

    color: #fff;
    font-size: 16px;
    line-height: 25px;

    text-decoration: none;
    transition: .2s linear;
}

header.fixed .link_lk a{
    color: #000;
}

header .link_lk a:hover{
    color: #009f64;
}

header .link_lk >a:before{
    position: absolute;
    top: 0;
    left: 0;

    width: 25px;
    height: 25px;

    background: url(../images/ic_user.svg) 0 0 no-repeat;

    content: '';
}

header.fixed .link_lk a:before{
    background-image: url(../images/ic_userBlack.svg);
}

header .send_request{
    position: relative;

    margin-left: 40px;
}

header .send_request a{
    display: block;

    padding: 0 15px;

    color: #fff;
    font-size: 15px;
    line-height: 36px;

    background: #009f64;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s linear;
}

header .send_request a:hover{
    background: #fff;
	color: #000;
}
header.fixed .send_request a:hover{
    background: #000;
	color: #fff;
}
/*---------------
   Main section
---------------*/
section .main_title{
    font-size: 40px;
    font-weight: 700;

    text-transform: uppercase;
}

section .main_title.white{
    color: #fff;
}


section .subTitle{
    margin-top: 30px;

    color: #009f64;
    font-size: 27px;
    font-weight: 500;
    line-height: 30px;

    text-transform: uppercase;
}


section .title_small{
    font-size: 20px;
    font-weight: 500;

    text-align: center;
    text-transform: uppercase;
}


section .more_all{
    margin-top: 60px;

    text-align: center;
}

section .more_all a{
    display: inline-block;
    vertical-align: top;

    padding: 0 34px;

    color: #222;
    font-weight: 700;
    line-height: 48px;

    border: 1px solid #222;
    border-radius: 3px;

    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: .2s linear;
}

section .more_all a:hover{
    color: #fff;

    background: #222;
}

.sectionMarg{
    margin-top: 60px;
}


.section_text{
    margin-top: 50px;
}

.text_block h1{
    margin-bottom: 30px;

    font-size: 40px;
    font-weight: 700;

    text-transform: uppercase;
}

.text_block h2{
    margin-bottom: 30px;

    font-size: 30px;
    font-weight: 700;
    line-height: .97;

    text-transform: uppercase;
    letter-spacing: -.2px;
}

.text_block h3{
    margin-bottom: 20px;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;

    text-transform: uppercase;
    letter-spacing: -.1px;
}

.text_block h4{
    margin-bottom: 20px;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;

    letter-spacing: -.1px;
}

.text_block p{
    margin-bottom: 20px;

    line-height: 1.28;

    letter-spacing: -.1px;
}

.text_block a{
    color: #222;

    text-decoration: none;
}

.text_block a:hover{
    color: #004199;
}

.text_block img{
    display: block;

    max-width: 100%;

    margin-bottom: 30px;
}

.text_block img.left{
    width: 50%;

    margin-right: 30px;
}

.service_text .text_block img{
    margin: 36px 0 70px;
}

.text_block ul{
    margin-bottom: 30px;
}

.text_block ul li{
    position: relative;

    min-height: 44px;

    padding-left: 50px;

    font-size: 20px;
    line-height: 1.15;

    list-style: none;

    letter-spacing: -.1px;
}

.text_block ul li:before{
    position: absolute;
    top: 0;
    left: 0;

    color: #009f64;
    font-size: 50px;
    font-weight: 700;
    line-height: 44px;

    content: '-';
    letter-spacing: -.3px;
}

.text_block ol{
    margin-bottom: 30px;

    list-style-type: none;

    counter-reset: list1;
}

.service_text .text_block ol{
    display: flex;

    margin-bottom: -30px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.text_block ol li{
    position: relative;

    min-height: 80px;

    padding-left: 50px;

    font-size: 20px;
    line-height: 1.15;

    counter-increment: list1;
    letter-spacing: -.1px;
}

.service_text .text_block ol li{
    width: calc(50% - 15px);

    margin-bottom: 30px;
}

.text_block ol li:before{
    position: absolute;
    top: 0;
    left: 0;

    color: #009f64;
    font-size: 50px;
    font-weight: 700;
    line-height: 44px;

    content: counter(list1);
    letter-spacing: -.3px;
}

.text_block .column{
            column-count: 2;
    -webkit-column-count: 2;
       -moz-column-count: 2;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}

.text_block .text_bord{
    height: 10px;

    margin: 40px 0 50px;

    background: #009f64;
}

.text_block > :last-child{
    margin-bottom: 0;
}

.info_service{
    position: relative;

    margin: 50px 0;
    padding: 53px 0;
}

.info_service:before{
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;

    width: 100vw;
    height: 100%;

    background: url(../images/bg4.jpg) 50% 0 no-repeat;
    background-size: cover;

    content: '';
    transform: translateX(-50%);
}

.info_service .name{
    position: relative;

    max-width: 560px;

    color: #009f64;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;

    text-transform: uppercase;
    letter-spacing: -.1px;
}

.info_service .text{
    position: relative;

    max-width: 560px;

    margin-top: 20px;

    color: #fff;
    font-size: 18px;
    line-height: 1.28;

    letter-spacing: -.1px;
}


.pagination{
    margin-top: 40px;

    text-align: center;
}

.pagination > :first-child{
    margin-left: 0;
}

.pagination a,
.pagination span{
    position: relative;

    display: inline-block;
    vertical-align: top;

    width: 40px;
    height: 40px;

    margin-left: 12px;
    padding: 1px;

    color: #494949;
    font: 16px/38px Open Sans;

    border-radius: 4px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b83f9d+0,521f92+100 */
    background: rgb(184,63,157); /* Old browsers */
    background:    -moz-linear-gradient(-45deg, rgba(184,63,157,1) 0%, rgba(82,31,146,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(184,63,157,1) 0%,rgba(82,31,146,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background:         linear-gradient(135deg, rgba(184,63,157,1) 0%,rgba(82,31,146,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    text-align: center;
    text-decoration: none;
    transition: .2s linear;

    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b83f9d', endColorstr='#521f92',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.pagination a:before{
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 0;

    width: calc(100% - 2px);
    height: calc(100% - 2px);

    border-radius: 4px;
    background: #fff;

    content: '';
    transition: .2s linear;
}

.pagination a:hover:before{
    opacity: 0;
}

.pagination a:hover,
.pagination span{
    color: #fff;
}

.pagination a b{
    position: relative;
    z-index: 1;

    font-weight: 400;
}

.pagination .dot{
    display: inline-block;
    vertical-align: top;

    width: 10px;
    height: 40px;

    margin-left: 12px;

    color: #494949;
    font: 16px/50px Open Sans;
}


.section_inner{
    padding: 35px 0;

    border-bottom: 1px solid #f3f6f9;
    background: #fafcfd;
}

section .title_inner{
    font-size: 50px;
    font-weight: 700;

    text-align: center;
}

.breadcrumbs{
    margin-bottom: 4px;

    text-align: center;
}

.breadcrumbs a{
    color: #222;

    border-bottom: 1px solid #222;

    text-decoration: none;
    transition: .2s linear;
}

.breadcrumbs a:hover{
    color: #004199;

    border-bottom-color: #004199;
}

.breadcrumbs .step{
    display: inline-block;
    vertical-align: middle;

    width: 5px;
    height: 10px;

    margin: -3px 14px 0;

    background: url(../images/arrow_slider1.svg) 0 0 no-repeat;

    transform: rotate(180deg);
}



.main_slider{
    position: relative;

    margin-top: -10px;
}

.main_slider:before{
    position: absolute;
    bottom: 48px;
    left: 50%;

    width: 21px;
    height: 30px;

    background: url(../images/ic_mouse.svg) 0 0 no-repeat;
	z-index:1;

    content: '';
    transform: translateX(-50%);
}

.main_slider .abs_info{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    display: flex;

    width: 100%;
    height: 100%;

    padding: 110px 0 20px;

    justify-content: flex-start;
    align-items: stretch;
}

.main_slider .send_request{
    /*display: none;*/

    margin-top: 25px;

    text-align: center;
}

.main_slider .send_request a{
    display: inline-block;
    vertical-align: top;

    padding: 0 30px;

    color: #fff;
    font-size: 16px;
    line-height: 40px;

    background: #009f64;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s linear;
}

.main_slider .send_request a:hover{
    background: #00be64;
}

.main_slider .abs_info .cont{
    width: 100%;
    max-width: 100%;

    margin: auto;
    padding: 0 70px;
}

.main_slider .logoBig{
    display: flex;

    width: 550px;

    margin: 0 auto;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.main_slider .logoBig .text{
    width: 180px;

    color: #fff;
    font-size: 25px;
    font-weight: 700;

    text-align: right;
    text-transform: uppercase;
}

.main_slider .logoBig .img{
    width: 340px;
}

.main_slider .logoBig .img img{
    display: block;

    max-width: 100%;
}

.main_slider .slide{
    display: none;

    height: calc(100vh + 10px);

    min-height: 100%;

    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.main_slider .slide:first-child,
.main_slider .bx-wrapper .slide{
    display: block;
}

.maintext {
	padding-top:30px; margin-left:auto; color: white; text-align:center; font-size:1.5em;
}



.service_banner{
    position: relative;

    display: flex;
    overflow: hidden;

    height: calc(100vh + 10px);
    min-height: 574px;

    margin-top: -10px;
    padding: 160px 0 164px;

    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.about_banner{
    min-height: 450px;

    padding-bottom: 50px;
}

.service_banner .cont{
    width: 100%;
    max-width: 100%;

    margin: auto;
}

.service_banner .name{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: .97;

    text-transform: uppercase;
    letter-spacing: -.4px;

    max-width: 640px;
}

.service_banner .text{
    margin-top: 24px;

    color: #fff;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.27;

    text-transform: uppercase;
    letter-spacing: -.2px;

    max-width: 506px;
}

.service_banner .line_flex{
    max-width: 1050px;
    margin: 0 auto;

    position: relative;
}

.service_banner .img{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    max-width: 526px;
    z-index: 0;
}

.service_banner .img img{
    display: block;
    max-width: 100%;
}


/*
.service_banner .prev,
.service_banner .next{
    position: absolute;
    bottom: 44px;
    z-index: 11;

    display: block;

    width: 27px;
    height: 42px;
    border: 1px solid #fff;

    background: url('../images/arrow1.svg') 50% 50% no-repeat;

    text-indent: -9999px;
    transition: .2s linear;
}


.service_banner .prev{
    left: 25px;
}

.service_banner .prev:before{
    content: "предыдущая услуга";
    width: 10px;
    position: absolute;
    left: 39px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    text-indent: 0;
    pointer-events: none;
    opacity: 0;
    transition: .2s linear;
}

.service_banner .next{
    right: 25px;

    transform: rotate(-180deg);
}

.service_banner .next:before{
    content: "следующая услуга";
    width: 92px;
    position: absolute;
    right: -106px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    text-align: right;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    text-indent: 0;
    pointer-events: none;
    opacity: 0;
    transition: .2s linear;
}

.service_banner .prev:hover,
.service_banner .next:hover{
    background-color: #009f64;
    border-color: #009f64;

    z-index: 12;
}

.service_banner .prev:hover:before,
.service_banner .next:hover:before{
    opacity: 1;
}
*/

.service_links{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;

    width: 100%;

    padding: 5px 0 25px;

    background: rgba(0,0,0,.7);
}

.service_banner .service_links .cont{
    max-width: 1200px;

    padding: 0 15px;
}

.service_links .list{
    display: flex;

    margin-left: -30px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.service_links .list li{
    width: calc(25% - 30px);

    margin: 20px 0 0 30px;

    list-style: none;
}

.service_links .list li a{
    color: #fff;
    font-size: 14px;

    text-decoration: none;
    transition: .2s linear;
}

.service_links .list li a:hover{
    color: #009f64;
}


.section_amenities{
    padding: 50px 0;

    background: #000;
}

.amenities{
    display: flex;

    margin: -10px 0 0 -30px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.amenities .item{
    transition:all 0.3s ease;
    position: relative;

    width: calc(33.333% - 30px);
    height: 186px;

    margin: 30px 0 0 30px;
    padding: 16px 22px;

    border: 1px solid rgba(255, 255, 255, .51);

    text-decoration: none;
}

.amenities .item:hover{
    box-shadow: inset 0 0 0 2px #fff;
}

.amenities .item .name{
    position: relative;
    z-index: 1;

    color: #fff;
    font-size: 20px;
    font-weight: 700;

    text-transform: uppercase;
}

.amenities .item .icon{
    position: absolute;
    top: 0;
    right: 0;

    display: flex;

    width: 100%;
    height: 100%;

    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.amenities .item .icon.top{
    align-items: flex-start;
    align-content: flex-start;
}

.amenities .item .icon img{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.section_partners{
    margin-top: 50px;
}

.section_partners .cont.big{
    max-width: 1310px;
}

.partners{
    display: flex;

    margin-top: 40px;
    padding: 1px 0 0 1px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.partners .item_wrap{
    width: 20%;
}

.partners .item{
    display: flex;

    height: 174px;

    margin: -1px 0 0 -1px;
    padding: 15px;

    border: 1px solid #bfbfbf;

    justify-content: center;
    align-items: center;
}

.partners .item .img{
    display: flex;

    max-width: 200px;
    height: 100%;

    justify-content: center;
    align-items: center;
}

.partners .item img{
    display: block;

    max-width: 150px;
    max-height: 100%;

    transition: .2s linear;

    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
}

.partners .item:hover img{
    -webkit-filter: grayscale(0%);
       -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
         -o-filter: grayscale(0%);
}


.main_contacts{
    position: relative;

    padding: 45px 0;

    background: url(../images/bg1.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.service_contacts{
    margin-top: 50px;
    padding-top: 60px;

    background-image: url(../images/bg3.jpg);
    background-position: 50% 100%;
}

.main_contacts .infoForm{
    margin-top: 6px;

    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;

    text-align: center;
    text-transform: uppercase;
}

.service_contacts .infoForm{
    max-width: 700px;

    margin: 0 auto;
}

.main_contacts .form{
    max-width: 490px;

    margin: 44px auto 0;
}

.main_contacts .contact{
    display: flex;

    margin-top: 60px;

    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.main_contacts .contact .adres{
    width: 360px;

    margin-right: 76px;
}

.main_contacts .contact .adres,
.main_contacts .contact .tel,
.main_contacts .contact .mail{
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.42;
}

.main_contacts .contact .tel a,
.main_contacts .contact .mail a{
    color: #fff;

    text-decoration: none;
}


.section_advantages{
    position: relative;

    padding: 40px 0 0 0;

    background: #000;
}

.section_advantages:before{
    position: absolute;
    /*top: 280px;*/
    left: 0;

    width: 100%;
    height: calc(100% - 280px);

    background: url(../images/bg2.jpg) 50% 10% no-repeat;
    background-size: cover;

    content: '';
}

.advantages{
    display: flex;

    margin: 30px 0 0 -45px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.advantages .item{
    position: relative;

    width: calc(33.333% - 45px);

    margin: 40px 0 0 45px;
}

.advantages .item .number{
    position: absolute;
    top: 0;
    left: 0;

    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.advantages .item .name{
    display: flex;

    min-height: 60px;

    padding-left: 55px;

    color: #fff;
    font-size: 25px;
    font-weight: 700;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.advantages .item .text{
    margin-top: 20px;

    color: #fff;
    font-size: 16px;
    line-height: 1.25;
}


.map_deliveries{
    margin-top: 100px;
}


.map_deliveries .main_map{
    margin-top: -113px;
}

.map_deliveries .main_map img{
    position: relative;
    left: 50%;

    display: block;

    max-height: 100%;

    transform: translateX(-50%);
}


.contacts .bg{
    padding: 180px 0 20px;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.contacts .box_tel{
    display: flex;

    max-width: 844px;

    margin: 0 auto;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.contacts .tel a{
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: .85;

    text-decoration: none;
}

.contacts .title{
    margin-top: 45px;

    color: #fff;
    font-size: 25px;
    font-weight: bold;
    line-height: 30px;

    text-align: center;
    text-transform: uppercase;
}


.contacts .mail{
    margin-top: 30px;

    color: #fff;
    font-size: 20px;
    font-weight: 500;

    text-align: center;
}

.contacts .mail a{
    color: #009f64;

    text-decoration: none;
}

.contacts .form{
    max-width: 490px;

    margin: 45px auto 0;
}

.contacts .bord{
    margin-top: 53px;
    padding-top: 25px;

    border-top: 1px solid #fff;
}

.tabs{
    display: flex;

    max-width: 490px;

    margin: 0 auto;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.tabs li{
    list-style: none;
}

.tabs li a{
    display: block;

    padding-bottom: 7px;

    color: #fff;
    font-size: 20px;
    font-weight: 500;

    border-bottom: 2px solid transparent;

    text-decoration: none;
    transition: .2s linear;
}

.tabs li a:hover,
.tabs li.active a{
    border-bottom-color: #fff;
}

.tab_content{
    display: none;
}

.box_map{
    position: relative;
}

.box_map .info_map{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;

    width: 408px;

    margin-left: 40px;
    padding: 25px 28px 38px;

    border: solid 1px rgba(255, 255, 255, .29);
    background-color: rgba(0, 0, 0, .52);
    box-shadow: 0 22px 34px 0 rgba(0, 0, 0, .15);

    transform: translateY(-50%);
}

.box_map .info_map .title_info{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.box_map .info_map .text_info{
    margin-top: 12px;

    color: #fff;
    font-size: 14px;
    line-height: 23px;
}

.box_map .info_map .text_info a{
    color: #fff;

    text-decoration: none;
}

.map{
    height: 418px;
}

.ymaps-layers-pane{
            filter: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale'); /* Firefox 3.5+ */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}


.section_news{
    padding-top: 190px;
}

.news_grid{
    display: flex;

    margin: 42px 0 0 -30px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.news_gridInner{
    margin-top: 0;
}

.news_grid .item{
    position: relative;

    width: calc(25% - 30px);

    margin: 30px 0 0 30px;
    padding: 0 13px 46px;

    background: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .09);

    transition: .2s linear;
}

.news_grid .item:hover{
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.news_grid .item .img{
    width: calc(100% + 26px);

    margin-left: -13px;

    border-bottom: 1px solid #e0e0e0;
}

.news_grid .item .img img{
    display: block;

    width: 100%;
}

.news_grid .item .name{
    margin-top: 8px;
}

.news_grid .item .name a{
    color: #000;
    font-size: 18px;
    font-weight: 500;

    text-decoration: none;
    letter-spacing: -.1px;
    transition: .2s linear;
}

.news_grid .item .name a:hover{
    color: #009f64;
}

.news_grid .item .text{
    margin-top: 10px;

    color: #000;
    font-size: 14px;
    line-height: 19px;
}

.news_grid .item .date{
    position: absolute;
    bottom: 18px;
    left: 0;

    width: 100%;

    margin-top: 14px;
    padding: 0 13px;

    color: rgba(0,0,0,.5);
    font-size: 12px;
}


.section_news .title_small.hide{
    display: none;

    font-weight: 700;

    text-align: left;
}

.section_news .more_news{
    display: none;

    margin-top: 30px;

    text-align: center;
}

.section_news .more_news a{
    color: #009f64;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -.3px;
}

.news_big .img{
    width: calc(50% - 15px);
}

.news_big .img img{
    display: block;

    width: 100%;
    max-width: 100%;
}

.news_big .box{
    width: calc(50% - 15px);
}

.news_big .name a{
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -.1px;
    transition: .2s linear;
}

.news_big .name a:hover{
    color: #009f64;
}

.news_big .date{
    margin-top: 14px;

    color: rgba(0,0,0,.4);
    font-size: 14px;
    font-weight: 600;

    letter-spacing: -.3px;
}

.news_big .box_last{
    width: calc(50% - 15px);
}

.news_big .text{
    margin-top: 15px;

    color: #000;
    font-size: 16px;
    line-height: 23px;

    letter-spacing: -.1px;
}

.news_big .tag{
    display: flex;

    margin: 5px 0 0 -5px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.news_big .tag .tag_name{
    margin: 5px 0 0 5px;
    padding: 3px 5px;

    color: #4a4a4a;
    font-size: 12px;

    border: 1px solid #cdcdcd;
    border-radius: 10px;

    letter-spacing: -.1px;
}

.news_big .line_flex{
    display: flex;

    margin-top: 15px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.news_big .more a{
    color: #009f64;
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -.3px;
}

.news_big .share{
    display: flex;

    color: #000;
    font-size: 16px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.news_big .share span{
    padding-right: 5px;
}

.news_big .share a{
    display: block;

    width: 23px;
    height: 23px;

    margin-left: 10px;

    background: url(../images/vk2.svg) 0 0 no-repeat;
}

.news_big .share a.fb{
    background-image: url(../images/fb2.svg);
}

.news_big .share a.tw{
    background-image: url(../images/tw2.svg);
}


.news_day{
    max-width: 970px;

    margin: -60px auto 0;
    padding: 34px 100px 45px;

    background: #fff;
}

.news_day .name{
    color: #000;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.07;

    letter-spacing: -.2px;
}

.news_day .line_flex{
    display: flex;

    margin-top: 12px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.news_day .date{
    color: rgba(0,0,0,.4);
    font-size: 14px;
    font-weight: 600;

    letter-spacing: -.3px;
}

.news_day .tag{
    display: flex;

    margin: -5px 0 0 70px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.news_day .tag .tag_name{
    margin: 5px 0 0 5px;
    padding: 3px 5px;

    color: #4a4a4a;
    font-size: 12px;

    border: 1px solid #cdcdcd;
    border-radius: 10px;

    letter-spacing: -.1px;
}

.news_day .share{
    display: flex;

    margin-left: auto;

    color: #000;
    font-size: 16px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.news_day .text_block .share{
    display: none;
}

.news_day .share span{
    padding-right: 5px;
}

.news_day .share a{
    display: block;

    width: 23px;
    height: 23px;

    margin-left: 10px;

    background: url(../images/vk2.svg) 0 0 no-repeat;
}

.news_day .share a.fb{
    background-image: url(../images/fb2.svg);
}

.news_day .share a.tw{
    background-image: url(../images/tw2.svg);
}


.news_day .img{
    margin-top: 18px;
}

.news_day .img img{
    display: block;

    width: 100%;
}

.news_day .text_block{
    margin-top: 30px;

    font-size: 16px;
}

.news_day .text_block h3{
    text-transform: none;
}

.news_day .text_block p{
    line-height: 1.44;

    letter-spacing: -.1px;
}

.news_day .text_block .bord{
    height: 5px;

    margin: 35px 0;

    background: #009f64;
}


.bg_share{
    max-width: 970px;

    margin: 0 auto 40px;
    padding: 26px 15px 38px;

    background: url(../images/bg5.jpg) 50% 0 no-repeat;
    background-size: cover;
}

.bg_share .title{
    color: #313131;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;

    text-align: center;
    text-transform: uppercase;
}

.bg_share .form_share{
    max-width: 630px;

    margin: 15px auto 0;
    padding: 5px;

    background: #fff;
}

.bg_share .form_share .input{
    width: calc(100% - 194px);
    height: 40px;

    padding: 0 20px;

    color: #000;
    font: 16px Roboto;

    border: none;
    background: #fff;
}

.bg_share .form_share .submit_btn{
    display: block;

    width: 194px;
    height: 40px;

    color: #fff;
    font: 16px Roboto;

    border: none;
    background: #009f64;

    cursor: pointer;
    text-align: center;
    transition: .2s linear;
}

.bg_share .form_share .submit_btn:hover{
    background: #00be64;
}


.search_tags{
    margin-top: 40px;
}

.search_tags .tags{
    display: flex;

    max-width: 650px;

    margin: 13px auto 0;
    padding-right: 10px;

    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.search_tags .tags .tag{
    display: flex;

    margin: 10px 0 0 10px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.search_tags .tags .tag a{
    display: block;

    padding: 10px;

    color: #4a4a4a;
    font-size: 14px;
    line-height: .79;

    border-radius: 50px;
    background: #d8d8d8;

    text-align: center;
    text-decoration: none;
    letter-spacing: -.1px;
    transition: .2s linear;
}

.search_tags .tags .tag a:hover{
    color: #fff;

    background: #009f64;
}

.search_tags .all_news{
    margin-top: 36px;

    text-align: center;
}

.search_tags .all_news a{
    display: inline-block;
    vertical-align: top;

    padding: 0 20px;

    color: #009f64;
    font-size: 16px;
    font-weight: bold;
    line-height: 44px;

    border: 1px solid #009f64;

    text-decoration: none;
    transition: .2s linear;
}

.search_tags .all_news a:hover{
    color: #fff;

    background: #009f64;
}


.our_offer{
    margin-top: 50px;
}

.our_offer .items{
    display: flex;

    margin: 10px 0 0 -30px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.our_offer .items .item{
    width: calc(33.333% - 30px);

    margin: 30px 0 0 30px;
    padding: 20px 20px;

    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}

.our_offer .items .item .name{
    max-width: 300px;

    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;

    text-transform: uppercase;
    letter-spacing: -.1px;
}

.our_offer .items .item .name span{
    color: #009f64;
}

.our_offer .items .item .text{
    max-width: 324px;

    margin-top: 18px;

    color: #000;
    font-size: 16px;
    line-height: 1.69;

    letter-spacing: -.1px;
}


.our_service{
    margin-top: 50px;
    padding: 50px 0 212px;

    background: url(../images/bg6.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.our_service .sub_title{
    max-width: 770px;

    margin-top: 30px;

    color: #009f64;
    font-size: 20px;
    line-height: 1.35;

    letter-spacing: -.1px;
}

.our_service .list{
    display: flex;

    max-width: 901px;

    margin-top: 36px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.our_service .list li{
    width: calc(50% - 15px);

    font-size: 25px;
    font-weight: 500;
    line-height: 1.96;

    list-style: none;

    letter-spacing: -.2px;
}

.our_service .list li:before{
    display: inline-block;
    vertical-align: top;

    color: #009f64;

    content: '/';
}

.our_service .list li a{
    color: #fff;

    text-decoration: none;
    transition: .2s linear;
}

.our_service .list li a:hover{
    color: #009f64;
}


.section_sert{
    margin-top: 70px;
}

.section_sert .sub_title{
    max-width: 770px;

    margin-top: 30px;

    color: #000;
    font-size: 20px;
    line-height: 1.35;

    letter-spacing: -.1px;
}

.slider_sert{
    margin-top: 56px;
}

.slider_sert .slide{
    display: none;
}

.slider_sert.owl-loaded .slide{
    display: block;
}

.slider_sert .slide img{
    display: block;

    width: 100%;
}


.about_contacts{
    margin: 60px 0 40px;
}

.about_contacts .title{
    color: #000;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.2;
}

.about_contacts .contact{
    width: calc(50% - 30px);

    margin-top: 30px;
}

.about_contacts .title_contact{
    color: #000;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.55;
}

.about_contacts .adres{
    margin-top: 12px;

    color: rgba(0,0,0,.5);
    font-size: 20px;
    line-height: 1.5;
}

.about_contacts .tel,
.about_contacts .mail{
    color: rgba(0,0,0,.5);
    font-size: 20px;
    line-height: 1.5;
}

.about_contacts .tel{
    margin-top: 12px;
}

.about_contacts .tel a,
.about_contacts .mail a{
    color: rgba(0,0,0,.5);

    text-decoration: none;
}

.about_contacts .presentation{
    margin-top: 40px;
}

.about_contacts .presentation a{
    position: relative;

    display: inline-block;
    vertical-align: top;

    padding: 0 30px 0 58px;

    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;

    background: #009f64;

    text-decoration: none;
    text-transform: uppercase;
    transition: .2s linear;
}

.about_contacts .presentation a:hover{
    background: #00be64;
}

.about_contacts .presentation a:before{
    position: absolute;
    top: 50%;
    left: 18px;

    width: 18px;
    height: 22px;

    background: url(../images/file.svg) 0 0 no-repeat;

    content: '';
    transform: translateY(-50%);
}

.about_contacts .go_contact{
    margin-top: 30px;
}

.about_contacts .go_contact a{
    color: #009f64;
    font-size: 16px;
    font-weight: bold;

    text-decoration: none;
    transition: .2s linear;
}

.about_contacts .go_contact a:hover{
    color: #000;
}

.about_contacts .form{
    width: 50%;
    max-width: 490px;

    margin-top: 20px;
}

.about_contacts .form .input,
.about_contacts .form textarea{
    border-color: #009f64;
}

.about_contacts .form .submit_btn{
    color: #009f64;

    border-color: #009f64;
}

.about_contacts .form .submit_btn:hover{
    color: #fff;

    background: #009f64;
}

.about_contacts .checkbox input[type=checkbox] + label,
.modal .checkbox input[type=checkbox] + label{
    /*color: #009f64;*/
	color: #000;
}

.about_contacts .checkbox input[type=checkbox] + label a,
.modal .checkbox input[type=checkbox] + label a{
	color: #009f64;
}

.about_contacts .checkbox input[type=checkbox] + label:before,
.modal .checkbox input[type=checkbox] + label:before{
    border-color: #009f64;
}

.about_contacts .checkbox input[type=checkbox] + label:after,
.modal .checkbox input[type=checkbox] + label:after{
    background-image: url(../images/ic_check2.svg);
}


.develop{
    margin-top: -146px;
}

.develop .bg{
    padding: 88px 152px;

    background: url(../images/bitmap_bg.jpg) 0 50% no-repeat;
    background-size: cover;
}

.develop .title{
    max-width: 806px;

    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.33;

    text-transform: uppercase;
    letter-spacing: -.2px;
}

.develop .more{
    margin-top: 40px;
}

.develop .more a{
    display: inline-block;
    vertical-align: top;

    min-width: 180px;

    padding: 0 15px;

    color: #009f64;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.67;
    line-height: 40px;

    background: #fff;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s linear;
}

.develop .more a:hover{
    color: #fff;

    background: #00be64;
}
/*---------------
   Sidebar
---------------*/
aside .title{
    font-size: 20px;
}

aside .title.ic_profile{
    position: relative;

    padding-right: 35px;
}

aside .title.ic_profile:before{
    position: absolute;
    top: 2px;
    right: 0;

    width: 20px;
    height: 20px;

    background: url(../images/ic_profile.svg) 0 0 no-repeat;

    content: '';
}

aside .profile{
    margin-top: 22px;
    padding: 22px 25px;

    border: 1px solid #e8ecf0;
    border-radius: 3px;
    background: #f3f6f9;
}


aside .profile .name{
    font-size: 17px;
}

aside .profile .name b{
    display: block;

    font-size: 20px;
}

aside .date{
    position: relative;

    margin-top: 36px;
    padding-left: 35px;

    font-weight: 700;
    line-height: 20px;
}

aside .date:before{
    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    background: url(../images/ic_calendar.svg) 0 0 no-repeat;

    content: '';
}
/*---------------
   Footer
---------------*/
footer{
    padding: 30px 0;

    background: #000;
}

footer .cont{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

footer .logo{
    width: 183px;
}

footer .logo img{
    display: block;

    max-width: 100%;
}

footer .box{
    width: 380px;

    text-align: center;
}

footer .supplier{
    color: #fff;
    font-size: 16px;
}

footer .link_supplier{
    margin-top: 12px;
}

footer .link_supplier a{
    color: #009f64;

    text-decoration: none;
    transition: .2s linear;
}

footer .link_supplier a:hover{
    color: #fff;
}

footer .copy{
    margin-top: 16px;

    color: #fff;
    font-size: 14px;

    text-align: center;
}

footer .social{
    display: flex;

    margin-top: 8px;

    justify-content: center;
    align-self: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

footer .social a{
    display: block;

    width: 30px;
    height: 30px;

    background-repeat: no-repeat;
    background-position: 50% 50%;
}

footer .social a + a{
    margin-left: 20px;
}

footer .social a.ins{
    background-image: url(../images/ins.svg);
}

footer .social a.fb{
    background-image: url(../images/fb.svg);
}

footer .social a.vk{
    background-image: url(../images/vk.svg);
}
/*---------------
   Modal
---------------*/
.modal{
    display: none;
    overflow: visible !important;

    width: calc(100% - 20px);
    max-width: 550px;

    padding: 22px 30px 30px;
    background: #e0e0e0;
}

.modal .title{
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    text-align: center;
    color: #000;

    margin-bottom: 15px;
}
/*---------------
   Animation
---------------*/
@-webkit-keyframes moveDown{
    0%{
        -webkit-transform: translateY(-73px);
                transform: translateY(-73px);
    }
}
@-moz-keyframes moveDown{
    0%{
        -webkit-transform: translateY(-73px);
                transform: translateY(-73px);
    }
}
@keyframes moveDown{
    0%{
        -webkit-transform: translateY(-73px);
                transform: translateY(-73px);
    }
}


@media (max-width: 1199px){
    /*
    .service_banner .prev{
        left: 15px;
    }

    .service_banner .next{
        right: 15px;
    }
    */

    .advantages{
        margin-left: -30px;
    }

    .advantages .item{
        width: calc(33.333% - 30px);

        margin-left: 30px;
    }

    .advantages .item .name{
        min-height: 48px;

        font-size: 20px;
    }

    .advantages .item .number{
        line-height: 48px;
    }

    /*Новые стили*/
    header .menu .item_menu + .item_menu{
        margin-left: 30px;
    }

    header .link_lk{
        margin-left: 40px;
    }

    header .send_request{
        margin-left: 30px;
    }

    header .menu .sub_menu .cont{
        padding: 0 15px;
    }

    header .menu .sub_menu ul li a{
        font-size: 13px;
    }
    /*End Новые стили*/
}

.service_links .list ul li a:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    background-color: #009f64;
    transition: transform 0.3s;

}

.hover-2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #009f64;
  transition: transform 0.3s;
}
.hover-2:hover:after {
  transform: scaleX(1);
}

.link-s {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 10px 0;
  color: #fff;
}

.checkbox.white a {color:#fff;}

.service_detail_list_ul ul li {
	font-size: 15px;
}

.service_detail_list_ul ul li:before {
	line-height: 15px;
}

.h1_like_div-name {
	color: #000;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.07;
    letter-spacing: -.2px;
}

.h1_like_div_articles {
	
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -.1px;
    transition: .2s linear;
}

.h1_like_div_articles > h1 {
	color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 29px;
}