@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&display=swap);

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

input:not([type=checkbox]):not([type=radio]), select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

* {
    outline: 0 !important
}

a {
    text-decoration: none;
    color: #080808
}

li, ol, ul {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit
}

:active, :focus, :hover {
    outline: 0;
    outline-offset: 0
}

:root {
    --gray: #cdcdcd;
    --dark-gray: #827B7B;
    --white: #ffffff;
    --dark: #3F3F45;
    --green: #147912;
    --black: #353333;
    --light: #fdfffe;
    --yellow: #f9f3a8;
    --light-green: #d2edd2;
    --blue: #3665DE;
    --green-linear: linear-gradient(45deg, #147912, #14B911);
    --light-green-linear: linear-gradient(45deg, #d2edd2, #ffffff);
    --font-golostext: "Golos Text", sans-serif;
    --grid-gutter-x: 15px;
    --grid-gutter-y: 15px;
    --transition-time: 0.3s;
    --page-width: 1464px;
    --page-width-padding: 32px;
    --mt: 0;
    --mb: 0;
    --mt-10: 10px;
    --mt-15: 15px;
    --mt-16: 16px;
    --mt-32: 32px;
    --mt-50: 50px;
    --mt-20: 20px;
    --mb-20: 20px;
    --mb-50: 50px;
    --gap-40: 40px;
    --gap-10: 10px;
    --gap-12: 12px;
    --gap-20: 20px;
    --gap-50: 50px;
    --gap: 0
}

body, html {
    height: 100%;
    line-height: 1.1;
    font-size: 16px;
    color: var(--black);
    font-family: var(--font-golostext);
    font-weight: 400;
    overflow-x: hidden;
}

label {
    display: block
}

input {
    display: block
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(var(--page-width) + 2 * var(--page-width-padding));
    padding-inline: var(--page-width-padding, 32px);
    width: 100%;
    box-sizing: border-box;
}

.h1 {
    font-family: var(--font-golostext);
    font-size: clamp(1rem + 12px, 1.015rem + 3vw, 1rem + 49px);
    font-weight: 700
}

h2 {
    display: block;
    font-family: var(--font-golostext);
    font-size: clamp(1rem + 12px, 1.015rem + 1.3vw, 1rem + 40px);
    font-weight: 500;
    margin-bottom: 1rem
}

h3 {
    display: block;
    font-family: var(--font-golostext);
    font-size: clamp(1rem + 12px, 1.015rem + 1vw, 1rem + 30px);
    font-weight: 500;
    margin-bottom: 1rem
}

.text-color-gray {
    color: var(--gray)
}

.text-blue {
    color: #185c98
}

.text-green {
    color: #147912
}

.text-underline {
    text-decoration: underline
}

.text-end {
    text-align: end
}

.text-center {
    text-align: center
}

.pt-15 {
    padding-top: 15px
}

.pt-5 {
    padding-top: 5px
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.mb-15 {
    margin-bottom: 15px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pr-30 {
    padding-right: 30px
}

.mt {
    margin-top: var(--mt)
}

.mb {
    margin-bottom: var(--mb)
}

.mt-10 {
    margin-top: var(--mt-10)
}

.mt-15 {
    margin-top: var(--mt-15)
}

.mt-16 {
    margin-top: var(--mt-16)
}

.mt-32 {
    margin-top: var(--mt-32)
}

.mt-50 {
    margin-top: var(--mt-50)
}

.mb-50 {
    margin-bottom: var(--mb-50)
}

.mt-20 {
    margin-top: var(--mt-20)
}

.mb-20 {
    margin-bottom: var(--mb-20)
}

.pb-20 {
    padding-bottom: 20px
}

.p-25 {
    padding: 25px
}

.width-100 {
    width: 100%
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.d-flex--direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.d-flex--direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.align-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.gap-40 {
    gap: var(--gap-40)
}

.gap-50 {
    gap: var(--gap-50)
}

.gap {
    gap: var(--gap)
}

.gap-10 {
    gap: var(--gap-10)
}

.gap-12 {
    gap: var(--gap-12)
}

.gap-20 {
    gap: var(--gap-20)
}

.column-gap {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0
}

.column-gap-32 {
    -webkit-column-gap: clamp(24px, 3vw, 32px);
    -moz-column-gap: clamp(24px, 3vw, 32px);
    column-gap: clamp(24px, 3vw, 32px)
}

.radius-10 {
    border-radius: 10px
}

.wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.font_14 {
    font-size: calc(1rem - 2px);
    line-height: calc(1em + 6px)
}

.font-20 {
    font-size: 1.25rem
}

.fw-500 {
    font-weight: 500
}

.w-100 {
    width: 100%
}

.p-block {
    padding-block: clamp(40px, 4vw, 50px)
}

.p-block-70 {
    padding-block: clamp(60px, 6vw, 70px)
}

.bg-black {
    background: var(--black)
}

.fs-36 {
    font-size: 36px !important
}

.bg-white {
    background: var(--white)
}

.text-white {
    color: var(--white)
}

.w-500 {
    max-width: 31.25em
}

.p-4-5 {
    padding: 40px 50px
}

.fs-15 {
    font-size: 15px
}

.lh-1_1 {
    line-height: 1.1em
}

.grid {
    display: grid;
    gap: 50px;
    grid-template-columns:repeat(3, 1fr)
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.justify-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.justify-space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.stroke {
    background-color: transparent;
    border: 1px solid var(--green)
}

.grid-list__item {
    min-width: 0
}

.color-light {
    color: var(--light)
}

.drag-block {
    display: block;
    position: relative
}

.color-green {
    color: var(--green)
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -moz-box;
    overflow: hidden;
    word-break: break-word
}

.font-24 {
    font-size: clamp(1rem + 4px, 2vw, 1rem + 8px)
}

.font-42 {
    font-size: clamp(1.375rem + 4px, 2vw, 2.375rem + 8px)
}

.sf__h2 {
    font-weight: 500;
    max-width: 18.75em;
    line-height: 1.2
}

.sf__h1 {
    font-weight: 500;
    font-size: 48px;
    text-transform: uppercase
}

.text-uppercase {
    text-transform: uppercase
}

a:hover {
    -webkit-transition: var(--transition-time);
    -o-transition: var(--transition-time);
    transition: var(--transition-time);
    cursor: pointer
}

.share__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: var(--gap-10)
}

.share__link a {
    display: block
}

.messenger__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: var(--gap-10)
}

.messenger__link a {
    display: block
}

.bordered {
    border: 1px solid #ebecef
}

.bg-light-shadow:hover {
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    border: 1px solid transparent
}

.box-shadow {
    -webkit-box-shadow: 1px 4px 25px rgba(100, 100, 100, .15);
    box-shadow: 1px 4px 25px rgba(100, 100, 100, .15)
}

.hidden {
    display: none
}

.border-bottom {
    border-bottom: 1px solid var(--gray)
}

.gradient-yg {
    background: -webkit-gradient(linear, left top, right top, from(rgba(246, 246, 209, .3)), color-stop(50%, rgba(215, 240, 213, .3)), to(rgba(168, 229, 194, .3)));
    background: -o-linear-gradient(left, rgba(246, 246, 209, .3) 0, rgba(215, 240, 213, .3) 50%, rgba(168, 229, 194, .3) 100%);
    background: linear-gradient(to right, rgba(246, 246, 209, .3) 0, rgba(215, 240, 213, .3) 50%, rgba(168, 229, 194, .3) 100%)
}

.gradient-lr::after, .gradient-lr::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    -webkit-filter: blur(125px);
    filter: blur(125px);
    z-index: -1
}

.gradient-lr::before {
    background-color: #e2ffd5;
    bottom: 0;
    left: 0
}

.gradient-lr::after {
    background-color: #e7ffd5;
    top: 0;
    right: 0
}

.gradient-y::after, .gradient-y::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    z-index: 1
}

.gradient-y::before {
    background: #ddf482;
    top: 0;
    left: 0
}

.gradient-y::after {
    background: #ddf482;
    bottom: 50%;
    right: 0
}

.header__menu-list {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__menu-list li {
    padding: 25px 50px 15px 0;
    list-style-type: none
}

.header__menu-list li a {
    display: block;
    text-transform: uppercase
}

.header__menu-list li:nth-last-child(1) {
    padding-right: 0
}

.mobile-menu {
    display: none
}

.header__menu-mobile-logo {
    display: none
}

.header__menu.active {
    display: block
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 17px;
    padding-bottom: 17px
}

.header__top-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.phones__inner {
    padding-right: 23px;
    text-align: right
}

.phone__link {
    font-family: var(--font-golostext);
    font-size: 20px;
    font-weight: 700;
    color: var(--black)
}

.schedule {
    font-size: 12px
}

.header__main {
    padding-top: 47px;
    padding-bottom: 85px
}

.header__main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__main-left {
    width: 50%
}

.header__advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.header__advantage-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 45px;
    max-width: 160px;
    font-size: 14px
}

.header__main-right {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.header__main-right img {
    float: right;
    border: 0;
    -o-object-fit: contain;
    object-fit: contain
}

.checkbox__style {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--green);
    border: 1px solid var(--green);
    margin-right: 10px
}

.checkbox__style:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 15px;
    border: solid var(--white);
    border-radius: 2px;
    border-width: 0 2px 2px 0;
    top: -1px;
    left: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.contact__information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.messengers {
    padding-left: 17px
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.breadcrumbs li, .breadcrumbs li a {
    font-size: 12px;
    color: var(--black)
}

.breadcrumbs li:not(.active):after {
    content: "/";
    display: inline-block;
    padding: 0 5px
}

.lead-magnet {
    padding: 1.875em 2.625em;
    background-size: cover
}

.group-input {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
}

.group-input:nth-child(2n+1) {
    padding-right: 50px
}

.label {
    font-weight: 500;
    font-size: 1.25em;
    margin-bottom: 1em
}

.label-mb-0 {
    font-weight: 500;
    font-size: 1.25em
}

.label__input {
    display: block;
    font-size: 14px;
    margin-bottom: 6px
}

.input-style {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 15px 25px;
    font-family: var(--font-golostext);
    font-weight: 400;
    cursor: pointer
}

.agreement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    padding-top: 15px
}

.group-button {
    position: relative;
    display: block;
    width: 100%;
    -ms-flex-negative: 1;
    flex-shrink: 1
}

#checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--green);
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    background-color: #fff
}

#checkbox:checked {
    border-color: var(--green);
    background-color: var(--green)
}

#checkbox:checked::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 15px;
    border: solid var(--white);
    border-radius: 2px;
    border-width: 0 2px 2px 0;
    top: -1px;
    left: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-family: var(--font-golostext);
    font-weight: 500;
    padding: 15px 35px;
    border-radius: 10px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.btn-color {
    color: var(--light);
    background: var(--green);
    -webkit-transition: background .3s ease-out;
    -o-transition: background .3s ease-out;
    transition: background .3s ease-out
}

.btn-color:hover {
    background: #14b911FF;
    -webkit-transition: background .2s ease-out;
    -o-transition: background .2s ease-out;
    transition: background .2s ease-out
}

.table__head {
    display: block;
    margin-bottom: 20px
}

.table__head tr {
    display: grid;
    grid-template-columns:1fr 3fr 1fr;
    gap: 20px
}

.table__head tr th {
    font-size: 20px;
    font-weight: 500;
    padding: 18px 80px;
    border-radius: 10px;
    background: var(--green);
    color: var(--light)
}

.table__body {
    display: grid;
    gap: 20px
}

.table__body tr {
    display: grid;
    grid-template-columns:1fr 3fr 1fr;
    gap: 20px
}

.table__body tr .active__bg {
    background: var(--yellow)
}

.table__body tr td {
    padding: 25px 40px;
    background: var(--light-green);
    border-radius: 10px
}

.table__body tr td p {
    padding-bottom: 1rem
}

@media (max-width: 768px) {
    .table__head {
        display: none; /* Убираем заголовки, так как они будут дублироваться в контенте */
    }

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

    .table__body tr {
        display: flex;
        flex-direction: column;
        background: var(--light-green);
        padding: 15px;
        border-radius: 10px;
        gap: 10px;
        position: relative;
    }

    .table__body tr td {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .table__body tr td::before {
        content: attr(data-label); /* Добавляем заголовки колонок перед данными */
        font-weight: bold;
        color: var(--dark);
        margin-bottom: 5px;
    }
}

.logo {
    position: relative;
    display: block
}

.logo img {
    max-width: 120px
}

.rating__column-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--green)
}

.rating__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    min-height: 300px;
    height: 300px;
    width: 250px;
    fill: #d2edd2;
    max-width: 250px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--light-green)), to(var(--white)));
    background: -o-linear-gradient(var(--light-green), var(--white));
    background: linear-gradient(var(--light-green), var(--white))
}

.scale {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--green-linear);
    text-align: center;
    font-size: 18px;
    padding: 30px 22px;
    font-weight: 500;
    color: #fdfffe
}

.active__scale {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--yellow)), to(var(--white)));
    background: -o-linear-gradient(var(--yellow), var(--white));
    background: linear-gradient(var(--yellow), var(--white))
}

.scale__value {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    padding-top: 16px
}

.page-block__title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.ui-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    will-change: scale;
    -webkit-transition: scale .6s ease;
    -o-transition: scale .6s ease;
    transition: scale .6s ease
}

.ui-card__image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1.235
}

.outer-rounded-x {
    border-radius: 10px
}

.image-rounded-x {
    border-radius: 10px
}

.ui-card {
    position: relative;
    overflow: hidden
}

.ui-card__info--absolute {
    --offset: 24px;
    position: absolute;
    bottom: clamp(24px, 4vw, 32px);
    left: clamp(24px, 4vw, 32px);
    right: clamp(24px, 4vw, 32px)
}

.cover::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .48)), color-stop(50%, rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, .48) 0, rgba(0, 0, 0, 0) 50%)
}

.ui-card__info {
    z-index: 1
}

.ui-card__img.lazyloaded {
    -webkit-transition: scale .6s ease, opacity .3s ease;
    -o-transition: scale .6s ease, opacity .3s ease;
    transition: scale .6s ease, opacity .3s ease
}

.lazyloaded {
    opacity: 1;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.ui-card--image-scale:hover .ui-card__img {
    scale: 1.1
}

a:where(:hover,:focus-visible) {
    opacity: 72%
}

.height-200 {
    max-height: 200px;
    width: 100%
}

.line:after {
    content: "";
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 1px;
    background: #e6ebeb;
    border: solid #fff;
    border-width: 0 .5em 0;
    vertical-align: middle;
    margin-left: 10px
}

.line:after {
    margin-right: -100%
}

.brand-equipment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.brand-equipment__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.brand-equipment__wrapper img {
    display: block;
    border: 0;
    outline: 0;
    max-width: 170px;
    border-radius: 10px
}

.brand-equipment__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.brand-equipment__icon .brand-equipment__icon-item {
    width: 250px;
    border-bottom: 1px solid var(--green);
    border-right: 1px solid var(--green);
    padding: 13px 25px;
    margin: 5px;
    text-align: center
}

.brand-equipment__icon .brand-equipment__icon-item:nth-child(3n) {
    border-right: 0
}

.brand-equipment__icon .brand-equipment__icon-item:nth-last-child(1) {
    border-bottom: 0;
    padding: 3px 25px
}

.brand-equipment__icon .brand-equipment__icon-item:nth-last-child(2) {
    border-bottom: 0;
    padding: 3px 25px
}

.brand-equipment__icon .brand-equipment__icon-item:nth-last-child(3) {
    border-bottom: 0;
    padding: 3px 25px
}

.basement-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.basement-form__img img {
    max-width: 700px;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%
}

.basement-form__right {
    position: relative;
    flex: 1;
    width: 100%;
    padding: 80px 50px;
    background-color: #eef0ef
}

.container iframe, .container object, .container video:not(.cover) {
    border-radius: 10px
}

.basement-form-wrapper {
    max-width: 30vw;
    position: relative;
    z-index: 1
}

.select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    cursor: pointer
}

.select span {
    font-size: 20px;
    font-weight: 500;
    color: var(--blue);
    border-bottom: 1px solid var(--blue)
}

.table-list__indicators {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s ease, opacity .5s ease;
    -o-transition: max-height .5s ease, opacity .5s ease;
    transition: max-height .5s ease, opacity .5s ease
}

.table-list__indicators.active {
    display: block;
    max-height: 100%;
    opacity: 1
}

.contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px 0 70px
}

.contacts__info, .contacts__map {
    width: 50%
}

.contacts__map {
    padding-left: 5.625rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.contacts__info-phone-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.contacts__info-phone-item:nth-last-child(1) {
    padding-left: 2.5rem
}

.contacts__info-phone-item span {
    padding-bottom: .5rem
}

.contacts__info-phone-item span:nth-last-child(1) {
    padding-bottom: 0
}

.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 3.125rem
}

.tags a {
    display: block;
    font-size: 18px;
    text-decoration: underline;
    color: var(--blue)
}

.contacts__info-details p {
    padding-bottom: .6rem
}

.contacts__info-details p:nth-last-child(1) {
    padding-bottom: 0
}

.about-us {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
    padding-top: 50px;
    padding-bottom: 70px
}

.about-us__image img {
    width: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover
}

.about-us__text-top {
    padding-bottom: 40px
}

.about-us__text-bottom {
    padding-top: 40px
}

.about-us__text-bottom p, .about-us__text-top p {
    margin-bottom: .6rem;
    line-height: 1.4
}

.about-us__text-bottom p:nth-last-child(1), .about-us__text-top p:nth-last-child(1) {
    margin-bottom: 0
}

.blog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
    margin-top: 50px
}

.article-item {
    width: 350px;
    padding: 24px 21px
}

.article-item:hover {
    -webkit-box-shadow: 1px 4px 15px rgba(100, 100, 100, .15);
    box-shadow: 1px 4px 15px rgba(100, 100, 100, .15);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.article-item__image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px
}

.article-item__image img {
    max-width: 100%;
    display: block;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.article-item__label {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 12px
}

.article-item__desc {
    font-size: 14px
}

.article-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.125rem;
    margin-bottom: 4.375rem
}

.article-inner {
    display: block;
    width: calc(100% - 200px);
    line-height: 1.4
}

.article-inner p {
    padding-bottom: .6rem
}

.article-inner p:nth-last-child(1) {
    padding-bottom: 0
}

.article-inner ul {
    margin-left: 2.5rem
}

.article-inner ul li {
    list-style-type: disc;
    margin-bottom: .5rem
}

.article-inner ol {
    margin-left: 2.5rem
}

.article-inner ol li {
    list-style-type: decimal;
    margin-bottom: .5rem
}

.article-inner a {
    color: #1874cf;
}

.article-sidebar {
    padding-left: 3.125rem
}

.article-sidebar__form {
    position: sticky;
    top: 10px;
    text-align: center;
    max-width: 350px;
    border-radius: 10px;
    padding: 1.875rem 2.188rem;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(246, 246, 209, .3)), color-stop(50%, rgba(215, 240, 213, .3)), to(rgba(168, 229, 194, .3)));
    background: -o-linear-gradient(left, rgba(246, 246, 209, .3) 0, rgba(215, 240, 213, .3) 50%, rgba(168, 229, 194, .3) 100%);
    background: linear-gradient(to right, rgba(246, 246, 209, .3) 0, rgba(215, 240, 213, .3) 50%, rgba(168, 229, 194, .3) 100%)
}

.article-sidebar__form-title {
    font-size: 28px;
    text-transform: uppercase;
    padding-bottom: 1.25rem;
    color: var(--green)
}

.article-sidebar__form-text {
    padding-bottom: 1.25rem
}

.calculation {
    margin-top: 2.5rem
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--green)
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: var(--white);
    border: 1px solid var(--green);
    border-bottom: 0;
    outline: 0;
    font-weight: 500;
    font-size: 17px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.tab-button.active {
    border: 1px solid var(--green);
    border-bottom: 0;
    background-color: var(--green);
    color: var(--white)
}

.tab-content {
    display: none
}

.tab-content.active {
    display: block
}

.calculation__form {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    padding: 58px 50px;
    border-radius: 10px;
    background: var(--white);
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .08)
}

.calculation__form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.products__list {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    padding: 58px 50px;
    border-radius: 10px;
    background: var(--white);
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .08)
}

.order__form {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    border-radius: 10px;
    background: var(--white);
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    overflow: hidden
}

.pagination-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    position: relative;
    margin-top: 4.063rem;
    margin-bottom: 4.375rem
}

.pagination-items li {
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--light-green)
}

.pagination-items li.active {
    background: var(--green);
    color: var(--white)
}

.pagination-items li:nth-child(1) {
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--gray);
    color: var(--white)
}

.pagination-items li:nth-last-child(1) {
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--green);
    color: var(--white)
}

.sliders-video-wrapper .slide {
    background: var(--white)
}

.offers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.step {
    position: relative
}

.steps {
    padding-top: 50px;
    margin-top: -50px
}

.steps-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.step-item {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 20px;
    background-color: var(--green);
    color: var(--white)
}

.step-inner {
    text-align: center !important;
    height: initial;
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    background-color: var(--white)
}

.step-title {
    font-size: 20px;
    font-weight: 500;
    padding-top: 30px
}

.step-desc {
    padding-top: 15px
}

.step-phone {
    font-size: 20px;
    font-weight: 500
}

.list {
    padding-left: 20px
}

.list li {
    list-style-type: disc;
    line-height: 1.8
}

.capture-right {
    max-width: 600px;
    padding: 40px;
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
    border: 1px solid transparent;
    text-align: center;
    border-radius: 10px;
    background-color: var(--white)
}

.capture-title {
    font-size: 36px;
    text-transform: uppercase;
    color: var(--green)
}

.capture-desc {
    padding-top: 4.25%
}

.capture-additional-desc {
    padding-top: 4.25%
}

.substrate {
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 1px 4px 25px 1px rgba(0, 0, 0, .12);
    box-shadow: 1px 4px 25px 1px rgba(0, 0, 0, .12);
    background-color: var(--white)
}

.get-consultation-person {
    position: absolute;
    width: 46.260417vw;
    right: 0;
    bottom: 0
}

.slider {
    position: relative
}

.sliders {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.sliders-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal
}

.slide {
    max-width: 443px;
    text-align: inherit;
    font-size: inherit;
    cursor: pointer
}

.sliders-pagination {
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap-10);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2%
}

.sliders-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--light);
    border: 1px solid var(--green);
    cursor: pointer
}

.sliders-pagination-bullet-active {
    background: var(--green)
}

.sliders-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    right: 10px;
    border-radius: 50px;
    background: var(--green)
}

.sliders-button-next:after {
    content: "";
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 24px;
    height: 24px
}

.sliders-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--gray)
}

.sliders-button-prev:after {
    content: "";
    background-image: url(../images/arrow-prev.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 24px;
    height: 24px
}

.sliders-button-next, .sliders-button-prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer
}

.video {
    position: relative
}

.block-video {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.sliders-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.product__table {
    position: relative;
    display: block;
    width: 100%
}

.product-image img {
    display: block;
    outline: 0;
    max-width: 275px;
    border-radius: 10px
}

.product-title {
    font-size: 20px;
    font-weight: 500
}

.product-pretitle {
    font-size: 14px;
    font-weight: 500
}

.product-price {
    font-size: 30px;
    font-weight: 600;
    white-space: nowrap;
    color: #EC3535
}

.product-old-price {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-gray);
    text-decoration: line-through
}

.product-parts {
    padding-top: 1rem;
    font-size: 14px;
}

.price-group {
    text-align: right
}

.product-info-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.product-pretitle {
    padding-top: 20px
}

.table__head-product {
    display: inline-table;
    width: 100%
}

.table__head-product th:nth-child(1) {
    width: 275px;
    font-weight: 500;
    font-size: 20px;
    padding: 18px 51px;
    border-radius: 10px;
    color: var(--white);
    background: var(--green)
}

.table__head-product th:nth-child(2) {
    width: auto;
    font-weight: 500;
    font-size: 20px;
    padding: 18px 51px;
    border-radius: 10px;
    color: var(--white);
    background: var(--green)
}

.table__head-product th:nth-child(3) {
    width: 500px;
    font-weight: 500;
    font-size: 20px;
    padding: 18px 51px;
    border-radius: 10px;
    color: var(--white);
    background: var(--green)
}

.table__body-product {
    display: inline-table;
    width: 100%
}

.table__body-product td:nth-child(1) {
    width: 275px
}

.table__body-product td:nth-child(2) {
    width: auto;
}

.table__body-product td:nth-child(3) {
    width: 300px;
    text-align: right
}

.table__body-product tr {
    display: inline-table;
    vertical-align: top;
    width: 100%;
    padding-top: 40px;
    border-top: 1px solid #e2e2e2;
}

.table__body-product tr:nth-child(1) {
    border-top: 0;
}

.characteristics__list {
    padding-top: 15px
}

.characteristics__list-title {
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    color: #3665de;
    cursor: pointer
}

.characteristics {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .5s ease, opacity .5s ease;
    -o-transition: max-height .5s ease, opacity .5s ease;
    transition: max-height .5s ease, opacity .5s ease;
    opacity: 0;
    padding-top: 20px
}

.characteristics.active {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 35px;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-green)
}

.characteristic-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding-bottom: 10px
}

.characteristic-item:nth-last-child(1) {
    padding-bottom: 0
}

.indicator {
    padding-top: 1rem;
}

.indicator-item {
    display: flex;
    gap: 1rem;
    font-size: 14px;
    line-height: 1.329;
    margin-bottom: 2px;
}

.indicator-name {
    font-weight: 400;
}

.indicator-value {
    font-weight: 500;
}

.specification {
    white-space: nowrap;
    display: contents
}

.specification:after {
    content: "";
    border-bottom: 1px dashed #ebebeb;
    width: 100%;
}

.parameter {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 17%;
    flex: 1 0 17%;
    text-align: right
}

.saving {
    display: inline-block;
    font-size: 16px;
    padding: 9px 12px;
    border-radius: 10px;
    background: var(--light);
    color: #ec3535;
    -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .12);
    box-shadow: 0 5px 30px rgba(34, 34, 40, .12)
}

.footer {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    color: var(--gray)
}

.footer a {
    color: var(--gray)
}

.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 50px
}

.footer__top-authorized {
    padding-top: 30px
}

.footer__top-authorized p {
    line-height: 16px
}

.footer__top-info p {
    line-height: 16px
}

.footer__part-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.footer-grid-column-span {
    min-width: calc(1 * (100% - 24px) / 3)
}

.footer__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.footer__phone a {
    font-size: 18px;
    font-weight: 600;
    color: var(--light)
}

.footer__messenger {
    margin-top: 20px
}

.footer__share {
    margin-top: 20px
}

.label-phone {
    margin-top: 4px
}

.not-found__text-info {
    margin-left: 50px;
    max-width: 350px
}

.not-found__text-label {
    font-size: 52px;
    text-transform: uppercase
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000
}

.popup__content {
    background-color: #fff;
    padding: 32px 40px;
    border-radius: 10px;
    max-width: 480px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    position: relative;
    border: 1px solid var(--green)
}

.popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: 0 0;
    border: none;
    font-size: 20px;
    cursor: pointer
}

/*.popup__form label{display:block;margin:10px 0 5px}.popup__form input{width:100%;padding:12px 8px;margin-bottom:15px;border:1px solid #ccc;border-radius:4px}*/
.popup.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1200px) {
    .slogan {
        display: none
    }
}

@media (max-width: 992px) {
    .information {
        display: none
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-inline: 22px;
    }

    .table__body-product {
        display: flex;
        flex-direction: column;
        gap: var(--gap-10);
    }

    .characteristic-item {
        font-size: 13px
    }

    .btn-custom {
        margin-bottom: 1rem
    }

    .sf__h1 {
        font-size: 32px
    }

    .h1 {
        font-size: clamp(1rem + 6px, 1.015rem + 2vw, 1rem + 49px);
    }

    .lead-magnet-wrapper {
        padding-inline: initial
    }

    .select span {
        font-size: 15px;

        .p-4-5 {
            padding: 30px
        }
    }

    #checkbox {
        min-width: 20px
    }

    .page-block__title-wrapper {
        flex-direction: column
    }

    .header__top {
        border-bottom: 1px solid #cdcdcd
    }

    .mobile-menu {
        display: inline-block
    }

    .phone__link {
        font-size: 16px
    }

    .header__advantage-item {
        padding-right: 0;
        max-width: 108px;
        font-size: 10px
    }

    .basement-form-wrapper {
        max-width: 100%
    }

    .get-consultation-person {
        display: none
    }

    .m-width {
        width: 100%
    }

    .header__advantages {
        margin-top: 19px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .checkbox__style {
        margin-right: 5px
    }

    .header__menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        border-bottom: 0;
        padding: 55px 0 136px;
        background: -webkit-gradient(linear, left top, left bottom, from(#d2edd2), color-stop(100%), to(#f4ffc8));
        background: -o-linear-gradient(#d2edd2, 100%, #f4ffc8 100%);
        background: linear-gradient(#d2edd2, 100%, #f4ffc8 100%);
        z-index: 100
    }

    .header__menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .header__menu-list li {
        padding: 25px 0 15px 0
    }

    .header__menu-mobile-logo {
        display: block;
        text-align: center;
        padding-bottom: 45px
    }

    .header__main-right {
        padding-top: 16px
    }

    .header__main-right img {
        width: 100%;
        float: inherit
    }

    .header__btn {
        display: none
    }

    .header__main-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .header__main-left {
        width: 100%
    }

    .rating__column-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .rating__column {
        width: 100%;
        height: 60px;
        min-height: 60px;
        margin-bottom: 15px;
        max-width: inherit
    }

    .rating__column:nth-last-child(1) {
        margin-bottom: 0
    }

    .fs-36 {
        font-size: 23px !important
    }

    .scale__value {
        font-size: 16px
    }

    .grid {
        grid-template-columns:repeat(1, 1fr)
    }

    .brand-equipment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .brand-equipment__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%
    }

    .brand-equipment__wrapper img {
        max-width: 100%
    }

    .brand-equipment__icon .brand-equipment__icon-item {
        width: 100%
    }

    .d-flex--direction-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .text-end {
        text-align: left
    }

    .messenger__link {
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left
    }

    .share__link {
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left
    }

    .basement-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .basement-form img {
        width: 100%
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .scale {
        display: none
    }

    .rating__column-wrapper {
        border-bottom: none
    }

    .contacts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .contacts__info {
        width: 100%
    }

    .contacts__map {
        padding-left: 0;
        width: 100%
    }

    .contacts__map {
        padding-top: 30px
    }

    .basement-form__right .label {
        text-align: center
    }

    .basement-form__right p {
        text-align: center
    }

    .not-found__img {
        display: none
    }

    .not-found__text-info {
        margin-left: inherit;
        max-width: 100%;
        padding: 35px 32px 50px 32px;
        text-align: center
    }

    .blog {
        grid-template-columns:repeat(auto-fit, minmax(250px, 1fr))
    }

    .article-item {
        width: 100%
    }

    .article-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .article-inner {
        width: 100%
    }

    .article-sidebar {
        padding-left: inherit;
        padding-top: 40px
    }

    .article-sidebar__form {
        max-width: 100%
    }

    .about-us {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .table__head-product {
        display: none
    }

    .table__body-product tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: var(--white);
        -webkit-box-shadow: 0 5px 30px rgba(34, 34, 40, .08);
        box-shadow: 0 5px 30px rgba(34, 34, 40, .08)
    }

    .table__body-product td:nth-last-child(1) {
        margin-bottom: 0
    }

    .table__body-product td:nth-child(1) {
        width: 100%
    }

    .table__body-product td:nth-child(2) {
        width: 100%;
        padding: 20px 20px 0
    }

    .table__body-product td:nth-child(3) {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 20px 0
    }

    .product-image img {
        max-width: 100%;
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit
    }

    .product-info-price {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .table__body-product td:nth-child(3) .btn {
        width: 100%
    }

    .product-base-info {
        width: 100%;
        padding-top: 20px
    }

    .products__list {
        background: 0 0;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        padding: 0 0 10px
    }

    .capture {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .capture-left {
        padding-bottom: 7%
    }

    .line-clamp-5 {
        font-size: 3.8vw;
    }

    .mb-50 {
        margin-bottom: 30px;
    }

    .about-brand-text {
        font-size: 4.5vw;
    }

    .sliders-button-next, .sliders-button-prev {
        top: -30px;
    }

    .block-video-navigation {
        padding-top: 43px;
    }

    .fs-m-42 {
        font-size: 4.2vw;
    }

    .p-4-5 {
        padding: 30px 25px;
    }

    .lead-magnet {
        padding: 1.475em 1.625em;
    }

    .p-block-70 {
        padding-block: clamp(40px, 5vw, 50px)
    }

    .font-42 {
        font-size: clamp(1rem + 4px, 2vw, 2.375rem + 8px);
    }

    .capture-title {
        font-size: 28px;
    }

    .mobile-indicators {
        overflow-x: scroll;
    }

    .pagination-items li:nth-last-child(1),
    .pagination-items li:nth-child(1) {
        display: none;
    }

    .basement-form__right {
        padding: 20px 30px;
    }

    .pagination-items {
        margin-top: 1.063rem;
        margin-bottom: 2.375rem;
    }

    .indicator-item {
        justify-content: space-between;
    }

    .characteristics__list-title {
        text-align: center;
    }

    .price-group {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .btn {
        width: 100%
    }

    .blog {
        grid-template-columns:repeat(auto-fit, minmax(100%, 1fr))
    }

    .article-item {
        width: 100%
    }

    .logo img {
        max-width: 90px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }
}

.swiper {
    max-width: 95%;
    margin: 0 auto
}

.peculiarities {
    display: flex;
    align-items: stretch;
}

.peculiarity-image {
    width: 50%;

    img {
        display: block;
        outline: none;
        border: 0;
        width: 100vw;
        height: 100%;
        object-fit: contain;
    }
}

.peculiarity-text-group {
    display: flex;
}

@media screen and (max-width: 768px) {
    .peculiarity-text-group {
        flex-direction: column;
    }
}

.peculiarity-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    max-width: 500px;
    width: 100%;
}

.peculiarity-item-title {
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
}

.peculiarity-item p:nth-child(2) {
    font-size: 16px;
    line-height: 1.4;
}

.peculiarity-text {
    width: 50%;
    padding: 4% 5%;
}

.peculiarity-item-icon {
    max-width: 50px;
    float: left;
    padding-right: 5px;
}

@media (max-width: 992px) {
    .peculiarities {
        flex-direction: column;
    }
    .peculiarity-item {
        max-width: 100%;
    }
    .peculiarity-text {
        width: 100%;
    }
    .peculiarity-image {
        width: 100%;
    }
}
/*
* Abaut Brand
 */
.about-brand {
    display: flex;
    align-items: stretch;
}

.about-brand-text {
    width: 50%;
    line-height: 1.4;
    padding: 4% 6%;
}

.about-brand-image {
    width: 50%;

    img {
        display: block;
        outline: none;
        border: 0;
        width: 100vw;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 992px) {
    .about-brand {
        flex-direction: column;
    }
    .about-brand-text {
        width: 100%;
    }
    .about-brand-image {
        width: 100%;
    }
}
/*
* Animate
 */
.animate-on-scroll {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    visibility: visible;
}

/*
* YouTube
 */
.youtube-thumbnail {
    position: relative;
    display: inline-block;
    cursor: pointer;
    max-width: 100%;
}

.youtube-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/*
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 18px;
    padding: 14px 16px;
    border-radius: 50%;
}
*/
.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: 9px solid transparent;
    border-left: 17px solid #fff;
    z-index: 2;
    margin: -9px 0 0 -6px;
}

.play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transition: background-color .3s;
    margin: -24px 0 0 -33px;
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background: rgba(30, 35, 56, 0.8);
}

.play-button:hover::after {
    background-color: #fc0017;
}

.page-maps {
    text-align: center;
    padding-bottom: 3rem;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-map {
    width: 600px;
    height: auto;
    margin: 0 auto;
}

.balloon {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
}

.balloon-img {
    width: 60px;
    height: auto;
    display: block;
    transition: width 0.3s;
}

.balloon-label {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    transform: translate(-10%, -250%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 20;
}

.balloon:hover .balloon-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .balloon-img {
        width: 35px;
    }

    .balloon-label {
        font-size: 12px;
        padding: 4px 8px;
        transform: translate(-22%, -201%);
    }
}

/*
* Parts
 */
.parts {
    display: flex;
    gap: 1rem;
}

@media (max-width: 1200px) {
    .parts {
        flex-direction: column;
    }
}

.part-item {
   flex: 0 1 50%;
}

@media (max-width: 1200px) {
    .part-item {
        flex: 0 1 100%;
    }
}

@media (max-width: 768px) {
    .part-item {
        align-items: center;
    }
}

.part-image {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}

@media (max-width: 1200px) {
    .part-image {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .part-image {
        flex-direction: column;
    }
}

.part-image-item {
    position: relative;
    max-width: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .part-image-item {
        max-width: 90%;
    }
}

.part-image-text {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(100, 100, 100, 0.1);
    padding: 8% 10%;
    font-size: 15px;
    margin-top: 11rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.part-image-gradient {
    display: flex;
    justify-content: center;
    align-items: normal;
    width: 215px;
    height: 200px;
    border-radius: 15px;
    background: linear-gradient(45deg, #f6f6d14d, transparent);
    transform: rotate(15deg);
    position: absolute;
    bottom: 30px;
    z-index: 0;
    left: 22px;
}

@media (max-width: 768px) {
    .part-image-gradient {
        width: 100%;
        height: 200px;
        transform: rotate(11deg);
    }
}

.part-image-gradient {
    img {
        max-width: 100px;
        transform: rotate(-15deg);
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .part-image-gradient {
        img {
            transform: rotate(-11deg);
        }
    }
}

.part-item-main-title {
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-golostext);
    font-size: clamp(1rem + 12px, 1.015rem + 1.3vw, 1rem + 40px);
    margin-bottom: 1rem
}

.part-item-main-desc {
    line-height: 1.4;
    padding-top: 15px;
}

.shine::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -100%;
    width: 150%;
    height: 100%;
    background: rgb(255 255 255 / .2);
    transform: rotate(45deg);
    filter: blur(6px);
    animation: shine 7s infinite linear;
}

@keyframes shine {
    0% {
        left: -100%
    }

    20% {
        left: 50%
    }

    40% {
        left: 200%
    }

    100% {
        left: 200%
    }
}

.documentation {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.documentation-item {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.documentation-item:nth-last-child(1) {
    padding-bottom: 0;
}

.pdf-icon {
    display: inline-flex;
    align-items: center;
    width: auto;
}

.pdf-icon:before {
    content: '';
    background-image: url('/_next/images/pdf.svg');
    width: 30px;
    height: 30px;
    display: block;
    background-size: 30px;
    background-repeat: no-repeat;
    padding-left: 40px;
}

.xlsx-icon {
    display: inline-flex;
    align-items: center;
    width: auto;
}

.xlsx-icon:before {
    content: '';
    background-image: url('/_next/images/xls.svg');
    width: 30px;
    height: 30px;
    display: block;
    background-size: 30px;
    background-repeat: no-repeat;
    padding-left: 40px;
}

.documentation-group-title {
    font-size: 19px;
    font-weight: 700;
    padding-bottom: 1rem;
}

.documentation-group {
    padding-bottom: 2rem;
}
/*
* Filter
 */
.filter-btn-mobile {
    position: fixed;
    display: none;
    bottom: 0;
    z-index: 2;
    padding: 15px 15px;
    border-top-left-radius: 9px;
    background: #147912;
    color: #fff;
    font-size: 14px;
    left: 0;
    right: 0;
    border-top-right-radius: 9px;
}

.filter-list {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
}

.filter-list__label-specific {
    margin-bottom: 4px;
}

.filter-list__checkbox-item {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.429;
    padding-left: 25px !important;
    white-space: normal;
}

.filter-list__checkbox-item:before {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 2px;
    content: "";
    display: inline-block;
    height: 14px;
    left: 0;
    position: absolute;
    top: 2px;
    transition: all .1s ease;
    vertical-align: top;
    width: 14px;
}

.filter-list__checkbox-item:after {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxN3B4IiB2aWV3Qm94PSIwIDAgMTcgMTciIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUwLjIgKDU1MDQ3KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5TbGljZTwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJTeW1ib2xzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPgogICAgICAgIDxwb2x5bGluZSBpZD0iUGF0aC0zIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMiIgcG9pbnRzPSIxIDEyIDUgMTYgMTYgMSI+PC9wb2x5bGluZT4KICAgIDwvZz4KPC9zdmc+) 0 0 / cover no-repeat;
    content: "";
    display: block;
    height: 13px;
    left: 4px;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all .2s ease;
    width: 13px;
}

@media (max-width: 768px) {
    .filter-btn-mobile {
        display: block;
    }
}

.b24-widget-button-wrapper {
    bottom: 26vh !important;
}

.page-text {
    border-radius: 20px;
    padding: 4vw;
    background: #fafafa;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 15px;
}

.page-text h2 {
    padding-top: 1rem;
    font-weight: 700;
    font-size: clamp(1rem + 12px, 1.015rem + 1.3vw, 0.8rem + 2px);
}

.page-text {
    ul {
        margin-left: 2rem;
        padding-bottom: 0.5rem;
        li {
            list-style-type: disc;
            padding-bottom: 0.5rem;
        }
    }
}

.page-text p {
    padding-bottom: 0.5rem;
    line-height: 1.4;

    &:nth-child(1) {
        padding-bottom: 0;
    }

    &:nth-last-child(1) {
        padding-bottom: 0;
    }
}

.responsive-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.responsive-table th,
.responsive-table td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
}

@media (max-width: 768px) {
    .responsive-table {
        margin-bottom: 1rem;
    }
}
