/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}
.msfavorites-total:not([data-value]),
.msfavorites-total[data-value="0"]{
    display: none;
}
main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}





p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    outline: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    background: #F7F7FA;
    color: #263141;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1C6739;
    border-radius: 10px;
    width: fit-content;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(90deg, #1C6739 0%, #2D9455 50%, #1C6739 100%);
    transition: all 0.3s;
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.header {
    position: absolute;
    width: 100%;
    background: #FFFFFF;
    top: 0;
    right: 0;
    z-index: 10;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EAEEF3;
    padding: 22px 0;
}

.header .container {
    position: relative;
}

.header_cart {
    position: absolute;
    right: 15px;
    top: 160px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001A;
    width: 500px;
    padding: 20px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header_cart.active {
    opacity: 1;
    visibility: visible;
}

.header_cart-items {
    height: 380px;
    padding-right: 35px;
    overflow: auto;
    margin-bottom: 30px;
}

.header_cart-items::-webkit-scrollbar {
    background: #F4F6F7;
    width: 5px;
    border-radius: 100px;
}

.header_cart-items::-webkit-scrollbar-thumb {
    background-color: #C3CAD4;
    border-radius: 100px;
}

.header_cart-item:first-child {
    padding-top: 0;
    min-height: 120px;
}

.header_cart-item:first-child .header_cart-img {
    top: 0;
}

.header_cart-item {
    padding: 20px 30px 20px 120px;
    position: relative;
    border-bottom: 1px solid #EAEEF3;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_cart-img {
    position: absolute;
    background: #F7F7FA;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    left: 0;
    top: 20px;
    justify-content: center;
    align-items: center;
}

.header_cart-item img {
    max-width: 100%;
    max-height: 100%;
}

.header_cart-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 15px;
}

.header_cart-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #7E8794;
}

.header_cart-value span {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    margin-left: 5px;
    color: #263141;
}

.header_cart-delete {
    background: none;
    cursor: pointer;
    right: 0;
    top: 50%;
    position: absolute;
    border: none;
    transform: translateY(-50%);
}

.header_cart-inner {
    background: #F7F7FA;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    border-radius: 10px;
    justify-content: space-between;
}

.header_cart-total {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #7E8794;
    display: flex;
    align-items: center;
}

.header_cart-total span {
    color: #263141;
    margin-left: 5px;
}

.header_cart-btns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.header_cart-btn {
    width: calc(50% - 10px);
    height: 40px;
}

.header_catalog-wrapper {
    position: relative;
}

.header_catalog-dropdown {
    position: absolute;
    left: 0;
    top: 70px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001A;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    width: 1370px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header_catalog-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.header_catalog-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 20px;
}

.header_catalog-items {
    columns: 3;
    gap: 40px;
    width: 740px;
}

.header_catalog-item {
    margin-bottom: 30px;
    page-break-inside: avoid;
    break-inside: avoid;
}

.header_catalog-item:nth-child(8) .header_catalog-list {
    display: flex;
    gap: 7px;
}

.header_catalog-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 250px;
}

.header_catalog-partner {
    width: calc(50% - 5px);
    border: 1px solid #EAEEF3;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    height: 80px;
    align-items: center;
}

.header_catalog-partner img {
    max-width: 100%;
    max-height: 100%;
}

.header_catalog-list a {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #474F5A;
    margin-bottom: 10px;
    display: block;
}

.header_catalog-sales {
    width: 300px;
}

.header_catalog-sales .main_item {
    width: 100%;
    background: #F7F7FA;
    margin-bottom: 20px;
}

.header_catalog-sales .main_item::before {
    border: 1px solid #EAEEF3;
}

.header_catalog-sales .main_item span {
    color: #1C6739;
    text-decoration: underline;
}

.header_catalog-subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
    color: #1C6739;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu a {
    color: #263141;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    transition: all 0.3s;
}

.menu li {
    position: relative;
}

.menu_dropdown::before {
    position: absolute;
    content: "";
    height: 20px;
    top: -20px;
    width: 100%;
}

.menu li:hover .menu_dropdown {
    opacity: 1;
    visibility: visible;
}

.menu_dropdown {
    position: absolute;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001A;
    border-radius: 20px;
    padding: 20px;
    top: calc(100% + 20px);
    z-index: 1;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu_dropdown a {
    font-size: 14px;
    line-height: 130%;
    white-space: nowrap;
    color: #474F5A;
    margin-bottom: 10px;
}

.menu_dropdown li:last-child a {
    margin-bottom: 0;
}

.menu a:hover {
    color: #1C6739;
}

.header_messages {
    display: flex;
    gap: 10px;
}

.header_message {
    display: flex;
}

.header_time,
.header_adres {
    font-size: 15px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header_logo {
    display: flex;
}

.header_catalog-btn {
    background: #1C6739;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    width: 164px;
    height: 61px;
    gap: 15px;
    cursor: pointer;
}

.header_search {
    background: #F7F7FA;
    border-radius: 10px;
    width: 653px;
    height: 60px;
    position: relative;
}

.header_search::before {
    position: absolute;
    content: "";
    background-image: url(../img/search.svg);
    background-size: cover;
    right: 30px;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.header_search-inp {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding-left: 30px;
}

.header_number {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 5px;
    color: #263141;
    transition: all 0.3s;
}

.header_number:hover {
    color: #1C6739;
}

.header_order-link {
    font-size: 14px;
    line-height: 130%;
    text-decoration: underline;
    color: #7E8794;
    transition: all 0.3s;
}

.header_order-link:hover {
    color: #1C6739;
}

.header_links {
    display: flex;
    gap: 10px;
}

.header_link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.header_link span {
    position: absolute;
    background: #1C6739;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: 600;
    border: 2px solid #FFFFFF;
    font-size: 10px;
    line-height: 130%;
    text-align: center;
    color: #fff;
    top: 5px;
    right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    margin-top: 164px;
    padding: 46px 0;
    position: relative;
}

.main_img {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    z-index: -1;
}

.main_info {
    width: 620px;
}

.main h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 25px;
}

.main h1 span {
    color: #1C6739;
}

.main_subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
}

.main_subtitle span {
    color: #1C6739;
    text-transform: uppercase;
}

.main_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.main_item {
    width: calc(50% - 10px);
    border-radius: 15px;
    background: #FFFFFF;
    position: relative;
    padding: 35px 30px 35px 110px;
    overflow: hidden;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 130%;
}

.main_item span {
    color: #1C6739;
    text-decoration: underline;
}

.main_item::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid #F6F7FA;
    border-radius: 10px;
    pointer-events: none;
}

.main_item img {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
}

.main_options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.main_option {
    width: calc(50% - 10px);
    position: relative;
    padding-left: 33px;
    font-size: 16px;
    display: flex;
    align-items: center;
    line-height: 130%;
}

.main_option::before {
    position: absolute;
    content: "";
    background-image: url(../img/main_option.svg);
    background-size: cover;
    left: 0;
    top: 50%;
    width: 18px;
    height: 15px;
    transform: translateY(-50%);
}

.main_inner {
    display: flex;
    gap: 20px;
}

.main_inner-item {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
}

.main_inner-item span {
    color: #1C6739;
}

.catalog {
    margin: 20px 0 100px;
}

.title {
    font-weight: 600;
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    line-height: 140%;
}

.catalog_inner {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.catalog_inner-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 30px;
}

.catalog_inner-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 792px;
}

.catalog_inner-img {
    position: absolute;
    display: flex;
    z-index: -1;
    right: 0;
    bottom: 0;
    height: 100%;
}

.catalog_inner-img img {
    height: 100%;
    width: auto;
}

.catalog_inner-item {
    width: calc(50% - 10px);
    background: #F7F7FA;
    padding: 20px;
    border-radius: 10px;
}

.catalog_inner-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 20px;
}

.catalog_inner-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog_inner-option {
    width: calc(50% - 5px);
    background: #FFFFFF;
    padding: 20px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 130%;
    color:#000;
}



.catalog_inner-btn {
    width: 294px;
    height: 50px;
}

.catalog_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.catalog_item:nth-child(1),
.catalog_item:nth-child(2) {
    width: calc(50% - 10px);
}

.catalog_item {
    width: calc(33.333% - 13.333px);
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    z-index: 1;
    color: #263141;
}

.catalog_item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
}

.catalog_item-img {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.catalog_item-btn {
    padding: 10px 50px;
    cursor: pointer;
    border:none;
}

.ways {
    margin: 100px 0;
}

.ways_tabs {
    display: flex;
    margin-bottom: 60px;
    gap: 20px;
}

.ways_tab {
    border: 1px solid #A1ABB9;
    background: #F7F7FA;
    border-radius: 100px;
    padding: 16px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    cursor: pointer;
}

.ways_tab.active {
    background: #1C6739;
    color: #fff;
}

.ways_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.ways_item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    width: calc(25% - 15px);
}

.ways_item-img {
    height: 300px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ways_item-img img {
    max-width: 100%;
    max-height: 100%;
}

.ways_item-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    display: block;
    color:#000;
    margin-bottom: 20px;
}

.ways_item-options {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}

.ways_item-option {
    width: calc(50% - 10px);
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    gap: 15px;
    display: flex;
    align-items: center;
}

.ways_item-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.ways_item-price {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ways_item-price .new {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}

.ways_item-price .old {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-decoration: line-through;
    color: #7E8794;
}

.ways_item-sale {
    background: #1C673933;
    border-radius: 100px;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: #1C6739;
}

.ways_item-bot {
    display: flex;
    justify-content: space-between;
}
.ways_item .ms2_form{
      width: calc(100% - 110px);
}
.ways_item-btn {
      width: 100%;
    height: 45px;
    border:none;
    cursor: pointer;
}

.ways_item-link {
    background: #1C673933;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ways_item-link.voted rect,
.category_item-top_option.voted path,
.ways_item-link.voted path{
    fill:#1C6739;
    stroke:#fff;
}
.ways_content {
    display: none;
}

.ways_content.active {
    display: block;
}

.order {
    margin: 100px 0;
}

.order_wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    margin-bottom: 60px;
}

.order_wrapper:last-child {
    margin-bottom: 0;
}

.order_left {
    width: calc(100% - 510px);
    padding: 40px;
}

.order_title {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
}

.order_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 60px;
}

.order_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}

.order_checks-wrapper {
    width: calc(33.333% - 13.333px);
}

.order_checks-wrapper:nth-child(4) {
    width: calc(66.666% - 13.333px);
}

.order_checks-wrapper:nth-child(4) .order_check {
    width: calc(33.333% - 13.333px);
    white-space: nowrap;
}

.order_checks-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 20px;
    gap: 15px;
    display: flex;
    align-items: center;
}

.order_checks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.order_check {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.order_checks input {
    display: none;
}

.order_checks input:checked+span::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    border-radius: 50%;
    background: #1C6739;
}

.order_checks span {
    border: 1px solid #C3CAD4;
    width: 20px;
    height: 20px;
    min-width: 20px;
    position: relative;
    border-radius: 50%;
}

.order_bot {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.order_desc {
    font-size: 14px;
    max-width: 630px;
    line-height: 140%;
}

.order_btn {
    width: 291px;
    height: 50px;
    cursor: pointer;
    border: none;
}

.order_right {
    background: #1C6739;
    border-radius: 20px;
    padding: 40px;
    width: 510px;
    color: #FFFFFF;
}

.order_right .order_text a {
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
}

.form_inp {
    border: 1px solid #FFFFFF66;
    border-radius: 10px;
    height: 60px;
    margin-bottom: 20px;
    padding-left: 30px;
    display: block;
    color:#fff;
    width: 100%;
    background: none;
}

.form_inp::placeholder {
    color: #FFFFFF99;
}

.form_btn {
    width: 100%;
    background: #FFFFFF;
    height: 50px;
    color: #1C6739;
    cursor: pointer;
    border: none;
    margin-bottom: 20px;
}
.form_btn:hover{
      background: #FFFFFF;
          color: #1C6739;
}
.form_btn:hover::before{
    opacity: 0;
}
.form_ok {
    padding-left: 35px;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    display: block;
    color: #FFFFFFCC;
    cursor: pointer;
}

.form_ok span {
    background: #FFFAEE;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}

.form_ok a {
    font-weight: 700;
    text-decoration: underline;
    color: #fff;
}

.form_ok input {
    display: none;
}

.form_ok input:checked+span {
    background-image: url(../img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.installation {
    margin: 100px 0;
}

.installation_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60px 0;
}

.installation_item {
    width: calc(33.333% - 13.333px);
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
    overflow: hidden;
    height: 300px;
    position: relative;
}

.installation_item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
}

.installation_item-img {
    position: absolute;
    display: flex;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}

.installation_item-img img {
    width: 100%;
    height: auto;
}

.sales {
    margin: 100px 0;
}

.discounts {
    margin: 100px 0;
}

.discounts_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.discounts_item {
    background: #FFFFFF;
    width: calc(33.333% - 13.333px);
    border-radius: 10px;
    padding: 30px 30px 30px 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discounts_item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.discounts_item-text {
    font-size: 14px;
    line-height: 140%;
}

.discounts_item-img {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    z-index: -1;
}

.project {
    margin: 100px 0;
}

.project_content {
    margin: 60px 0 30px;
    display: none;
}

.project_content.active {
    display: block;
}

.project_items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project_item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    width: calc(33.333% - 13.333px);
}

.project_desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 30px;
}

.project_btn {
    width: 468px;
    height: 50px;
    margin: 30px auto 0;
}

.project_tabs {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.project_tab {
    border: 1px solid #A1ABB9;
    background: #F7F7FA;
    border-radius: 100px;
    padding: 16px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    cursor: pointer;
}

.project_tab.active {
    background: #1C6739;
    color: #fff;
}

.project_item {
    position: relative;
}

.project_item-img {
    height: 350px;
}

.project_item-date {
    position: absolute;
    background: #1C6739;
    border-radius: 15px;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    top: 35px;
    left: 35px;
    z-index: 1;
    color: #fff;
}

.project_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project_item-imgs {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.project_item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 30px;
}

.project_item-options {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px 40px;
}

.project_item-option:nth-child(1) {
    width: 100%;
}

.project_item-option {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    gap: 15px;
    display: flex;
    align-items: center;
}

.project_item-bot {
    display: flex;
    justify-content: space-between;
    align-items: centers;
}

.project_item-btn {
    width: 270px;
    height: 50px;
}

.project_item-price {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #7E8794;
}

.project_item-price span {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    display: block;
    margin-top: 5px;
    color: #1C6739;
}

.project_item-imgs .slick-dots {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    background: #1C6739;
    border-radius: 15px;
    gap: 10px;
    padding: 10px;
    opacity: 1;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.project_item-imgs .slick-dots li {
    display: flex;
}
.project_item-imgs .slick-dots:has(li:only-child) {
    display: none;
}
.project_item-imgs .slick-dots .slick-active button {
    background: #fff;
}

.project_item-imgs .slick-dots button {
    background: none;
    padding: 0;
    border: 1px solid #fff;
    padding: 0;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    cursor: pointer;
    opacity: 1;
    font-size: 0;
}

.prices {
    margin: 100px 0;
}

.prices_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.prices_item {
    width: calc(25% - 15px);
    background: #FFFFFF;
    border-radius: 10px;
    position: relative;
    padding: 30px;
    overflow: hidden;
    color:#000;
    z-index: 1;
}

.prices_item-title {
    font-weight: 600;
    font-size: 20px;
    display: block;
    line-height: 130%;
    margin-bottom: 38px;
}

.prices_item-value {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #1C6739;
}

.prices_item-img {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    height: 100%;
    z-index: -1;
}

.prices_item-img img {
    height: 100%;
    width: auto;
}

.prices_option {
    background: #FFFFFF;
    width: calc(50% - 10px);
    border-radius: 10px;
    padding: 30px 30px 30px 320px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.prices_option-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.prices_option-text {
    font-size: 14px;
    line-height: 140%;
}

.prices_option-img {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    display: flex;
}

.prices_options {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.steps {
    margin: 100px 0;
}

.steps_items {
    display: flex;
    margin-top: 60px;
    gap: 60px;
}

.steps_item {
    flex:1;
    max-width: calc(33.333% - 40px);
    position: relative;
}

.steps_item:last-child::after,
.steps_item:last-child::before {
    display: none;
}

.steps_item::before {
    position: absolute;
    content: "";
    border-bottom: 1.5px dashed #C3CAD4;
    width: 100%;
    top: 370px;
    left: calc(50% + 40px);
    z-index: -1;
}

.steps_item::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border: 3px solid #1C6739;
    background: #F7F7FA;
    top: 362px;
    left: calc(100% + 20px);
    border-radius: 50%;
}

.steps_item-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.steps_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps_item-number {
    background: #1C6739;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
    color: #fff;
}

.steps_item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    margin-bottom: 15px;
}

.steps_item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
}

.why {
    margin: 100px 0;
}

.why_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.why_item {
    width: calc(25% - 15px);
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
}

.why_item-icon {
    background: #1C6739;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why_item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.why_item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}

.reviews {
    margin: 100px 0;
}

.reviews_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.reviews_top h2 {
    margin-bottom: 0;
}

.reviews_icon {
    display: flex;
}

.reviews_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviews_frame {
    width: 578px;
    display: flex;
}

.reviews_frame iframe {
    width: 100%;
    height: auto;
    display: flex;
}

.reviews_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews_right {
    width: 902px;
}

.reviews_items {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.reviews_item {
    width: calc(50% - 10px);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
}

.reviews_items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews_video {
    overflow: hidden;
    display: flex;
    height: 452px;
    border-radius: 20px;
    position: relative;
}

.reviews_video::before {
    position: absolute;
    content: "";
    background-image: url(../img/play.svg);
    background-size: cover;
    width: 80px;
    height: 80px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.reviews_video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq {
    margin: 100px 0;
}

.faq .title {
    margin-bottom: 60px;
}

.faq_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.faq_items {
    width: 1010px;
}

.faq_item {
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq_item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    cursor: pointer;
    position: relative;
    padding: 30px 70px 30px 30px;
}

.faq_item-title span {
    position: absolute;
    right: 30px;
    width: 22px;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
}

.faq_item-title span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #10313C;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.faq_item-title span::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background: #10313C;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    transition: all 0.3s;
}

.faq_item-title.active span::after {
    transform: translate(50%, -50%) rotate(90deg);
}
.faq_item-text p{
        font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
.faq_item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    padding: 0 30px 30px;
    display: none;
}
.faq_item ul{
     font-weight: 400;
    font-size: 14px;
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0;
    line-height: 140%;
}
.certificates {
    margin: 100px 0;
}

.certificates .title {
    margin-bottom: 60px;
}

.certificates_slider {
    width: calc(100% + ((100vw - 1540px) / 2));
}
.numbers_slider  .slick-arrow,
.office_slider .slick-arrow,
.certificates_slider .slick-arrow{
    position: absolute;
    top: -80px;
    font-size:0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: none;
    border:1px solid #1C6739;
    cursor: pointer;
        background-repeat: no-repeat;
        transition: all 0.3s;
    background-position: center;
}
.numbers_slider  .slick-arrow:hover,
.office_slider .slick-arrow:hover,
.certificates_slider .slick-arrow:hover{
    background-color: #fff;
}
.numbers_slider  .slick-next,
.office_slider .slick-next,
.certificates_slider .slick-next{
   left: 1490px;
     background-image: url(../img/arrow_right.svg);
}
.numbers_slider  .slick-prev,
.office_slider .slick-prev,
.certificates_slider .slick-prev{
   left: 1420px;
    background-image: url(../img/arrow_left.svg);
}
.certificates_slide {
    width: 365px;
    height: 520px;
    display: flex;
    margin-right: 20px;
}

.certificates_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patners {
    margin: 100px 0;
}

.patners .title {
    margin-bottom: 60px;
}

.patners_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.patners_item {
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    height: 150px;
    width: calc(16.666% - 16.666px);
}

.patners_item img {
    max-width: 100%;
    max-height: 100%;
}

.blog {
    margin: 100px 0;
}

.blog_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.blog_top .title {
    margin-bottom: 0;
}

.blog_btn {
    width: 164px;
    height: 50px;
}

.blog_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog_item {
    width: calc(33.333% - 13.333px);
    background-color: #fff;
    padding: 20px;
}

.blog_item-img {
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.blog_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    display: block;
    margin-bottom: 15px;
    color: #263141;
}

.blog_item-text {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 140%;
}

.blog_item-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #1C6739;
    align-items: center;
    gap: 20px;
    display: flex;
    width: fit-content;
    border-bottom: 1.5px solid #1C6739;
    padding-bottom: 5px;
}

.footer {
    background: #191919;
    padding: 60px 0;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer_left {
    width: 424px;
}

.footer_logo {
    display: flex;
    margin-bottom: 40px;
}

.footer_number {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 20px;
    color: #FFFAEE;
    display: block;
}

.footer_option {
    color: #FFFAEE;
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_messages {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.footer_messag {
    display: flex;
}

.footer_item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    display: block;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.footer_menu li:last-child a {
    margin-bottom: 0;
}

.footer_menu a {
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
    transition: all 0.3s;
}

.footer a {
    transition: all 0.3s;
}

.footer a:hover {
    color: #31bc66;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #FFFFFF33;
    padding: 20px 0;
    gap: 30px;
}

.footer_inner-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    display: block;
    color: #fff;
}

.footer_inner-pays {
    display: flex;
    gap: 20px;
    align-items: center;
}

.popup_body {
    background: #FFFFFF;
    width: 510px;
    border-radius: 20px;
    padding: 40px;
}

.popup_body-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 40px;
}

.popup_body-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 40px;
    margin-top: -20px;
}

.popup_body-subtitle a {
    color: #1C6739;
    font-weight: 700;
    text-decoration: underline;
}

.popup_body .form_inp {
    border: 1px solid #C3CAD4;
        color: #263141;
}

.popup_body .form_inp::placeholder {
    color: #C3CAD4;
}

.popup_body-btn {
    height: 50px;
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 40px 0 20px;
}

.popup_body-btn:nth-last-child(2) {
    margin-bottom: 0;
}

.popup_body .form_ok {
    color: #474F5A;
}

.popup_body .form_ok a {
    color: #263141;
}

.popup_body .form_ok span {
    background: #1C6739;
}

.popup_body .form_ok input:checked+span {
    background-image: url(../img/check2.svg);
}

#popup_thanks {
    text-align: center;
}

.menu_burger {
    display: none;
}

.header_inner .menu {
    display: none;
}

.header_catalog-close {
    display: none;
}

.header_search-open {
    display: none;
}

.page {
    margin: 200px 0 100px;
}

.page h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    margin: 60px 0 30px;
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.crumb {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: #263141;
    display: flex;
    align-items: center;
    gap: 15px;
}

.crumb::after {
    position: relative;
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #263141;
}

.crumb:last-child {
    opacity: 0.5;
}

.crumb:last-child::after {
    display: none;
}

.category_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.category_top-btn {
    width: 370px;
    height: 50px;
    text-transform: none;
    font-size: 16px;
}

.category_fiters {
    display: flex;
    gap: 100px;
}
.ui-slider-horizontal .ui-slider-handle{
    top: 50% !important;
        transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(90deg, #1C6739 0%, #2D9455 50%, #1C6739 100%) !important;
    border: 1px solid #fff !important;
    cursor: pointer !important;
}
.select_wrapper {
    position: relative;
    background: #FFFFFF;
     padding: 14px 35px 14px 20px;
     display: flex;
     gap:10px;
     align-items: center;
     cursor: pointer;
     font-size: 14px;
    border-radius: 15px;
    width: 114px;
}
.select_wrapper::before {
    position: absolute;
    content: "";
    background-image: url(../img/select_arrow.svg);
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 8px;
    right: 14px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 14px 55px 14px 25px;
    cursor: pointer;
    border: none;
}

.category_fiter {
    display: flex;
    align-items: center;
    gap: 30px;
}

.category_fiter-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
}

.category_wrapper {
    justify-content: space-between;
    display: flex;
}

.category_left {
    width: 370px;
}

.category_content {
    width: calc(100% - 390px);
}

.category_aside {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
}

.category_aside-item {
    padding: 25px 0;
    border-top: 1px solid #EAEEF3;
}

.category_aside-item:last-child {
    padding-bottom: 0;
}

.category_aside-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 25px;
}

.category_aside-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
}

.category_aside-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    gap: 10px;
    color:#000;
}

.category_aside-check input {
    display: none;
}

.category_aside-check input:checked+span {
    background: #1C6739;
    border: 1.5px solid #1C6739;
    background-image: url(../img/check2.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.category_aside-check span {
    display: block;
    border: 1.5px solid #C3CAD4;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
}

.category_aside-check:last-child {
    margin-bottom: 0;
}

.category_item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    justify-content: space-between;
    margin-bottom: 20px;
    display: flex;
    position: relative;
}

.category_item-teg {
    position: absolute;
    background: #F8981D;
    border-radius: 10px;
    top: 35px;
    left: 35px;
    width: fit-content;
    padding: 11px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #fff;
}

.category_item-img {
    width: 320px;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #F7F7FA;
    align-items: center;
}

.category_item-img img {
    max-width: 100%;
    max-height: 100%;
}

.category_item:last-child {
    margin-bottom: 0;
}

.category_item-info {
    width: 740px;
}

.category_item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #EAEEF3;
    margin-bottom: 30px;
}

.category_item-title {
    font-weight: 600;
    font-size: 20px;
    color:#000;
    line-height: 130%;
}

.category_item-top_options {
    display: flex;
    gap: 30px;
}
button.category_item-top_option {
    cursor: pointer;
}
.category_item-top_option {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    padding: 0;
    border:none;
    
    background: none;
}

.category_item-inner {
    display: flex;
    justify-content: space-between;
}

.category_item-options {
    width: 305px;
}

.category_item-right {
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category_item-option {
    font-size: 14px;
    line-height: 130%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #263141;
    margin-bottom: 20px;
}

.category_item-more {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 130%;
    color: #1C6739;
    cursor: pointer;
}
.category_item-more.active svg{
            transform: rotate(180deg);
}

.category_item-options:not(:has(.category_item-option:nth-child(n+5))) .category_item-more{
    display: none;
}
.category_item-values {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

.category_item-value {
    background: #EAEEF3;
    border-radius: 10px;
    padding: 5px 11px;
    font-size: 13px;
    line-height: 130%;
    color: #1C6739;
}

.category_item-totals {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.category_item-total {
    width: calc(50% - 15px);
}

.category_item-btn {
    width: 100%;
    height: 40px;
    border:none ;
    cursor: pointer;
}

.category_item-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category_item-price {
    margin-bottom: 15px;
}

.category_item-price .old {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-decoration: line-through;
    color: #7E8794;
    margin-bottom: 5px;
}

.category_item-price .new {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}

.more {
    position: relative;
}

.more:hover .more_tooltip {
    opacity: 1;
    visibility: visible;
}

.more_tooltip {
    background: #191919;
    border-radius: 5px;
    padding: 20px;
    width: 320px;
    bottom: calc(100% + 13px);
    right: 50%;
    color: #fff;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    position: absolute;
}

.more_tooltip::before {
    position: absolute;
    content: "";
    background-image: url(../img/tooltp_bef.svg);
    background-size: cover;
    width: 15px;
    height: 12px;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
}

.more_tooltip-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 15px;
}
.prices_option ul,
.maintenance_item ul,
.more_tooltip-list {
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFFCC;
}
.prices_option li,
.maintenance_item li,
.more_tooltip-list li {
    margin-bottom: 10px;
}

.more_tooltip-list li:last-child {
    margin-bottom: 0;
}

.pagin {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    gap: 20px;
}

.pagin a {
    background: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #7E8794;
    align-items: center;
}

.pagin a.active {
    background: #1C6739;
    color: #fff;
}

.category_parents {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category_parent {
    width: calc(50% - 5px);
    background: #FFFFFF;
    border-radius: 10px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.category_parent img {
    max-width: 100%;
    max-height: 100%;
}

.info_block {
    margin: 100px 0;
}

.info_block-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
    align-items: center;
}

.info_block-img,
.info_block-video {
    width: calc(50% - 30px);
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.info_block-video::before {
    position: absolute;
    content: "";
    background-image: url(../img/play.svg);
    background-size: cover;
    width: 80px;
    height: 80px;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

.info_block-img img,
.info_block-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info_block-right {
    width: calc(50% - 30px);
}

.info_block-subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
    color: #1C6739;
}

.info_block-wrapper .title {
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 0;
}

.info_block-wrapper p {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 140%;
}

.info_block-wrapper p:last-child {
    margin-bottom: 0;
}

.numbers_slider {
    width: calc(100% + ((100vw - 1540px) / 2));
    margin-bottom: 30px;
}

.numbers_slider:last-child {
    margin-bottom: 0;
}

.numbers_slider .slick-track {
    display: flex;
}

.numbers_slide {
    background: #FFFFFF;
    width: 370px;
    padding: 30px;
    border-radius: 10px;
    height: inherit;
    margin-right: 20px;
}

.numbers_slide-step {
    background: #1C6739;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 36px;
    line-height: 130%;
    color: #fff;
    margin-bottom: 30px;
}

.numbers_slide-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 15px;
}

.numbers_slide-text {
    font-size: 14px;
    line-height: 140%;
}

.varieties_top {
    margin: 30px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.varieties_tabs {
    display: flex;
    gap: 20px;
}

.varieties_tab {
    border: 1px solid #A1ABB9;
    background: #F7F7FA;
    border-radius: 100px;
    padding: 16px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    cursor: pointer;
}

.varieties_tab.active {
    background: #1C6739;
    color: #fff;
}

.varieties_text {
    font-size: 20px;
    line-height: 140%;
}

.varieties_text span {
    font-weight: 600;
}

.varieties_wrapper {
    display: flex;
    justify-content: space-between;

}

.varieties_info {
    background: #1C6739;
    width: 370px;
    padding: 25px;
    color: #FFFFFF;
    min-width: 370px;
    margin-right: 20px;
    border-radius: 10px;
}

.varieties_slider {
    width: 1540px;
}

.varieties_slider .ways_item {
    width: 370px;
    margin: 0 20px 0 0;
}

.varieties_info-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 20px;
}

.varieties_info-text {
    line-height: 140%;
    margin-bottom: 32px;
}

.varieties_info-subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 20px;
}

.varieties_info-options {
    margin-bottom: 34px;
}

.varieties_info-option {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 130%;
}

.varieties_info-option:last-child {
    margin-bottom: 0;
}

.varieties_info-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #FFFFFFCC;
}

.varieties_info-desc span {
    font-weight: 600;
    color: #fff;
}

.sales_btn {
    width: 540px;
    height: 40px;
    margin: 30px auto 0;
}

.category_mobile-filter {
    display: none;
}

.category_aside-close {
    display: none;
}

.card_wrapper {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

.card_left {
    width: calc(50% - 20px);
    display: flex;
    justify-content: space-between;
}

.card_dots {
    height: 600px;
    width: 150px;
}

.card_dot {
    height: 120px !important;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #F7F7FA;
    cursor: pointer;
}

.card_dot img {
    max-width: 100%;
    max-height: 100%;
}

.card_imgs {
    width: 555px;
    border-radius: 10px;
    overflow: hidden;
    background: #F7F7FA;
}

.card_img {
    height: 600px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.card_img img {
    max-width: 100%;
    max-height: 100%;
}

.card_right {
    width: calc(50% - 20px);
}

.card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EAEEF3;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.card_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-bottom: 30px;
}
.card_items .category_item-option,
.card_item {
    width: calc(50% - 15px);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.card_item a {
    color: #1C6739;
    font-weight: 600;
    text-decoration: underline;
    display: contents;
    border-bottom: 1px solid;
}

.card_item .more_tooltip {
    bottom: auto;
    right: -60px;
    transform: none;
    top: calc(100% + 15px);
}

.card_item .more_tooltip::before {
    transform: rotate(180deg);
    bottom: auto;
    top: -12px;
    right: 60px;
}

.card_options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.card_option {
    border: 1px solid #A1ABB9;
    border-radius: 10px;
    padding: 11px 25px;
    font-size: 14px;
    line-height: 130%;
}

.card_wrapper .category_item-total {
    background: #F7F7FA;
    border-radius: 10px;
    padding: 20px;
}

.card_wrapper .category_item-total .category_item-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card_wrapper .category_item-total .category_item-price .old {
    margin-bottom: 0;
}

.card_tabs-wrapper {
    margin: 60px 0;
}

.card_tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.card_tab {
    border: 1px solid #A1ABB9;
    background: #F7F7FA;
    border-radius: 100px;
    padding: 16px 25px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    cursor: pointer;
}

.card_tab.active {
    background: #1C6739;
    color: #fff;
}

.card_content p:not(:last-child) {
    margin-bottom: 20px;
}

.card_content {
    display: none;
}

.card_content.active {
    display: block;
}

.card_content-items {
    display: flex;
    gap: 60px;
    flex-wrap:wrap;
}

.card_content-item {
    width: calc(33.333% - 40px);
}

.card_content-subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 30px;
}

.card_tabs-option {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 15px;
    color: #474F5A;
}

.card_tabs-option span {
    order: 1;
}

.card_tabs-option::after {
    position: relative;
    flex: auto;
    content: "";
    margin: 0 5px;
    border-bottom: 1px dashed #C3CAD4;
}

.card_complect {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap:20px;
}

.card_complect-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}

.card_complect-item {
    background: #EAEEF3;
    border-radius: 100px;
    padding: 8px 15px;
    margin-top: 5px;
    font-size: 14px;
    line-height: 130%;
    color: #1C6739;
    width: fit-content;
}

.card_form {
    background: #1C6739;
    border-radius: 20px;
    padding: 40px;
}

.card_form-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
    color: #fff;
}

.card_form-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 30px;
    color: #fff;
}

.card_form-text a {
    font-weight: 700;
    color: #fff;
}

.card_form-inps {
    gap: 20px;
    align-items: center;
    display: flex;
}

.card_form-inps .form_inp {
    width: 360px;
    margin: 0;
}

.card_form-inps .form_ok {
    width: 284px;
}

.card_form-btn {
    background: #FFFFFF;
    width: 360px;
    height: 60px;
    color: #1C6739;
    border: none;
    cursor: pointer;
}

.card_form-btn:hover {
    color: #fff;
    border: 1px solid;
}

.card_title-mobile {
    display: none;
}

.card_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
}

.main_service .main_info {
    width: 840px;
}

.main_service .main_options,
.main_service .main_items {
    width: 620px;
}

.main_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.main_row .main_items {
    margin-bottom: 0;
}

.main_calc {
    background: #1C6739;
    width: 200px;
    border-radius: 20px;
    padding: 30px;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    text-decoration: underline;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: center;
    justify-content: center;
}

.main_inner {
    margin-bottom: 80px;
}

.main_inner:last-child {
    margin-bottom: 0;
}

.chose {
    margin: 100px 0;
}

.chose_subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
    color: #1C6739;
}

.chose_items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 20px;
}

.chose_item {
    width: calc(33.333% - 13.333px);
    background: #FFFFFF;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 30px 30px 308px;
}

.chose_item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 30px;
}

.chose_options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.chose_item-img {
    position: absolute;
    display: flex;
    bottom: 0;
    width: 100%;
    right: 0;
}

.chose_item-img img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}

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

.chose_option-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #1C6739;
}

.chose_option-text {
    font-size: 14px;
    line-height: 140%;
}

.discounts p+.discounts_items {
    margin-top: 60px;
}

.how {
    margin: 100px 0;
}

.how .numbers_slider {
    margin-top: 120px;
}

.how_desc {
    background: #1C6739;
    border-radius: 10px;
    padding: 15px 20px;
    color: #FFFFFFCC;
    font-size: 20px;
    line-height: 140%;
}

.how_desc span {
    font-weight: 600;
    color: #fff;
}

.how_desc a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.four_items .steps_item {
    width: calc(25% - 45px);
}

.about_wrapper {
    position: relative;
    padding: 80px 0 160px;
}

.about_item {
    position: absolute;
    max-width: 280px;
}

.about_item:nth-child(1) {
    top: 320px;
    left: 157px;

}

.about_item:nth-child(2) {
    top: 220px;
    left: 508px;
}

.about_item:nth-child(3) {
    top: 0;
    left: 770px;
}

.about_item-option {
    position: absolute;
    padding: 33px;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
    left: 40px;
    bottom: -80px;
    line-height: 130%;
}

.about_item-option:nth-child(4) {
    left: -260px;
    bottom: -60px;
}

.about_item-option::before {
    position: absolute;
    content: "";
    background-image: url(../img/option_bef.svg);
    background-size: cover;
    width: 18px;
    height: 21px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about_item-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #1C6739;
}

.about_item-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
}

.about_inner {
    display: flex;
    justify-content: space-between;
}

.about_inner-text {
    margin-top: 144px;
    width: 864px;
    font-size: 16px;
    line-height: 140%;
}
.about_inner-text p{
        font-size: 16px;
    line-height: 140%;
}
.about_person {
    width: 640px;
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
}

.about_person::before {
    position: absolute;
    content: "";
    background-image: url(../img/quote.svg);
    background-size: cover;
    width: 45px;
    height: 45px;
    bottom: 45px;
    right: 40px;
}

.about_person-text {
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 40px;
}

.about_person-subtitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
    color: #1C6739;
}

.about_person-title {
    font-weight: 600;
    font-size: 24px;
}

.about_person-img {
    position: absolute;
    display: block;
    top: -420px;
    z-index: -1;
    right: 40px;
}

.about_catalog .catalog_item:nth-child(1),
.about_catalog .catalog_item:nth-child(2) {
    width: calc(33.333% - 13.333px);
}

.about_catalog .catalog_items {
    margin-top: 60px;
}

.office {
    margin: 100px 0;
}

.office .title {
    margin-bottom: 60px;
}

.project_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.project_top .title {
    margin-bottom: 0;
}

.project_value {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color: #1C6739;
}

.office_slider {
    width: calc(100% + ((100vw - 1540px) / 2));
}

.office_slide {
    width: 500px;
    height: 452px;
    display: flex;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 20px;
}

.office_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.disabled_fieldsets{
    padding: 0;
    position: relative;
    border:none;
}
.disabled_fieldsets .select_wrapper:nth-last-child(2){
    display: none;
}
.category_fiter:has(.select_wrapper.active ) .category_slider-wrapper{
    opacity: 1;
    visibility: visible;
}
.category_slider-wrapper{
      position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    margin: 0;
    height: auto;
    z-index: 2;
        border-radius: 10px;
          padding: 20px;
    background: #fff;  
        z-index: 2;
        border-radius: 10px;
    background: #fff;
       width: 100%;
       opacity: 0;
       visibility: hidden;
       transition:0.3s;
}
#mse2_filters .mse2_number_slider{
    margin: 0 !important;
    height: auto;
}

.disabled_fieldsets input{
    padding: 0;
   width: 100%;
   height: auto;
    border: none;
}
.ui-widget-content .ui-state-default:nth-last-child(2){
    display: none;
}
#mse2_filters  .ui-slider-horizontal .ui-slider-range{
    height: 4px;
    position: relative;
    background: linear-gradient(90deg, #1C6739 0%, #2D9455 50%, #1C6739 100%);
}
.maintenance {
    margin: 100px 0;
}

.maintenance_subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 15px;
    color: #1C6739;
}

.maintenance_text {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 60px;
    color: #263141;
}

.maintenance_items {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.maintenance_item {
    width: calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
}

.maintenance_item:nth-child(2n) .maintenance_item-img {
   order:-1;
}

.maintenance_item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 20px;
}

.maintenance_item-text {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 30px;
}

.maintenance_item-text:last-child {
    margin-bottom: 0;
}

.maintenance_item-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;

    display: flex;
}

.maintenance_item:nth-child(2n) .maintenance_item-img {
    margin-bottom: 30px;
}

.maintenance_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mse2-row{
    margin-bottom: 16px;
}
.mse2-row p{
    margin-top: 10px;
        font-size: 16px;
}
.mse2-row .search-link{
    color:#000;
    font-size: 20px;
}


.pagination{
    gap:10px;
    display: flex;
}
.pagination a{
    color:#000;
}
.checkout_right-inner{
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.cart_right-total{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 22px;
}
.checkout_right-btn{
    width: 230px;
    height: 50px;
    margin-top: 20px;
}
.cart_wrapper{
    display: flex;
    justify-content: space-between;
}

#msOrder{
    margin: 0 !important;
        background: #1C6739;
    border-radius: 20px;
    padding: 40px;
    width: 510px;
    color: #FFFFFF;
}

.varieties_content{
    display: none;
}
.varieties_content.active{
    display: block;
}
.category_item .category_item-option:nth-child(n+5){
    display: none;
}
.category_item-option.active{
    display: flex !important;
}
.disabled_fieldsets{
    display: none;
}
.disabled_fieldsets:has(#mse2_msoptionperformance.category_fiter){
      display: block;
}
.disabled_fieldsets:has(#mse2_msoptionpeople.category_fiter){
    display: block;
}
.compare_item .ways_item-option{
    width: 100%;
}

.main_service + .steps{
    margin-top: 20px;
}

.header.fixed{
    position: fixed;
         animation: headerAnim 0.3s;
}
.header.fixed .header_top{
    display: none;
}
    @keyframes headerAnim {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translate(0);
        }
    }
.header_catalog-item:last-child .header_catalog-list{
    columns: 2;
}

.category_aside-checks fieldset{
    padding: 0;
    border: none;
}






@media(max-width:1600px) {
    .container {
        max-width: 1180px;
    }

    .header_catalog-dropdown {
        width: 1010px;
        flex-wrap: wrap;
        overflow: hidden;
    }

    .menu {
        gap: 20px;
    }

    .header_adres {
        width: 240px;
    }

    .header_search {
        width: 400px;
    }

    .main_img {
        width: 1100px;
    }

    .main {
        margin-top: 192px;
    }

    .catalog_item {
        height: 240px;
    }

    .catalog_item-img {
        height: 80%;
    }

    .catalog_item-img img {
        height: 100%;
        width: auto;
    }

    .catalog_inner-img {
        width: 600px;
    }

    .catalog_inner-img img {
        width: 100%;
        object-fit: cover;
        object-position: left;
    }

    .ways_item {
        width: calc(33.333% - 13.333px);
    }

    .ways_tab {
        text-align: center;
    }

    .order_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .order_left {
        width: 100%;
        background: #FFFFFF;
        border-radius: 20px;
    }

    .order_wrapper {
        background: none;
    }

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

    .project_item-img {
        height: 240px;
    }

    .project_item-bot {
        flex-direction: column;
        gap: 20px;
    }

    .project_item-btn {
        width: 100%;
    }

    .prices_item {
        width: calc(33.33% - 13.333px);
    }

    .prices_option-img {
        width: 200px;
    }

    .prices_option-img img {
        width: 100%;
        height: auto;
    }

    .prices_option {
        padding: 30px 30px 30px 212px;
    }

    .reviews_frame {
        width: 420px;
    }

    .reviews_right {
        width: 710px;
    }

    .faq_items {
        width: 670px;
    }

    .order_right {
        width: 460px;
    }

  .order  .order_right{
        width: 100%;
    }
    .certificates_slider {
        width: calc(100% + ((100vw - 1130px) / 2));
    }

    .patners_item {
        padding: 20px;
    }

    .blog_item-img {
        height: 240px;
    }

    .header_catalog-items {
        width: 860px;
    }

    .header_catalog-items {
        width: 690px;
    }

    .header_catalog-sales {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .header_catalog-sales .main_item {
        width: calc(25% - 15px);
    }

    .header_catalog-subtitle {
        width: 100%;
        margin-bottom: 0;
    }

    .page {
        margin-top: 230px;
    }

    .category_fiters {
        gap: 40px;
    }

    .category_item {
        flex-direction: column;
        gap: 20px;
    }

    .category_item-info {
        width: 100%;
    }

    .info_block p {
        font-size: 16px;
    }

    .numbers_slider {
        width: calc(100% + ((100vw - 1150px) / 2));
    }

    .varieties_top {
        flex-wrap: wrap;
        gap: 20px;
    }

    .card_left {
        flex-direction: column-reverse;
    }

    .card_imgs {
        margin-bottom: 10px;
    }

    .card_dots {
        height: auto;
        width: calc(100% + 15px);
    }

    .card_dot {
        height: 90px !important;
        margin-right: 10px;
        margin-bottom: 0;
    }

    .card_imgs {
        width: 100%;
    }

    .card_left {
        justify-content: flex-start;
        width: 420px;
    }

    .card_right {
        width: calc(100% - 440px);
    }

    .card_img {
        height: 500px;
    }

    .card_wrapper .category_item-total .category_item-price {
        flex-wrap: wrap;
    }

    .card_wrapper .category_item-top_options {
        gap: 20px;
        flex-wrap: wrap;
    }

    .card_complect {
        flex-wrap: wrap;
    }

    .four_items.steps_items {
        flex-wrap: wrap;
    }

    .four_items .steps_item {
        width: calc(33.333% - 40px);
    }

    .four_items .steps_item:nth-child(3)::before,
    .four_items .steps_item:nth-child(3)::after {
        display: none;
    }

    .about_person {
        width: 480px;
    }

    .about_inner-text {
        width: 620px;
    }

    .about_person-img {
        width: 420px;
    }

    .about_person-img img {
        width: 100%;
    }

    .about_item:nth-child(1) {
        left: 60px;
    }

    .about_item:nth-child(2) {
        left: 340px;
    }

    .about_item:nth-child(3) {
        left: 546px;
    }

    .office_slider {
        width: calc(100% + ((100vw - 1150px) / 2));
    }
    .checkout_right-inner {
        width: 610px;
    }
          .numbers_slider  .slick-next,
      .office_slider .slick-next,
    .certificates_slider .slick-next{
        left: 1100px;
    }
       .numbers_slider  .slick-prev,
     .office_slider .slick-prev,
    .certificates_slider .slick-prev {
    left: 1030px;
    }
        .category_item-img {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 950px;
    }

    .header_time,
    .header_adres {
        display: none;
    }

    .header_link {
        width: 40px;
        height: 40px;
    }

    .header_number {
        font-size: 18px;
    }

    .header_search {
        width: 260px;
    }

    .header_catalog-dropdown {
        width: 920px;
        left: -134px;
    }

    .header_catalog-items {
        width: 600px;
    }

    .header_catalog-item:nth-child(8) .header_catalog-list {
        flex-wrap: wrap;
    }

    .header_catalog-sales .main_item {
        width: calc(50% - 10px);
        margin-bottom: 0;
    }

    .main {
        margin-top: 177px;
        padding-bottom: 0;
    }

    .main_img {
        width: 1000px;
        right: -200px;
    }

    .main_img img {
        width: 100%;
        height: auto;
    }

    .main_info {
        width: 540px;
    }

    .header_link span {
        top: -4px;
        right: -4px;
    }

    .catalog_inner-img {
        width: 540px;
    }

    .catalog_item-btn {
        padding: 14px;
    }

    .ways_tabs {
        flex-wrap: wrap;
    }

    .ways_item-option {
        width: 100%;
    }

    .ways_item-img {
        height: 240px;
    }

    .order_desc {
        max-width: 500px;
    }

    .order_checks-wrapper:nth-child(4) .order_check {
        white-space: normal;
        width: calc(50% - 10px);
    }

    .installation_item {
        height: 270px;
    }

    .project_item-img {
        height: 210px;
    }

    .prices_item-img {
        width: 140px;
    }

    .prices_option {
        width: 100%;
    }

    .steps_item-img {
        width: 240px;
        height: 240px;
    }

    .prices_item-img img {
        width: 100%;
        object-fit: cover;
        object-position: left;
    }

    .steps_item::after {
        left: calc(100% + 20px);
    }

    .steps_item::before {
        top: 308px;
    }

    .steps_item::after {
        top: 301px;
    }

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

    .reviews_frame {
        width: 340px;
    }

    .reviews_right {
        width: 560px;
    }

    .faq_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .faq_items {
        width: 100%;
    }

    .certificates_slider {
        width: calc(100% + ((100vw - 920px) / 2));
    }

    .patners_item {
        width: calc(25% - 15px);
    }

    .blog_item-img {
        height: 170px;
    }

    .blog_item-title {
        padding-right: 20px;
        font-size: 20px;
    }

    .footer_left {
        width: 270px;
    }

    .footer_inner-pay {
        display: flex;
    }

    .footer_inner-item {
        font-size: 14px;
    }

    .category_top-btn {
        text-align: center;
        width: 280px;
        padding: 10px;
        height: auto;
    }

    .category_left {
        width: 280px;
    }

    .category_content {
        width: calc(100% - 300px);
    }

    .category_fiters {
        gap: 40px;
    }

    .select_wrapper,
    .select {
        width: 100%;
    }

    .category_item-options {
        width: 240px;
    }

    .category_fiter {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
    }

    .category_item-right {
        width: 310px;
    }

    .pagin {
        gap: 10px;
    }

    .info_block-right {
        width: calc(50% - 15px);
    }

    .info_block-img,
    .info_block-video {
        width: calc(50% - 15px);
        height: 400px;
    }

    .numbers_slider {
        width: calc(100% + ((100vw - 920px) / 2));
    }



    .card_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .card_dot {
        height: 120px !important;
    }

    .card_right {
        width: 100%;
    }

    .card_title {
        display: none;
    }

    .card_left {
        width: 100%;
    }

    .card_title-mobile {
        display: block;
        font-weight: 600;
        font-size: 24px;
        line-height: 130%;
        margin-bottom: 20px;
    }

    .card_content-items {
        gap: 20px;
    }

    .card_content-item {
        width: calc(50% - 10px);
    }

    .card_form-inps {
        flex-wrap: wrap;
    }

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

    .about_inner-text {
        width: 500px;
    }

    .about_person {
        width: 400px;
    }

    .about_person-text {
        font-size: 16px;
    }

    .about_person-img {
        width: 320px;
        top: -260px;
    }

    .about_wrapper {
        padding-bottom: 240px;
    }

    .catalog_item-title {
        font-size: 20px;
    }

    .project_top .title {
        width: calc(100% - 260px);
    }

    .office_slider {
        width: calc(100% + ((100vw - 920px) / 2));
    }
    .cart_wrapper{
        flex-direction:column;
        gap:30px;
    }
    #msOrder,
    .checkout_right-inner{
        width: 100%;
    }
       .numbers_slider .slick-next,
          .office_slider .slick-next,
       .certificates_slider .slick-next{
        left: 850px;
    }
     .numbers_slider .slick-prev,
        .office_slider .slick-prev,
    .certificates_slider .slick-prev {
    left: 780px;
    }
    .order_right{
        width: 100%;
    }
    .maintenance_item{
        width:calc(50% - 30px);
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 730px;
    }

    .header {
        position: fixed;
    }

    .header_wrapper {
        padding: 14px 0;
    }
.header_order-link,
    .header_top {
        display: none;
    }
.header_link:nth-child(1),
.header_link:nth-child(2){
    display: none;
}
.header_number{
    font-size:0px;
    width: 40px;
    height: 40px;
    background-image: url(../img/phone.svg);
    background-size: 30px;
        background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}

    .header_inner {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 1;
        top: 96px;
        overflow: auto;
        padding-bottom: 120px;
        padding-top: 40px;
        right: 0;
    }

    .header_inner.active {
        opacity: 1;
        visibility: visible;
    }

    .menu_burger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #1C6739;
        top: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #1C6739;
        bottom: 0;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #1C6739;
        top: 9px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active span {
        transform: scale(0);
    }

    .header_search {
        width: 300px;
    }

    .main {
        margin-top: 96px;
    }

    .main_img {
        display: none;
    }

    .main_info {
        width: 100%;
    }

    .main_inner {
        flex-wrap: wrap;
    }

    .catalog_inner-items {
        flex-direction: column;
    }

    .catalog_inner-img {
        top: 0;
        bottom: auto;
        width: 420px;
        height: 70%;
    }

    .catalog_item {
        flex: auto;
        width: calc(50% - 10px);
    }

    .catalog_item-img {
        height: 70%;
    }

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

    .order_checks-wrapper {
        width: calc(50% - 10px);
    }

    .order_checks-wrapper:nth-child(4) {
        width: 100%;
        order: 1;
    }

    .order_bot {
        margin-top: 30px;
        flex-direction: column;
        gap: 20px;
    }

    .order_desc {
        max-width: 100%;
    }

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

    .discounts_item {
        width: 100%;
    }

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

    .project_tabs {
        flex-wrap: wrap;
    }

    .steps_items {
        flex-wrap: wrap;
        gap: 40px 20px;
    }

    .steps_item::after,
    .steps_item::before {
        display: none;
    }

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

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

    .reviews_wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .reviews_right {
        width: 100%;
    }

    .reviews_frame {
        width: 440px;
        margin: 0 auto;
    }

    .certificates_slider {
        width: calc(100% + ((100vw - 700px) / 2));
    }

    .patners_item {
        width: calc(33.333% - 13.333px);
    }

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

    .footer_left {
        width: 100%;
    }

    .footer_wrapper {
        gap: 40px 20px;
        flex-wrap: wrap;
    }

    .header_cart {
        top: 96px;
    }

    .header_inner .menu {
        display: block;
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .menu a {
        font-size: 18px;
    }

    .menu li {
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .header_catalog-wrapper {
        max-width: 700px;
        margin: 0 auto;
    }

    .menu_dropdown {
        position: relative;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        transition: none;
        display: none;
        padding: 10px 0 0 20px;
    }

    .header_catalog-dropdown {
        top: 0;
        position: fixed;
        width: 100%;
        left: 0;
        overflow: auto;
        height: 100%;
        z-index: 14;
    }

    .header_catalog-column {
        width: 100%;
    }

    .header_catalog-dropdown {
        gap: 20px;
    }

    .header_catalog-items,
    .header_catalog-partners {
        width: 100%;
    }

    .header_catalog-partner {
        width: calc(33.333% - 6.666px);
    }

    .header_catalog-close {
        display: flex;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .page {
        margin-top: 130px;
    }

    .category_top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .category_fiters {
        width: 100%;
    }

    .category_fiter {
        width: calc(50% - 20px);
    }

    .category_top-btn {
        width: 100%;
    }

    .category_parents {
        display: none;
    }

    .category_aside {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 11;
        overflow: auto;
    }

    .category_aside.active {
        opacity: 1;
        visibility: visible;
    }

    .category_aside-close {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .category_left {
        width: 0;
    }

    .category_content {
        width: 100%;
    }

    .category_item-options {
        width: 290px;
    }

    .info_block-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .info_block-right {
        width: 100%;
    }

    .info_block-img,
    .info_block-video {
        width: 100%;
    }

    .numbers_slider {
        width: calc(100% + ((100vw - 700px) / 2));
    }

    .varieties_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .varieties_info {
        width: 100%;
        margin: 0;
    }

    .category_mobile-filter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 20px;
        font-weight: 600;
        font-size: 20px;
        background: #FFFFFF;
        border-radius: 10px;
    }

    .category_mobile-filter span {
        background: #1C6739;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card_tabs {
        flex-wrap: wrap;
    }

    .card_content-item {
        width: calc(50% - 10px);
    }

    .card_content-items {
        flex-wrap: wrap;
    }

    .main_row {
        flex-direction: column;
        gap: 20px;
    }

    .main_service .main_options,
    .main_service .main_items {
        width: 100%;
    }

    .main_service .main_info {
        width: 100%;
    }

    .main_calc {
        width: 100%;
    }

    .four_items .steps_item {
        width: calc(50% - 10px);
            max-width:calc(50% - 10px);
    }

    .about_wrapper {
        padding: 60px 0 100px;
    }

    .about_items {
        display: flex;
        flex-wrap: wrap;
        width: 280px;
        gap: 20px;
    }
    
    .about_item {
        position: relative;
        inset: auto !important;
        width: 100%;
    }

    .about_item-option {
        position: relative;
        inset: auto !important;
        padding: 0 0 0 33px;
        margin-top: 10px;
    }

    .about_person {
        margin-left: auto;
    }

    .about_inner {
            margin-top: -392px;
        flex-direction: column-reverse;
    }
    .about_item-option {
        white-space: normal;

    }
    .about_inner-text {
        margin-top: 30px;
        width: 100%;
    }

    .office_slider {
        width: calc(100% + ((100vw - 700px) / 2));
    }

    .office_slide {
        width: 400px;
        height: 352px;
    }
    .numbers_slider .slick-arrow,
       .office_slider .slick-arrow,
           .certificates_slider .slick-arrow{
               display: none !important;
           }
           .how .numbers_slider{
               margin-top: 60px;
           }
           .header.fixed{
               -webkit-animation: none;
               -o-animation: none;
               animation: none;
           }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .main h1 {
        font-size: 32px;
    }

    .main_item {
        width: 100%;
    }

    .main_items {
        gap: 10px;
    }

    .main_subtitle {
        font-size: 18px;
    }

    .header_logo {
        width: 80px;
    }

    .header_logo img {
        width: 100%;
        height: auto;
    }

    .header_search {
        width: 100%;
        position: fixed;
        top: 75px;
        left: 0;
        background-color: #fff;
        padding: 10px;
        height: 70px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .header_search.active {
        opacity: 1;
        visibility: visible;
    }

    .header_search-inp {
        font-size: 14px;
        padding-left: 20px;
        background: #F7F7FA;
    }

    .header_link {
        width: 32px;
        height: 32px;
    }

    .main {
        margin-top: 75px;
    }

    .main_option {
        width: 100%;
    }

    .main_inner {
        gap: 10px;
    }

    .main_inner-item {
        padding: 12px;
    }

    .catalog {
        margin: 20px 0 60px;
    }

    .header_links {
        margin-left: 10px;
        margin-right: 20px;
    }
    .header_order{
        margin-left: auto;
    }
    .header_search-open {
        display: flex;
        width: 32px;
        height: 32px;
        justify-content: center;
        align-items: center;
    }

    .header_search-open img {
        width: 28px;
        height: auto;
    }

    .title {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .catalog_inner-img {
        display: none;
    }

    .catalog_inner {
        padding: 30px 20px;
    }

    .catalog_inner-items {
        width: 100%;
        gap: 10px;
    }

    .catalog_items {
        gap: 10px;
    }

    .catalog_item:nth-child(1),
    .catalog_item:nth-child(2) {
        width: 100%;
    }

    .catalog_item {
        width: 100%;
        padding: 20px 14px;
        height: 220px;
    }

    .catalog_inner-item {
        width: 100%;
    }

    .catalog_item-btn {
        width: 100%;
    }

    .ways {
        margin: 60px 0;
    }

    .card_tabs,
    .varieties_tabs,
    .project_tabs,
    .ways_tabs {
        flex-wrap: nowrap;
        gap: 10px;
        overflow: auto;
        width: calc(100% + 15px);
        padding-right: 15px;
        margin-bottom: 20px;
    }

    .card_tabs::-webkit-scrollbar,
    .varieties_tabs::-webkit-scrollbar,
    .project_tabs::-webkit-scrollbar,
    .ways_tabs::-webkit-scrollbar {
        display: none;
    }

    .card_tab,
    .varieties_tab,
    .project_tab,
    .ways_tab {
        white-space: nowrap;
    }

    .varieties_top {
        display: block;
        margin-bottom: 30px;
    }

    .ways_items {
        gap: 10px;
    }

    .ways_item {
        width: 100%;
        padding: 20px 14px;
    }

    .order {
        margin: 60px 0;
    }

    .order_left {
        padding: 30px 20px;
    }

    .order_title {
        font-size: 26px;
    }

    .order_text {
        margin-bottom: 30px;
    }

    .order_checks-wrapper {
        width: 100%;
    }

    .order_checks-wrapper:nth-child(4) .order_check {
        width: 100%;
    }

    .order_right {
        width: 100%;
        padding: 30px 20px;
    }

    .prices,
    .project,
    .discounts,
    .sales,
    .installation {
        margin: 60px 0;
    }

    .installation_items {
        margin: 30px 0;
    }

    .installation_item {
        width: 100%;
        padding: 20px;
        height: 240px;
    }

    .installation_items {
        gap: 10px;
    }

    .ways_items {
        margin-top: 30px;
    }

    .discounts_items {
        gap: 10px;
    }

    .discounts_item {
        padding: 20px 10px 230px;
    }

    .project_content {
        margin-top: 30px;
    }

    .project_items {
        gap: 10px;
    }

    .project_item-title {
        font-size: 20px;
    }

    .project_item {
        width: 100%;
    }

    .project_btn {
        width: 100%;
        text-align: center;
        height: auto;
        padding: 10px;
    }

    .prices_items {
        gap: 10px;
        margin-bottom: 20px;
    }

    .prices_item {
        width: 100%;
    }

    .prices_options {
        margin-top: 30px;
    }

    .reviews,
    .why,
    .steps {
        margin: 60px 0;
    }

    .prices_option {
        padding: 20px 20px 160px;
    }

    .steps_item {
        width: 100%;
    }

    .why_items {
        margin-top: 30px;
    }

    .why_item {
        width: 100%;
        padding: 20px 14px;
    }

    .why_items {
        gap: 10px;
    }

    .why_item-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
        padding: 10px;
    }

    .why_item-icon img {
        max-width: 100%;
        max-height: 100%;
    }

    .reviews_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .reviews_items {
        gap: 10px;
        flex-direction: column;
    }

    .reviews_item {
        width: 100%;
    }

    .reviews_video {
        height: 230px;
    }

    .reviews_video::before {
        width: 60px;
        height: 60px;
    }

    .reviews_icon {
        width: 120px;
    }

    .reviews_icon img {
        width: 100%;
        height: auto;
    }

    .faq {
        margin: 60px 0;
    }

    .patners .title,
    .certificates .title,
    .faq .title {
        margin-bottom: 30px;
    }

    .faq_item {
        margin-bottom: 10px;
    }

    .faq_item-title {
        font-size: 16px;
        padding: 20px 60px 20px 20px;
    }

    .faq_item-text {
        padding: 0 20px 20px;
    }

    .reviews_frame {
        width: 100%;
    }

    .patners,
    .certificates {
        margin: 60px 0;
    }

    .certificates_slider {
        width: calc(100% + 15px);
    }

    .certificates_slide {
        width: 290px;
        height: 412px;
        margin-right: 10px;
    }

    .patners_items {
        gap: 10px;
    }

    .blog {
        margin: 60px 0;
    }

    .blog_top {
        margin-bottom: 30px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .blog_item {
        width: 100%;
    }

    .blog_items {
        gap: 10px;
    }

    .patners_item {
        height: 90px;
        width: calc(50% - 5px);
    }

    .footer_inner-item:nth-child(1) {
        order: 1;
    }

    .header_inner {
        top: 75px;
    }

    .header_inner .menu {
        padding: 0 15px;
    }

    .header_catalog-wrapper {
        padding: 0 15px;
    }

    .header_catalog-items {
        columns: 2;
    }

    .header_catalog-sales .main_item {
        width: 100%;
    }

    .header_catalog-sales {
        gap: 10px;
    }

    .page {
        margin-top: 110px;
    }

    .crumbs {
        gap: 10px;
    }

    .page h2 {
        font-size: 24px;
        margin: 30px 0 20px;
    }

    .category_fiters {
        flex-direction: column;
        gap: 10px;
    }

    .category_fiter {
        width: 100%;
    }

    .crumb {
        font-size: 14px;
    }

    .category_item {
        padding: 20px 10px;
        margin-bottom: 10px;
    }

    .category_item-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .category_item-top_options {
        flex-wrap: wrap;
        gap: 20px;
    }

    .category_item-img {
        height: 280px;
    }

    .category_item-inner {
        flex-direction: column;
    }

    .category_item-options {
        width: 100%;
        margin-bottom: 20px;
    }

    .category_item-total {
        width: calc(50% - 7.5px);
    }

    .more_tooltip {
        right: -70px;
        transform: none;
    }

    .more_tooltip::before {
        right: 72px;
        transform: none;
    }

    .category_aside {
        padding: 30px 16px;
    }

    .page {
        margin-bottom: 60px;
    }

    .info_block {
        margin: 60px 0;
    }

    .info_block-subtitle {
        font-size: 18px;
    }

    .info_block-img,
    .info_block-video {
        height: 220px;
    }

    .info_block-wrapper {
        margin-bottom: 30px;
    }

    .numbers_slider {
        width: calc(100% + 15px);
    }

    .numbers_slide {
        width: 280px;
        margin-right: 10px;
        padding: 20px;
    }

    .numbers_slide-step {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
        font-size: 28px;
    }

    .numbers_slide-title {
        font-size: 18px;
    }

    .varieties_info {
        min-width: 1px;
    }

    .varieties_slider .ways_item {
        width: 290px;
        margin-right: 10px;
    }

    .card_img {
        height: 280px;
    }

    .card_wrapper {
        padding: 20px 10px;
    }
.card_items .category_item-option,
    .card_item {
        width: 100%;
    }

    .card_items {
        gap: 10px;
    }

    .card_option {
        padding: 8px 10px;
    }

    .card_wrapper .category_item-total {
        width: 100%;
    }

    .card_wrapper .category_item-totals {
        flex-direction: column;
        gap: 10px;
    }

    .card_tabs-wrapper {
        margin: 30px 0;
    }

    .card_content-item {
        width: 100%;
    }

    .card_complect {
        margin-top: 30px;
    }

    .card_form {
        padding: 30px 20px;
    }

    .card_form-title {
        font-size: 24px;
    }

    .info_block-wrapper .title {
        font-size: 24px;
    }

    .info_block-wrapper p {
        font-size: 16px;
    }

    .main h1 br {
        display: none;
    }

    .main_inner {
        margin-bottom: 40px;
    }

    .four_items .steps_item {
        width: 100%;
        max-width: 100%;
    }

    .chose {
        margin: 60px 0;
    }

    .chose_subtitle {
        font-size: 18px;
    }

    .chose_items {
        margin-top: 30px;
        gap: 10px;
    }

    .chose_item {
        width: 100%;
        padding: 30px 20px 240px;
    }

    .discounts p+.discounts_items {
        margin-top: 30px;
    }

    .discounts_item-img {
        z-index: -1;
        max-height: 240px;
    }

    .discounts_item-img img {
        object-fit: cover;
        object-position: top;
    }

    .how {
        margin: 60px 0;
    }

    .discounts_item {
        z-index: 1;

    }

    .how .numbers_slider {
        margin: 30px 0;
    }

    .how_desc {
        font-size: 16px;
    }

    .about_wrapper {
        padding-top: 30px;
    }

    .about_logo {
        justify-content: center;
        display: flex;
        margin-bottom: 30px;
    }

    .about_logo img {
        width: 240px;
        height: auto;
    }

    .about_item {
        width: 100%;
    }

    .about_item-title {
        font-size: 22px;
    }

    .about_item-text {
        font-size: 16px;
    }

    .about_wrapper {
        padding-bottom: 220px;
    }

    .about_person {
        width: 100%;
        padding: 30px 20px;
    }

    .about_catalog .catalog_item:nth-child(1),
    .about_catalog .catalog_item:nth-child(2) {
        width: 100%;
    }

    .about_catalog .catalog_items {
        margin-top: 30px;
    }

    .about_person-img {
        width: 240px;
        right: 50%;
        transform: translateX(50%);
        top: -200px;
    }

    .project_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .project_top .title {
        width: 100%;
    }

    .office .title {
        margin-bottom: 30px;
    }
.about_inner{
    margin-top: 0;
}
    .office {
        margin: 60px 0;
    }

    .office_slider {

        width: calc(100% + 15px);
    }
.maintenance_item{
    width: 100%;
}
    .office_slide {
        width: 280px;
        height: 252px;
        margin-right: 10px;
    }
    .checkout_right-btn{
        width: 100%;    
    }
    #msOrder{
        padding: 30px 20px;
    }
    .compare_items{
        flex-wrap:nowrap;
        width: calc(100% + 15px);
        padding-right: 15px;
        overflow: auto;
    }
    .title + p{
        display: none;
    }
        .compare_item{
            min-width: 320px;
        }
}