/* HEADER START */

:root {
    --font-sans: "Montserrat", sans-serif;
    --font-gotham: "Gotham Pro", sans-serif; 

    --text-sm: .875rem;
    --text-sm--line-height: 1.4;
    --text-base: 1rem;
    --text-base--line-height: 1.5;
    --text-lg: 1.125rem;
    --text-lg--line-height: 1.55;
    --text-xl: 1.25rem;
    --text-xl--line-height: 1.4;
    --text-2xl: 1.5rem;
    --text-2xl--line-height: 1.33333;
    --text-3xl: 1.9rem;
    --text-3xl--line-height: 1.1;
    --text-4xl: 2.25rem;
    --text-4xl--line-height: 1.1;
    --text-5xl: 3.5rem;
    --text-5xl--line-height: 1;
    --text-8xl: 6rem;
    --text-8xl--line-height: 1;

    --color-main: #212529;
    --color-green: #009846;
    --color-gray: #545b58;
    --color-second: #414141;
    --color-border: #e5e5e5;
    --color-background: #f9f9f9;

    --spacing: .25rem;

    --gradient-green: linear-gradient(90deg, #60eda1, #009846 45.2%);
    --default-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

/* ================================================ */

 @font-face {
    font-family: var(--font-sans);
    font-display: optional;
 }

html {
    font-family: var(--font-sans);
}

body, body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background-color: white;
    color: var(--color-main);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--tw-leading, var(--text-base--line-height));
    line-height: 1.5
}

img,
svg {
    display: block;
    vertical-align: middle
}

img,
video {
    height: auto;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: inherit;
}

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

button, input, optgroup, select, textarea {
    background-color: #0000;
    border-radius: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    opacity: 1
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
}

.button {
    position: relative;
    color: white;
    font-weight: 600;
    cursor: pointer;
    padding: calc(var(--spacing)*4) calc(var(--spacing)*6);
    background-color: var(--color-green);
    border-radius: 15px;
    z-index: 10;
    transition-duration: .3s;
}

.button img {
    position: absolute;
    right: -36px;
    top: 50%;
    translate: 0 -50%;
}

.button:hover {
    background-color: #009846e6;
}

/* =================================================================  */

.header {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    background: white;
}

.main__page .header {
    background: transparent;
}

.header .container {
    max-width: 1360px
}

.header__main .logo {
    width: 160px;
    height: 45px;
}

.header__mobile {
    display: none;
}

.scrolled__item {
    display: none;
}

.header__top {
    border: 1px solid var(--color-border);
    height: 80px;
    display: flex;
}

.header__top .container,
.header__bottom .container,
.header__inner {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__top .container {
    gap: calc(var(--spacing) * 5);
}

.header__inner {
    flex-grow: 1;
    gap: calc(var(--spacing) * 11);
}

.header__address {
    color: var(--color-second);
    display: flex;
    font-size: var(--text-sm);
    gap: calc(var(--spacing)*1);
    line-height: var(--text-sm--line-height);
}

.header__address .text {
    max-width: 200px
}

.header.scrolled  .header__address .text {
    max-width: 250px
}

.header__info {
    color: var(--color-second);
    font-family: var(--font-gotham);
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height))
}

.header__info__item {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*1);
}
.header__city__email {
    text-decoration: underline;
}
.header__info__item.socials {
    gap: calc(var(--spacing)*7);
    margin-top: calc(var(--spacing)*1);
}

.socials__item {
    width: 14px;
    transition-duration: .3s
}

.socials__item:hover {
    scale: 110%;
}

.header__search {
    max-width: 420px;
    position: relative;
    width: 100%;
}

.header__search__container {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid var(--color-green);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
}

.header__search__container:focus-within {
    box-shadow:  var(--default-shadow);
}

.header__search__input {
    font-family: var(--font-gotham);
    font-size: var(--text-sm);
    line-height: var(--text-sm--line-height);
    padding: calc(var(--spacing) * 2.5) calc(var(--spacing) * 4);
    border-style: none;
    outline-style: none;
    flex: 1;
}

.header__search__input::placeholder {
    color: var(--color-second);
    opacity: .9
}

.header__search__button {
    cursor: pointer;
    height: calc(var(--spacing)*10);
    width: calc(var(--spacing)*10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .3s
}

.header__search__results {
    background-color: white;
    border: 1px solid var(--color-green);
    left:  0;
    right: 0;
    top: 100%;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: var(--default-shadow);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    position: absolute
}

.header__search__results.active {
    display: block
}

.search__result__item {
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    padding: calc(var(--spacing)*3) calc(var(--spacing)*4);
    transition: background-color .2s
}

.search__result__item:hover {
    background: #f8f9fa
}

.search__result__item:last-child {
    border-bottom: none
}

.search__result__title {
    color: var(--color-main);
    font-weight: 500;
    margin-bottom: calc(var(--spacing)*1);
}

.search__result__description {
    color: var(--color-gray);
    font-size: var(--text-sm)
}

.header__select {
    display: flex;
    align-items: center;
    position: relative;
    gap: calc(var(--spacing)*1);
    font-size: var(--text-sm);
    line-height: var(---text-sm--line-height);
}

.header__select__text,
.header__city__text {
    white-space: nowrap
}

.header__city__button {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
    gap: calc(var(--spacing)*2);
    padding: calc(var(--spacing)*2) calc(var(--spacing)*3);
    transition: all .3s
}

.header__city__button.active,
.header__city__button:hover {
    background: #f8f9fa;
}

.header__city__button.active .header__city__arrow {
    transform: rotate(180deg)
}

.header__city__dropdown {
    background-color: white;
    border: 1px solid var(--color-green);
    left:  0;
    right: 0;
    top: 100%;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: var(--default-shadow);
    display: none;
    max-height: 300px;
    overflow-y: auto;
    position: absolute
}

.header__city__dropdown.active {
    display: block
}

.header__city__list {
    padding: calc(var(--spacing)*2)
}

.header__city__item {
    cursor: pointer;
    font-size: var(--text-sm);
    padding: calc(var(--spacing)* 2) calc(var(--spacing)* 3);
    transition: background-color .2s
}

.header__city__item:hover {
    background: #f8f9fa
}

.header__city__item.selected {
    background: var(--color-green);
    color: #fff
}

.header__city__item.selected:hover {
    background: #008038
}

.header__callback {
    align-items: center;
    cursor: pointer;
    font-size: var(--text-sm);
    gap: calc(var(--spacing)*1);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    --tw-font-weight: var(--font-weight-bold);
    display: flex;
    font-weight: var(--font-weight-bold);
    text-decoration-line: underline
}

.header__callback:hover {
    text-decoration-line: none
}

.header__bottom {
    box-shadow: 0 4px 4px #00000040;
    height: calc(var(--spacing)*11)
}
    
.header__nav__list {
    display: flex;
    gap: calc(var(--spacing)*10);
    list-style-type: none;
    margin:  0;
    padding: 0;
}
    
.header__nav__item {
    position: relative
}
    
.dropdown {
    font-size: var(--text-lg);
    color: var(--color-green);
    font-weight: bold;
}

.header__nav__link {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing)*1.5);
    padding: calc(var(--spacing)*2) calc(var(--spacing)*1);
    text-decoration-line: none;
    transition-duration: .3s
}

.header__nav__arrow {
    transition: transform .3s
}

.header__nav__item:not(.dropdown):after {
    background-color: var(--color-main);
    bottom: 5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width .3s;
    width: 0
}

.header__nav__item:not(.dropdown):hover:after {
    width: 100%
}

.dropdown:hover .header__nav__arrow {
    transform: rotate(180deg)
}

.menu__dropdown {
    position: absolute;
    display: none;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: auto;
    min-width: 800px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 24px #00000026;
    transform: translateY(-10px);
    transition: all .3s;
}

.dropdown:hover .menu__dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

.menu__dropdown__inner {
    background-color: var(--color-background);
    max-height: 755px;
    padding: calc(var(--spacing)*10) calc(var(--spacing)*4);
    width: 990px;
    box-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
    display: flex;
    overflow: hidden
}

.menu__dropdown__left {
    display: flex;
    flex-direction: column;
    border-right: 2px solid lightgrey;
    gap: calc(var(--spacing)*5);
    padding-right: calc(var(--spacing)*4);
    width: 34%;
    overflow-x: none;
    overflow-y: scroll;    
}

.menu__dropdown__cat {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: calc(var(--spacing)*2);
    padding: calc(var(--spacing)*2);
    color: var(--color-main);
    font-weight: 600;
    font-size: var(--text-base);
}

.menu__dropdown__cat.active {
    color: var(--color-green);
    font-weight: bold;
}

.menu__dropdown__cat img {
    border: 1px solid #0000;
    border-radius: 8px;
    height: calc(var(--spacing)*15);
    object-fit: cover;
    width: calc(var(--spacing)*23)
}

.menu__dropdown__cat.active img {
    border: 1px solid var(--color-green);
}

.menu__dropdown__right {
    display: flex;
    flex-direction: column;
    padding-left: calc(var(--spacing)*15);
    padding-right: calc(var(--spacing)*11);
    gap: calc(var(--spacing)*5);
    width: 66%;
    overflow-y: auto;
}

.menu__dropdown__catalog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.menu__dropdown__catalog__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 180px;
    text-align: center;
    border-radius: 20px;
}

.menu__dropdown__catalog__item__image {
    display: flex;
    justify-content: center;
}
.menu__dropdown__catalog__item__image {
    height: 180px;
}

.menu__dropdown__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(var(--spacing)*27);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.menu__dropdown__banner>img {
    height: 100%;
    inset: calc(var(--spacing)*0);
    object-fit: cover;
    position: absolute;
    width: 100%
}

.menu__dropdown__banner .banner__button {
    position: relative;
    cursor: pointer;
    padding-inline: calc(var(--spacing)*15);
    background: var(--gradient-green);
}

.menu__dropdown__banner a img {
    translate: 0 -50%;
}

.menu__dropdown__filters {
    display: flex;
    justify-content: space-around
}

.menu__dropdown__filters__title {
    margin-bottom: calc(var(--spacing)*4);
    color: black;
    font-weight: 600;
}

.menu__dropdown__filters__list {
    display: grid;
    gap: calc(var(--spacing)*5);
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.menu__dropdown__filter {
    background-color: #fff;
    cursor: pointer;
    font-size: var(--text-base);
    padding: calc(var(--spacing)*1.5) calc(var(--spacing)*4);
    color: black;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #0000;
    transition-duration: .2s
}

.menu__dropdown__filter.active {
    border-color: var(--color-green)
}

.menu__dropdown__list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap:calc(var(--spacing)* 3);
    max-height: 365px;
    overflow-y: auto;
}

.menu__dropdown__item {
    align-items: center;
    cursor: pointer;
    color: black;
    display: flex;
    font-weight: 600;
}

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

.menu__dropdown__filters:empty {
    display: none
}

.header__call {
    position: relative
}

.header__call__button {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: calc(var(--spacing)*2);
    padding: calc(var(--spacing)*1.5) calc(var(--spacing)*4);
    color: var(--color-green);
    font-weight: 600;
    text-decoration-line: underline;
    transition-duration: .3s
}

.header__call__dropdown {
    position: absolute;
    background-color: var(--color-background);
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    box-shadow: 0 8px 24px #00000026;
    min-width: 220px;
    opacity: 0;
    right: 0;
    top: 100%;
    transform: translateY(-10px);
    transition: all .3s;
    visibility: hidden;
    z-index: 1000
}

.header__call:hover .header__call__dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.header__call__list {
    padding-block: calc(var(--spacing)*1.5);
}

.header__call__item {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing)*1);
    justify-content: center;
    padding: calc(var(--spacing)*2) calc(var(--spacing)*2);;
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s
}

.header__call__item:hover {
    translate: 0 -2px;
}

.header__call__item svg {
    flex-shrink: 0
}

.header.scrolled .header__top {
    display: none;
}

.header.scrolled .scrolled__item {
    display: block;
}

.header.scrolled .header__bottom {
    background: white;
    height: 55px;
    padding: 5px 0;
}

.header.scrolled .header__nav__item:not(.header__nav__item.dropdown) {
    display: none;
}

.header.scrolled .logo{
    width: 120px;
    height: 35px;
}

.header.scrolled .header__scrolled {
    display: block;
    width: 100%;
    height: 55px;
    background: white;
}
    
.header.scrolled .socials{
    margin-top: 0;
}

/* ======================================================================= */

@media (max-width: 1024px) {
    .header__main {
        display: none !important;
    }

    .header__mobile {
        display: block;
        background-color: white;
        box-shadow: 0px 4px 4px 0px rgba(84, 91, 88, 0.25);
    }

    .header__mobile .header__mobile__top {
        width: 100vw;
        height: 55px;
        padding: 10px 15px;
        margin: 0;
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        align-items: center;
        transition: 2s;
    }

    .burger__checkbox {
        position: absolute;
        visibility: hidden;
    }

    .menu__burger {
        position: relative;
        border: none;
        background: transparent;
        cursor: pointer;
        width: 25px;
        height: 20px;
    }

    .menu__burger::before,
    .menu__burger::after {
        content: '';
        left: 0;
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background: rgba(0, 152, 70, 1);
    }

    .menu__burger::before {
        top: 0;
        box-shadow: 0 9px 0 rgba(0, 152, 70, 1);
        transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
    }

    .menu__burger::after {
        bottom: 0;
        transition: bottom .3s .15s, transform .3s;
    }

    .burger__checkbox:checked + .menu__burger::before {
        top: 9px;
        transform: rotate(45deg);
        box-shadow: 0 6px 0 rgba(0,0,0,0);
        transition: box-shadow .15s, top .3s, transform .3s .15s;
    }

    .burger__checkbox:checked + .menu__burger::after {
        bottom: 9px;
        transform: rotate(-45deg);
        transition: bottom .3s, transform .3s .15s;
    }

    .header__mobile .header_mobile_logo {
        width: 125px;
        height: 35px;
    }

    .header__mobile .header__mobile__search,
    .header__mobile .header__call {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__mobile .header__mobile__search {
        margin-left: auto;
    }

    .header__mobile__search svg,
    .header__mobile__call__button svg{
        width: 35px;
        height: 35px;
    }

    .header__mobile__call__button {
        display: flex;
        align-items: center;
        cursor: pointer;
        color: var(--color-green);
    }

    .header__mobile:has(input[type='checkbox']:checked) {
        background: rgba(65, 65, 65, 1);
    }
    
    .header__mobile .header__mobile__top:has(input[type='checkbox']:checked){
        flex-direction: row-reverse;
        justify-content: space-between;
    }
 
    .burger__checkbox:checked ~ .header_mobile_logo,
    .burger__checkbox:checked ~ .header__mobile__search,
    .burger__checkbox:checked ~ .header__call {
        display: none;
    }
    
    .burger__checkbox:not(:checked) ~ .header_mobile_city   {
        display: none;
    }

    .burger__checkbox:not(:checked) ~ .header_mobile_logo,
    .burger__checkbox:not(:checked) ~ .header__mobile__search,
    .burger__checkbox:not(:checked) ~ .header__call {
        display: flex;
    }
    
    .burger__checkbox:checked ~ .header_mobile_city  {
        display: flex;
    }

    .header_mobile_city .header__city__selector {
        width: 150px;
    }

    .header_mobile_city .header__city__text{
        color: white;
    }

    .header_mobile_city .header__city__button:hover,
    .header_mobile_city .header__city__button:hover .header__city__text{
        color: white;
        background: none;
    }

    .header_mobile_city .header__city__button.active,
    .header_mobile_city .header__city__button.active .header__city__text{
        background-color: white;
        color: black;
    }
    

    .header__mobile__bottom {
        display: flex;
        width: 100vw;
        height: 0;
        gap: 30px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-x: scroll;
        transition: 
        height 1s;
        overflow-x: scroll;
    }

    .header__mobile__top:has(input[type='checkbox']:checked) ~ .header__mobile__bottom {
        transition-duration: 1s;
        height: 100vh;
        padding: 15px;
    }

    .header__mobile__bottom .button{
        align-self: center;
        text-align: center;
        width: 210px;
        height: 50px;
    }

    .mobile__menu__top {
        display: flex;
        gap: 25px;
    }

    .mobile__menu__top .logo,
    .header.scrolled .logo{
        display: flex;
        width: 155px;
        height: 40px;
    }
    
    .mobile__menu__top .logo  img {
        width: 100%;
    }

    .mobile__menu__top .socials{
        display: flex;
        gap: 20px;
        margin-top: 0;
    }
    

    .mobile__menu__top .socials .socials__item{
        width: 30px;
        height: 30px;
    }
    
    .mobile__menu__top .socials .socials__item img {
        width: 100%;
    }

    .mobile__nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .mobile__nav__block {
        font-weight: 500;
        font-size: 18px;
        color: rgba(255, 255, 255, 1);
    }
    
    .mobile__forms__block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 70%;
        align-self: flex-end;
    }

    .mobile__forms__block a {
        font-weight: 600;
        font-size: 16px;
        text-decoration: underline;
        color: rgba(0, 152, 70, 1);
    }

    .mobile__header__info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        color: white;
    }

    .mobile__header__info .header__info__item {
        display: flex;
        gap: 10px;
    }

    .mobile__header__info .header__info__item svg {
        width: 15px;
        height: 15px;
    }

    .mobile__anotation {
        font-weight: 500;
        font-size: 15px;
        color: rgba(105, 105, 105, 1);
    }
}

/* HEADER END */

.button--gradient {
    background: var(--gradient-green)
}

/**/

.swiper-arrow {
    cursor: pointer;
    padding: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1
}

.swiper-arrow__left {
    left: 0
}

.swiper-arrow__right {
    right: 0
}

.swiper-arrow.swiper-button-disabled {
    opacity: .5
}

.swiper-pagination-bullet {
    background-color: #C4C4C4;
    height: calc(var(--spacing)*4);
    width: calc(var(--spacing)*4)
}

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

/**/

section {
    margin-bottom: calc(var(--spacing)*15)
}

.breadcrumbs {
    margin-top: 160px;
    margin-bottom: 40px;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 3px
}

.breadcrumbs__item {
    color: var(--color-second)
}

.breadcrumbs__item,
.breadcrumbs__link {
    font-size: var(--text-sm);
    line-height: var(--text-sm--line-height);
}

.breadcrumbs__link {
    text-decoration-line: underline;
    cursor: pointer;
}

.breadcrumbs__link:hover {
    text-decoration-line: none;
}


.breadcrumbs__separator {
    color: var(--color-second);
    font-size: var(--text-sm);
    line-height: var(--text-sm--line-height);
}

.breadcrumbs__item:last-child .breadcrumbs__link {
    text-decoration-line: none;
    cursor: none;
}

.breadcrumbs__item:last-child {
    cursor: default;
}

.title {
    font-size: var(--text-4xl);
    margin-bottom: calc(var(--spacing)*10);
    text-align: center;
    color: var(--color-gray);
    font-weight: 700;
}

.title.green {
    color: var(--color-green);
    text-align: left;
}

.custom__select__container {
    position: relative;
    user-select: none;
    width: 100%
}

.custom__select__input {
    align-items: center;
    background: #fff;
    border: 1px solid #c4c4c4;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    padding: 10px 15px
}

.custom__select__input span {
    color: var(--color-gray)
}

.custom__select__arrow {
    background: url("data:image/svg+xml;utf8,<svg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.679692 1.19664L4.5018 5.65695C4.56341 5.72881 4.63983 5.78649 4.72583 5.82603C4.81182 5.86558 4.90535 5.88605 5 5.88605C5.09466 5.88605 5.18819 5.86558 5.27418 5.82603C5.36018 5.78649 5.4366 5.72881 5.49821 5.65695L9.32032 1.19664C9.68508 0.770898 9.38266 0.113281 8.82211 0.113281H1.1768C0.616254 0.113281 0.313832 0.770898 0.679692 1.19664Z' fill='%23545B58'/></svg>") 50%/contain no-repeat;
    display: inline-block;
    height: 10px;
    transition: transform .3s;
    width: 10px
}

.custom__select__container.open .custom__select__arrow {
    transform: rotate(180deg)
}

.custom__select__menu {
    background: #fff;
    border: 1px solid #009846;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 24px #00000026;
    display: none;
    left: 0;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 10
}

.custom__select__container.open .custom__select__menu {
    display: block
}

.custom__select__option {
    cursor: pointer;
    padding: 10px 15px;
    transition: background .2s
}

.custom__select__option:hover {
    background: #f8f9fa
}

/**/

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

.page-title {
    margin-bottom: calc(var(--spacing) * 10);
    color: var(--color-green);
    font-size: 48px;
    font-weight: 700;
    line-height: 140%;
}

.hero__main {
    position: relative;
}

.hero__mobile,
.catalog__mobile,
.mobile__calculator__anotation,
.mobile__btn {
    display: none;
}

.hero__slider,
.hero__slide {
    position: relative
}

.hero__slide .slide__img {
    position: relative;
    height: 100%;
    max-height: 740px;
    min-height: 740px;
    object-fit: fill;
    object-position: top;
    width: 100%;
    background: linear-gradient(0deg, rgba(153, 153, 153, 0) 72.23%, #FFFFFF 96.22%);
}

.hero__slide::after {
    display:block;
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: linear-gradient(0deg, rgba(153, 153, 153, 0) 72.23%, #FFFFFF 96.22%);
}

.hero__slider .hero__pagination {
    position: absolute;
    width: auto;
    left: 300px;
}

.hero__content {
    position: absolute;
    top: 25%;
    z-index: 10;
    left: 0;
    right: 0;
}

.hero__content .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
}

.hero__title {
    font-size: var(--text-5xl);
    color: var(--color-gray);
    font-weight: 800;
    line-height: 130%;
}

.hero__title span {
    color: var(--color-green);
}

.hero__button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 50px;
    background: var(--gradient-green);
}

.hero__button img {
    position: absolute;
}

.hero__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: white; /* rgba(84, 91, 88, 1) */ 
}

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

/* ===== ===== */

.about {
    background: no-repeat 95% 20% url("/assets/images/site/about-back.png");
}

.about__content {
    display: flex;
}

.about__list img {
    width: 17px;
    height: 18px;
}

.about__text,
.about__subtext{
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
}

.about__text{
    width: 40%;
}

.about__item {
    align-items: baseline;
    gap: calc(var(--spacing)*1);
    display: flex;
    line-height: 250%;
}

.about__item img{
    width: 20px;
}

.about__subtext {
    width: 100%;
}

.review__wrapper {
    max-width: 100%;
    position: relative;
}

.review__slider {
    max-width: 97%;
}

.similar__wrapper {
    max-width: 100%;
    position: relative;
}

.similar__slider {
    max-width: 100%;
}

.video__wrapper {
    max-width: 100%;
    position: relative;
}

.video__container {
    position: relative;
    width: 100%;
    max-height: 500px;
    display: flex;
}

.video__container iframe {
    height: 100%;
    width: 100%;
}

.video__slider {
    max-width: 90%;
}

.video__item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 700px;
}

.video__container {
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 700px;
    flex-grow: 1;
    position: relative;
    justify-content: center;
}

.video__container img {
    object-fit: fill;
    /* width: 100%; */
    cursor: pointer;
}

.video__container .play__btn {
    background: var(--color-green);
    height: 48px;
    width: 48px;
    border-radius: 12px;
    border: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    cursor: pointer;
}

.catalog__desktop {
    background-color: var(--color-background);
    padding-bottom: calc(var(--spacing)*15);
    padding-top: calc(var(--spacing)*10);
}

.catalog__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 50px;
}

.catalog__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 325px;
    text-align: center;
    border-radius: 20px;
}

.catalog__item__image {
    display: flex;
    justify-content: center;
}

.catalog__item__image img{
    height: 325px;
}

.catalog__name__title {
    font-size: var(--text-lg);
    text-align: left;
    color: var(--color-green);
    text-decoration-line: underline;
    font-weight: 800;
    line-height: 100%;
}

.catalog__item:hover .catalog__name__title {
    text-decoration-line: none;
}

.calculator {
    position: relative;
}

.calculator__bg {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.calculator__bg:first-child {
    left: 0;
    top: 0;
}

.calculator__bg:nth-child(2) {
    bottom: -40%;
    left: 0;
    z-index: -1;
}

.calculator__bg:nth-child(3) {
    right: 0;
    top: -5%;
}

.calculator__block {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 4px #21252940;
    display: grid;
    gap: calc(var(--spacing)*15);
    grid-template-columns: 2.2fr 1fr;
    padding: 40px 18px 40px 30px;
    position: relative;
    z-index: 10
}

.calculator__block__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 3px solid #212529;
    padding-right: calc(var(--spacing)*15);
}

.calculator__block__flex {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*10)
}

.calculator__block__item {
    flex-basis: 50%;
    flex-grow: 1;
}

.calculator__block__title {
    font-size: var(--text-lg);
    margin-bottom: calc(var(--spacing)*2)
}

.calculator__block__inputs {
    display: flex;
    gap: calc(var(--spacing)*4)
}

.calculator__block__input {
    border: 1px solid #c4c4c4;
    border-radius: 15px;
    color: var(--color-gray);
    max-width: 117px;
    outline: none;
    padding: 10px 15px
}

.calculator__block__input:focus {
    box-shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
}

.calculator__block__label {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: calc(var(--spacing)*2)
}

.calculator__block__check {
    border: 1px solid #212529;
    border-radius: 2px;
    height: calc(var(--spacing)*3);
    position: relative;
    width: calc(var(--spacing)*3)
}

.calculator__block__checkbox__text {
    font-size: var(--text-lg);
}

.calculator__block__label input:checked+.calculator__block__check:after {
    background-image: url(../images/site/ok.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 2px;
    content: "";
    height: 10px;
    left: 2px;
    position: absolute;
    width: 12px;
    z-index: 1
}

.calculator__block__checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing)*4.5)
}

.calculator__block__checkboxes .calculator__block__item {
    flex-basis: 33%;
    font-family: var(--font-gotham);
    margin-bottom: 0;
}

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

.calculator__block__right .calculator__block__input {
    max-width: none;
    width: 100%
}

.calculator__block__right .calculator__block__label {
    align-items: flex-start;
    max-width: none;
    width: 100%;
}

.calculator__block__right .calculator__block__label .calculator__block__check {
    margin-top: calc(var(--spacing)*2);
}

.calculator__block__button{
    background: var(--gradient-green);
}

.purpose__wrapper {
    max-width: 100%;
    position: relative;
}

.purpose__slider {
    width: 90%;
}

.purpose__prev {
    left: 40px
}

.purpose__next {
    right: 40px
}

.purpose__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 10px;
    width: 200px;
}

.purpose__item__image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(249, 249, 249, 1);
    border-radius: 20px;
    height: calc(var(--spacing)*50);
    padding-bottom: calc(var(--spacing)*5);
    width: calc(var(--spacing)*50);
    z-index: 10;
}

.purpose__item__image picture {
    z-index: 20;
}

.purpose__item__image::before {
    position: absolute;
    border: 20px;
    left: 50px;
    top: 50px;
    margin: auto;
    content: "";
    border-radius: 20px;
    width: 100px;
    height: 100px;
    background: white;
    z-index: 15;
}

.purpose__name {
    max-width: calc(var(--spacing)*45);
    font-weight: 700;
}

.main__tab {
    margin-bottom: calc(var(--spacing)*10)
}

.main__tab {
    background-color: var(--color-green);
    border-radius: 30px;
    padding-block: calc(var(--spacing)*2.5);
    padding-inline: calc(var(--spacing)*5)
}

.main__tabs__container {
    display: flex;
}

.main__tabs__tab {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: var(--text-sm);
    gap: calc(var(--spacing)*2);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    padding: calc(var(--spacing)*1) calc(var(--spacing)*4);
    border-radius: 30px;
    color: white;
    font-weight: 700;
}

.main__tabs__icon  {
    display: flex;
    width: 75px;
    height: 75px;
}

.main__tabs__icon img{
    width: 100%;
    filter: invert(1);
}

.tab__btn.active .main__tabs__icon img {
    filter: none;
}

.main__tabs__container label input[type="radio"] {
    display: none;
}

.main__tabs__icon {
    flex-shrink: 0
}

.cer__ab,
.we__work__tab,
.our_workbench {
    display: none;
}

.title.mobile {
    display: none;
}

.review_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.cer__ab {
    background-image: url(/assets/images/site/banner.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    padding-block: calc(var(--spacing)*10)
}

.cer__pagination  {
    display: none;
}


.cer__wrapper {
    max-width: 644px
}

.cer__item {
    cursor: pointer
}

.cer__wrapper {
    background-color: white;
    border-radius: 20px;
    padding-block: calc(var(--spacing)*10);
    position: relative
}

.cer__slider {
    max-width: 350px
}

.cer__prev {
    left: 40px
}

.cer__next {
    right: 40px
}

.how__we__bottom__text__mobile,
.our__bottom__text__mobile {
    display: none;
}

.how__we__wrapper {
    max-width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.how__we__slider {
    max-width: 97%;
}

.how__we__item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    gap: 40px;
    width: 100%;
}

.how__we__image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.how__we__text {
    position: relative;
    width: 100%;
    background: rgba(249, 249, 249, 1);
    border-radius: 20px;
    height: 480px;
    padding: 38px;
    z-index: 10;
}

.how__we__text .text{
    position: absolute;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    z-index: 20;
}

.how__we__text .decor {
    position: absolute;
    border: 20px;
    left: 10%;
    top: 10%;
    margin: auto;
    content: "";
    border-radius: 20px;
    width: 80%;
    height: 80%;
    background: white;
    z-index: 15;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 300px;
    line-height: 100%;
    text-align: center;
    color: rgba(217, 217, 217, 1);
}

.how__we__item:nth-child(even) {
 flex-direction: row-reverse;
}

.our__bench__wrapper {
    max-width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.our__bench__slider {
    max-width: 97%;
}

.our__bench__item {
    width: 50%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    background: rgba(249, 249, 249, 1);
    border-radius: 20px;
    padding: 30px 15px;
}

.our__bench__item h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: rgba(0, 152, 70, 1);
    margin-bottom: 5px;
}

.our__bench__item .our__anotation {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 45px;
}

.our__bench__item .our__image {
    margin-bottom: 5px;
}

.our__bench__item .our__text {
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
}

.our__bottom__text {
    width: 90%;
    margin: 60px auto 0;
}

.what__subtitle {
    margin-bottom: calc(var(--spacing)*10);
    text-align: center;
    font-weight: 500;
}

.what__content__mobile {
    display: none;
}

.what__content__desktop {
    align-items: center;
    gap: calc(var(--spacing)*9);
    justify-content: space-between;
    display: grid;
    font-weight: 500;
    grid-template-columns: 1fr 2fr 1fr
}

.what__content__desktop__img img {
    width: 100%;
}

.what__list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*4);
    width: 100%
}

.what__count {
    font-size: var(--text-8xl);
    line-height: 1;
    color: var(--color-background);
    font-weight: 800;
}

.what__item__title {
    margin-bottom: calc(var(--spacing)*4);
    margin-top: -32px;
    display: block;
    font-weight: 800
}

.what__item__inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*4)
}

.what__item__flex {
    display: flex;

    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--spacing)*10);
}

.what__item__color {
    border-radius: 38px;
    box-shadow: 0 4px 4px #21252940;
    height: calc(var(--spacing)*10);
    width: calc(var(--spacing)*10)
}

.what__item__flex .what__item-inner {
    margin-top: calc(var(--spacing)*9)
}

    .reviews-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .reviews-button {
        display: flex;
        justify-content: center;
        margin: 60px 0px;
    }
    .reviews-button > button {
        width: 310px;
    }
    
    .review__toggle {
        margin-top: 40px;
        padding-bottom: 20px;
        cursor: pointer;
    }
    .review__toggle_text {
        text-align: right;
        padding-right: 15px;
        border-bottom: 2px solid var(--color-green);
        font-weight: 600;
        font-style: Semibold;
        font-size: 16px;
        color: var(--color-green);
    }
    .review__toggle_icon {
        width: 22px;
        height: 22px;
        float: right;
        margin-right: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease-out;
    }
    
    .review-item {
    padding: 20px 30px;
    background-color: rgba(249, 249, 249, 1);
    border-radius: 12px;
}

.review-container {
    display: flex;
}

.review-left {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-name {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    color: rgba(33, 37, 41, 1);
}

.rating-date {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    color: rgba(0, 152, 70, 1);
}

.rating-stars {
    display: flex;
    gap: 2px;
}
.rating-stars li {
    height: 20px;
    width: 20px;
    background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'20'%20height%3D'19'%20viewBox%3D'0%200%2020%2019'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M12.2617%205.8623L12.374%206.05957L12.5967%206.10449L18.0576%207.22266L14.2969%2011.3379L14.1436%2011.5049L14.1689%2011.7305L14.792%2017.2695L9.71777%2014.9648L9.51074%2014.8711L9.30371%2014.9648L4.22852%2017.2695L4.85254%2011.7305L4.87793%2011.5049L4.72461%2011.3379L0.962891%207.22266L6.4248%206.10449L6.64746%206.05957L6.75977%205.8623L9.51074%201.0127L12.2617%205.8623Z'%20stroke%3D'%23E49C38'%2F%3E%3C%2Fsvg%3E");
}
.rating-stars li.active {
    background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'20'%20height%3D'19'%20viewBox%3D'0%200%2020%2019'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M9.51074%200L12.6965%205.61513L19.0213%206.90983L14.6655%2011.6749L15.3886%2018.0902L9.51074%2015.42L3.63289%2018.0902L4.35602%2011.6749L0.000177383%206.90983L6.32495%205.61513L9.51074%200Z'%20fill%3D'%23E49C38'%2F%3E%3C%2Fsvg%3E");
}

.review-right {
    flex: 1 1;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: rgba(33, 37, 41, 1);
}

.rew__news .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.rew__left,
.news__right {
    width: 49%;
}

.rew__wrapper,
.news__wrapper {
    max-width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.rew__slider,
.news__slider{
    max-width: 100%;
}

.rew__item,
.news__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    gap: 30px;
}

.rew__item .rew__container,
.news__item .news__container{
    display: flex;
    gap: 15px;
    width: 100%;
    height: 210px;
}

.review,
.news {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.review__video {
    display: flex;
    width: 100%;
    height: 175px;
}

.review__text {
    display: flex;
    width: 100%;
}

.review__text .date,
.news .date {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 152, 70, 1);
}

.news .date {
    margin-bottom: 5px;
}

.news .news__img {
    margin-bottom: auto;
}

.review__text .name,
.news .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin-left: auto;
}

.news .text {
    line-height: 20px;
}

.rew__bottom,
.news__bottom {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.rew__bottom a,
.news__bottom a {
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    text-align: right;
    text-decoration: underline;
    text-transform: uppercase;
}

.rew__bottom .rew__pagination,
.news__bottom .news__pagination {
    top: 10px;
}

.partners__content {
    background-color: var(--color-background);
    border-radius: 40px;
    padding: calc(var(--spacing)*11);
}

.partners__inner {
    background-color: white;
    border-radius: 40px;
    padding: calc(var(--spacing)*12) calc(var(--spacing)*8);
    position: relative;
}

.partners__slide  {
    filter: grayscale(1);
    transition: .3s;
}

.partners__slide:hover  {
    filter: grayscale(0);
    transition: .3s;
}

.partners__arrow-left {
    left: 12px
}

.partners__arrow-right {
    right: 12px
}

.team__content {
    display: flex;
    width: 100%;
    position: relative
}

.team__slider {
    cursor: pointer;
    margin: 0 20px;
    max-width: 100%;
    padding-bottom: 50px
}

.team__pagination {
    display: none;
}

.team__item__content {
    overflow: hidden
}

.team__item__image__float {
    border-radius: 12px;
    display: block;
    float: left;
    height: 180px;
    margin-bottom: 24px;
    margin-right: 20px;
    width: 150px
}

.team__item__name {
    font-size: var(--text-2xl);
    margin-bottom: calc(var(--spacing)*5);
    font-weight: 700;
}

.team__item__status {
    margin-bottom: calc(var(--spacing)*8);
    color: var(--color-green);
    font-weight: 700;
    text-decoration-line: underline;
}

.consult__title {
    color: white;
    margin-bottom: calc(var(--spacing)*5)
}

.consult__content {
    display: grid;
    gap: calc(var(--spacing)*3);
    grid-template-columns: 1fr 2fr
}

.consult__left {
    align-items: center;
    background: #545b58;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 40px 20px
}

.consult__title {
    color: white;
    margin-bottom: calc(var(--spacing)*5)
}

.consult__subtitle {
    color: #c4c4c4;
    line-height: 187%;
    margin-bottom: calc(var(--spacing)*10)
}

.consult__slider {
    cursor: pointer;
    margin: 0 20px;
    max-width: 100%;
    padding-bottom: 50px;
}

.consult__item__content {
    overflow: hidden
}

.consult__item__image__float {
    border-radius: 12px;
    display: block;
    float: left;
    height: 180px;
    margin-bottom: 24px;
    margin-right: 20px;
    width: 150px
}

.consult__right {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    position: relative
}

.consult__item__name {
    font-size: var(--text-2xl);
    margin-bottom: calc(var(--spacing)*5);
    font-weight: 700;
}

.consult__item__status {
    margin-bottom: calc(var(--spacing)*8);
    color: var(--color-green);
    font-weight: 700;
    text-decoration-line: underline;
}

.page-header {
    background-image: url(../images/site/page-header.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-bottom: calc(var(--spacing)*10);
    padding-bottom: calc(var(--spacing)*11);
    padding-top: calc(var(--spacing)*3)
}

.page-header .breadcrumbs {
    margin-top: 140px;
    margin-bottom: 18px;
}

.page-header__title {
    color: var(--color-green);
    display: block;
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 140%;
}

.page-header__inner.mobile {
    display: none;
}

.category__inner {
    display: grid;
    gap: calc(var(--spacing)*12);
    grid-template-columns: 1fr 3fr
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*3);
}

.category-list__name {
    color: var(--color-green);
    font-size: 20px;
    font-weight: 600
}

.category-list__item {
    overflow: hidden
}

.category-list__header {
    align-items: center;
    cursor: pointer;
    gap: calc(var(--spacing)*3);
    display: flex;
    transition-duration: .3s
}

.category-list__arrow {
    flex-shrink: 0;
    transition-duration: .3s
}

.category-list__item.open .category-list__arrow {
    transform: rotate(180deg)
}

.category-list__title {
    font-weight: 600;
}

.category-list__subcategories {
    display: none;
    padding-left: calc(var(--spacing)*12)
}

.category-list__subcategory {
    color: var(--color-gray);
    display: block;
    line-height: 137%;
    cursor: pointer;
    padding-block: calc(var(--spacing)*2);
    padding-inline: calc(var(--spacing)*0);
    transition-duration: .2s;
}

.category-list__item.open .category-list__subcategories {
    display: block
}

.category-list__subcategory:hover {
    color: var(--color-green)
}

.filter {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*1.5);
}

.filter-block {
    background-color: var(--color-background);
    border-radius: 12px;
    padding: 10px 16px 24px
}

.filter-block__header {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin-bottom: calc(var(--spacing)*4);
}

.filter-block svg {
    flex-shrink: 0;
    transition-duration: .3s
}

.filter-block.collapsed svg {
    transform: rotate(180deg)
}

.filter-block__content {
    display: block
}

.filter-block.collapsed .filter-block__content {
    display: none
}

.collapsed .filter-block__header {
    margin-bottom: 0
}

.filter-block__title {
    font-size: var(--text-lg);
    line-height: var(--text-lg--line-height);
    font-weight: 600;
}

.filter-block__checkboxes {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*3);
    max-height: 308px;
    overflow-y: auto;
    padding-right: 4px
}

.custom-checkbox {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: calc(var(--spacing)*3);
    user-select: none
}

.custom-checkbox__input {
    display: none
}

.filter-block__checkboxes--scroll::-webkit-scrollbar {
    background: #f0f0f0;
    border-radius: 8px;
    width: 8px
}

.filter-block__checkboxes--scroll::-webkit-scrollbar-thumb {
    background: #009846;
    border-radius: 8px
}

.filter-block__checkboxes--scroll::-webkit-scrollbar-thumb:hover {
    background: #007a34
}

.custom-checkbox__box {
    background: #fff;
    border: 1px solid #545b5880;
    border-radius: 2px;
    display: inline-block;
    height: 15px;
    position: relative;
    transition: border-color .2s;
    width: 15px
}

.custom-checkbox__input:checked+.custom-checkbox__box {
    background: #009846;
    border-color: #009846
}

.custom-checkbox__label {
    font-size: var(--text-base);
    line-height: var(--text-base--line-height);
}

.filter-block__inputs {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*2);
    margin-bottom: calc(var(--spacing)*4)
}

.filter-block__input {
    border-color: var(--color-gray);
    border-radius: var(--radius-lg);
    border-style: solid;
    border-width: 1px;
    font-size: var(--text-base);
    line-height: var(--text-base--line-height);
    padding-block: calc(var(--spacing)*2);
    padding-inline: calc(var(--spacing)*3);
    width: calc(var(--spacing)*24)
}

.filter-block__input-sep {
    color: var(--color-gray);
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height))
}

::-moz-selection {
    background: #17a2b8;
    color: #fff
}

::selection {
    background: #17a2b8;
    color: #fff
}

.price-input {
    display: flex;
    width: 100%
}

.price-input .field {
    align-items: center;
    border: 1px solid #999;
    border-radius: 5px;
    display: flex;
    height: 45px;
    padding: 12px 16px
}

.field input,
.price-input .field {
    color: var(--color-gray);
    font-weight: 500;
    width: 100%
}

.field input {
    height: 100%;
    margin-left: 5px;
    outline: none
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input[type=number].calculator__block__input::-webkit-inner-spin-button,
input[type=number].calculator__block__input::-webkit-outer-spin-button {
    -webkit-appearance: auto;
}

.calculator__block__tirazh .calculator__block__input,
.calculator__block__address .calculator__block__input
{
    max-width: 100%;
    width: 100%;
}

.price-input .separator {
    align-items: center;
    color: var(--color-gray);
    display: flex;
    justify-content: center;
    width: 32px
}

.filter-range__slider {
    background: #ddd;
    border-radius: 5px;
    height: 5px;
    margin-top: 40px;
    position: relative
}

.filter-range__slider .progress {
    background: #009846;
    border-radius: 5px;
    height: 100%;
    left: 0%;
    position: absolute;
    right: 25%
}

.filter-range__values {
    color: #545b58;
    font-size: 13px;
    font-weight: 400;
    line-height: 137%;
    text-align: center
}

.filter-range__max,
.filter-range__min {
    bottom: 230%;
    position: absolute
}

.filter-range__max {
    right: 0
}

.range-input {
    position: relative
}

.range-input input {
    appearance: none;
    background: 0 0;
    cursor: pointer;
    height: 5px;
    pointer-events: none;
    position: absolute;
    top: -5px;
    width: 100%
}


input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #fff;
    border: 3px solid #545b5880;
    border-radius: 50%;
    box-shadow: 0 0 6px #0000000d;
    height: 20px;
    pointer-events: auto;
    width: 20px
}

input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    background: #fff;
    border: 3px solid #545b5880;
    border-radius: 50%;
    box-shadow: 0 0 6px #0000000d;
    height: 20px;
    pointer-events: auto;
    width: 20px
}

.filter__reset {
    background-color: var(--color-background);
    color: var(--color-gray);
    text-decoration-line: underline
}


.filter__reset:hover {
    color: white;
    text-decoration-line: none
}

.filter__reset {
    border-radius: 12px
}

.filter-block__checkboxes--scroll {
    max-height: 308px;
    overflow-y: auto;
    padding-right: 4px
}

.category-header {
    margin-bottom: calc(var(--spacing)*10)
}

.category-header__tag {
    background-color: var(--color-green);
    text-align: center;
    white-space: nowrap;;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    padding: 5px 14px;
    width: 150px
}

.category__right {
    min-width: 0
}

.category-type {
    margin-bottom: calc(var(--spacing)*10)
}

.category-type__inner {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr
}

.category-type__item {
    border: 2px solid #00984680;
    border-radius: 15px;
    color: #21252980;
    font-weight: 600;
    line-height: 100%;
    padding: 17px 40px;
    text-align: center
}

.category-type__item.active {
    border: 2px solid #009846;
    box-shadow: 0 2px 4px #00000040;
    color: #212529
}

.category-profile__name {
    font-size: var(--text-2xl);
    line-height: var(--text-2xl--line-height);
    color: var(--color-gray);
    font-weight: 600;
    line-height: 67%;
    text-transform: uppercase
}

.category-profile__inner {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*7)
}

.category-profile__items {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing)*10)
}

.category-profile__item {
    font-size: var(--text-2xl);
    line-height:  var(--text-2xl--line-height);
    background: #fff;
    border: 1px solid #545b58;
    border-radius: 5px;
    box-shadow: 0 4px 4px #00000040;
    color: #009846;
    font-weight: 600;
    line-height: 67%;
    opacity: .5;
    padding: 7px 56px
}

.category-profile__item.active {
    opacity: 1
}

.category-profile,
.category-selected {
    margin-bottom: calc(var(--spacing)*10)
}

.category-selected__inner {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--spacing)*2)
}

.category-selected__item {
    align-items: center;
    background-color: var(--color-background);
    border-radius: 12px;
    display: flex;
    gap: calc(var(--spacing)*2);
    padding: 5px 14px
}

.category-selected__delete,
.category-selected__item {
    cursor: pointer;
    color: var(--color-gray);
    font-weight: 500;
}

.category-selected__delete {
    text-decoration-line: underline
}

.category-actions {
    display: flex;
    gap: calc(var(--spacing)*4);
    justify-content: space-between;
    margin-bottom: calc(var(--spacing)*10)
}

.pagination {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*2)
}

.category__sort .custom-select {
    width: calc(var(--spacing)*60)
}

.category__sort .custom-select__selected {
    background-color: var(--color-background);
    border: 1px solid #545b58;
    border-radius: 5px;
    gap: calc(var(--spacing)*4)
}

.category__sort .custom-select__selected span {
    color: #212529
}

.category__sort .custom-select__selected .custom-select__arrow {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3E%3Cpath fill='%23545B58' fill-opacity='.5' d='M8 12.395c0 .579.202 1.14.575 1.589l5.262 6.232c.199.245.452.442.74.578a2.17 2.17 0 0 0 1.845 0c.288-.136.54-.333.74-.578l5.262-6.232a2.515 2.515 0 0 0 .325-2.7c-.17-.379-.449-.7-.801-.928A2.24 2.24 0 0 0 20.76 10H10.237a2.24 2.24 0 0 0-1.186.356c-.353.227-.63.55-.801.927A2.6 2.6 0 0 0 8 12.395m7.5 5.94-5-5.89h9.886z'/%3E%3C/svg%3E") 50%/contain no-repeat;
    height: 30px;
    width: 30px
}

.pagination__items {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*2)
}

.pagination__item {
    align-items: center;
    border-radius: 5px;
    color: var(--color-gray);
    display: flex;
    font-size: var(--text-sm);
    height: calc(var(--spacing)*9);
    justify-content: center;
    line-height: var(--text-sm--line-height);
    width: calc(var(--spacing)*9)
}

.pagination__item.active {
    background-color: var(--color-green);
    color: white;
}

.pagination__action {
    text-decoration-line: underline
}

.category__all {
    background-color: var(--color-background);
    border: 1px solid #545b58;
    border-radius: 5px;
    padding: calc(var(--spacing)*3)
}

.category-products {
    margin-bottom: calc(var(--spacing)*5)
}

.category-products__items {
    display: grid;
    gap: calc(var(--spacing)*5);
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
}

.category-products__image {
    height: calc(var(--spacing)*62);
    margin-bottom: calc(var(--spacing)*2);
    width: calc(var(--spacing)*62)
}

.category-products__image img {
    height: 100%;
    object-fit: contain;
    width: 100%
}

.category-products__item {
    background-color: var(--color-background);
    border-radius: 20px;
    padding: 10px 15px 20px
}

.category-products__name {
    font-size: var(--text-lg);
    line-height: var(--text-lg--line-height);
    margin-bottom: calc(var(--spacing)*5);
    font-weight: 500;
}

.category-products__calculator {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*3);
    margin-bottom: calc(var(--spacing)*5)
}

.category-products__info {
    font-size: var(--text-lg);
    line-height: var(--text-lg--line-height);
    color: var(--color-gray);
    font-weight: var(--font-weight-medium)
}

.category-products__calc {
    align-items: center;
    background-color: white;
    border-radius: 12px;
    display: flex
}

.category-products__minus,
.category-products__plus {
    cursor: pointer
}

.category-products__count {
    font-size: var(--text-xl);
    height: calc(var(--spacing)*7.5);
    line-height: var(--text-xl--line-height);
    text-align: center;
    width: calc(var(--spacing)*15);
    font-weight: 600;
    line-height: 150%
}

.category-products__all span {
    color: var(--color-gray)
}

.category-products__all span,
.category-products__total {
    font-size: var(--text-2xl);
    line-height: var(--text-2xl--line-height);
}

.category-products__total {
    font-weight: 800;
}

.category-products__all {
    display: flex;
    gap: calc(var(--spacing)*2);
    margin-bottom: calc(var(--spacing)*3.5)
}

.category-products__basket {
    margin-bottom: calc(var(--spacing)*2.5);
    width: 100%
}

.category-products__buy {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 4px #00000040;
    color: var(--color-green);
    width: 100%
}

.category-products__buy:hover {
    color: white;
}


.category-products__bottom {
    display: flex;
    justify-content: center
}

.recently {
    background-color: var(--color-background);
    border-radius: 12px;
    padding: 20px 2px
}

.recently__header {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*2);
    justify-content: space-between;
    margin-bottom: calc(var(--spacing)*2.5);
    padding-inline: calc(var(--spacing)*5)
}

.recently__arrows {
    cursor: pointer;
    display: flex;
    gap: calc(var(--spacing)*7.5)
}

.recently__arrow.swiper-button-disabled {
    opacity: .5
}

.recently__title {
    font-size: var(--text-2xl);
    line-height: var(--text-2xl--line-height);
    color: var(--color-gray);
    font-weight: 600;
}

.recently__image {
    background-color: white;
    border-radius: 12px;
    height: calc(var(--spacing)*26);
    margin-bottom: calc(var(--spacing)*1);
    overflow: hidden;
    width: 100%;
}

.recently__image img {
    height: 100%;
    object-fit: contain;
    width: 100%
}


.recently__item {
    align-items: center;
    background-color: var(--color-green);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 5px 5px 20px;
    height: auto;
}

.recently__name {
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    line-height: 137%
}

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

.banner {
    position: sticky;
    top: 30%
}

.articles-main__mobile {
    display: none;
}
.articles-main__topnav {
    display: flex;
    width: 100%;
    justify-content:space-between;
    margin-top: 20px;
}
.articles-main__sort {
    min-width: 280px;
}
.articles-main__nav {
    display: flex;
    justify-content: center;
    color: #08112B;
    font-size: 14px;
}

.articles-main__total {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #696969;
    border-radius: 5px;
    width: 240px;
    height: 40px;
    
}

.articles-main__list {
    margin: 40px 0px;
    display: grid;
    gap: 40px 20px;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
}

.articles__content {
    padding-inline: calc(var(--spacing)*5);
    position: relative
}

.articles__all {
    text-align: center;
    display: block;
    font-weight: 700;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.articles__slider {
    margin-bottom: calc(var(--spacing)*2);
    padding-bottom: calc(var(--spacing)*15)
}

.articles__image {
    border-radius: 20px;
    overflow: hidden;
    height: calc(var(--spacing)*42);
}

.articles__image img {
    /*border-radius: 20px;*/
    height: calc(var(--spacing)*42);
    margin-bottom: calc(var(--spacing)*2);
    object-fit: cover;
    width: 100%;
}

.articles__item:hover .articles__image img {
    scale: 105%;
}

.articles__info {
    padding-block: calc(var(--spacing)*3)
}

.articles__date {
    color: #5a5454;
    font-size: var(--text-sm);
}

.articles__date,
.articles__title {
    margin-bottom: calc(var(--spacing)*2);
    font-weight: 700;
}

.articles__title {
    font-size: var(--text-lg);
}

.articles__text {
    color: #5a5454;
    margin-bottom: calc(var(--spacing)*4);
    overflow: hidden
}

.articles__more {
    font-size: var(--text-sm);
    color: var(--color-green);
    font-weight: 700;
    text-decoration: underline;
}

.articles__item:hover .articles__title {
    color: var(--color-green);
}

.articles__item:hover .articles__more {
    text-decoration-line: none;
}

.articles__all:hover {
    text-decoration-line: none;
}

.product__container {
    column-gap: calc(var(--spacing)*15);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 9fr 1fr;
    justify-content: space-between;
    row-gap: calc(var(--spacing)*10)
}

.product__images {
    grid-row: 1/3;
    min-width: 0
}

.product-avatar__slider {
    margin-bottom: calc(var(--spacing)*5)
}

.product-thumb__slide {
    cursor: pointer;
    opacity: .6
}


.product-thumb__slide {
    cursor: pointer;
    opacity: .6
}

.product-thumb__slide.swiper-slide-thumb-active {
    opacity: 1
}

.product__available {
    color: #696969;
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    line-height: 150%;
    margin-bottom: calc(var(--spacing)*7)
}

.product__available span {
    --tw-font-weight: var(--font-weight-semibold);
    color: var(--color-green);
    font-weight: var(--font-weight-semibold)
}

.product__subtitle {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
    --tw-font-weight: var(--font-weight-bold);
    color: var(--color-gray);
    font-weight: var(--font-weight-bold)
}

.product__character {
    align-items: flex-end;
    color: #5a5454;
    display: flex;
    font-size: var(--text-lg);
    justify-content: space-between;
    line-height: var(--tw-leading, var(--text-lg--line-height));
    line-height: 167%;
    margin-bottom: calc(var(--spacing)*1);
    row-gap: calc(var(--spacing)*2.5)
}

.product__line {
    background-color: #d9d9d9;
    flex-grow: 1;
    height: 1px
}

.product__character-all {
    cursor: pointer;
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    margin-top: calc(var(--spacing)*12);
    --tw-font-weight: var(--font-weight-semibold);
    color: var(--color-gray);
    font-weight: var(--font-weight-semibold);
    text-decoration-line: underline
}

.product__content__tab .container{
    display: flex;
    width: 100%;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.gost__item {
    align-items: center;
    font-size: var(--text-lg);
    gap: calc(var(--spacing) * 5);
    line-height: var(--text-lg--line-height);
    display: flex;
    font-weight: 500;
    text-decoration-line: underline;
}

.gost__item:hover {
    color: var(--color-green);
}

.gost__tab .container{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.about__product__left,
.about__product__right {
    width: 50%;
    height: -webkit-fill-available;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about__product__left img{
    width: 100%;
    height: -webkit-fill-available;
}

.about__product__right {
    font-weight: 500;
    font-size: 16px;;
    line-height: 30px;
}

.diagram__block {
    border: 1px dotted rgba(0, 152, 70, 1);
    border-radius: 20px;
    padding: 10px 15px;
}

.diagram__images {
    display: flex;
    alig-items: center;
    justify-content: center;
    gap: 20px;
}

.map__map {
    border-radius: 20px;
    overflow: hidden;
}

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

.map__content {
    display: grid;
    gap: calc(var(--spacing)*15);
    grid-template-columns: 2fr 1fr;
}

.map__reverse {
    grid-template-columns: 1fr 2fr;
}


.map__info {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 4px #00000040;
    padding: calc(var(--spacing)*5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.map__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.map__title {
    font-size: var(--text-xl);
    margin-bottom: calc(var(--spacing)*2);
    font-weight: 700;
}

.map__value {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

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

.map__button {
    margin-top: calc(var(--spacing)*2);
    align-self: center;
}

.popup-form__checkbox-agree__label,
.popup-form__checkbox-privacy__label{
    display: flex;
    gap: 20px;
    align-items: center;
}

.question__inner {
    display: grid;
    gap: calc(var(--spacing)*7.5);
    grid-template-columns: 1fr 2fr
}

.question__title {
    color: var(--color-green);
    margin-bottom: calc(var(--spacing)*5);
    text-align: left
}

.question__subtitle {
    color: var(--color-gray);
    line-height: 187%
}

.contact-form {
    display: grid;
    gap: calc(var(--spacing)*9);
    grid-template-columns: 1fr 1fr
}

.contact-form__left {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*5)
}

.contact-form__input,
.contact-form__textarea {
    background-color: white;
    border: 1px solid #545b58;
    border-radius: 5px;
    font-size: var(--text-xl);
    line-height: var(--text-xl--line-height);
    outline: none;
    padding: calc(var(--spacing)*4) calc(var(--spacing)*5);
}

.contact-form__textarea {
    height: 100%;
    resize: none;
    width: 100%
}

.contact-form__bottom {
    align-items: center;
    display: flex;
    gap: calc(var(--spacing)*5);
    grid-column: 1/3
}

.contact-form__button {
    background-color: var(--color-green);
    cursor: pointer;
    padding-block: calc(var(--spacing)*4);
    padding-inline: calc(var(--spacing)*13);
    border-radius: 15px;
    box-shadow: 0 2px 4px #00000040;
    color: white;
    flex-shrink: 0;
    font-weight: 600;
}

.contact-form__apply {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height))
}

.contact-form__apply a {
    text-decoration-line: underline
}

.faq__title {
    color: var(--color-green);
    text-align: left;
}
.faq__description {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    color: rgba(84, 91, 88, 1);
}
.faq__list {
    margin: 40px 0px;
}
.faq__item {
    background-color: rgba(249, 249, 249, 1);
    border-radius: 20px;
    margin-bottom: 20px;
}
.faq__quest {
    padding: 20px 15px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    color: rgba(33, 37, 41, 1);
}
.faq__answer {
    max-height: 0;
    opacity: 0;
    overflow-y: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.8s ease-out;
    
    padding: 0px 15px;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: rgba(33, 37, 41, 1);
}
.faq__toggle {
    padding-bottom: 20px;
    cursor: pointer;
}
.faq__toggle_text {
    padding-left: 15px;
    border-bottom: 2px solid var(--color-green);
    font-weight: 600;
    font-style: Semibold;
    font-size: 16px;
    color: var(--color-green);
}
.faq__toggle_icon {
    width: 22px;
    height: 22px;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-out;
}
.faq__item.expand .faq__answer {
    max-height: 1000px;
    opacity: 1;
    padding: 20px 15px;
}
.faq__item.expand .faq__toggle_icon {
    transform: rotate(180deg);
}

.faq__answer ul {
   list-style: initial;
   margin: initial;
   padding: 0px 0px 20px 40px;
}
.faq__answer ol {
   list-style: initial;
   margin: initial;
   padding: 0px 0px 0px 40px;
}
.faq__answer p {
   padding-bottom: 20px;
}

.article__main__title {
    text-align: left;
}

.article__content__title h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.article__blocks {
    display: flex;
    gap: 25px;
}
    
.article__right {
    width: 100%;
}
    
.article__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 300px;
}
    
.article__content__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 15px 20px;
    background-color: rgba(249, 249, 249, 1);
}
    
.article__content__title {
    align-content: center;
    font-weight: 600;
    font-size: 20px;
}

.article__content__block__list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
    
.article__content__block__list ul li a{
    font-size: 18px;
    line-height: 24px;
    border-bottom: 1px solid rgba(84, 91, 88, 1) ;
}
    
.article__baner{
    border-radius: 12px;
    max-height: 420px;
    max-width: 300px;
}
    
.article__right p,
.article__right li{
    font-size: 18px;
    line-height: 25px;
    color: #696969;
}

.article__right h3,
.article__right h4 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: #000000;
    margin-top: 80px;
    margin-bottom: 20px;
}

.article__content__text p {
    line-height: 1.38;
    margin-top: 0pt;
    margin-bottom: 0pt;
    font-size: 11pt;
    font-family: Arial,sans-serif;
    color: #000000;
    background-color: transparent;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-decoration: none;
    vertical-align: baseline;
    white-space: pre-wrap;
}

.article__content__text h2 {
    line-height: 1.38;
    margin-top: 18pt;
    margin-bottom: 6pt;
    font-size: 16pt;
    font-family: Arial,sans-serif;
    color: #000000;
    background-color: transparent;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-decoration: none;
    vertical-align: baseline;
    white-space: pre-wrap;
}

.article__content__text li  {
    font-size: 11pt;
    font-family: Arial,sans-serif;
    color: #000000;
    background-color: transparent;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-decoration: none;
    vertical-align: baseline;
    white-space: pre-wrap;
}
    
.article__back {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 24px;
    text-decoration: underline;
    color: var(--color-green);
    margin-top: 40px;
}
    
.article__back a {
    display: flex;
    align-items: center;
    text-decoration: underline;
    position: relative;
    gap: 15px;
}
    
.article__content__text li{
    list-style: disc;
    list-style-position: inside;
}
    
.article__baner img {
    width:100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

    .vacansy__grid {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 10px;
    }
    
    .vacancy__slide.vacancy__grid__slide {
        width: 100%;
    } 
    
    .bannerOne,
    .bannerTwo {
        width: 100%;
        height: 100%;
        background: rgba(249, 249, 249, 1);
        overflow: hidden;
        border-radius: 16px;
    }
    
    .bannerOne {
        grid-row: 1/3;
        grid-column: 3;
        
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 50px 50px;
    }
    
    .bannerOne h3 {
        align-self: center;
        
        font-weight: 700;
        font-size: 24px;
        line-height: 140%;
        color: #009846;
    }
    
    .bannerOne ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 20px 0 auto;
    }
    
    .bannerOne li {
        display: flex;
        gap: 5px;
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
        align-items: center;
    }
    
    .bannerOne li svg {
        width: 50px;
        height: 50px;
    }
    
    .bannerOne a {
        align-self: center;
        font-weight: 700;
        font-size: 32px;
        line-height: 140%;
        color: #009846;
        margin-top: 25px;
    }
    
    .bannerTwo {
        grid-row: 3/5;
        grid-column: 1;
    }
    
    .bannerTwo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 15%;
    }
    
    .vacancy__slides {
        display: none;
    }

.vacancy__slider {
    padding-bottom: 50px;
}

.vacancy__title {
    color: var(--color-green);
    text-align: left;
}
.vacancy__description,
.advantages__description{
    font-weight: 500;
    font-size: var(--font-base);
    line-height: 30px;
    color: rgba(84, 91, 88, 1);
    margin-bottom: 30px;
}

.vacancy__slides {
    position: relative;
}

.vacancy__slide {
    width: 416px;
    min-height: 275px;
    border-radius: 20px;
    background-color: rgba(249, 249, 249, 1);
    padding: 40px 20px;
}

.vacancy__type {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 26px;
    color: rgba(109, 109, 109, 1);
}

.vacancy__name {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    color: rgba(33, 37, 41, 1);
    margin-top: 20px;
    margin-bottom: 20px;
    color: rgba(0, 152, 70, 1);
}

.vacancy__desc {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 40px;
}

.vacancy__button {
    width: 170px;
    height: 50px;
    border-radius: 15px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    color: rgba(0, 152, 70, 1);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vacancy-next {
    right: -20px;
}
.vacancy-prev {
    left: -20px;
}

.production .title{
    color: var(--color-green);
}

.production p,
.production ul{
    font-weight: 400;
    font-size: var(--text-base);
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 30px;
    color:rgba(84, 91, 88, 1);
}

.production li{
    list-style: disc;   
    list-style-position: inside;
}

.product__actions {
    align-items: flex-end;
    display: flex;
    gap: calc(var(--spacing)*10);
    margin-bottom: calc(var(--spacing)*7)
}

.product__action {
    cursor: pointer;
    transition-duration: .5s;
}

.product__action:hover {
    scale: 110%;
}

.product__price-block {
    align-items: flex-end;
    display: flex;
    gap: calc(var(--spacing)*15);
    margin-bottom: calc(var(--spacing)*11.5)
}

.product__price-new {
    font-size: 32px;
    font-weight: 700;
}

.product__number input {
    font-size: var(--text-xl);
    line-height: var(--text-xl--line-height);
    max-width: calc(var(--spacing)*40);
    text-align: center;
    font-weight: 500;
    line-height: 150%;
    outline-style: none
}

.product__total {
    color: var(--color-gray);
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
    margin-bottom: calc(var(--spacing)*3)
}

.product__total p,
.product__total span {
    font-weight: var(--font-weight-bold)
}

.product__total p {
    display: inline
}

.product__buttons {
    display: flex;
    gap: calc(var(--spacing)*5)
}

.product__button {
    padding-inline: calc(var(--spacing)*10)
}

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

.product__buy:hover {
    color: var(--color-white)
}

.product__buy {
    background: #fff;
    box-shadow: 0 2px 4px #00000040
}

.product-chars__list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*5)
}

.product-chars__item {
    background-color: var(--color-background);
    border-radius: 8px;
    display: flex;
    gap: calc(var(--spacing)*5);
    justify-content: space-between;
    padding: calc(var(--spacing)*4)
}

.product-chars__name,
.product-chars__value {
    font-size: var(--text-xl);
    line-height: var(--text-xl--line-height);
    line-height: 80%
}

.product-chars__item:first-child .product-chars__name,
.product-chars__item:first-child .product-chars__value {
    font-size: var(--text-xl);
    line-height:  var(--text-xl--line-height);
    color: black;
    font-weight: 500;
    line-height: 80%
}

.photogallery__list {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.photogallery__item {
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
}

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

.tab__slider__container {
    max-width: 100%;
    position: relative;
}

.tab__slider {
    max-width: 100%;
}

.tab__slider__container {
    margin-bottom: calc(var(--spacing)*5)
}

.tab__slider__container {
    background-color: var(--color-green);
    border-radius: 30px;
    padding-block: calc(var(--spacing)*2.5);
    padding-inline: calc(var(--spacing)*5)
}

.tab__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: var(--text-sm);
    gap: calc(var(--spacing)*2);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    padding: calc(var(--spacing)*1) calc(var(--spacing)*4);
    border-radius: 30px;
    color: white;
    font-weight: 700;
}

.tab__btn.active {
    background-color: var(--color-background);
    border-radius: 30px;
    color: var(--color-main)
}

.tab__btn.active svg path {
    fill: #000
}

.tab__slider__icon {
    flex-shrink: 0
}


.tab__content
{
    display: none;
}

.tab__content.active {
    position: relative;
    display: block;
}

.about .title {
    margin-bottom: 0;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.about__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about__block:nth-child(even) {
    flex-direction: row-reverse;
}

.about__block .about__image ,
.about__block .about__text__block {
    min-height: 480px;
    width: 50%;
    height: 100%;
}

.about__image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    height: -webkit-fill-available;
}

.about__text__block {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(249, 249, 249, 1);
    border-radius: 20px;
    padding: 38px;
    z-index: 10;
}

.about__text__block .decor {
    position: absolute;
    border: 20px;
    left: 10%;
    top: 10%;
    margin: auto;
    content: "";
    border-radius: 20px;
    width: 80%;
    height: 80%;
    background: white;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 300px;
    line-height: 100%;
    text-align: center;
    color: rgba(217, 217, 217, 1);
}

.about__text__block .text {
    position: absolute;
    font-weight: 500;
    font-size: var(--font-base);
    line-height: 30px;
    z-index: 20;
}


.advantages {
    background-color: var(--color-background);
    margin-bottom: calc(var(--spacing)*10);
    padding-block: calc(var(--spacing)*10)
}

.advantages__description {
    text-align: center;
}

.advantages__subtitle {
    text-align: center
}

.advantages__slider:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    justify-content: center
}

.advantages__slider:not(.swiper-initialized) .advantages__slide {
    max-width: 280px
}

.advantages__image {
    align-items: flex-end;
    display: flex;
    height: calc(var(--spacing)*45);
    justify-content: start;
    margin-bottom: calc(var(--spacing)*5);
    position: relative
}
/* 
.advantages__image:before {
    content: "";
    right: calc(var(--spacing)*3);
    top: calc(var(--spacing)*6);
    color: #fff;
    font-size: 6.25rem;
    font-weight: 800;
    line-height: 70%;
    position: absolute;
    z-index: -1
}

.advantages__slide:nth-child(2n) .advantages__image:before {
    top: calc(var(--spacing)*14)
}

.advantages__slide:first-child .advantages__image:before {
    content: "01"
}

.advantages__slide:nth-child(2) .advantages__image:before {
    content: "02"
}

.advantages__slide:nth-child(3) .advantages__image:before {
    content: "03"
}

.advantages__slide:nth-child(4) .advantages__image:before {
    content: "04"
}

.advantages__slide:nth-child(5) .advantages__image:before {
    content: "05"
}

.advantages__slide:nth-child(6) .advantages__image {
    justify-content: flex-start
}

.advantages__slide:nth-child(6) .advantages__image:before {
    content: "06";
    z-index: 0
}

.advantages__slide:nth-child(7) .advantages__image:before {
    content: "07"
}

.advantages__slide:nth-child(8) .advantages__image:before {
    content: "08"
} */

.advantages__text {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium)
}

.advantages__text span {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase
}

.form__politic {
    display: flex;
    grid-column: 1/3;
    margin-top: 0px;
    gap: 60px;
}


.footer {
    background: #414141;
    color: white;
    padding-bottom: calc(var(--spacing)*5);
    padding-top: calc(var(--spacing)*10)
}

.footer__top {
    display: grid;
    gap: calc(var(--spacing)*9);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    margin-bottom: calc(var(--spacing)*10)
}

.mobile__logo {
    display: none;
}

.onasgovoryat__section {
    margin-top: 200px;
}

.onasgovoryat__desktop {
    display: block;
}
.onasgovoryat__mobile {
    display: none;
}
.onasgovoryat__mobile__list {
    margin: 40px 0px;
    display: grid;
    gap: 40px 20px;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
}

.onasgovoryat__list {
    margin: 40px 0px;
    display: grid;
    gap: 40px 20px;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}
    
.onasgovoryat__toggle {
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 15px;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
}

.onasgovoryat__mobile__toggle {
    margin-top: 40px;
    padding-bottom: 20px;
    cursor: pointer;
}
.onasgovoryat__toggle_text {
    text-align: right;
    padding-right: 15px;
    border-bottom: 2px solid var(--color-green);
    font-weight: 600;
    font-style: Semibold;
    font-size: 16px;
    color: var(--color-green);
}
.onasgovoryat__toggle_icon {
    width: 22px;
    height: 22px;
    float: right;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-out;
}
    
.onasgovoryat__item {
    display: flex;
    flex-direction: column;
    width: 430px;
}
.onasgovoryat__video {
    min-height: 232px;
    border-radius: 10px;
    overflow:hidden;
}
.onasgovoryat__text {
    display: flex;
    gap: 5px;
}
.onasgovoryat__text .date {
    width: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: rgba(0, 152, 70, 1);

}

.onas__send {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.onas__btn {
    width: 100%;
}

.onaspishut-section {
    margin-top: 200px;
}

.onaspishut-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
    
.onaspishut__toggle {
    margin-top: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 15px;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
}

.onaspishut-item {
    height: 130px;
}

.onaspishut-container {
    display: flex;
}

.onaspishut-left {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.onaspishut-image {
    height: 70px;
    width: 250px;
}

.onaspishut-date {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    color: rgba(0, 152, 70, 1);
}

.onaspishut-right {
    flex: 1 1;
}
.onaspishut-content {
    height: 100px;
    margin-top: 30px;
    border-left: 1px solid rgba(84, 91, 88, 1);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.onaspishut-text {
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: rgba(33, 37, 41, 1);
}

.onaspishut-more {
    font-size: var(--text-sm);
    color: var(--color-green);
    font-weight: 700;
    text-decoration: underline;
}

    .onaspishut-main-text ul {
       list-style: initial;
       margin: initial;
       padding: 0px 0px 20px 40px;
    }
    .onaspishut-main-text ol {
       list-style: initial;
       margin: initial;
       padding: 0px 0px 0px 40px;
    }
    .onaspishut-main-text p {
       padding-bottom: 20px;
    }
    
    .onaspishut-main-back {
        font-weight: 600;
        font-style: SemiBold;
        font-size: 20px;
        line-height: 24px;
        text-decoration: underline;
        color: var(--color-green);
        margin-top: 40px;
    }
    
    .onaspishut-main-back a {
        display: flex;
        align-items: center;
        text-decoration: underline;
        position: relative;
        gap: 15px;
    }

.not__found__mobile__container {
    display: none;
}

.not__found {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not__found__container {
    display: flex;
    justify-content: center;
    max-width: 1300px;
}
.not__found__left {
    font-weight: 700;
    font-size: 260px;
    line-height: 100%;
    color: rgba(0, 152, 70, 1);
}
.not__found__right {
    background: url('/assets/images/site/722133d9285c8aa31c6bf2805509182d7a3b64a0.png') no-repeat;
    background-size: 545px 186px;
    width: 545px;
}
.page__not__exist {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: rgba(0, 152, 70, 1);
    margin-top: 46px;
    margin-left: 138px;
}
.return__to__home {
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: rgba(33, 37, 41, 1);
    margin-top: 70px;
    margin-left: 120px;
}
.return__to__home > a {
    color: rgba(0, 152, 70, 1);
    text-decoration: underline;
}

.thankyou {
    display: flex;
    height: 80vh;
}

.thankyou__container {
    width: 500px;
    min-height: 500px;
    margin:auto;
    background-color: rgba(249, 249, 249, 1);
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.thankyou__icon {
}

.thankyou__title {
    font-weight: 700;
    font-size: 40px;
    color: rgba(33, 37, 41, 1);
}

.thankyou__text {
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    text-align: center;
    color: rgba(84, 91, 88, 1);
}

.thankyou__button {
    margin-top: 60px;
}
.thankyou__button .button {
    display: block;
    width: 300px;
    text-align: center;
}

/* Каталог */

        .category__left {
            width: 310px;
        }
        .recently__slider {
            width: 100%;
        }
        .mobile__filter__button {
            display: none;
        }
        
.category-list__subcategory.active {
    color: var(--color-green);
}
.category-navigation__main:hover {
    color: var(--color-green);
}
.custom-checkbox__box {
    flex-shrink: 0;
}
.category__sort {
    min-width: 330px;
    display: flex;
    gap: 10px;
}

.profile-type-caption {
    color: var(--gray-color);
    font-size: var(--text-sm);
}

.category-profile__items {
    display: none;
}
.category-profile__items.active {
    display: flex;
}
.category-profile {
    display: none;
}
.category-profile.active {
    display: block;
}

.category-products__item {
    user-select: none; 
}

.category-products__item .product__actions {
    margin-bottom: 8px;
}
.category-products__item .product__available {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Корзина */

.basket__top {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: rgba(84, 91, 88, 1);
}

.basket__clear {
    cursor: pointer;
    text-decoration: underline;
}

.basket__items {
  height: 190px;
  overflow-y: scroll;
}

.basket__item {
    width: 100%;
    min-height: 48px;
    margin-bottom: 22px;
    display: flex;
    justify-content: space-between;
    user-select: none;
    gap: 20px;
}
.basket__item__left {
    display: flex;
    min-width: 300px;
    flex: 0 0;
    align-items: center;
    gap: 10px;
}
.basket__item__right {
    display: flex;
    justify-content: space-between;
    flex: 1 1;
    align-items: center;
    gap: 10px;
}
/*
.basket__item  > div {
    align-content: center;
    width: auto;
}
*/
.basket__item__image {
    max-width: 100px;
}
.basket__item__image > img {
    max-height: 100%;
}

.basket__item__title {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: rgba(33, 37, 41, 1);
}

.basket__item__count {
    align-items: center;
    background-color: white;
    border: 2px solid rgba(244, 247, 252, 1);
    border-radius: 12px;
    display: flex;
    width: 180px;
}

.product__minus, .product__plus {
    cursor: pointer;
}

.product__count input {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    max-width: calc(var(--spacing)*40);
    text-align: center;
    font-weight: 600;
    line-height: 150%;
    outline-style: none;
    width: 100px;
}

.basket__item__count__unit {
    font-weight: 600;
    font-size: 20px;
    color: rgba(84, 91, 88, 1);
}

.basket__item__cost {
    font-weight: 600;
    font-size: 20px;
    color: rgba(33, 37, 41, 1);
    white-space: nowrap;
}

.basket__item__remove {
    width: 40px;
}

.basket__item__remove form {
    height: 20px;
}

.basket__item__remove button {
    cursor: pointer;
}

.basket__bottom {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    font-size: 20px;
    color: rgba(84, 91, 88, 1);
}

.basket__total-price {
    font-weight: 700;
    font-style: Bold;
    color: rgba(0, 0, 0, 1);
}

.basket-block {
  overflow-y: scroll;
}

/* Лист заказа */

.ordersheet {
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 10;
}
.ordersheet__container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 12px 5px;
    margin: 0 auto;
    height: 80px;
    max-width: 85rem;
    align-items: center;
}
.ordersheet__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #000;
    max-width: 300px;
}
.ordersheet__price {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #212529;
    background: linear-gradient(90deg, rgba(96, 237, 161, 0.1) 0%, rgba(0, 152, 70, 0.1) 48.32%);
    border: 1px solid rgba(0, 152, 70, 1);
    border-radius: 15px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: .3s ease-out;
    width: 180px;
    height: 50px;
    padding: 12px 6px;
    flex-shrink: 0;
}
.ordersheet__button {
    height: 50px;
    width: 220px;
    text-align: center;
    padding: 12px 6px;
    font-size: 16px;
    flex-shrink: 0;
}


.ordersheet__basket {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: rgba(33, 37, 41, 1);
    cursor: pointer;
    margin-left: auto;
}
.ordersheet__basket-icon {
    position: relative;
}
.ordersheet__count {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    color: #052154;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(5, 33, 84, 0.25);
    box-shadow: 0 4px 4px 0 rgba(5, 33, 84, 0.25);
    background: #fff;
    min-width: 20px;
    text-align: center;
}

/* Продукт */

.product__images__top {
    display: flex;
    justify-content: space-between;
}
.product__badge {
    height: 30px;
    margin-left: 30px;
    position: relative;
    background-color: rgba(0, 152, 70, 1);
    color: white;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.product__badge::before {
    content: ''; 
    position: absolute; 
    left: -29px; 
    top: 0px; 
    border: 15px solid transparent; 
    border-right: 15px solid rgba(0, 152, 70, 1);
}
.icon__loupe {
    height: 35px;
    width: 35px;
    
}
.product__actions {
    justify-content: space-between;
}

.rating-stars {
    display: flex;
    gap: 2px;
}
.rating-stars li {
    height: 30px;
    width: 30px;
    background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'20'%20height%3D'19'%20viewBox%3D'0%200%2020%2019'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M12.2617%205.8623L12.374%206.05957L12.5967%206.10449L18.0576%207.22266L14.2969%2011.3379L14.1436%2011.5049L14.1689%2011.7305L14.792%2017.2695L9.71777%2014.9648L9.51074%2014.8711L9.30371%2014.9648L4.22852%2017.2695L4.85254%2011.7305L4.87793%2011.5049L4.72461%2011.3379L0.962891%207.22266L6.4248%206.10449L6.64746%206.05957L6.75977%205.8623L9.51074%201.0127L12.2617%205.8623Z'%20stroke%3D'%23E49C38'%2F%3E%3C%2Fsvg%3E");
}
.rating-stars li.active {
    background: no-repeat center url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D'20'%20height%3D'19'%20viewBox%3D'0%200%2020%2019'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M9.51074%200L12.6965%205.61513L19.0213%206.90983L14.6655%2011.6749L15.3886%2018.0902L9.51074%2015.42L3.63289%2018.0902L4.35602%2011.6749L0.000177383%206.90983L6.32495%205.61513L9.51074%200Z'%20fill%3D'%23E49C38'%2F%3E%3C%2Fsvg%3E");
}

.product__minimum {
    grid-column: 2/4;
    align-items: center;
    background-color: white;
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    display: flex;
    gap: calc(var(--spacing)*4.5);
    padding-block: calc(var(--spacing)*3);
    padding-inline: calc(var(--spacing)*5);
    justify-content: space-between;
}
.product__minimum__left {
    display: flex;
    gap: 10px;
}
.product__minimum__right {
    display: flex;
    gap: 10px;
}
.button__calc {
    display: block;
    margin: 30px 0px;
}

.product__character-hidden {
    display: none;
    margin-top: 20px;
}

ul.product__sphere {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
    color: #5a5454;
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
    line-height: 167%;
}


/* Переключение вес-кол */

.product__calculator .hidden {
    display: none;
}

.product__kind__count {
    position: relative;
    display: flex;
    align-items: center;
    gap: calc(var(--spacing)*2);
    justify-content: space-between;
    margin: 20px 60px;
    user-select: none;
}

.product__number {
    width: 160px;
}

.product__number input {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    text-align: center;
    font-weight:600;
    line-height: 150%;
    outline-style: none;
    width: 100%;
}
.product__unit {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
    text-align: center;
    font-weight: 600;
    line-height: 150%;
    outline-style: none;
}

.category__list__head {
    display: none;
}

.category-products__content {
    display: flex;
    margin-bottom: 20px;
}

.category-products__content > div {
    display: flex;
    flex:0 0 50%;
    width: 50%;
}

.category-products__info {
    align-items: end;
}

.category-products__content .product__calculator {
    flex-direction: column;
}

.category-products__content .product__kind__count {
    margin: 0;
}

.category-products__content .product__number {
    width: 60px;
}

.category-products__top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.category-products__total {
    margin-bottom: 20px;
}

.company__wrapper {
    position: relative;
    padding-bottom: 50px;
}

.company__slider  {
    width: 97%;
}

.company__item {
    display: flex;
}

.company__item  img {
    width: 100%;
}

.footer__info {
    color: var(--color-background);
    grid-area: 1/5/3/6
}

.footer__docs {
    display: none;
}

.footer__socials {
    grid-column: 6/7;
    display: flex;
}

.footer__name {
    grid-column: 1/3
}

.footer__about {
    grid-column: 3/5;
}

.footer__menu {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing)*5);
}

.footer__menu-item {
    font-weight: 500;
}

.footer__menu-item:hover {
    scale: 105%;
}

.footer__info-item {
    display: flex;
    gap: calc(var(--spacing)*2);
    margin-bottom: calc(var(--spacing)*2);
}

.footer__button {
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    text-decoration-line: underline;
}

.footer__button:hover {
    text-decoration-line: none
}

.footer__social:hover {
    scale: 105%;
}

.footer__name {
    font-weight: 500;
}

.footer__about,
.footer__name {
    align-items: center;
    display: flex;
}

.footer__about {
    gap: calc(var(--spacing)*5);
}

.footer__bottom {
    color: #696969;
    font-weight: 500;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

.popup__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup_show {
    z-index: 15000;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    transform: scale(1);
}

.popup__content {
    visibility: hidden;
    transform: scale(0);
    transition: transform 0.3s ease 0s;
    background-color: rgba(249, 249, 249, 1);
    padding: 40px;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
}

.popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.popup__title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 36px;
    color: rgba(0, 152, 70, 1);
}

.popup__close {
    cursor: pointer;
}

.popup__button {
    font-weight: 700;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #fff;
    padding: 8px 60px;
    border-radius: 5px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #1c8ae1 0%, #052154 100%);
    cursor: pointer;
    transition: 0.2s ease transform;
}

.popup__button:hover {
    transform: scale(1.02);
}

.popup__back {
    cursor: pointer;
    min-width: 240px;
    height: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    color: #212529;
    background: linear-gradient(90deg, rgba(96, 237, 161, 0.1) 0%, rgba(0, 152, 70, 0.1) 48.32%);
    border: 1px solid rgba(0, 152, 70, 1);
    border-radius: 15px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: .3s ease-out;
    padding: 12px 0px;
    flex-shrink: 0;
}

.popup-form__header {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    color: rgba(0, 152, 70, 1);
    margin-bottom: 20px;
}

.popup-form__inner {
    display: flex;
    gap: 40px;
}

.popup-form__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 50%;
    flex-grow: 1;
}

.popup-form__input {
    font-weight: 400;
    font-size: 20px;
    color: #000;
    border: 1px solid #696969;
    border-radius: 5px;
    padding: 16px 20px;
    width: 100%;
    height: 60px;
    background-color: white;
}

.popup-form__input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #696969;
}

.popup-form__right {
    max-width: 50%;
    flex-grow: 1;
}

.popup-form__textarea {
    width: 100%;
    resize: none;
    border: 1px solid #696969;
    border-radius: 5px;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    border: 1px solid #696969;
    border-radius: 5px;
    padding: 16px 20px;
    background-color: white;
}

.popup-form__textarea::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #696969;
}

.popup-form__politic {
    display: flex; 
    gap: 60px; 
    margin-top: 40px;
}

.popup-form__politic > label {
    display: flex;
    gap: 10px;
    align-items: center;
}

.popup-form__checkbox-privacy__label {

}

.popup-form__checkbox-agree__label {

}

.popup-form__end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.popup-form__submit {
    min-width: 240px;
    height: 50px;
    padding: 12px;
}
.popup__policy {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: rgba(33, 37, 41, 1);

}
.popup__policy > a {
    text-decoration: underline;
}

.mobile__footer__forms__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.mobile__footer__forms__block a {
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    color: rgba(0, 152, 70, 1);
}

@media (max-width: 1400px) {
:root {
    --text-sm: .800rem;
    --text-sm--line-height: 1;
    --text-base: .950rem;
    --text-base--line-height: 1.3;
    --text-lg: 1rem;
    --text-lg--line-height: 1.55;
    --text-xl: 1.1rem;
    --text-xl--line-height: 1.4;
    --text-2xl: 1.3rem;
    --text-2xl--line-height: 1.33333;
    --text-3xl: 1.8rem;
    --text-3xl--line-height: 1.1;
    --text-4xl: 2rem;
    --text-4xl--line-height: 1.1;
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-8xl: 6rem;
    --text-8xl--line-height: 1;

}

.about .container,
.calculator .container,
.rew__news .container,
.articles .container,
.consult .container,
.map .container ,
.question .container,
.faq .container,
.articles-main .container,
.statya-main .container, 
.vacancy .container,
.production .container,
.photogallery .container,
.company .container,
.onasgovoryat__section .container,
.onaspishut-section .container, 
.onaspishut-main .container,
.category .container,
.page-header__inner,
.tab__content,
.product .container{
    padding: 0 15px;
}

.header__top .container,
.header__bottom .container{
    padding-inline: 10px;
}

.header__top .container{
    gap: 10px;
}

.header__inner {
    gap: 0;
}

.header__top .container .logo {
    width: 100px;
}

.header__search {
    max-width: 300px;
}

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

.header__nav__link{
    padding: 0;
}

.hero__list {
    font-size: 25px;
}

.hero__content .container {
    gap: 20px;
    padding: 0 20px;
}

.hero__slider .hero__pagination {
    left: 100px;
}

.hero__slider, .hero__slide {
    display: flex;
    min-height: 580px;
}

.hero__slide .slide__img {
    object-fit: cover;
    object-position: 10%;
    flex-grow: 1;
    height: auto;
}

.breadcrumbs {
    width: 100%;
}

.breadcrumbs .container {
    width: 95%;
}

.about__text, .about__subtext {
    font-size: 16px;
    gap: 15px;
}

.about__content {
    gap: 20px;
}

.about__image,
.about__text {
    width: 50%;    
}

.video__item {
    height: 450px;
}

.catalog__list {
    justify-content: center;
}

.calculator .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calculator__bg:first-child {
    top: -100px;
}

.calculator__block {
    width: 95%;
    gap: 20px;
}

.calculator__block__flex {
    gap: 20px;
}

.calculator__block__left {
    padding-right: 20px;
}

.main__tab {
    border-radius: 0;
    padding-inline: 10px;
    margin-bottom: 0;
}

.tab__slider__container {
    margin-bottom: 0;
}

.cer__ab {
    position: relative;
    background-image: none;    
}

.cer__slider {
    width: 95%;
}

.cer__ab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/site/cert_bgM.webp);
    filter: grayscale(100%) brightness(90%);
    opacity: 0.5;
    z-index: -1; 
    background-position: 80%;
    background-repeat: no-repeat;
    background-size: cover;
}

.cer__wrapper {
    background: transparent;
    padding: 0;
}

.cer__next,
.cer__prev {
    display: none;
}

.cer__ab .cer__pagination {
    display: block;
    width: 50%;
    position: absolute;
    left: 10px;
    bottom: 0;
    text-align: left;
}

.we__work__tab {
    padding: 40px 0;
}

.how__we__item  {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how__we__text {
    padding: 15px;
    height: 250px;
}

.how__we__text .text {
    font-size: 14px;
    line-height: 18px;
}

.how__we__image,
.how__we__image img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-grow: 1;
}

.how__we__text .decor {
    font-size: 200px;
}

.how__we__bottom__text__desktop,
.our__bottom__text__desktop {
    display: none;
}

.how__we__bottom__text__mobile,
.our__bottom__text__mobile {
    margin-top: 20px;
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-left: 15px;
}

.our__bench__item {
    min-height: 250px;
    padding: 15px 10px;
}

.our__bench__item h3 {
    font-size: 22px;
    line-height: 22px;
}

.our__bench__item .our__anotation {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.our__bench__item .our__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.what__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    margin-left: 15px;
}

.what__content__desktop {
    display: none;
}

.what__content__mobile {
    display: block;
}


.what__wrapper {
    max-width: 100%;
    position: relative;
}

.what__slider {
    max-width: 90%;
}

.what__item__slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(249, 249, 249, 1);  
    border-radius: 20px;
}

.what__item {
    width: 100%;
    padding: 10px 20px;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.what__item__inner.flex__item_inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.item__inner__flex {
    display: flex;
    flex-direction: column;
}

.what__count {
    color: rgba(217, 217, 217, 1);
}

.what__item__inner {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    gap: 5px;
    margin: auto 0;
}

.what__item__flex {
    align-items: flex-start;
}

.what__item-image {
    width: 75px;
}

.rew__news .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rew__left, .news__right {
    width: 95%;
}

.map__content {
    gap: 30px;
    grid-template-columns: 2fr 1fr;
    padding: 0 10px;
}

.map__reverse {
    grid-template-columns: 1fr 2fr;
}

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

.question__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.onasgovoryat__video {
        min-height: 196px;
    }

.onasgovoryat__item {
         width: 350px;
}

.product__container {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    column-gap: 0;
}

.product__images {
    grid-column: 1;
    grid-row: 1;
}

.product__characters {
    grid-column: 1;
    grid-row: 2;
    width: 80%;
    margin: auto;
}

.product__info {
    grid-column: 1;
    grid-row: 3;
    width: 80%;
    margin: auto;
}

.product__minimum {
    grid-column: 1;
    grid-row: 4;
    width: 80%;
    margin: auto;
}

.icon__loupe {
    display: none;
}

.product__badge {
    padding-left: 20px;
    padding-right: 80px;
}

.product-avatar__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-avatar__slider {
    position: relative;
}

.product-avatar__pagination {
    display: none;
}

.product-thumb__slider {
    width: 50%;
}

.product__buttons {
    justify-content: space-between;    
}

.product__buttons button {
    width: 50%;
}

}

@media (max-width: 1200px) {
.consult__content {
    grid-template-columns: 1fr 1fr;
}

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

    
.not__found__container {
    display: none;
}

.not__found__mobile__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not__found__image {
    width: 100%;
    height: 300px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    background-image: url('/assets/images/site/404__mobile.png');
    background-repeat: no-repeat;
    background-position: 50% -20px;
    background-size: contain ;
}

 .not__found__left {
    width: 150px;
    height: 60px;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    text-align: center;
 }
 
 .not__found__text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 75px;
 }
 
 .not__found__text div {
     text-align: center;
     margin: 0;
 }
}

@media (max-width: 1100px) {
    .articles-main__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
section {
    margin-bottom: 40px; 
}

.breadcrumbs {
    margin-top: 80px;
    margin-bottom: 40px;
}

.page-header .breadcrumbs {
    margin-top: 80px;
    margin-bottom: 18px;
}

.video .title,
.catalog__mobile .title,
.purpose .title,
.mainTab .title,
.what .title,
.consult .title,
.team .title{
    margin-left: 15px;
}

.title.desktop {
    display: none;
}

.title.mobile {
    display: block;
}

.about {
    background-position: 20% 5%;
    background-size: 150%;
}

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

.about__text, 
.about__subtext {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    gap: 15px;
}

.about__image {
    align-self: center;
}
.about__text {
    width: 100%;
}

.about__item {
    line-height: var(--text-base--line-height);
}

.category__list__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-background);
    border-radius: 12px;
    padding: 20px 25px;
}

.close__filte__btn {
    width: 25px;
    height: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close__filte__btn::before,
.close__filte__btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 20px;
}

.close__filte__btn::before {
    transform: rotate(45deg);
}

.close__filte__btn::after {
    transform: rotate(-45deg);
}

.category__list__head {
    font-size: var(--text-2xl);
    line-height: var(--text-2xl--line-height);
    color: var(--color-gray);
    font-weight: 600;
 }

.catalog__desktop {
    display: none;
}

.catalog__mobile {
    display: block;
}

.catalog__wrapper {
    max-width: 100%;
    position: relative;
}

.catalog__slider {
    max-width: 90%;
}

.catalog__slide {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    gap: 10px;
}

.catalog__slide .catalog__item {
    width: 48%;
    height: 300px;
}
.catalog__slide .catalog__item__image {
    height: 80%;
}
.catalog__slide .catalog__item__image img {
    height: 100%;
}

.calculator {
    overflow: hidden;
}

.calculator .container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: 700px;
    width: 100%;
    overflow: hidden;
}

.mobile__calculator__anotation {
    display: block;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
}

.mobile__btn {
    display: block;
    width: 100%;
    background: white;
    color: var(--color-green);
    text-align: center;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
}

.calculator .title {
    z-index: 5;
}

.calculator__backgrounds {
    z-index: 3;
}

.calculator__bg:nth-child(2) {
    display: none;
}

.calculator__bg:nth-child(1) {
    left: 25%;
    top: 25%;
    width: 55%;
    max-width: 120%;
    z-index: 3;
}

.calculator__bg:nth-child(3) {
    z-index: 2;
    top: 25%;
    width: 75%;
    max-width: 165%;
    left: 20%;
}

.calculator__block {
    display: none;
}

.map__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0;
}

.map__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.map__info {
    padding: 10px;
}

.article__blocks {
    flex-direction: column;
}

.article__baner {
    display: none;
}

.footer {
    padding: 20px 15px 20px 30px;
}

.mobile__logo {
    margin-left: -12px;
}

.mobile__logo .logo {
    display: flex;
}

.footer__name {
    margin-left: -8px;
}

.footer .socials__item {
    width: 30px;
}

.footer__content,
.footer__top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__name {
    order: -1;
}

.footer__logo,
.footer__socials,
.footer__info {
    display: none;
}

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

.mobile__logo .logo {
    width: 150px;
    height: 40px;
}

.footer__info__item  {
    display: flex;
    gap: 25px;
}

.footer__info__item img {
    width: 30px;
    height: 30px;
}

.footer__menu {
    gap: 10px;
}

.mobile__footer__forms__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 70%;
    align-self: flex-end;
}

.mobile__footer__forms__block a {
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    color: rgba(0, 152, 70, 1);
}

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

.footer__about {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.footer__bottom {
    font-weight: 500;
    font-size: 15px;
}

.onaspishut-item,
.onaspishut-content{
    height: auto;
}

.onaspishut-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.onaspishut-content {
    padding: 0;
    border-left: 0;
}

.category__inner {
    display: flex;
    gap: 0;
}


.category__inner .category__left {
    width: 0%;
    overflow: hidden;
}

.category__right {
    width: 100%;
    overflow: hidden;
}

.category__inner.active .category__right {
    width: 0;
}

.category__inner.active .category__left {
    width: 100%;
}

.category__inner.active .category__left .banner,
.category__inner.active .category__left .category-list__name,
.category__inner.active .category__left .category-navigation{
    display: none;
}

.category__inner.active .category__left .banner__button {
    text-align: center;
}
.category__inner.active .category__left .banner__button img{
    right: 0;
}

.category__inner.active .category__left .recently {
    order: 10;
}

.category-actions {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile__filter__button {
    display: block;
    width: 70px;
    height: 40px;
    background-color: rgba(0, 152, 70, 1);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category__sort {
    width: 100%;
}
.category__all {
    width: 80%;
    text-align: center;
}

.category-actions .pagination {
    display: none;
}

.tab__slider__container {
    border-radius: 0;
}

.product__minimum {
    flex-direction: column;
    align-items: flex-start;
    border: 0;
}

.page-title {
    font-size: 26px;
}

.product__content__tab .container{
    flex-direction: column;
    margin-top: 20px;
}

.about__product__left, .about__product__right {
    width: 100%;
}

.diagram__block {
    width: 100%;
}

.vacansy__grid {
    grid-template-columns: 1fr 1fr;
}

.bannerOne {
    grid-column: 2;
}


}

@media (max-width: 991px) {
    .statya-blocks {
        flex-direction: column;
        align-items: center;
    }
    
    .statya-baner {
        display:none;
    }
    
    .statya-left {
        min-width: 100%;
    }
    
    .statya-baner__mobile {
        display: block;
    }
    
    .statya-content-back {
        margin-bottom: 40px;
    }
    
    .company__wrapper {
        padding: 0 0 50px 0;
        width: 100%;
    }
    
    .company__pagination  {
        text-align: left;
    }
    
    .company__slider  {
        height: 160px;
        padding: 0;
    }
    
    .company__item {
        height: 100%;
    }
    
    .company__item img {
        height: 100%;
    }
    
    .about__block,
    .about__block:nth-child(even){
        flex-direction: column;
        gap: 20px;
    }
    
    .about__block .about__image, .about__block .about__text__block {
        width: 100%;
    }
    
    .advantages__image {
        align-items: center;
        justify-content: center;
    }
    
    .advantages__slide  {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .advantages__text {
        width: 80%;
    }
    
    .advantages__image:before {
        right: -30%;
        top: 0%;
    }
}

@media (max-width: 900px) {
    .ordersheet__title {
        display: none;
    }
    
    .vacansy__grid {
        padding: 25px 25px;
    }
}

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

.contact-form {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 25px;
}

.contact-form__left {
    grid-row: 1;
}

.contact-form__right {
    grid-row: 2;
    height: 100px;
}

.faq__quest {
    font-size: 16px;
    padding: 15px 15px;
}

.faq__answer {
    font-size: 14px;
}

.faq__toggle_text {
    font-size: 16px;
}

.onasgovoryat__desktop {
    display: none;
}
.onasgovoryat__mobile {
    display: block;
}
    
.onas__send {
    flex-direction: column-reverse;
    align-items: center;
}

.onas__btn {
        display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou__container {
    width: 300px;
    min-height: 380px;
    margin: 120px auto;
    background-color: rgba(249, 249, 249, 1);
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.thankyou__text,
.return__text{
    font-size: 16px;
}

.thankyou__button {
    margin: auto;
}

.thankyou__button .button {
    display: block;
    width: 100%;
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 20px;
}
.page-header {
    background-image: none;
    padding: 0px;
    margin-bottom: 20px;
}
.page-header__title {
    font-weight: 700;
    font-size: 26px;
    color: rgba(33, 37, 41, 1);
}
    
    .category__right {
        width: 100vw;
    }
    
.page-header__inner.descktop {
    display: none;
} 

.page-header__inner.mobile {
    display: flex;
}

.category-type__item {
    padding: 17px 25px;    
}

.product__buttons button {
    padding: 10px 15px;
}

.product__price-new {
    font-size: 24px;
    
}

.product-thumb__slider {
    display: none;
}

.product-avatar__pagination {
    display: block;
}

.diagram__images {
    flex-direction: column;
}

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

.articles-main__topnav {
    flex-direction: column;
    gap: 25px;
}

.articles-main__total {
    display: none;
}

.category-profile__inner {
    flex-direction: column;
    align-items: flex-start;
}

.category-profile__items {
    gap: 20px;
    justify-content: center;
}
    .popup-form__inner {
        flex-direction: column;
    }
    .popup-form__left, .popup-form__right {
        max-width: 100%;
    }
    .popup-form__submit, .popup__back {
         min-width: 160px;
    }

.popup__content {
    padding: 20px;
}

.vacansy__grid {
    display: none;
}

.vacancy__slides {
    display: block;
}
}

@media (max-width: 700px) {
.title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
}

.title.mobile {
    display: block;
}

.title.desktop {
    display: none;
}

.hero__main {
    display: none;
}

.hero__mobile {
    display: flex;
    position: relative;
}

.hero__mobile .mobile__wrapper.swiper-wrapper{
    display: flex;
}

.hero___mobile__slider,
.mobile__slide {
    position: relative
}

.mobile__slide .slide__img {
    position: relative;
    height: 480px;
    max-height: 480px;
    object-fit: cover;
    object-position: top -22px left -200px;
    width: 100%;
    background: linear-gradient(0deg, rgba(153, 153, 153, 0) 72.23%, #FFFFFF 96.22%);
}

.mobile__slide::after {
    display:block;
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: linear-gradient(0deg, rgba(153, 153, 153, 0) 72.23%, #FFFFFF 96.22%);
}

.hero___mobile__slider .mobile__pagination {
    position: absolute;
    width: auto;
    left: 0px;
}

.mobile__hero__content {
    position: absolute;
    top: 25%;
    z-index: 10;
    left: 10px;
    right: 0;
}

.mobile__hero__content .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.mobile__hero__title {
    font-size: var(--text-3xl);
    color: var(--color-gray);
    font-weight: 800;
    line-height: 130%;
}

.mobile__hero__title span {
    color: var(--color-green);
}

.mobile__hero__button {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 15px;
    width: 300px;
    height: 50px;
    font-size: 14px;
    background: var(--gradient-green);
}

.mobile__hero__button img {
    position: absolute;
    width: 70px;
    height: 100px;
    right: -15px;
}

.moblie__hero__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Montserrat;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: rgba(84, 91, 88, 1);
}

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

.video__item {
    height: 300px;
}

.calculator__bg:nth-child(1) {
    left: -10%;
    top: 35%;
    width: 120%;
    max-width: 120%;
    z-index: 3;
}

.catalog__slide .catalog__item {
    height: 250px;
}

.calculator__bg:nth-child(3) {
    z-index: 2;
    top: 35%;
    width: 165%;
    max-width: 165%;
    left: -25%;
}

.purpose__next,
.purpose__prev {
    display: none;
}

.main__tabs__container {
    padding: 0;
    gap: 3px;
}

.main__tabs__tab {
    width: 100px;
    font-weight: 700;
    font-size: 8px;
    line-height: 100%;
    gap:2px;
    padding: 4px 10px;
}

.main__tabs__tab .main__tabs__icon svg{
    width: 15px;
    height: 15px;
}

.rew__left,
.news__right {
    width: 100%;
}

.rew__slider,
.news__slider {
    width: 85%;
}

.rew__container:first-child  .review:last-child,
.rew__container:last-child,
.news__container:first-child  .news:last-child,
.news__container:last-child  {
    display: none;
}

.rew__container:first-child,
.rew__container .review,
.news__container:first-child,
.news__container .news  {
    width: 100%;
}

.rew__bottom, .news__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rew__bottom .rew__pagination, .news__bottom .news__pagination {
    text-align: left;
    position: initial;
    width: 50%;
}

.team__item__content {
    background-color: rgba(217, 217, 217, 1);    
    padding: 15px 10px;
    border-radius: 20px;
}

.team__item__image__float {
    width: 120px;
    height: 140px;
}

.team__item__name {
    font-weight: 700;
    font-size: 18px;
}

.team__item__status {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 70px;
}

.team__item__text {
    font-size: 14px;
    line-height: 20px;
    color: rgba(105, 105, 105, 1);
}

.team__pagination  {
    display: block;
    text-align: left;    
}

.consult__item-content {
    background-color: rgba(217, 217, 217, 1);    
    padding: 15px 10px;
    border-radius: 20px;
}

.consult__item-image-float {
    width: 120px;
    height: 140px;
}

.consult__item-name {
    font-weight: 700;
    font-size: 18px;
}

.consult__item-status {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 70px;
}

.consult__item-text {
    font-size: 14px;
    line-height: 20px;
    color: rgba(105, 105, 105, 1);
}

.consult__pagination  {
    text-align: left;    
}

.articles__slider {
    padding-bottom: 20px;
}

.articles__date {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.articles__title {
    font-weight: 600;
    font-size: 18px;
}

.articles__text {
    font-size: 16px;
    line-height: 22px;
}

.articles__more {
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.articles__pagination {
    display: none;
}

.partners__slide  {
    display: flex;
    align-items: center;
    justify-content: center;
}

.article__content__text img {
    width: 100%;
}

.vacancy__description {
    font-size: 16px;
}


.basket__top {
    font-size: 16px;
}
.basket__item {
    flex-direction: column;
}
.basket__item__title {
    font-size: 14px;
}
.basket__item__count__unit {
    font-size: 16px;
}
.basket__item__cost {
    font-size: 16px;
}
.basket__bottom {
    flex-direction: column;
    font-size: 16px;
}
}

@media (max-width: 720px) {
    .articles-main__desktop {
        display: none;
    }
    .articles-main__mobile {
        display: block;
    }
    .articles-main__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
    .ordersheet__price {
        font-size: 14px;
        width: 100px;
        padding: 5px 5px;
    }
    .ordersheet__basket {
        font-size: 16px;
    }
    .ordersheet__button {
        width: 120px;
        padding: 5px 5px;
        font-size: 14px;
    }
    
    .popup__title {
        font-size: 22px;
    }
    .popup-form__politic {
        flex-direction: column;
        gap: 20px;
    }
    .popup__back {
        display: none;
    }
}

@media (max-width: 450px) {
    .map__content {
        padding: 0;
    }
    
    .contact-form__bottom {
        flex-direction: column-reverse;
    }
    
    .faq__description {
        font-size: 18px;    
    }
    
    .faq__quest {
        font-size: 14px;
        padding: 12px 12px;
    }
    
    .faq__answer {
        font-size: 12px;
    }
    
    .faq__toggle_text {
        font-size: 12px;
    }
    .onasgovoryat__video {
        min-height: 168px;
    }
    .onasgovoryat__item {
         width: 300px;
    }
    
    .not__found__image {
        width: 100%;
        height: 230px;
    }
    
    .category-type__inner {
        gap: 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 16px;
        letter-spacing: 0%;
    }
    
    .breadcrumbs__list {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    
    .button__calc {
        width: 100%;
        font-size: 16px;
        padding: 17px 20px;
    }
    
    .product__info {
        width: 100%;
    }
    
    .product__characters {
        width: 100%;
        margin: 0;
    }

    
    .product__minimum {
        width: 100%;
        margin: 0;
    }
    
    .button img {
        right: 0;
    }
    
    .mobile__logo {
        justify-content: space-between;
    }
    
    .category-profile__item {
        padding: 7px 50px;
    }
    
    .popup-form__end {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .ordersheet__basket > p {
        display: none;
    }
}

@media (max-width: 360px) {
    
    .category-products__items {
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    }
    .category-type__item {
        padding: 15px 15px;
    }
    
    .category__sort {
        min-width: 100%;
        align-items: center;
    }
    
    .category-type__inner {
        gap: 10px;
    }
    
    .ordersheet__container {
        gap: 20px;
    }
    
    .product__price-block {
        margin-bottom: 20px;
    }
    
    .product__kind__count {
        margin: 10px 50px;
    }
    
    .button__calc {
        margin: 15px 0;
    }
    
    .product__minimum {
        padding: 0;
    }
    
    .product__character-all {
        font-size: 16px;
    }
    
    .catalog__name__title {
        font-size: 13px;
    }
}