@charset "utf-8";

/* CSS Document */
a {
    text-decoration: none;
}

img {
    border: none;
}

a,
button {
    outline: none;
    cursor: pointer;
}

li {
    list-style: none;
}

button {
    background: none;
    border: none;
}

a,
button,
input,
i,
textarea {
    -webkit-appearance: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

* {
    position: relative;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

a,
input,
textarea,
button,
i {
    display: block;
}

/*******input, textarea*******/

textarea {
    resize: none;
    outline: none;
    -webkit-appearance: none;
    font-family: 'Roboto', sans-serif;
}

input {
    outline: none;
    -webkit-appearance: none;
    font-family: 'Roboto', sans-serif;
}

input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
    background: none;
    display: none;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

input:focus::-moz-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

input:focus:-moz-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

input:focus:-ms-input-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

textarea:focus::-moz-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

textarea:focus:-moz-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

input::-webkit-input-placeholder {
    color: #A1A1A1;
}

input::-moz-placeholder {
    color: #A1A1A1;
}

input:-moz-placeholder {
    color: #A1A1A1;
}

input:-ms-input-placeholder {
    color: #A1A1A1;
}

textarea::-webkit-input-placeholder {
    color: #A1A1A1;
}

textarea::-moz-placeholder {
    color: #A1A1A1;
}

textarea:-moz-placeholder {
    color: #A1A1A1;
}

textarea:-ms-input-placeholder {
    color: #A1A1A1;
}


/********sait***********/

.container{
    width: 1180px;
    margin: 0 auto;
    min-width: 1180px;
}

.wraper header,
.wraper footer,
.wraper > div {
    min-width: 1180px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background: #FAFAFA;
}

.clear:after {
    content: '';
    clear: both;
    display: block;
}

.wraper > div > div:after {
    content: '';
    clear: both;
    display: block;
}

body.pushy-open-left {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


/*********HEADER*********/
header {
    background: #FAFAFA;
}
.header {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 0;
}
.logo {
    padding-left: 75px;
    background: url(../img/logo.png) no-repeat left center;
    -webkit-background-size: 50px 45px;
    -moz-background-size: 50px 45px;
      -o-background-size: 50px 45px;
         background-size: 50px 45px;
}
.logo p {
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}
.logo span {
    display: block;
    font-size: 18px;
    line-height: 22px;
    color: #000;
}
.email {
    font-size: 16px;
    line-height: 22px;
    color: #009f00;
    border-bottom: 1px solid #009f00;
}
.email:hover {
    border-color: transparent;
}
.tel {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #000;
    user-select: none;
}
.tel:hover {
    color: #009f00;
}
.callback {
    width: 220px;
    height: 44px;
    font-size: 20px;
    font-weight: 700;
    line-height: 41px;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 22px;
       -moz-border-radius: 22px;
            border-radius: 22px;
    background: #009f00;
    border: 2px solid #009f00;
}
.callback:hover {
    background: none;
    color: #000;
}
.menu-btn {
    display: none;
}
/*********NAVBAR*********/


.nav_wrap {
    background: #fff;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
}
.navbar {
    padding: 20px 0;
}
.nav {
   display: table;
   width: 100%;
}
.nav li {
    display: table-cell;
    text-align: center;
    border-right: 2px solid #009f00;
}
.nav li:last-of-type {
    border-right: none;
}
.nav li a {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}
.nav li a:hover {
    color: #009f00;
}
.nav_wrap.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/*******TOP BLOCK*******/

.top_block_wrap {
    background: url(../img/top_bg.jpeg) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
    margin-bottom: 150px;
}
.top_block_wrap:after {
    position: absolute;
    content:'';
    background: rgba(0, 0, 0, .62);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.top_block {
    padding: 95px 0 45px;
    z-index: 2;
}
.top_title > p {
    font-size: 54px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.top_title > span {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    color: #009f00;
}
.top_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 150px;
}
.top_item {
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: calc(100% / 2);
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    min-height: 190px;
   padding: 20px 30px 10px 45px;
}
.top_item:hover {
    background: #009f00;
}
.top_item:hover .top_item_icon svg {
    fill: #fff;
}

.top_item:nth-child(3),
.top_item:nth-child(4) {
    border-bottom: none;
}

.top_item:nth-child(2),
.top_item:nth-child(4) {
    border-right: none;
}
.top_item_icon {
    width: 63px;
    height: 57px;
    margin-bottom: 15px;
}
.top_item_icon svg {
    width: 100%;
    height: 100%;
    fill: #009f00;
}
.top_item > p {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

/********SERVICES********/

.services_wrap {
    background: #fff;
     -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
}
.services {
    padding: 45px 0 80px;
}
.block_title {
    text-align: center;
    font-size: 36px;
    line-height: 36px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 25px;
}
.block_title:after {
    position: absolute;
    content:'';
    background: #009f00;
    width: 88px;
    height: 7px;
    left: 50%;
    bottom: 0;  
    margin-left: -44px;
    z-index: 3;
}

/********SERVICE********/
.services_wrap {
    z-index: 3;
}
.services_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 42px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.serv_item {
    width: -webkit-calc((100% - 3px)/4);
    width: -moz-calc((100% - 3px)/4);
    width: calc((100% - 3px)/4);
    padding-bottom: 41.2%;
       -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.serv_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.serv_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.serv_name {
    z-index: 3;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
  padding: 0 30px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
font-family: 'Roboto Condensed', sans-serif;
}
.order_btn {
    position: absolute;
    z-index: 3;
    width: 170px;
    height: 48px;
    line-height: 48px;
    background: none;
    left: 50%;
    margin-left: -85px;
    bottom: 48px;
    border: 1px solid #009f00;
    color: #fff;
    -webkit-border-radius: 24px;
       -moz-border-radius: 24px;
            border-radius: 24px;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
}
.order_btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
      -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
}

.serv_item:after {
    position: absolute;
    content:'';
    background: rgba(0, 0, 0, .7);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
       -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.serv_item:hover:after {
    background: rgba(0, 0, 0, 0);
}
.serv_item:hover:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: rgba(51,140,33,0.5);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*******CHARCTERISTIC*******/

.char_wrap {
    background: #F1F1F1;
    z-index: 2;
}
.char {
    padding: 50px 0 45px;
}
.char_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 58px;
}
.char_item {
    width: -webkit-calc((100% - 66px)/3);
    width: -moz-calc((100% - 66px)/3);
    width: calc((100% - 66px)/3);
    margin-bottom: 35px;
}
.char_title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #3A3A3A;
    height: 74px;
    margin-bottom: 4px;
    padding-left: 26px;
    padding-right: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}
.char_title span {
    display: block;
    width: 70px;
}
.char_item p {
    font-size: 20px;
    line-height: 30px;
    background: #fff;
    padding: 20px 30px;
    min-height: 100px;
}

/********PRODUCTS**********/

.products_wrap {
    background: #F1F1F1;
}
.products {
    padding: 50px 0 60px;
}
.products_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 50px;
}
.prod_item {
    width: -webkit-calc((100% - 60px)/4);
    width: -moz-calc((100% - 60px)/4);
    width: calc((100% - 60px)/4);
    background: #fff;
    -webkit-box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.17);
box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.17);
margin-bottom: 20px;
}
.prod_item:hover p a {
    color: #00f900;
}
.prod_img {
    padding-bottom: 79%;
    
}
.prod_img:hover img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
        -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.prod_img span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    
}
.prod_img span img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
        -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.prod_item > p {
    font-size: 20px;
    line-height: 46px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    height: 46px;
    border-bottom: 1px solid #F1F1F1;
}
.prod_order {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 11px 0 16px;
}
.prod_order .order_btn {
    position: static;
    color: #000;
    margin: 0;
}
.prod_order .order_btn:hover {
    background: #009f00;
    color: #fff;
}


/********STEPS*******/

.steps_wrap {
    background: url(../img/steps_bg.jpeg) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}
.steps_wrap:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left:0;
    right:0;
    background-color: rgba(0,0,0,0.5);
}
.steps {
    padding: 50px 0 95px;
}
.steps .block_title {
    color: #fff;
}
.steps_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 65px;
}
.step_item {
    width: -webkit-calc(100% / 6);
    width: -moz-calc(100% / 6);
    width: calc(100% / 6);
    text-align: center;
}
.step_ico {
    width: 110px;
    height: 110px;
    background: #fff;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 30px;
      -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.step_item > p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
}
.step_item > p span {
    color: #F91434;
}
.step_item:last-of-type:after {
    display: none;
}
.step_item:hover .step_ico{
    -webkit-transform: rotateY(360deg) translate(0px, -10px);
    -moz-transform: rotateY(360deg) translate(0px, -10px);
    transform: rotateY(360deg) translate(0px, -10px);
}

/*******GALLERY********/

.gallery_wrap {
    margin-top: 70px;
}
.gallery_slider {
    margin-top: 40px;
    
    background: url(../img/slider_bg.png) no-repeat top center;
}
.swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.fancybox-navigation {
    position: static;
}
.swiper-container1 {
    padding: 115px 0 120px;
}

/*******COMMENTS*******/

.comments {
    padding: 65px 0 70px;
}
.comment_content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fff;
    padding: 33px 35px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
     
}
.comment_slider .swiper-slide {
    -webkit-box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.17);
box-shadow: 0px 2px 32px 0px rgba(0,0,0,0.17);   
}
.comment_img {
    width: 27.5%;
}
.comment_img img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.swiper-container2 {
    padding: 35px 22px 65px;
}

.comment_slider .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0px;
}

.comment_info {
    width: -webkit-calc(100% - 40px - 27.5%);
    width: -moz-calc(100% - 40px - 27.5%);
    width: calc(100% - 40px - 27.5%);
}
.user_company {
    font-size: 20px;
    line-height: 24px;
    color: #000;
}
.user_name {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}
.user_pos {
    font-size: 16px;
    line-height: 24px;
    color: #009f00;
    margin-bottom: 10px;
}
.comment_info > p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
}
.comment_slider .swiper-pagination-bullet {
  background: #3A3A3A;
}
.comment_slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #009f00;
  width: 14px;
  height: 14px;
}


/****CLIENTS******/

.clients_wrap {
    background: #fff;
      -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.25);
z-index: 3;
}
.clients_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 70px;
}
.clients {
    padding: 60px 0 50px;
}
.client_item {
    width: -webkit-calc(100% / 6);
    width: -moz-calc(100% / 6);
    width: calc(100% / 6);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #E7E7E7;
    border-right: 1px solid #E7E7E7;
}
.client_item img {
    max-width: 100%;
    height: auto;
}
.client_item.invise {
    display: none;
}
.client_item:nth-last-child(-n+12) {
    border-bottom: none;
}
.client_item:nth-child(6n) {
    border-right: none;
  
}
.client_item:nth-last-child(-n+6) {
      border-top: 1px solid #E7E7E7;
}
.show_next {
    font-size: 24px;
    line-height: 30px;
    color: #009f00;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #009f00;
    display: inline-block;
}
.show_next_wrap {
    text-align: center;
    margin-top: 45px;
}
.show_next.invise {
    display: none;
}

/*******FOOTER*******/

footer {
    background: #3A3A3A;
    z-index: 1;
}
.footer {
    padding: 50px 0 65px;
}
.footer_logo {
    padding-left: 40px;
}
.footer_logo > p {
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.footer_logo > span {
    font-size: 18px;
    color: #737373;

}
.footer_logo:after {
    position: absolute;
    content:'';
    width: 28px;
    height: 28px;
    background: #009f00;
    left: 0;
    top: 4px;
    z-index: 2;
}
.footer_top {
    border-bottom: 1px solid #474747;
    padding-bottom: 10px;
}
.footer_bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 30px;
    padding-left: 40px;
}
.footer_bottom .tel {
    color: #fff;
}
.footer_bottom .tel:hover {
    color: #009f00;
}
.footer_bottom > p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.footer_bottom .callback:hover  {
    background: none;
    color: #009f00;
}


/********OBRABOTKA*******/

.obrabotka_wrap {
    background: #fff;
}
.obrabotka {
    padding: 50px 0;
}
.obrabotka_content {
margin-top: 60px;
}
.obrabotka_text {
    width: 49%;
    float: left;
}
.obrabotka_slider {
    width: 43%;
    float: right;
    padding-right: 15px;
    padding-bottom: 33px;
}
.obrabotka_text > p {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 10px;
}

.obrabotka_text ul li {
    padding-left: 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
}
.obrabotka_text ul li:after {
    position: absolute;
    content:'';
    width: 7px;
    height: 7px;
    top: 7px;
    left: 0;
    background: #009f00;
    z-index: 2;
}
.swiper-container3 .swiper-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.obrabotka_img {
}


/*******MODALS********/

.modal_big {
    width: 500px;
    padding: 40px 40px;
    display: none;
}
.modal_big .serv_form {
    width: 100%;
    background: #fff;
    padding: 0;
}
.modal_big .inputs_wrap {
    display: block;
    margin-top: 20px;
}
.modal_big .inp_item {
    width: 100%;
    margin-bottom: 20px;
}
.modal_big .serv_submit {
   margin: 20px auto 0;
}
.modal_big .serv_form  p {
    text-align: center;
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;

}
.input_style {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid #F1F1F1;
    background: #fff;
    padding-left: 15px;
    font-size: 16px;
    color: #000;
}
.serv_submit {
    width: 220px;
    height: 44px;
    font-size: 20px;
    font-weight: 700;
    line-height: 41px;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 22px;
       -moz-border-radius: 22px;
            border-radius: 22px;
    background: #009f00;
    border: 2px solid #009f00;
    text-transform: uppercase;
}

.site-overlay:after {
    position: absolute;
    content:'';
    background: url(../img/close-button.svg) no-repeat center #191918;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
    width: 30px;
    height: 30px;
    z-index: 9999;
    top: 0;
    left: 200px;
}
.text-content-wrapper {
    background-color: #FAFAFA;
    margin-bottom:60px;
}
.container.text-content {
    margin-bottom:20px;
}

.text-content h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0;
}

.text-content h2 {
    margin: 20px 0;
}

.text-content p {
    margin: 20px 0;
}

.text-content ul {
    padding-left: 15px;
}

.text-content ul li {
    position: relative;
}

.text-content ul li:before {
    content: '';
    position: absolute;
    width:6px;
    height:6px;
    top: 7px;
    left: -15px;
    border-radius: 10px;
    background-color: #009f00;
}

@media (max-width: 1220px) {
.container {
    width: 1063px;
    margin: 0 auto;
    min-width: 1063px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 1063px;
}
.logo p {
    font-size: 32px;
}
.logo span {
    font-size: 17px;
}
.top_block {
    padding: 75px 0 45px;
}
.top_title > p {
    font-size: 47px;
    line-height: 53px;
}
.top_items {
    margin-top: 120px;
}
.top_item {
    padding: 20px 20px 10px 30px;
}
.top_item > p {
    font-size: 19px;
}
.top_title > span {
    font-size: 28px;
    line-height: 28px;
}
.top_block_wrap {
    margin-bottom: 0px;
}
.serv_name {
    padding: 0 20px;
}
.block_title {
    font-size: 33px;
    line-height: 33px;
}
.swiper-button-prev1 {
    margin-left: -520px;
}
.swiper-button-next1 {
    margin-right: -520px;
}
.swiper-container1 {
    padding: 90px 0 100px;
}
}

@media (max-width: 1080px) {
.container {
    width: 963px;
    margin: 0 auto;
    min-width: 963px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 963px;
}
.logo p {
    font-size: 30px;
}
.nav li a {
    font-size: 17px;
}
.tel {
    font-size: 23px;
    line-height: 23px;
}
.top_title > p {
    font-size: 43px;
    line-height: 49px;
    margin-bottom: 20px;
}
.top_items {
    margin-top: 80px;
}
.top_item > p {
    font-size: 17px;
}
.serv_name {
    top: 60px;
    font-size: 20px;
}
.block_title {
    font-size: 31px;
    line-height: 31px;
}
.char_item p {
    font-size: 18px;
    line-height: 28px;
}
.char_title {
    font-size: 18px;
}
.obrabotka_slider {
    width: 46%;
}
.step_item:after {
    top: 37px;
    right: -19px;
    background: url(../img/slim-right.svg) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
    width: 35px;
    height: 35px;
}
.swiper-button-prev1 {
    margin-left: -470px;
}
.swiper-button-next1 {
    margin-right: -470px;
}

.block_title > h1 {
    font-size: 38px !important;
    margin-bottom: 15px !important;
}
}

@media (max-width: 980px) {
.container {
    width: 863px;
    margin: 0 auto;
    min-width: 863px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 863px;
}
.logo {
    width: 100%;
    margin-bottom: 10px;
}
.header {
    padding: 20px 0;
}
.nav li a {
    font-size: 16px;
}
.top_block {
    padding: 60px 0 45px;
}
.top_title > p {
    font-size: 38px;
    line-height: 45px;
}
.top_title > span {
    font-size: 25px;
    line-height: 25px;
}
.serv_name {
    top: 40px;
    font-size: 17px;
}
.order_btn {
    font-size: 20px;
}
.services {
    padding: 45px 0 60px;
}
.block_title {
    font-size: 29px;
    line-height: 29px;
}
.char_item {
    width: -webkit-calc((100% - 30px)/2);
    width: -moz-calc((100% - 30px)/2);
    width: calc((100% - 30px)/2);
    margin-bottom: 35px;
}
.obrabotka_text {
    width: 100%;
    float: none;
    margin-bottom: 30px;
}
.obrabotka_slider {
    width: 100%;
    float: none;
}
.prod_item {
    width: -webkit-calc((100% - 40px)/3);
    width: -moz-calc((100% - 40px)/3);
    width: calc((100% - 40px)/3);
}
.step_item {
    width: -webkit-calc(100% / 3);
    width: -moz-calc(100% / 3);
    width: calc(100% / 3);
    margin-bottom: 40px;
}
.step_item:after {
   display: none;
}
.swiper-button-prev1 {
    margin-left: 0;
    left: 0;
}
.swiper-button-next1 {
    margin-right: 0;
    right: 0;
}
.steps {
    padding: 50px 0 50px;
}
.client_item {
    width: -webkit-calc(100% / 3);
    width: -moz-calc(100% / 3);
    width: calc(100% / 3);
}
.client_item{
   border: none !important;
}
.callback {
    width: 200px;
}
.footer {
    padding: 30px 0 40px;
}
}

@media (max-width: 880px) {
.container {
    width: 751px;
    margin: 0 auto;
    min-width: 751px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 751px;
}
.nav {
    display: none;

}
.menu-btn {
    display: block;
    padding-left: 40px;
    background: url(../img/menu-button.png) no-repeat left center;
    -webkit-background-size: 25px 25px;
    -moz-background-size: 25px 25px;
      -o-background-size: 25px 25px;
         background-size: 25px 25px;
    font-size: 21px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}
.navbar {
    padding: 17px 0;
}
.top_item {
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: calc(100% / 2);
    border: 1px solid #fff !important;
}
.serv_item {
    width: -webkit-calc((100% - 1px)/2);
    width: -moz-calc((100% - 1px)/2);
    width: calc((100% - 1px)/2);
    padding-bottom: 50%;
}
.serv_name {
    top: 40px;
    font-size: 22px;
}
.footer_bottom > p {
    width: 100%;
}
.footer_logo > p {
    font-size: 31px;
}
.footer_logo > span {
    font-size: 16px;
}
.footer_bottom {
    padding-left: 0px;
}
}

@media (max-width: 768px) {
.container {
    width: 100%;
    margin: 0 auto;
    min-width: 650px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 650px;
}
.prod_item {
    width: -webkit-calc((100% - 20px)/2);
    width: -moz-calc((100% - 20px)/2);
    width: calc((100% - 20px)/2);
}
}

@media (max-width: 667px) {
.container {
    width: 100%;
    margin: 0 auto;
    min-width: 551px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 551px;
}
.tel {
    font-size: 21px;
    line-height: 21px;
}
.top_item > p {
    font-size: 16px;
}
.serv_item {
    width: 100%;
    padding-bottom: 60%;
}
.char_item {
    width: 100%;
}
.block_title {
    font-size: 27px;
    line-height: 27px;
}
.swiper-container1 {
    padding: 40px 0 100px;
}
.comments {
    padding: 30px 0 70px;
}
.comment_content {
    padding: 20px;
}
}

@media (max-width: 568px) {
.container {
    width: 100%;
    margin: 0 auto;
    min-width: 463px;
    padding: 0 15px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 463px;
}
.logo {
    padding-left: 0;
    background: none;
    text-align: center;
}
.logo p {
    font-size: 27px;
}

.tel {
    width: 100%;
    text-align: center;
    margin: 15px 0;
}
.header {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.top_item {
    width: 100%;
    border: 1px solid #fff !important;
    min-height: 150px;
}
.top_items {
    margin-top: 40px;
}
.top_title > span {
    font-size: 21px;
    line-height: 21px;
}
.top_title > p {
    font-size: 34px;
    line-height: 45px;
}
.prod_item {
    width: 100%;
}
.modal_big {
    width: 95%;
    padding: 40px 20px 30px;
    display: none;
}
.step_item {
    width: 50%;
}
.footer_bottom {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer_bottom > p {
    text-align: center;
}
.footer_bottom > p br {
    display: none;
}
.footer_logo {
    text-align: center;
    padding-left: 0;
}
.footer_logo:after {
   display: none;

}
.block_title > h1 {
    font-size: 28px !important;
    margin-bottom: 10px !important;
}
}


@media (max-width: 480px) {
.container {
    width: 100%;
    margin: 0 auto;
    min-width: 300px;
    padding: 0 10px;
}
.wraper header,
.wraper footer,
.wraper > div {
    min-width: 300px;
}
.top_title > p {
    font-size: 28px;
    line-height: 39px;
}
.serv_item {
    width: 100%;
    padding-bottom: 100%;
}
.step_item {
    width: 100%;
}
.comment_info {
    width: 100%;
    margin-top: 10px;
}
.comment_img {
    width: 100%;
}
.client_item {
    width: 50%;
}

.show_next {
    font-size: 20px;
}
.block_title {
    font-size: 25px;
    line-height: 27px;
}
.obrabotka_slider {
    padding-right: 0;
}
}