@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/montserrat-v26-cyrillic_latin-regular.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/montserrat-v26-cyrillic_latin-500.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/montserrat-v26-cyrillic_latin-600.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/montserrat-v26-cyrillic_latin-700.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/inter-v13-cyrillic_latin-300.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/inter-v13-cyrillic_latin-regular.woff2) format("woff2")
}

@font-face {
    font-display: swap;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/inter-v13-cyrillic_latin-500.woff2) format("woff2")
}

:root {
    --color-bg-accent: #00B14F;
    --color-bg-primary: #fff;
    --color-bg-gray: #a7a7a7;
    --color-text-accent: #00B14F;
    --color-text-primary: #000;
    --color-text-inverse: #fff;
    --text-font-main: "Montserrat", sans-serif;
    --text-font-accent: "Inter", sans-serif;
    --text-size-main: 19px;
    --text-size-xl: 40px;
    --text-size-sm: 14px;
    --text-line-height-main: 1.47;
    --text-line-height-title: 1.25;
    --container-size-main: 1110px;
    --container-padding: 30px;
    --border-radius: 2px
}

*,
:after,
:before {
    box-sizing: border-box
}

blockquote,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol[class],
p,
ul[class] {
    margin: 0
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

a:focus-visible {
    outline-color: var(--color-bg-accent)
}

img {
    display: block;
    max-width: 100%
}

.page {
    scroll-behavior: smooth
}

.page,
.page__body {
    height: 100%
}

.page__body {
    color: var(--color-text-primary);
    font-family: var(--text-font-main);
    font-size: var(--text-size-main);
    line-height: var(--text-line-height-main);
    margin: 0 auto;
    max-width: 3200px;
    min-height: 100vh;
    min-width: 360px;
    overflow-x: hidden;
    padding: 0;
    position: relative;
    text-rendering: optimizespeed
}

.page-grid {
    gap: 38px;
    padding-top: 15px
}

.product_pad {
    padding-bottom: 100px;
}

.cont_bg {
    background-color: #EEEEEE;
    padding-top: 70px;
}
.page-grid,
.wrapper {
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans SC", sans-serif;
}

.wrapper {
    height: 100%
}

.main {
    flex: 1 0 auto;
}

.footer {
    flex: 0 0 auto
}

.button_tax {
    margin-top: 35px;
}

.container {
    margin: 0 auto;
    max-width: calc(var(--container-size-main) + var(--container-padding)*2);
    padding: 0 var(--container-padding);
    width: 100%
}

.visually-hidden {
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%)
}

.no-scroll {
    overflow: hidden
}

@keyframes mmfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mmfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes mmslideIn {
    0% {
        transform: translateY(15%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes mmslideOut {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10%)
    }
}

.micromodal-slide {
    display: none
}

.micromodal-slide.is-open {
    display: block
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide[aria-hidden=false] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide[aria-hidden=true] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1)
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform
}

.modal {
    align-items: center;
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10
}

.modal.opened {
    display: flex
}

.modal__overlay {
    background-color: #000;
    height: 100%;
    left: 0;
    opacity: .65;
    position: absolute;
    top: 0;
    transition: all .25s ease;
    width: 100%
}

.modal__body {
    background-color: #fff;
    border: 1px solid var(--color-bg-accent);
    border-radius: 4px;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    min-height: 200px;
    overflow: auto;
    padding: 30px;
    position: relative;
    width: 634px;
    z-index: 1
}

.modal__header {
    margin-bottom: 40px;
    text-align: center
}

.modal__title {
    margin: 0
}

button.modal__close {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    order: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px
}

.product-card:hover {
    box-shadow: 0 0 8px 0px rgba(34, 60, 80, 0.2);
    transition: 0.3s;
}

button.modal__close svg {
    height: auto;
    max-width: 100%;
    fill: var(--color-bg-gray)
}

button.modal__close:hover svg {
    fill: var(--color-bg-accent)
}

.form--modal {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative
}

.form--modal .form__submit {
    font-size: 15px;
    height: 38px;
    margin-top: 60px;
    max-width: 194px;
    width: 100%
}

.form--modal .form__conf {
    max-width: 160px;
    text-align: center
}

.form-input {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 2px;
    font-family: var(--text-font-main);
    font-size: 13px;
    padding: 12px;
    width: 100%
}

.form-input::-moz-placeholder {
    color: var(--color-text-primary)
}

.form-input::placeholder {
    color: var(--color-text-primary)
}

.form-input:focus {
    outline-color: var(--color-bg-accent)
}

.form__conf {
    font-size: 10px;
    font-weight: 250;
    opacity: .75
}

.button {
    align-items: center;
    background-color: #00B14F;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--text-font-main);
    font-size: 20px;
    font-weight: 600;
    justify-content: center;
    line-height: 1;
    max-width: 100%;
    padding: 9px 18px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease;
}

.button:active {
    opacity: 1
}

.button:disabled {
    background: var(--color-bg-gray);
    cursor: default;
    opacity: .4
}

.button:focus-visible:not(:disabled) {
    outline: 2px solid var(--color-bg-accent);
    outline-offset: 2px
}

.button:focus:not(:focus-visible) {
    outline: none
}



.button:hover: {
    opacity: .8
}

.button--view--outline {
    background-color: transparent;
    border: .752px solid  #00B14F;
    color: var(--color-text-primary);
    width: 194px;
    height: 38px;
}

.form__submit_2 {
    background-color: transparent;
    border: .752px solid  #00B14F;
    color: var(--color-text-primary);
    width: 194px;
    height: 38px;
}

.form__submit_2:hover:not(:disabled) {
    background-color: #00B14F;
    border-color: #00B14F;
    color: #000;
    opacity: .8;
}

.button_padd {
    padding-top: 40px;
}

.button--view--outline:focus:not(:disabled),
.button--view--outline:hover:not(:disabled) {
    background-color: #00B14F;
    border-color: #00B14F;
    color: #000;
    opacity: .8;
}

.button--size--xl {
    padding-bottom: 16px;
    padding-top: 16px
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 24px;
    opacity: 1;
    padding: 0;
    position: relative;
    transition: all .25s ease;
    width: 24px
}

.hamburger:after,
.hamburger:before,
.hamburger__center {
    background-color: #fff;
    height: 2px;
    left: calc(50% - 9px);
    position: absolute;
    width: 18px
}

.hamburger__center {
    top: 50%;
    transform: translateY(-50%);
    transition-delay: .3s
}

.hamburger:before {
    content: "";
    top: 4px;
    transition: transform .3s ease, top .3s ease .3s
}

.hamburger:after {
    bottom: 4px;
    content: "";
    transition: transform .3s ease, bottom .3s ease .3s
}

.hamburger:active,
.hamburger:focus {
    opacity: 1
}

.hamburger.is-active {
    z-index: 11
}

.hamburger.is-active .hamburger__center {
    opacity: 0
}

.hamburger.is-active:before {
    margin-top: -2px;
    top: 50%;
    transform: rotate(45deg);
    transition: top .3s ease, transform .3s ease .3s
}

.hamburger.is-active:after {
    bottom: 50%;
    transform: rotate(-45deg);
    transition: bottom .3s ease, transform .3s ease .3s
}

.logo {
    align-items: center;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-decoration: none
}

.logo__img {
    height: auto;
    max-width: 95%
}

.logo__text {
    font-size: 12px;
    line-height: 1.1;
    text-align: center
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-weight: 700;
    line-height: var(--text-line-height-title);
    margin-bottom: 25px;
    text-wrap: balance
}

.entry-content h2 {
    font-size: 32px
}

.entry-content h3 {
    font-size: 22px
}

.entry-content h4 {
    font-size: 18px
}

.entry-content a {
    color: var(--color-text-accent);
    text-decoration: underline;
    transition: all .25s ease
}

.entry-content a:hover {
    text-decoration: none
}

.entry-content p+* {
    margin-top: 30px
}

.entry-content p+p {
    margin-top: 15px
}

.entry-content blockquote {
    border-radius: 3px;
    border-left: 5px solid #00B14F;
    margin: 25px 0 10px;
    padding: 3px 0 3px 10px;
    position: relative
}

.entry-content img {
    height: auto;
    max-width: 100%
}

.entry-content ol,
.entry-content ul {
    margin: 30px 0;
    padding-left: 15px
}

.entry-content li::marker {
    color: var(--color-text-accent)
}

.entry-content li:not(:last-child) {
    margin-bottom: 20px
}

.about-company {
    gap: 26px;
    grid-template-columns: repeat(4, 1fr)
}

.about-company__text {
    grid-column: span 2
}

.about-company__text .section__title {
    padding-left: 80px;
    margin-bottom: 26px
}

.about-company__img {
    border-radius: var(--border-radius);
    height: auto;
    max-width: 100%;
    transition: all .3s ease-in-out
}

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

.about-company__img--big {
    grid-column: span 2
}

.about-company__img:hover {
    filter: grayscale(0)
}

.advantages-wide {
    background-color: #00B14F;
    overflow: hidden;
    position: relative;
    height: 422px;
}
  


.advantages-wide:before {
    background-image: url(/wp-content/uploads/2024_new/Group%20116.png);
    content: "";
    height: 529px;
    position: absolute;
    left: calc((100% - var(--container-size-main)) / 2 + var(--container-size-main) / 4* 3);
    top: -25%;
    width: 100%;
}

.nmbr {
    margin-left: 55px;
    font-size: 25px;
}

.advantages-wide__grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
}

.advantages-wide__grid_2 {
    gap: 26px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
}

.advantages-wide__content {
    grid-column-end: -1;
    grid-column-start: 1;
    color: white;
}

.advantages-wide__list {
    font-size: 18px;
    list-style-type: none;
    margin: 0;
    padding: 25px;
}

.advantages-wide__list li {
    position: relative;
    padding: 10px;
}

.advantages-wide__list li:before {
    content: "";
    border-left: 4px solid;
    border-radius: 2px;
    height: 40px;
    left: 0;
    position: absolute;
    top: 55px;
    transform: translateY(-50%);
}

.advantages-wide__note {
    border-left: 3px solid var(--color-bg-accent);
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    padding: 20px
}

.advantages-wide_2 {
    background-color: #00B14F;
    overflow: hidden;
    position: relative;
    height: 649px;
}
  

  
  .advantages-wide_2:before {
    background-image: url(/wp-content/uploads/2024_new/Group%20116.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    content: "";
    position: absolute;
    left: calc((100% - var(--container-size-main)) / 2 + var(--container-size-main) / 4* 3);
    top: 0%;
    width: 50%;
    height: 100%;
  }
  

.advantages-wide_2__grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
}

.advantages-wide_2__content {
    grid-column-end: -1;
    grid-column-start: 1;
    color: white;
}

.advantages-wide_2__list {
    font-size: 18px;
    list-style-type: none;
    margin: 0;
    padding: 25px;
}

.advantages-wide_2__list li {
    position: relative;
    padding: 10px;
}

.advantages-wide_2__list li:before {
    content: "";
    border-left: 4px solid;
    border-radius: 2px;
    height: 40px;
    left: 0;
    position: absolute;
    top: 55px;
    transform: translateY(-50%);
}

.advantages-wide_2__note {
    border-left: 3px solid var(--color-bg-accent);
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    padding: 20px
}

.advantages-wide_2.about__company-page {
    margin-top: 100px;
    margin-bottom: 100px;
}

    .advantages-wide_2__content {
        grid-column: 1/-1;
        padding-left: 0
    }

.txt_p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 129px;
    background-color: white;
    border-radius: 5px;
}

.txt_p {
    position: relative;
    padding-left: 35px;
    font-size: 18px;
    margin-bottom: 40px;
  }

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

.category-card {
    align-items: center;
    background: var(--color-bg-primary);
    border: 1px solid #00B14F;
    border-radius: 5px;
    display: grid;
    gap: 20px;
    grid-template-columns: 35% 1fr;
    padding: 40px 15px 15px
}

.category-card:focus-within .category-card__image,
.category-card:focus-within .category-card__logo,
.category-card:hover .category-card__image,
.category-card:hover .category-card__logo {
    filter: grayscale(0)
}

.category-card:focus-within .category-card__actions .button,
.category-card:hover .category-card__actions .button {
    background-color: var(--color-bg-accent)
}

.category-card__image,
.category-card__logo {
    display: block;
    height: auto;
    max-width: 100%;
    transition: all .25s ease;
}

.category-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: var(--text-line-height-title);
    margin-top: 15px;
    margin-bottom: 40px;
}

.category-card__actions {
    display: flex;
    flex-wrap: wrap;
    /* gap: 15px; */
    margin-top: 20px
}

.category-card__actions .button {
    background-color: var(--color-bg-gray)
}

.product-card-list {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto; 
    padding: 0 15px; 
    margin-bottom: 30px;
}

.product-card-list > * {
    max-width: 100%;
    box-sizing: border-box;
}

.page__body {
    margin: 0 auto;
    max-width: 3200px;
    min-height: 100vh;
    min-width: 320px;
    overflow-x: hidden;
    padding: 0;
}

.page-grid, .wrapper {
    display: flex;
    flex-direction: column;
}

.product-card-list__more {
    display: flex;
    grid-column: 1/-1;
    justify-content: center;
    margin-top: 25px
}

.product-card-list__more .button {
    font-size: 20px;
    width: 464px;
    height: 64px;
}

.product-card {
    align-items: center;
    background: var(--color-bg-primary);
    border: 1px solid #00B14F;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 10px 36px 25px;
}

.product-card:focus-within .product-card__image,
.product-card:hover .product-card__image {
    filter: grayscale(0)
}

.product-card:focus-within .product-card__actions .button,
.product-card:hover .product-card__actions .button {
    background-color: var(--color-bg-accent)
}

.product-card__image {
    aspect-ratio: 1/1;
    display: block;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .25s ease
}

.product-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: var(--text-line-height-title);
}

.product-card__footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto
}

.product-card__sku {
    color: #686868;
    font-size: 13px;
    font-weight: 600
}

.product-card__button {
    font-size: 12px;
    width: 100%
    width: 194px;
    height: 38px;
    margin-bottom: 30px;
}

.partners {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 60px
}

.partners__item:focus .partners__logo,
.partners__item:hover .partners__logo {
    filter: grayscale(0)
}

.partners__logo {
    display: block;
    height: auto;
    max-width: 100%;
    transition: all .25s ease-in-out
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    overflow: hidden;
    padding: 70px 0;
    position: relative
}

.map {
    height: 450px;
    overflow: hidden;
    width: 100%
}

.map [class$=ground-pane] {
    filter: grayscale(1) !important
}

.map-content {
    background: #d6d6d6;
    position: absolute;
    right: calc((100% - var(--container-size-main))/2);
    top: 50%;
    transform: translateY(-50%)
}

.map-content__text {
    bottom: 0;
    color: hsla(0, 0%, 100%, .95);
    font-size: 24px;
    font-weight: 700;
    order: 1;
    padding: 30px 40px;
    position: absolute;
    text-shadow: 0 1px 8.4px #000
}

.map-content__photo {
    height: auto;
    max-width: 100%
}

.section {
    position: relative
}

.but {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 30px;
}

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

.buttheader {
    width: 350px;
}

.section--bg {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 60px;
    padding-top: 40px
}

.section__header {
    margin-bottom: 35px
}

.section__title {
    font-size: var(--text-size-xl);
    font-weight: 700;
    line-height: var(--text-line-height-title);
    position: relative;
    text-wrap: balance
}

.section__title:before {
    background: url(/wp-content/uploads/2024_new/Logo_circle1.png) no-repeat 0 0/contain;
    content: "";
    height: 70px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 70px
}

.gal {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.product-card__detail {
    display: flex;
    gap: 50px;
}

h3.product-card__title.detail {
    font-size: 24px;
}

.product-card__description.detail,
.product-card__material.detail,
.product-card__contact-tel,
.product-card__contact-wa,
.product-card__contact-mail {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.product-card__contact.detail {
    position: relative;
    padding-left: 29px;
    /* Добавлен паддинг слева для создания пространства между линией и блоком */
}

.product-card__contact.detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px;
    background-color: #00B14F;
}

button.button.card__detail {
    margin-top: 15px;
    padding: 18px 38px;
}


.card__detail-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 665px;
    width: 100%;
}

.product-card__detail .product-card__image-wrap {
    max-width: 390px;
    /* Установите максимальную ширину в соответствии с изначальной шириной изображения */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.product-card__detail .product-card__image {
    display: block;
    width: 100%;
    height: auto;
}


.product-card__contact-title {
    margin-bottom: 15px;
}

button.button.card__detail {
    margin-top: 15px;
}

.product-card__contact-title {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.sertificates__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sertificates__item {
    width: 48%; /* Занимает 50% ширины блока */
    min-width: 290px;
    box-sizing: border-box; /* Учитывает padding и border в общей ширине блока */
    padding: 10px; /* Пример padding, можно настроить по вашему желанию */
    margin: 10px; /* Пример margin, можно настроить по вашему желанию */
}

.sertificates__item-img img {
    width: 100%;
    height: auto;
    display: block;
}

.sertificates__title p{
    text-align: center;
}

.sertificates__title span {
    position: relative;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 40px;
    font-weight: 700;
}

.sertificates__title span:before {
    background: url(../img/logo-small.png) no-repeat 0 0/contain;
    content: "";
    height: 26px;
    left: -60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
}

.sertificates__item-name {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 22px;
    padding: 13px 45px;
    position: relative;
    margin-bottom: 40px;
}

.sertificates__item-img{
    margin-bottom:  20px;
}
.sertificates__item-name::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background-color: #00B14F;
}

button.button.sertificates {
    padding: 11px 23px;
    background-color: unset;
    border: solid 1px black; 
    color: black;
    border-radius: 2px;
    transition: all 0.5s allow-discrete;
}

button.button.sertificates:hover {
    border-color: transparent; 
    background-color: #00B14F;
    color: rgb(255, 255, 255);
}

.contact__page-requzit {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
.contact__page-requzit h2{
    color: black;
}

.category-card:hover {
    box-shadow: 0 0 8px 0px rgba(34, 60, 80, 0.2);
    transition: 0.3s;
}

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

.contact__page-title{
    display: flex;
    justify-content: center;
    color: black;
}
.contact__page-title h2{
    color: black;
}

.header {
    background-color: #000;
    color: var(--color-text-inverse);
    position: relative
}

.contact__page-info{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    font-weight: 700;
}
.requzit__info{
    position: relative;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 570px;
}
.requzit__info::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background-color: #00b14f;
}

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



.title_center_2 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 100px;
}

.contact__page-left, .contact__page-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__page-email, .contact__page-adress, .contact__page-tel1, .contact__page-tel2{
    display: flex;
    gap: 18px;
}



button.button.contacts{
    padding: 11px 23px;
    background-color: unset;
    border: solid 1px black;
    color: black;
    border-radius: 2px;
    transition: all 0.5s allow-discrete;
    width: 60%;
    height: 40px;
    margin-top: 120px;
}

button.button.contacts:hover{
    border-color: transparent;
    background-color: #00B14F;
    color: rgb(255, 255, 255);
}

.contact__page-requzit__button{
    text-align: center;
    margin-bottom: 40px;
}

.header-menu {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4
    margin-top: 25px;
}

.title_center {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 30px;
}

.title_cen {
    font-size: 40px;
    margin-top: 10px;
    margin-left: 10px;
}

.header-menu.is-active {
    transform: translateX(0) scaleX(1)
}

.header-menu__list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0;
    row-gap: 30px;
    width: 100%
}

.header-menu__item.is-active {
    color: var(--color-text-accent)
}

.header-menu__link {
    color: black;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease
}

.header-menu__link:hover {
    color: var(--color-text-accent)
}

.header-contacts {
    display: flex;
    gap: 45px
}

.header-contacts__item {
    align-items: center;
    display: flex;
    gap: 15px
}

.header-contacts__item:first-child .header-contacts__link {
    /* letter-spacing: .54px  */
}

.header-contacts__link {
    color: black;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap
}

.header-contacts__link--wa {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    gap: 10px;
    line-height: 1.3
}

.header-contacts img,
.header-contacts__icon {
    height: auto;
    max-width: 100%
}

.header-search__input-wrapper {
    position: relative
}

.header-search__input-wrapper:before {
    background: url(../img/icons/search.png) no-repeat 0 0 / contain;
    content: "";
    height: 10px;
    right: 10px;
    position: absolute;
    top: calc(50% + 2px);
    transform: translateY(-50%);
    width: 10px;
}

.header-search__input {
    border: 1px solid #DADADA;
    border-radius: 5px;
    font-family: var(--text-font-main);
    font-size: 16px;
    padding: 5px 20px 5px 10px;
    width: 100%;
}

.header-search__input::-moz-placeholder {
    color: rgba(0, 0, 0, .3)
}

.header-search__input::placeholder {
    color: rgba(0, 0, 0, .3)
}

.header-search__input:focus {
    outline-color: var(--color-bg-accent)
}

.header__top {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 5px;
    padding-top: 5px;
    position: relative;
    background-color: white;
}

.tr {
    height: 120px;
    width: 5px;
    border-radius: 3px;
    background-color: white;
}

.stroke {
    display: flex;
    grid-column-end: -1;
    grid-column-start: 1;
    color: white;
    gap: 20px;
    align-items: center;
}

.stroke_2 {
    display: flex;
    align-items: center;
    margin-bottom: 30px; 
    color: white;
  }
  
  .stroke_2 .nmbr {
    margin-right: 20px;
  }
  
  .stroke_2 .txt_p {
    flex: 1; 
  }
  

  .stroke_2 .nmbr h2 {
    margin: 0;
  }
  
  .stroke_2 .txt_p p {
    margin: 0;
    color: white;
  }

.brd {
    position: relative;
    padding-left: 20px;
    padding-top: 3px;
    font-size: 18px;
  }

.txt_2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 38px;
    border-radius: 5px;
    background-color: #00B14F;
}

.txt_2 {
    position: relative;
    padding-left: 20px;
    padding-top: 3px;
  }

  .txt_3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 38px;
    border-radius: 5px;
    background-color: #00B14F;
}

.txt_3 {
    position: relative;
    padding-left: 20px;
    padding-top: 3px;
    color: black;
  }



.txt {
    position: relative; /* Для корректного позиционирования псевдоэлемента */
    padding-left: 25px; /* Отступ для полоски */
  }
  
  .txt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    height: 60px;
    background-color: white;
    border-radius: 5px;
  }


.header__top-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 15px;
}

.header-contacts__col {
    margin-right: -10px;
}

.header__logo {
    flex-shrink: 0
}

.header__contacts {
    margin-left: auto
}

.header__hamburger {
    flex-shrink: 0
}

.header__search {
    flex-basis: 230px
}

.header__main {
    align-items: center;
    background-attachment: fixed;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 500px;
    justify-content: center;
    padding-bottom: 40px;
    padding-top: 30px;
    position: relative
}

.header__main:before {
    content: "";
    inset: 0;
    position: absolute
}

.header__main-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1
}

.header__title {
    color: inherit;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.95;
    text-align: center
}

.header__cta {
    font-size: 20px;
    font-weight: 700;
    height: 43px;
    margin-top: 78px;
    max-width: 350px;
    width: 100%;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
}

.header__cta:hover {
    background-color: white;
    color: black;
}

.about-company__text .section__title:before, .section__title.partners-main:before {
    left: 0;
}


h2.section__title.categories {
    text-align: left;
}
.section__title.categories:before{
    right: 58% !important;
}

.section__title.contacts::before{
    right: 82%;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.popup-image {
    max-width: 100%;
    max-height: 100%;
}

.close-popup {
    margin-top: 10px;
    cursor: pointer;
    background-color: #fff;
    padding: 5px 10px;
    border: none;
}


.footer {
    background-color: #00B14F;
    color: white;
    font-size: 14px;
}

.footer__main {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr auto 1fr;
    padding-bottom: 20px;
    padding-top: 40px
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.footer-menu__link {
    color: inherit;
    text-decoration: none;
    transition: all .25s ease
}

.footer-menu__link:hover {
    text-decoration: underline;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    line-height: 1.49;
    margin-left: auto;
    text-align: right
}

.footer__contacts-link {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap
}

.footer__contacts-link:first-child {
    letter-spacing: 1.278px
}

.footer__contacts-link:nth-child(2) {
    letter-spacing: .852px
}

.footer__contacts-link:nth-child(3) {
    letter-spacing: .213px
}

.footer__contacts-link:hover {
    text-decoration: underline;
}

.footer__bottom {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr auto 1fr;
    padding-bottom: 20px;
    padding-top: 40px;
}

.footer__copy {
    font-size: 12px;
    line-height: 1.1;
    margin-top: 15px;
}

.footer__creator {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-family: var(--text-font-accent);
    font-size: 15px;
    font-weight: 300;
    gap: 14px
}

.footer__creator a {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s ease
}

.footer__creator a:hover {
    text-decoration: underline;
}

.footer__politics {
    color: inherit;
    font-size: 14px;
    margin-top: auto;
    opacity: .5;
    text-align: right;
    transition: all .25s ease
}

.footer__politics:hover {
    text-decoration: none
}

.section__title_2 {
    text-align: center;
    margin-left: -680px;
}

.section__title_cat2 {
    font-size: 40px;
}

.catalog_bg {
    background-color: #EEEEEE;
    padding-bottom: 100px;
    padding-top: 50px;
}

.section__title_cat3 {
    font-size: 40px;
    text-align: center;
    margin-top: 30px;
}

.advantages-wide.about__company-page {
    margin-top: 100px;
    margin-bottom: 100px;
}


h2.section__title.category {
    text-align: center;
}

.section__title.category::before {
    left: 34%;
}

a.button.contacts:hover {
    border-color: transparent;
    background-color: #00B14F;
    color: rgb(255, 255, 255);
}

a.button.contacts{
padding: 11px 23px;
background-color: unset;
border: solid 1px black;
color: black;
border-radius: 2px;
transition: all 0.5s allow-discrete;
width: 60%;
height: 40px;
margin-top: 120px;
}

.product-card__contact.detail .product-card__contact-tel {
    letter-spacing: 0.5px !important;
}

h3.product-card__title a {
    text-decoration: none;
    color: black;
}


.contact__page-tel1 {
    letter-spacing: 0.4px;
}

.contact__page-right > :first-child {
    letter-spacing: 0.8px;
}


@media (min-width:998px) {
    .header__hamburger {
        display: none
    }
}

@media (max-width: 770px) {
    .but {
        display: grid;
        margin-bottom: 20px;
        gap: 1px;
    }
    p {
            font-size: 80%;
        }
    .advantages-wide {
        height: auto;
    }

    .but_2 {
        display: grid;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .advantages-wide_2 {
        background-color: #00B14F;
        overflow: hidden;
        position: relative;
    }
}



@media (min-width:836px) { 
    .advantages-wide {
        height: auto;
    
}
}

@media (max-width:1600px) {
    .header-menu__list {
        align-items: stretch;
        gap: 30px;
        row-gap: 15px;
        text-align: center;
        width: 100%
    }
}

@media (max-width:1100px) {
    .category-card {
        align-items: start;
        grid-template-columns: 25% 1fr
    }

    .section_2 {
        margin-left: 20px;
        margin-right: 20px;
    }

    .section__title.category::before {
        left: 32%;
    }
}

@media (max-width:1100px) {
    .product-card-list {
        grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width:998px) {
    :root {
        --text-size-xl: 32px
    }

    .advantages-wide:before {
        display: none
    }

    .advantages-wide__content {
        grid-column: 1/-1;
        padding-left: 0
    }

    .advantages-wide_2:before {
        display: none
    }

    .advantages-wide_2__content {
        grid-column: 1/-1;
        padding-left: 0
    }

    .category-card__actions {
        gap: 10px
    }

    .product-card {
        padding: 10px 10px 20px
    }

    .partners {
        gap: 60px;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        row-gap: 60px
    }

    .map-content {
        right: 0
    }

    .map-content__photo {
        width: 450px
    }

    .section--bg {
        padding-bottom: 50px;
        padding-top: 30px
    }

    .section__header {
        margin-bottom: 20px
    }

    .header-menu.is-closed {
        display: none
    }

    .header-menu {
        align-items: center;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, .85);
        display: flex;
        flex-direction: column;
        font-size: 25px;
        gap: 60px;
        height: 100%;
        inset: 0;
        justify-content: center;
        min-height: 100vh;
        overflow-y: auto;
        padding: 60px 30px 120px;
        position: absolute;
        transform: translateX(-100%) scaleX(.3);
        transition: transform .4s cubic-bezier(.65, 0, .35, 1);
        z-index: 10
    }

    .header-menu__list {
        flex-direction: column;
        row-gap: 30px
    }

    .header-menu__link {
        display: block
    }

    .header-contacts {
        align-items: flex-end;
        flex-direction: column;
        gap: 0
    }

    .header-contacts__col:first-child {
        order: 1
    }

    .header-contacts__link--wa {
        gap: 0
    }

    .header-contacts__link--wa span {
        font-size: 0;
        opacity: 0;
        position: absolute
    }

    .header__search {
        display: none
    }

    .header__top {
        gap: 0;
        padding-bottom: 10px;
        padding-top: 10px
    }

    .header__main {
        height: auto;
        padding-bottom: 70px;
        padding-top: 70px
    }

    .header__title {
        font-size: 42px;
    }

    .header__cta {
        margin-top: 30px;
    }

}



@media (max-width:900px) {
    .card__detail-info {
        display: flex;
        flex-direction: column;
        gap: 23px;
    }
}

@media (max-width:850px) {
    .product-card-list {
        grid-template-columns: 1fr 1fr
    }

    .product-card {
        text-align: center
    }

    .section__title.category::before {
        left: 28%;
    }
}

@media (max-width:786px) {
    .map-content__text {
        font-size: 16px
    }

    .but_2 {
        display: grid;
        justify-content: center;
        margin-top: -20px;
        margin-bottom: 30px;
        gap: 10px;
    }

    .title_cen {
        font-size: 30px;
        margin-top: 15px;
        margin-left: 10px;
    }

    a.button.contacts{
        margin-top: 60px;
        }

        .brd {
            position: relative;
            padding-left: 20px;
            padding-top: 3px;
            font-size: 16px;
        }

        .advantages-wide_2 {
            background-color: #00B14F;
            overflow: hidden;
            position: relative;
            height: auto;
        }
        
}

@media (max-width:768px) {
    .entry-content li:not(:last-child) {
        margin-bottom: 12px
    }

    button.button.contacts{
        margin-top: 34px;
    }

    .about-company {
        display: grid;
        gap: 15px;
        grid-template-columns: repeat(2, 1fr)
    }

    .about-company__text {
        grid-column: 1/-1
    }

    .about-company__text .section__title {
        margin-bottom: 20px
    }

    .about-company__text .entry-content {
        font-size: 16px
    }

    .about-company__img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .about-company__img--big {
        grid-column: 1/-1
    }

    .section__title_cat2 {
        font-size: 30px;
    }

    .advantages-wide__list {
        display: flex;
        flex-direction: column;
        font-size: 22px;
        gap: 15px
    }

    .advantages-wide__list li:before {
        top: 15px
    }

    .advantages-wide__note {
        font-size: 14px;
        margin-top: 25px;
        padding: 10px 0 10px 15px
    }

    .advantages-wide_2__list {
        display: flex;
        flex-direction: column;
        font-size: 22px;
        gap: 15px
    }

    .advantages-wide_2__list li:before {
        top: 15px
    }

    .advantages-wide_2__note {
        font-size: 14px;
        margin-top: 25px;
        padding: 10px 0 10px 15px
    }

    .category-card {
        grid-template-columns: 1fr;
        padding-top: 30px
    }

    .category-card__image {
        margin: 0 auto
    }

    .category-card__content {
        align-items: center;
        display: flex;
        flex-direction: column
    }

    .product-card__image {
        margin: 0 auto
    }

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

    .map-wrapper {
        padding: 0
    }

    .map {
        height: 250px !important
    }

    .map-content {
        margin: 0 auto;
        position: relative;
        transform: none
    }

    .section__title {
        font-size: 20px;
    }

    .header-contacts__col:first-child {
        display: none
    }

    .header__logo {
        max-width: 250px
    }

    .header__title {
        font-size: 30px
    }

    .footer__main {
        grid-template-columns: 1fr 1fr
    }

    .footer__logo {
        grid-column: 1/-1;
        order: -1
    }

    .footer__contacts {
        margin-left: 0
    }

    .footer__bottom {
        align-items: center;
        flex-direction: column
    }

    .footer__copy {
        order: 1
    }

    .footer__politics {
        text-align: center
    }
}

@media (max-width:720px) {
    .category-card__actions {
        flex-direction: column;
        gap: 15px;
        width: 100%
    }

    .category-card__actions .button {
        height: 40px;
        width: 100%
    }

    .section__title.category::before {
        left: 28%;
    }
}

@media (max-width:685px) {
    .section__title.category::before {
        left: 26%;
    }

    .section__title_cat3 {
        font-size: 30px;
        text-align: center;
        margin-top: 30px;
    }

    .title_cen {
        font-size: 30px;
        margin-top: 18px;
        margin-left: 10px;
    }

    .product-card__detail {
        display: flex;
        gap: 35px;
        flex-direction: column;
    }
}

@media (max-width:576px) {
    :root {
        --text-size-xl: 28px;
        --container-padding: 15px
    }
    .contact__page-info{
        flex-direction: column;
        align-items: center;
    }

    .contact__page-left {
        margin-left: 27px;
    }

    .product-card-list__more .button {
        max-width: 60%;
    }

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

    .section__title_cat2 {
        font-size: 25px;
    }

    .section__title.category::before {
        left: 23%;
    }

    .advantages-wide__list {
        font-size: 16px
    }

    .advantages-wide__list li {
        padding-left: 40px
    }

    .advantages-wide__list li:before {
        width: 30px
    }

    .advantages-wide_2__list {
        font-size: 16px
    }

    .advantages-wide_2__list li {
        padding-left: 40px
    }

    .advantages-wide_2__list li:before {
        width: 30px
    }

    .product-card-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 15px;
    margin-bottom: 30px;
    }

    .button--view--outline {
        background-color: transparent;
        border: .752px solid #00B14F;
        color: var(--color-text-primary);
    }

    .stroke {
        display: flex;
        grid-column-end: -1;
        grid-column-start: 1;
        color: white;
        gap: 20px;
    }

    

    .product-card__button {
        font-size: 12px;
        width: 100%;
        height: 38px;
        margin-bottom: 10px;
    }

    .advantages-wide__grid {
        display: grid;
        gap: 26px;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 50px;
        margin-left: -30px;
    }

        .buttheader {
            width: 100%;
        }

    .product-card-list__more .button {
        max-width: 80%
    }

    .product-card {
        max-width: 90%;
    }

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

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

    .header-contacts__col {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        width: 100%
    }

    .header-contacts__link {
        font-size: 16px
    }

    .header__top-row {
        row-gap: 15px
    }

    .header__logo {
        max-width: 150px
    }

    .header__contacts {
        flex: 1 1 100%;
        margin-left: 0;
        order: 1
    }

    .header__title {
        font-size: 28px
    }

    .header__cta {
        max-width: 100%
    }

    .footer__main {
        align-items: center;
        grid-template-columns: 1fr;
        justify-content: center
    }

    .footer-menu,
    .footer__contacts {
        text-align: center
    }
}

a {
    text-decoration: none;
    color: black;
}

@media (max-width:490px) {

    .category-card-list,

    .product-card-list {
        grid-template-columns: 1fr
    }

    .section__title.category::before {
        left: 17%;
    }
    .sertificates__title span{
        font-size: 32px;
    }

    .brd {
        position: relative;
        padding-left: 20px;
        padding-top: 3px;
        font-size: 14px;
    }
}

@media (max-width:405px) {

    .section__title.category::before {
        left: 11%;
    }
}

@media (max-width:390px) {
    .header-contacts__link {
        font-size: 12px
    }
}

@media (max-width:375px) {
    .footer__creator {
        flex-direction: column;
        gap: 5px;
        text-align: center
    }

    .section__title.category::before {
        left: 7%;
    }
}

@media (max-width: 350px) {
    .product-card {
        text-align: center;
        max-width: 65%;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

@media (hover:hover) {
    .header-contacts__link:hover {
        color: var(--color-text-accent)
    }
}


