body {
    margin: 0;
}
* {
    font-family: "Manrope", sans-serif;
    box-sizing: border-box;
    outline: none!important;
}
html {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color:#333;
}
a {
    color:#2C5A2C;
    text-decoration: none;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    position: relative;
}

.image_homepage_place {
    background: url(localImages/imagehome.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 60px;
    @media screen and (max-width:1025px) {
        padding: 40px 15px 40px 15px;
    }
    @media screen and (max-width:575px) {
        padding: 20px 15px;
    }
}
.image_home_place_wrapper {
    max-width: 500px;
    width: 100%;
    display:grid;
    @media screen and (max-width:1025px) {
        max-width: 400px;
    }
    @media screen and (max-width:768px) {
        max-width:350px;
    }
}
.image_home_place_wrapper .btn_type {
    justify-self: center;
}
.section_color_1 {
    background: #2C5A2C;
}
.section_color_2 {
    background: #F9FAFC;
}
.section_color_3 {
    background: #F0F7F0;
}
.section_padding  {
    padding:70px 15px;
    @media screen and (max-width:1200px) {
        padding:50px 15px;
    }
    @media screen and (max-width:1025px) {
        padding:40px 15px;
    }
    @media screen and (max-width:768px) {
        padding:30px 15px;
    }
    @media screen and (max-width:575px) {
        padding:20px 15px;
    }
}
h1 {
    font-size: 35px;
    font-weight: 800;
    margin:0;
    line-height: 1.35;
    @media screen and (max-width:1200px) {
        font-size:32px;
    }
    @media screen and (max-width:1025px) {
        font-size:30px;
    }
    @media screen and (max-width:768px) {
        font-size:28px;
    }
    @media screen and (max-width:575px) {
        font-size:26px;
    }
}
h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    @media screen and (max-width:1200px) {
        font-size:28px;
    }
    @media screen and (max-width:1025px) {
        font-size:26px;
    }
    @media screen and (max-width:768px) {
        font-size:24px;
    }
    @media screen and (max-width:575px) {
        font-size:22px;
    }
}
.image_homepage_place h1 {
    color: #fff;
}
.image_homepage_place p {
    color:#fff;
    font-weight: 200;
    line-height:1.35;
    @media screen and (max-width:1025px) {
        font-size: 14px;
    }
    @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
.btn_type {
    cursor: pointer;
    display:inline-flex;
    border:none;
    border-radius: 4px;
    background: #2C5A2C;
    color:#fff;
    font-size: 12px;
    padding:12px 30px;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Manrope';
    text-transform: inherit;
}
.btn_type:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn_type.reverse_btn_type {
    background: #fff;
    color: #2C5A2C;
}
section.section_class h2 {
    text-align:center;
}
section.section_class p.after_title {
    text-align: center;
    line-height:1.35;
    @media screen and (max-width:1025px) {
        font-size:14px;
    }
    @media screen and (max-width:575px) {
        font-size:12px;
    }
}
.section_numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    color: #fff;
    text-align: center;
    @media screen and (max-width:1025px) {
        gap:10px;
    }
    @media screen and (max-width:575px) {
        grid-template-columns: repeat(2, 1fr);
    }
}
.section_numbers.auto_fit_columns {
    grid-template-columns: repeat(5, 1fr);
    @media screen and (max-width:768px) {
        grid-template-columns: repeat(3, 1fr);
    }
    @media screen and (max-width:575px) {
        grid-template-columns: repeat(2, 1fr);
    }
}
.item_section_numbers {
    padding:10px 0;
}
.section_numbers.auto_fit_columns .item_section_numbers:last-child {
    @media screen and (max-width:575px) {
        grid-column: span 2;
    }
}
.title_item_section_numbers {
    font-size: 35px;
    font-weight: 800;
    @media screen and (max-width:1025px) {
        font-size: 30px;
    }
    @media screen and (max-width:768px) {
        font-size: 28px;
    }
    @media screen and (max-width:575px) {
        font-size: 26px;
    }
}
.item_section_numbers p {
    margin:0;
    line-height:1.35;
    @media screen and (max-width:1025px) {
        font-size: 14px;
    }
    @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
.grid_columns_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    margin:30px 0;
    @media screen and (max-width:1025px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.grid_columns_3.serts {
    @media screen and (max-width:1025px) {
        grid-template-columns: repeat(3, 1fr);
        gap:15px;
    }
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.item_grid_columns_3 {
    border-radius: 10px;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    padding:10px 20px 30px 20px;
    @media screen and (max-width:575px) {
        padding:10px;
    }
}
.title_grid_columns_3 {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap:15px;
    align-items: center;
    @media screen and (max-width:768px) {
        grid-template-columns: 45px 1fr;
    }
}
.icon_title_grid_columns_3 img {
    width:60px;
    height:60px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    @media screen and (max-width:768px) {
        width:45px;
        height: 45px;
    }
}
.value_title_grid_columns_3 {
    font-size: 18px;
    font-weight: 800;
    @media screen and (max-width:768px) {
        font-size:16px;
    }
}
.text_grid_columns_3 {
    margin:5px 0 15px 0;
    line-height: 1.35;
    @media screen and (max-width:768px) {
        font-size: 14px;
    }
}
.link_grid_columns {
    font-weight: 600;
    line-height: 1.15;
}
.grid_calc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
section.section_class .text_grid_calc h2,
section.section_class .text_grid_calc p.after_title {
    text-align: left;
}
.text_grid_calc > * {
    max-width:400px;
}
.grid_calc form {
    display: grid;
    grid-template-columns: 1fr;
    gap:30px;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    background: #fff;
}
.grid_calc form input:not([type="checkbox"]),
.grid_calc form textarea {
    padding: 10px 16px;
    color: #A9ACB5;
    border:none;
    border-radius: 8px;
    background: #F9FAFC;
    font-size: 16px;
}
.grid_calc form textarea {
    min-height: 80px;
}
label.check_accept_form {
    display: grid;
    align-items: center;
    gap: 5px;
    grid-template-columns: 13px 1fr;
    line-height:1.35;
}
label.check_accept_form input[type="checkbox"] {
    margin:0;
    padding: 0;
    width:13px;
    height:13px;
}
label.check_accept_form span {
    font-size: 14px;
    cursor: pointer;
    @media screen and (max-width:768px) {
        font-size: 12px;
    }
}
.grid_calc form button[type="submit"] {
    justify-self: center;
}
.grid_calc_img {
    position: absolute;
    top: 10%;
    z-index: -1;
    left: 0;
    max-width: 626px;
    @media screen and (max-width:1025px) {
        top:30%;
        max-width: 500px;
    }
    @media screen and (max-width:575px) {
        position: static;
        width: 100%;
        margin-top:20px;
    }
}

.slider_container .swiper-container {
    overflow: hidden;
    padding: 0 15px;
}
.slider_container .arrowSlider::after {
    display: none;
}
.slider_container .arrowSlider img {
    width: 100%;
    @media screen and (max-width:575px) {
        width:16px;
    }
}
.slider_container .arrowSlider.swiper-button-next {
    right:-15px;
    @media screen and (max-width:1200px) {
        right:0;
    }
}
.slider_container .arrowSlider.swiper-button-prev {
    left:-15px;
    @media screen and (max-width:1200px) {
        left:0;
    }
}
.slider_container .arrowSlider.swiper-button-next img {
    transform: rotate(90deg);
}
.slider_container .arrowSlider.swiper-button-prev img {
    transform: rotate(-90deg);
}
.geo_slide {
    background: #F9FAFC;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    border-radius: 10px;
    padding: 25px 20px;
    margin:15px 0;
    text-align: center;
    @media screen and (max-width:575px) {
        padding:15px 10px;
    }
}
.title_geo_slide {
    font-size: 18px;
    font-weight: 800;
    @media screen and (max-width:768px) {
        font-size:16px;
    }
    @media screen and (max-width:575px) {
        font-size:14px;
    }
}
.text_geo_slide {
    @media screen and (max-width:768px) {
        font-size: 14px;
    }
    @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
ul.citys_geo_slide {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    font-size: 14px;
    line-height: 1.35;
    @media screen and (max-width:768px) {
        font-size: 12px;
        gap:5px;
    }
}
ul.citys_geo_slide + a {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-weight: 600;
}
.consultation_form_background {
    background: url(localImages/consultationform.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 60px;
    @media screen and (max-width:575px) {
        padding: 40px 15px;
        background-position-x: 75%;
    }
}
.wrapper_consultation_form_background {
    max-width: 450px;
    @media screen and (max-width:575px) {
        max-width:100%;
    }
}
.wrapper_consultation_form_background h2,
.wrapper_consultation_form_background p.after_title,
.wrapper_consultation_form_background .check_accept_form,
.wrapper_consultation_form_background .check_accept_form a {
    color: #fff;
}
.wrapper_consultation_form_background form {
    max-width: 344px;
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1fr;
    gap:15px
}
.wrapper_consultation_form_background form input:not([type="checkbox"]) {
    border:none;
    border-radius: 8px;
    background: #fff;
    color:#333;
    font-size: 16px;
    padding: 10px;
}
.wrapper_consultation_form_background form button[type="submit"] {
    justify-self: center;
}
.grid_columns_4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    margin:30px 0;
    @media screen and (max-width:1025px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.item_grid_columns_4 {
    display: grid;
    justify-items: center;
    gap: 15px;
}
.item_grid_columns_4 img {
    width: 69px;
    height: 69px;
}
.title_item_grid_columns_4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}
.text_item_grid_columns_4 {
    line-height: 1.35;
}
.clients .item_grid_columns_4 img {
    width: 160px;
    height: 50px;
    object-fit: contain;
}
.clients .item_grid_columns_4 {
    background: #fff;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    border-radius: 10px;
    padding: 20px 30px;
}
.clients .title_item_grid_columns_4 {
    font-size: 14px;
    font-weight: 400;
}
.serts .item_grid_columns_3 {
    display: grid;
    justify-items: center;
    gap: 15px;
    background: #fff;
}
.serts .item_grid_columns_3 img {
    width: 64px;
    height: 64px;
    aspect-ratio: 1 / 1;
}
.serts .item_grid_columns_3 .text_grid_columns_3 {
    margin: 0;
    text-align: center;
    font-weight: 600;
}
.serts .item_grid_columns_3 > p {
    text-align: center;
    line-height: 1.35;
    @media screen and (max-width:768px) {
        font-size: 14px;
    }
    @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
.serts.grid_columns_3 + a.btn_type {
    margin: 0 auto;
    width: 160px;
    display: block;
}

.grid_faq {
    display: grid;
    grid-template-columns: 1fr;
    gap:20px;
    margin:30px 0;
}

.item_grid_faq {
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    border-radius: 8px;
    padding:15px 25px;
    display: grid;
    gap:10px;
    @media screen and (max-width:575px) {
        padding: 10px;
    }
}

.text_item_grid_faq {
    display: none;
    line-height: 1.35;
    @media screen and (max-width:768px) {
        font-size: 14px;
    }
    @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
.active_faq .text_item_grid_faq {
    display: block;
}
.title_item_grid_faq {
    display: grid;
    gap:15px;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 16px;
    font-weight: 800;
    cursor: pointer;
    @media screen and (max-width:768px) {
        font-size: 14px;
    }
    @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
.item_grid_faq img {
    transform: rotate(180deg);
    transition: all 0.3s;
}
.item_grid_faq.active_faq img {
    transform: rotate(0);
}
.grid_columns_6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap:30px;
    margin:30px 0;
    @media screen and (max-width:1025px) {
        grid-template-columns: repeat(3, 1fr);
    }
    @media screen and (max-width:768px) {
        grid-template-columns: repeat(2, 1fr);
        gap:15px;
    }
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.item_grid_columns_6 {
    text-align: center;
    color:#333;
}
.numb_item_grid_columns_6 {
    font-size: 55px;
    font-weight: 700;
    color: #2C5A2C;
}
.title_item_grid_columns_6 {
    font-weight: 600;
    margin-bottom: 15px;
}
.text_item_grid_columns_6 {
    line-height: 1.35;
    font-size: 14px;
}
.otziv_stucture {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    margin: 15px 0;
    display: grid;
    gap:15px;
    @media screen and (max-width:575px) {
        padding:10px;
    }
}
.header_otziv_structure {
    display: grid;
    gap:15px 30px;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 60px 1fr;
    color: #333;
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}
.title_content_header_otziv_structure {
    font-weight: 800;
    line-height: 1.35;
}
.spec_content_header_otziv_structure {
    line-height: 1.35;
    font-size: 14px;
    font-weight: 500;
}
.body_otziv_structure {
    line-height: 1.35;
    @media screen and (max-width:1200px) {
        font-size:14px;
    }
    @media screen and (max-width:768px) {
        font-size: 12px;
    }
}
.rating_otziv_sctructure {
    background-position: 0 -16px;
    background-repeat: repeat-x;
    width: 96px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAgCAYAAAASYli2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0ZJREFUeNqUVs9PE0EUfrtdWuBAoCkkJiRYITGUQmIMt9ps+Q8MMRLPHPCi8S9o+w+YmJjowZMmGiG9ejFxFzBoFCUpFS4SSwIhKgIpKbS023W+Ybfuz1In+Zi3733vzZuZ96YIW/PUaujGLPgRrtzSbd9So0E0cnvLRfz+ejgTjt/n8kHhUYZxMh4cl5+oad4rM306PHaPAMg+HJ+AWtmGjRcsu9jd5jdk6Jw8r4CCrrMzOFu2KddfJvXxO0tOHTGd/SyDN1wBpbVnAs7GtqVL4zNE9QMbsX90htaeJ3WHf/barG47W+HTE9In59ilVItElR/U1uiMEoUu0+enwzQ5p9uylup1yn54PJwem5qlnoFoW/FKux/p27tnPEPXGS4+5LPMoEykpql3YLBlsKNfO5RXchBTDGrygf0URJYhMaXK5tTXtzk63F0nqv30BGzggGv4uMvGVE7dTHGCXj/0DQgbOODCp2XAN68UGXK4l/2p7XsCNnDApc0J74C8ONcHUaTyyNWe83Ix8Gdvj8OqAwdcyF6FLXHl+A5p80I63HfGOuCI9n9r9H6pArtq8OREspMi/QEK92nnragdZfwDfhH4apFwhTYLRBsb3Jaanj4PmMuRvKhUlFiMaHTU6GGf1hPx2tB1ndicXVggKhQoy2SBQcU3ABk62Ixvc3b38vLyvz4OhUJ2oyDwImP9buuGarXalBOJhD3DFjWcibE9ApCpzSE6V67X6xwsq3RXVxcBkE29NbsLAzqzM8f/ZCm6X2GNZ9Td3Y2Zw5DTmt/z7giYMX6MmkBGZjATRpa6A+6sVVXVG42GzlbXa7VaWwAXPvB1LsxaT8sqikInJyesrhptAVz4wNdzy+z2UisrK3R6enphMHDAhY/Xls1LUdlqPGi5XOYX4wXYwAHX0uf2Xj4+Pm4eZyAQIHZGJEmS5w3CZgRX/W7Z6imDjGBw9CQzm1E6sl+GouV85Gg0yoOZKJVKHFYdOOCafh7PV7NY08FgkDvhFgvsabG+h/F4nBc4OMwn7dc5knWVjo4O2mMv9Pb2Nn8PRVHkAZFRPp9XhoaGKBKJeGbW3LKlKLOrq6tULBazxr9v1jOCLMAGDrimn3P8FWAAEtbR4/v4jFEAAAAASUVORK5CYII=);
}
.rating_otziv_sctructure span {
    background-position: 0 0;
    background-repeat: repeat-x;
    display: block;
    height: 16px;
    width: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAgCAYAAAASYli2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0ZJREFUeNqUVs9PE0EUfrtdWuBAoCkkJiRYITGUQmIMt9ps+Q8MMRLPHPCi8S9o+w+YmJjowZMmGiG9ejFxFzBoFCUpFS4SSwIhKgIpKbS023W+Ybfuz1In+Zi3733vzZuZ96YIW/PUaujGLPgRrtzSbd9So0E0cnvLRfz+ejgTjt/n8kHhUYZxMh4cl5+oad4rM306PHaPAMg+HJ+AWtmGjRcsu9jd5jdk6Jw8r4CCrrMzOFu2KddfJvXxO0tOHTGd/SyDN1wBpbVnAs7GtqVL4zNE9QMbsX90htaeJ3WHf/barG47W+HTE9In59ilVItElR/U1uiMEoUu0+enwzQ5p9uylup1yn54PJwem5qlnoFoW/FKux/p27tnPEPXGS4+5LPMoEykpql3YLBlsKNfO5RXchBTDGrygf0URJYhMaXK5tTXtzk63F0nqv30BGzggGv4uMvGVE7dTHGCXj/0DQgbOODCp2XAN68UGXK4l/2p7XsCNnDApc0J74C8ONcHUaTyyNWe83Ix8Gdvj8OqAwdcyF6FLXHl+A5p80I63HfGOuCI9n9r9H6pArtq8OREspMi/QEK92nnragdZfwDfhH4apFwhTYLRBsb3Jaanj4PmMuRvKhUlFiMaHTU6GGf1hPx2tB1ndicXVggKhQoy2SBQcU3ABk62Ixvc3b38vLyvz4OhUJ2oyDwImP9buuGarXalBOJhD3DFjWcibE9ApCpzSE6V67X6xwsq3RXVxcBkE29NbsLAzqzM8f/ZCm6X2GNZ9Td3Y2Zw5DTmt/z7giYMX6MmkBGZjATRpa6A+6sVVXVG42GzlbXa7VaWwAXPvB1LsxaT8sqikInJyesrhptAVz4wNdzy+z2UisrK3R6enphMHDAhY/Xls1LUdlqPGi5XOYX4wXYwAHX0uf2Xj4+Pm4eZyAQIHZGJEmS5w3CZgRX/W7Z6imDjGBw9CQzm1E6sl+GouV85Gg0yoOZKJVKHFYdOOCafh7PV7NY08FgkDvhFgvsabG+h/F4nBc4OMwn7dc5knWVjo4O2mMv9Pb2Nn8PRVHkAZFRPp9XhoaGKBKJeGbW3LKlKLOrq6tULBazxr9v1jOCLMAGDrimn3P8FWAAEtbR4/v4jFEAAAAASUVORK5CYII=);
}
.post_structure {
    display: grid;
    gap:10px;
    margin:15px 0;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    border-radius: 10px;
    overflow: hidden;
}
.image_post_structure {
    display: block;
}
.image_post_structure img {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.body_post_structure {
    padding: 0 20px 25px 20px;
    display: grid;
    gap: 10px;
    @media screen and (max-width:575px) {
        padding:0 10px 15px 10px;
    }
}
.time_for_read {
    font-size: 14px;
    @media screen and (max-width:768px) {
        font-size: 12px;
    }
}
.title_body_post_structure {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    color: #333;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    @media screen and (max-width:1025px) {
        font-size:16px;
    }
    @media screen and (max-width:768px) {
        font-size:14px;
    }
    @media screen and (max-width:575px) {
        font-size:12px;
    }
}
.excerpt_body_post_structure {
    line-height: 1.35;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    @media screen and (max-width:1025px) {
        font-size:14px;
    }
    @media screen and (max-width:768px) {
        font-size:12px;
    }
}
.link_body_post_structure {
    font-weight: 600;
}

.service_section {
    background: url(localImages/serviceimage.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px;
    display: grid;
    gap: 150px;
    grid-template-columns: 2fr 1fr;
    @media screen and (max-width:1025px) {
        padding:40px 15px 40px 15px;
        gap:100px;
    }
    @media screen and (max-width:768px) {
        grid-template-columns:1fr;
        gap:30px;
    }
    @media screen and (max-width:575px) {
        padding: 20px 15px;
        gap:15px;
    }
}
.text_content_service_section {
    @media screen and (max-width:1025px) {
        font-size: 14px;
    }
 @media screen and (max-width:575px) {
        font-size: 12px;
    }
}
.content_service_section {
    color:#fff;
}
.content_service_section h1 {
    color:#fff;
}
.grid_push_utps {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    margin:15px auto 0 auto;
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.grid_push_utp {
    padding:10px 15px;
    border-radius: 4px;
    border: 1px solid #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.service_section form {
    display: grid;
    gap: 15px;
    align-content: center;
    justify-items: center;
    @media screen and (max-width:768px) {
        max-width:400px;
        margin:0 auto;
    }
}
.service_section form input:not([type="checkbox"]) {
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 16px;
    padding: 10px;
    width: 100%;
    min-height:0;
}
.service_section form textarea {
    padding: 10px;
    color: #333;
    border: none;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    width:100%;
    min-height:auto;
    height:auto;
}
.service_section form label.check_accept_form * {
    color: #fff;
}


.grid_category_links {
    display: grid;
    gap:15px;
    margin:30px 0;
    grid-template-columns: repeat(3, 1fr);
    @media screen and (max-width:768px) {
        grid-template-columns: repeat(2, 1fr);
        font-size:12px;
    }
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.grid_category_link {
    padding:10px 15px;
    border-radius: 60px;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    color:#333;
    text-align: center;
    display: grid;
    background: #fff;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s;
    @media screen and (max-width:768px) {
        font-size: 12px;
        padding: 7px;
    }
}
.grid_category_link:hover {
    transform: translateY(-2px);
}
.grid_list_prices {
    display: grid;
    gap:30px;
    margin:30px 0;
    grid-template-columns: 1fr 1fr;
    @media screen and (max-width:768px) {
        grid-template-columns: 1fr;
    }
}
.grid_list_price {
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    background: #F9FAFC;
    border-radius: 8px;
    padding: 20px;
    display: grid;
    gap: 10px;
}
.title_grid_list_price {
    font-weight: 800;
}
.time_grid_list_price {
    font-size: 14px;
}
.price_grid_list_price {
    font-weight: 700;
    font-size: 14px;
}
.service_prices_list {
    text-align: right;
    margin-top: 15px;
}
.service_prices_list a {
    font-weight: 600;
}
.order_form_background {
    background: url(localImages/orderform.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}
.order_form_background h2,
.order_form_background p.after_title {
    color:#fff;
}
.grids_order_service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
    margin: 30px auto;
    max-width: 800px;
    @media screen and (max-width:768px) {
        gap:15px;
    }
    @media screen and (max-width:575px) {
        grid-template-columns: 1fr;
    }
}
.grid_order_service {
    background: #2C5A2C;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 14px 0 rgba(0,0,0,.15);
    @media screen and (max-width:768px) {
        font-size:14px;
        padding:15px;
    }
}
.grid_order_service img {
    height: 40px;
    object-fit: contain;
    width: 40px;
}
.social_grid_icons_service {
    display:grid;
    gap:10px;
    grid-template-columns: 25px 25px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.social_grid_icon_service img {
    height: 25px;
    width: 25px;
}
.text_grid_order_service a {
    color:#fff;
    font-weight: 600;
}