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

.form.green textarea{
    height: 123px;
}

.form.green .submit_btn{
    width: 100%;
    background: #009f64;
    border-color: #009f64;

    font-size: 14px;

    min-width: 180px;
}

.form.green .submit_btn:hover{
    color: #fff;
    background: #00be64;
    border-color: #00be64;
}

.form .submit_btn.big{
    height: 40px;
}

.form .titleForm{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #000000;

    margin-bottom: 13px;
}

.form .titleForm.small{
    font-size: 16px;
    font-weight: 500;

    color: rgba(0,0,0,.6);
    text-align: left;
    margin-bottom: 12px;
}

.form.small .line_form > label{
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,.6);
    margin-bottom: 6px;
}

.form .line_form > label span{
    color: #d0021b;
}

.form.green .checkbox input[type=checkbox] + label:before{
    border-color: #000;
}

.form.green .checkbox input[type=checkbox] + label:after{
    background-image: url(../images/ic_check3.svg);
}

.form .box_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

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

.form .box_flex .box > :last-child{
    margin-bottom: 0;
}

.form .line_check{
    margin-top: 50px;
}

.form .text_right{
    text-align: right;
}

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

.form .line_flex.small{
    justify-content: flex-start;
    margin-left: -10px;
}

.form .line_flex.small .line_form{
    width: calc(16.666% - 10px);
    margin-left: 10px;
}

.form .line_flex.middle{
    justify-content: flex-start;
    margin-left: -25px;
}

.form .line_flex.middle .line_form{
    width: calc(33.333% - 25px);
    margin-left: 25px;
}

.form .error{
    font-size: 15px;
    color: #d0021b;
}

.form .box_input{
    position: relative;
}

.form .box_input .input{
    padding-right: 50px;
}

.form .box_input .input_info{
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    border-left: 1px solid #e0e0e0;

    font-size: 15px;
    text-align: center;
    line-height: 40px;
}

.form .box_sum{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form .box_sum .input{
    width: calc(100% - 72px);
    border-right: none;
}

.form .box_sum .selectWrap{
    width: 72px;
}

.form .box_sum .selectWrap .nice-select .current{
    color: #000;
    font-size: 15px;
    text-transform: uppercase;

    padding-right: 20px;
    border-left-color: #e0e0e0;
}

.form.green .box_sum .selectWrap .nice-select .current{
    border-left-color: #e0e0e0;
}

.form .box_sum .selectWrap .nice-select .current:after{
    right: 10px;
}

.form .box_sum .selectWrap .nice-select .list{
    text-transform: uppercase;
}


.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 10px;

    color: rgba(0,0,0,.50);
    font-size: 14px;
    line-height: 38px;

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

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

.form.green .selectWrap .nice-select .current{
    border-color: #009f64;
}

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

.selectWrap .nice-select.open .current{
    border-color: #009f64;
}

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

    display: block;

    width: 8px;
    height: 13px;

    margin-top: -6px;

    background: url(../images/arrow3.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: 98;

    display: none;
    overflow: auto;

    width: 100%;

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

    margin-top: -1px;
}

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

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

    width: 100%;

    padding: 5px 10px;
    
    font-size: 14px;
    color: rgba(0,0,0,.6);

    list-style: none;

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

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

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

.form .edit a{
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    line-height: 38px;
    color: #009f64;
    border: 1px solid #009f64;
    display: inline-block;
    vertical-align: top;
    min-width: 200px;
    padding: 0 15px;
    text-transform: uppercase;

    transition: .2s linear;
}

.form .edit a:hover{
    color: #fff;
    background: #009f64;
}

.form .checkbox.green input[type=checkbox] + label{
    color: #009f64;

    padding-left: 26px;
}

.form .checkbox.green input[type=checkbox] + label:before{
    border-color: #009f64;
    border-width: 2px;

    width: 16px;
    height: 16px;
    top: 0;
}

.form .checkbox.green input[type=checkbox]:checked + label:before{
    background: #009f64;
}

.form .checkbox.green input[type=checkbox] + label:after{
    background-image: url(../images/ic_check.svg);
    width: 16px;
    height: 16px;
    top: 0;
}


header{
    min-height: 130px;
}

header.fixed{
    min-height: 1px;
}

header .link_lk{
    margin-left: 50px;

    position: relative;
}

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.active:after,
header .link_lk > a.view:after{
    position: absolute;
    bottom: -8px;
    left: 10px;

    width: 5px;
    height: 5px;

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

    content: '';
}

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 .link_lk .mini_modal{
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 25px;
    transform: translateX(-50%);
    z-index: 99;

    width: 352px;
    background: #d8d8d8;
    padding: 15px 24px 30px;
}

header .link_lk .titleForm{
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

header .link_lk .reg{
    margin-top: 15px;

    text-align: center;
}

header .link_lk .reg a{
    font-size: 14px;
    font-weight: 500;
    
    color: #009f64;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
}

header .link_lk .reg a:after{
    display: none;
}

header .link_lk .reg a:hover{
    text-decoration: underline;
}

header .link_lk .more_lk{
    margin-top: 13px;
    text-align: center;
}

header .link_lk .more_lk a{
    font-size: 16px;
    font-weight: 500;
    color: #696969;

    padding: 0;
}

header .link_lk .more_lk a:after{
    display: none;
}

header .link_lk .more_lk a:hover{
    text-decoration: none;
}


.section_reg{
    padding: 170px 0 60px;
}

.section_reg .form{
    padding: 26px 40px;
    background: #ececec;
    max-width: 570px;
    margin: 0 auto;
}

.section_reg .text_block{
    max-width: 770px;
    margin: 40px auto 0;

    font-size: 16px;
}

.section_reg .text_block h3{
    text-align: center;
    text-transform: none;

    margin-bottom: 14px;
}

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

    letter-spacing: -.1px;
}


.line_lk{
    margin-top: 130px;
    background: #e0e0e0;

    padding: 10px 0;
}

.line_lk .cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.line_lk .title{
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.line_lk .list{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.line_lk .list li{
    list-style: none;
}

.line_lk .list li + li{
    margin-left: 30px;
}

.line_lk .list li a{
    font-size: 16px;
    color: #000;

    text-decoration: none;

    position: relative;
}

.line_lk .list li a.active{
    color: #009f64;
}

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

.line_lk .list li a.active:after,
.line_lk .list li a:hover:after{
    transform: scaleX(1);
}

.line_lk .open_search{
    display: none;
    width: 18px;
    height: 40px;
    background: url(../images/lupa.svg) 50% 50% no-repeat;
}

.box_search{
    width: 470px;
}

.box_search .search{
    width: calc(100% - 165px);
    height: 40px;

    display: block;

    padding: 0 16px;

    color: #000;
    font: 14px Roboto;

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

    transition: .2s linear;
}

.box_search .search_btn{
    margin-left: 25px;
    width: 140px;
    height: 40px;

    border: 1px solid #000;
    color: #000;
    font: 16px Roboto;

    cursor: pointer;
    background: transparent;

    transition: .2s linear;
}

.box_search .search_btn:hover{
    background: #000;
    color: #fff;
}


.profile_company{
    padding: 40px 0 60px;
}

.profile_company .bg{
    padding: 40px 70px 68px;
    background: #ececec;
    max-width: 970px;
    margin: 0 auto;
}

.profile_company .title{
    font-size: 30px;
    font-weight: 700;
}

.profile_company .info{
    margin-top: 25px;

    font-size: 16px;
    font-weight: 500;

    color: rgba(0,0,0,.6);
}

.profile_company .number{
    margin-top: 12px;
    font-size: 14px;

    color: rgba(0,0,0,.5);
}

.profile_company .form{
    border-top: 1px solid #fff;
    margin-top: 36px;
    padding-top: 18px;
}

.profile_company .form .box_btn{
    margin-top: 43px;
}


.banner_lk .bg{
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
}

.banner_lk .cont{
    position: static;
    width: 100%;
    height: 100%;
}

.banner_lk .abs_info{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
    width: 100%;
    text-align: center;
}

.banner_lk .title{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #ffffff;

    text-transform: uppercase;
}

.banner_lk .link{
    margin-top: 42px;
}

.banner_lk .link a{
    background: #009f64;
    display: inline-block;
    vertical-align: top;
    padding: 0 50px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    text-transform: uppercase;

    transition: .2s linear;
}

.banner_lk .link a:hover{
    background: #00be64;
}


.section_order{
    padding: 30px 0 60px;

    background: #fafafa;
}

.table_order{
    margin-top: 14px;
}

.table_order table{
    width: 100%;
    border-collapse: collapse;
}

.table_order table tr th{
    border-top: 1px solid #979797;
    padding: 8px 15px;

    font-size: 14px;
    color: rgba(0,0,0,.5);
    text-align: left;
    font-weight: 400;
}

.table_order table tr th:first-child{
    padding-left: 30px;
}

.table_order table tr th:last-child{
    padding-right: 30px;
}

.table_order table tr td{
    background: #f0f0f0;

    padding: 8px 15px;
    font-size: 14px;
    color: #000;
    height: 55px;
}

.table_order table tbody tr:nth-child(2n) td{
    background: #fafafa;
}

.table_order table tr td:first-child{
    padding-left: 30px;
}

.table_order table tr td:last-child{
    padding-right: 30px;
}

.table_order table tr td span{
    color: #009f64;
}

.table_order table tr td span a{
    color: #009f64;
    text-decoration: none;
}

.link_filter{
    text-align: right;
}

.link_filter a{
    padding-right: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #009f64;

    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
    text-decoration: none;

    transition: .2s linear;
}

.link_filter a:hover{
    padding-right: 40px;
}

.link_filter a:after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 20px;
    background: url(../images/ic_filter.svg) 0 0 no-repeat;
}


.section_request{
    padding: 40px 0 60px;
}

.section_request .bg{
    padding: 40px 70px 46px;
    background: #ececec;
    max-width: 970px;

    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.19);
    margin: 40px auto 0;
}

.section_request .bg:first-child{
    margin-top: 0;
}

.section_request .sector_hide{
    display: none;
}

.section_request .block_width{
    padding: 0 70px;
    max-width: 970px;

    margin: 24px auto 0;
}

.section_request .title{
    font-size: 30px;
    font-weight: 700;
}

.section_request .title span{
    background: #009f64;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 26px;
    line-height: 26px;
    padding: 0 4px;
}

.section_request .bord{
    border-top: 1px solid #fff;

    margin-bottom: 19px;
    margin-top: 25px;
}

.select_book{
    margin-top: 30px;
}

.select_book.marg{
    margin-top: 10px;
}

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

    font-size: 16px;
    text-align: center;
    color: #000;
    text-decoration: none;
    padding: 0 16px;
    border: 1px solid #000;
    line-height: 40px;

    transition: .2s linear;
}

.select_book a span{
    font-size: 20px;
}

.select_book a:hover{
    background: #000;
    color: #fff;
}

.section_request .add_instr{
    margin-top: 50px;
}

.section_request .add_instr a{
    display: inline-block;
    vertical-align: top;
    padding-left: 25px;
    font-size: 15px;
    color: #009f64;
    text-decoration: none;
    position: relative;
}

.section_request .add_instr a span{
    position: absolute;
    left: 0;
    top: 2px;
    width: 15px;
    height: 15px;
    background: #009f64;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    line-height: 15px;
}

.section_request .submit{
    margin-left: auto;
}

.section_request .form .box_btn{
    padding-top: 6px;
    margin-top: 0;
}


.back_order{
    margin-top: 20px;
}

.back_order a{
    font-size: 16px;
    font-weight: 500;
    color: #009f64;
    text-decoration: none;
    padding-left: 20px;
    position: relative;

    transition: .2s linear;
}

.back_order a:before{
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 10px;
    height: 16px;
    background: url(../images/arrow4.svg) 0 0 no-repeat;
}

.back_order a:hover{
    padding-left: 30px;
}


.info_order{
    padding: 30px 0 60px;
}

.info_order .bg{
    padding: 40px 38px 68px 70px;
    background: #ececec;
    max-width: 970px;
    margin: 0 auto;
}

.info_order .title{
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.info_order .sector_flex{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;

    margin-top: 22px;
}

.info_order .line_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;

    margin-top: -30px;

    width: calc(100% - 220px);

    padding: 4px 0 46px;
}

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

    margin-top: 30px;
}

.info_order .name_box{
    font-size: 16px;
    font-weight: 500;

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

.info_order .name_company{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;

    margin-top: 12px;
}

.info_order .name_manager{
    font-size: 14px;
    color: #000;

    margin-top: 4px;
}

.info_order .mail a,
.info_order .tel a{
    font-size: 14px;
    color: #009f64;
    text-decoration: none;
}

.info_order .info{
    font-size: 14px;
    line-height: 23px;
    color: #000;

    margin-top: 10px;
}

.accordion{
    margin-top: 12px;
}

.accordion .item{
    margin-top: 6px;
}

.accordion .open_sub{
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    padding-right: 20px;
    position: relative;
}

.accordion .open_sub:after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 11px;
    background: url(../images/arrow3.svg) 0 0 no-repeat;
    background-size: 6px auto;
    transform: rotate(90deg);
    margin-top: -6px;
}

.accordion .open_sub.active:after{
    transform: rotate(-90deg);
}

.accordion .block_none{
    display: none;

    padding-left: 16px;
}

.accordion .block_none .line{
    font-size: 14px;
    color: #000;
    margin-top: 6px;
}


.info_order .box_right{
    width: 195px;
    border-left: 1px solid rgba(0,0,0,.5);

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

    padding: 4px 0 46px 34px;
}

.info_order .box_right .block{
    width: 100%;

    margin-bottom: 20px;
}

.info_order .text{
    font-size: 16px;
    font-weight: 500;

    color: rgba(0,0,0,.6);
    margin-top: 4px;
}

.info_order .box_last{
    width: 100%;
    margin-top: auto;
    padding-top: 19px;
    border-top: 1px solid #979797;
}

.info_order .sector + *{
    margin-top: 20px;
}

.info_order .title_price{
    font-size: 14px;
    font-weight: 500;

    color: rgba(0,0,0,.3);
    line-height: 23px;
}

.info_order .price{
    font-size: 16px;
    font-weight: 500;
    color: rgba(0,0,0,.6);
}

.box_progres{
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    position: relative;


    margin: 130px 10px 0;
    min-height: 30px;

    max-width: 590px;
}

.box_progres:before{
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    margin-top: -1px;
    width: calc(100% - 26px);
    border-top: 2px dashed #979797;
    z-index: 1;
}

.box_progres .progres{
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    background: #009f64;
    z-index: 1;
}

.box_progres .item{
    position: relative;
}

.box_progres .item .date_progres{
    position: absolute;
    bottom: 100%;
    margin-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #009f64;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
}

.box_progres .item .info_progres{
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0,0,0,.5);
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
}

.box_progres .item .info_progres.green{
    color: #009f64;
}

.box_progres .item .dot{
    border-radius: 50%;
    position: relative;
    width: 14px;
    height: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.box_progres .item .dot span{
    display: block;
    width: 14px;
    height: 14px;
    border: 2px solid #979797;
    background: #ececec;
    border-radius: 50%;
}

.box_progres .item .dot.green span{
    background: #009f64;
    border-color: #009f64;
}

.box_progres .item .dot.active{
    width: 30px;
    height: 30px;
    border: 2px solid #009f64;
    background: #ececec;
}

.box_progres .item .dot.active span{
    background: #009f64;
    border-color: #009f64;
}


.modal_book{
   max-width: 970px;

   padding: 40px 70px;
}

.modal_book .title{
    font-size: 30px;
    color: #000;
    text-align: left;
}

.table_book{
    width: calc(100% + 140px);
    margin: 36px -70px 0;
}

.table_book table{
    width: 100%;
    border-collapse: collapse;
}

.table_book table tr th{
    border-top: 1px solid #fff;
    padding: 8px 15px;

    font-size: 14px;
    color: rgba(0,0,0,.5);
    text-align: left;
    font-weight: 400;
    height: 50px;
}

.table_book table tr th:first-child{
    padding-left: 70px;
}

.table_book table tr th:last-child{
    padding-right: 70px;
}

.table_book table tr td{
    background: #fff;

    padding: 7px 15px 8px;
    font-size: 14px;
    color: #000;
    height: 55px;
    border-top: 1px solid transparent;
}

.table_book table tbody tr:nth-child(2n) td{
    background: #ececec;
}

.table_book table tr td:first-child{
    padding-left: 70px;
}

.table_book table tr td:last-child{
    padding-right: 70px;
}

.table_book table tr:last-child td{
    border-bottom: 1px solid transparent;
}

.table_book table tbody tr:hover td{
    border-top-color: #009f64;

    color: #009f64;

    cursor: pointer;
}

.table_book table tbody tr:hover + tr td{
    border-top-color: #009f64;
}

.table_book table tr:last-child:hover td{
    border-bottom-color: #009f64;
}

.input.error{
    border-color: red !important;
}

.service_banner .name h1 {font-size: inherit;}

.old-h3, .old-h3 h1, .old-h3 h2, .old-h3 h3, .old-h3 h4, .old-h3 h5, .old-h3 h6
	{margin-bottom: 20px;
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
	letter-spacing: -.1px;}


.old-h2, .old-h2 h1, .old-h2 h2, .old-h2 h3, .old-h2 h4, .old-h2 h5, .old-h2 h6
{
    margin-bottom: 30px;
    font-size: 30px !important;
    font-weight: 700;
    line-height: .97;
    text-transform: uppercase;
    letter-spacing: -.2px;
}

.old-h4, .old-h4 h1, .old-h4 h2, .old-h4 h3, .old-h4 h4, .old-h4 h5, .old-h4 h6
{
    margin-bottom: 20px;
    font-size: 20px !important;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -.1px;
}

suggestions-wrapper svg {display:none !important;}

.map-container {
    margin-top: -150px;
    width: 100%;
    padding-bottom: 70%;
    position: relative;
    background-size: contain;
    font-family: 'Roboto', sans-serif; }
.map-container svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2; }

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center; }

@media (max-width:1000px){
section .main_title.white {
	position: relative;
    top: 0px;}
section .subTitle {
	position: relative;
    top: 0px;}
}
@media (max-width:480px){
section .main_title.white {position: relative;
    top: -100px;}
section .subTitle {
	position: relative;
    top: -130px;}
.advantages .item {
    margin-bottom: 50px;
}
}

.map-tooltip {
    background-color: #0C492A;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    padding: 3px;
    font-size: 12px;
    position: absolute;
    color: #fff;
    visibility: hidden;
    -webkit-box-shadow: 0 7px 22px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 7px 22px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    -webkit-transition: opacity .1s, visibility .1s;
    transition: opacity .1s, visibility .1s;
    z-index: 11; }
.map-tooltip.active {
    visibility: visible;
    opacity: 1; }
.map-tooltip--moscow, .map-tooltip--vilnius, .map-tooltip--novosibirsk, .map-tooltip--leverkusen {
    visibility: visible;
    opacity: 1;
    z-index: 10; }
.map-tooltip--moscow.hidden, .map-tooltip--vilnius.hidden, .map-tooltip--novosibirsk.hidden, .map-tooltip--leverkusen.hidden {
    opacity: 0;
    visibility: hidden; }
.map-tooltip--moscow {
    top: 35%;
    left: 32%; }
.map-tooltip--vilnius {
    top: 36%;
    left: 25.7%; }
.map-tooltip--novosibirsk {
    left: 49.6%;
    top: 40.8%; }
.map-tooltip--leverkusen {
    left: 16.4%;
    top: 42%; }

@media screen and (max-width: 1150px) {
    .map-tooltip--moscow {
        top: 34.2%;
        left: 32%; }
    .map-tooltip--vilnius {
        top: 35.3%;
        left: 25.7%; } }
@media screen and (max-width: 800px) {
    .map-tooltip--moscow {visibility: hidden;}
    .map-tooltip--vilnius {visibility: hidden;}
.map-tooltip--novosibirsk {visibility: hidden;}
.map-tooltip--leverkusen {visibility: hidden;}
}
