/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* =========================================================
   Starter CSS (clean)
   Headings — Unbounded
   Body / UI — Roboto
   ========================================================= */

/* ------------------------- Fonts ------------------------- */
@font-face {
    font-family: "Roboto";
    src: url("/wp-content/themes/agro-sasha/font/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-stretch: 75% 100%;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("/wp-content/themes/agro-sasha/font/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-stretch: 75% 100%;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Unbounded";
    src: url("/wp-content/themes/agro-sasha/font/Unbounded-VariableFont_wght.ttf") format("truetype");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}


/* -------------------------- Reset ------------------------ */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #F9FAEE;
}

/* ---------------------- Typography ----------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Unbounded", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

p {
    margin: 0;
}

strong,
b {
    font-weight: 600;
}

em,
i {
    font-style: italic;
}

/* ------------------------ Media -------------------------- */
img,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* ------------------------- Forms ------------------------- */
input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

/* ------------------------- Lists ------------------------- */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ------------------------ Tables ------------------------- */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------- Links ------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------- Accessibility -------------------- */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* ------------------------- Misc -------------------------- */
hr {
    margin: 0;
    border: none;
}

.container {
    max-width: 1760px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}


.header-content {
    padding-top: 27px;
    padding-bottom: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
}

.header-content-left>a>img {
    max-height: 65px;
    width: auto;
}

.header-content-left>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}

.header-content-left,
.header-content-right {
    width: calc(15% - (16px * 2 / 3));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-content-center {
    width: calc(70% - (16px * 2 / 3));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-content-center>nav {
    margin: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-content-center>nav>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.header-content-center>nav>ul>li {
    margin-left: auto;
    margin-right: auto;
}

.header-content-center>nav>ul>li>a {
    color: #1A1C15;
    -webkit-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
    transition: color 0.25s ease;
}

.header-content-center>nav>ul>li>a:hover {
    color: #ABD468;
}


/* -------- Language dropdown (custom) -------- */
.lang {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
}

/* Кнопка в хедере (размер = твой header-content-right-regin) */
.lang-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 8px;
    background: #F9FAEE;
    border-radius: 8px;
    cursor: pointer;
}

.lang-current {
    white-space: nowrap;
    color: #1A1C15;
}

/* Дропдаун: ширина ровно как у кнопки */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 100%;
    background: #F9FAEE;
    border: 1px solid #C4C9B5;
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.lang.is-open .lang-dropdown {
    display: block;
}

.lang-option {
    width: 100%;
    text-align: left;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #1A1C15;
}

.lang-dropdown li+li {
    border-top: 1px solid #C4C9B5;
    /* полоска между языками */
}

.lang-option:hover,
.lang-option:focus-visible {
    outline: none;
    background: rgba(196, 201, 181, 0.25);
}

.home-slide {
    padding-top: 50px;
    padding-bottom: 80px;
}

.home-slide-content {
    padding: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
}

.home-slide-content-left,
.home-slide-content-right {
    width: calc(100% / 2 - (16px * 1 / 2));
}

.home-slide-content-left>h1 {
    color: #FAFFE8;
    font-size: 54px;
    letter-spacing: 3%;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
}

.home-slide-content-left>p {
    color: #FAFFE8;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.social-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.social-block>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #ABD468;
    border-radius: 8px;
    padding: 11px;
    -webkit-transition:
        background-color 0.25s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.25s ease;
    transition:
        background-color 0.25s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.25s ease;
    -o-transition:
        background-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    transition:
        background-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    transition:
        background-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.25s ease;
}

/* иконки */
.social-block>a img {
    width: 24px;
    height: 24px;
    -webkit-transition: -webkit-filter 0.25s ease;
    transition: -webkit-filter 0.25s ease;
    -o-transition: filter 0.25s ease;
    transition: filter 0.25s ease;
    transition: filter 0.25s ease, -webkit-filter 0.25s ease;
}

/* hover эффект */
.social-block>a:hover {
    background-color: #3D5B00;
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 18px rgba(61, 91, 0, 0.35);
            box-shadow: 0 6px 18px rgba(61, 91, 0, 0.35);
}

/* делаем иконку белой */
.social-block>a:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

/* эффект нажатия */
.social-block>a:active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0 3px 10px rgba(61, 91, 0, 0.25);
            box-shadow: 0 3px 10px rgba(61, 91, 0, 0.25);
}

.classic-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-decoration: none;
    border: 1px solid #ABD468;
    border-radius: 60px;
    -webkit-transition:
        -webkit-transform 0.25s ease,
        -webkit-box-shadow 0.25s ease;
    transition:
        -webkit-transform 0.25s ease,
        -webkit-box-shadow 0.25s ease;
    -o-transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        -webkit-transform 0.25s ease,
        -webkit-box-shadow 0.25s ease;
}

.classic-button:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 22px rgba(61, 91, 0, 0.25);
            box-shadow: 0 8px 22px rgba(61, 91, 0, 0.25);
}

/* ЛЕВАЯ ЧАСТЬ */
.classic-button-left {
    color: #3D5B00;
    background-color: #ABD468;
    border-radius: 60px 0 0 60px;
    padding: 20px 18px 20px 24px;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.5px;
    font-weight: 500;
    -webkit-transition:
        background-color 0.25s ease,
        color 0.25s ease;
    -o-transition:
        background-color 0.25s ease,
        color 0.25s ease;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

/* ПРАВАЯ ЧАСТЬ */
.classic-button-right {
    background-color: #fff;
    padding: 18px 24px 18px 18px;
    border-radius: 0 60px 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* ИКОНКА */
.classic-button-right img {
    -webkit-transition:
        -webkit-transform 0.25s ease,
        -webkit-filter 0.25s ease;
    transition:
        -webkit-transform 0.25s ease,
        -webkit-filter 0.25s ease;
    -o-transition:
        transform 0.25s ease,
        filter 0.25s ease;
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        -webkit-transform 0.25s ease,
        -webkit-filter 0.25s ease;
}

/* HOVER ЭФФЕКТ */
.classic-button:hover .classic-button-left {
    background-color: #3D5B00;
    color: #fff;
}

/* стрелка остаётся на белом фоне, но становится зелёной */
.classic-button:hover .classic-button-right img {
    -webkit-filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(600%) hue-rotate(35deg);
            filter: brightness(0) saturate(100%) invert(25%) sepia(60%) saturate(600%) hue-rotate(35deg);
    -webkit-transform: translate(2px, -2px);
        -ms-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
}

/* НАЖАТИЕ */
.classic-button:active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0 4px 12px rgba(61, 91, 0, 0.2);
            box-shadow: 0 4px 12px rgba(61, 91, 0, 0.2);
}





/* контейнер */
.home-slide-all {
    position: relative;
}

/* блок с картинкой (абсолютный) */
.home-slide-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    /* старт для анимации */
    -webkit-transform: translateY(140px);
        -ms-transform: translateY(140px);
            transform: translateY(140px);
    opacity: 0;

    /* плавный выезд */
    -webkit-transition:
        opacity 0.9s ease,
        -webkit-transform 1.45s cubic-bezier(0.16, 1, 0.3, 1);
    transition:
        opacity 0.9s ease,
        -webkit-transform 1.45s cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition:
        transform 1.45s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.9s ease;
    transition:
        transform 1.45s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.9s ease;
    transition:
        transform 1.45s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.9s ease,
        -webkit-transform 1.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* когда показали */
.home-slide-img.is-visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

/* режим измерения: убираем transform и transition, но НЕ показываем */
.home-slide-img.is-measuring {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    opacity: 0 !important;
}

/* чтобы картинка не давала лишние прыжки */
.home-slide-img-right>img {
    max-width: 552px;
    width: auto;
    height: auto;
    display: block;
}

.home-slide-img-left,
.home-slide-img-right {
    width: calc(100% / 2 - (16px * 1 / 2));
}


.home-slide-img {
    pointer-events: none;
}


.home-block2 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.container2 {
    max-width: 1464px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.home-block2 p {
    color: #44493A;
    font-size: 48px;
    line-height: 150%;
    font-weight: 400;
    background-color: #D4E7B2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.home-block2>.container2>p:not(:last-of-type) {
    margin-bottom: 12px;
}


.home-block3 {
    padding: 64px 16px 90px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-block3>img {
    margin: auto;
}

.home-block4 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.h2-classic {
    color: #466801;
    font-size: 42px;
    letter-spacing: 2%;
    font-weight: 700;
    margin-bottom: 60px;
}

.container3 {
    max-width: 1464px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.home-block4-sod-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.home-block4-sod-block>div {
    width: calc(100% / 2 - (20px * 1 / 2));
}

.home-block4-sod-block-right>p {
    color: #1A1C15;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}

.home-block4-sod-block-right>p:not(:last-of-type) {
    margin-bottom: 20px;
}

.home-block5 p {
    color: #44493A;
    font-size: 48px;
    line-height: 150%;
    font-weight: 400;
}

.home-block5 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block6-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.home-block6 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-block6-content-sod1,
.home-block6-content-sod2 {
    width: calc(100% / 4 - (20px*3/4));
}

.home-block6-content-sod2 {
    background-color: #D4E7B2;
    padding: 32px;
    border-radius: 20px;
}

.home-block6-content-sod2>h3 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 110%;
    font-weight: 500;
}

.home-block6-content-sod2>p {
    margin-bottom: 55px;
    color: #44493A;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}

.home-block6-content-sod2-spisok-element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.home-block6-content-sod2-spisok-element>p {
    margin-top: auto;
    margin-bottom: auto;
    color: #1A1C15;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
}

.home-block6-content-sod2-spisok>.home-block6-content-sod2-spisok-element:not(:last-of-type) {
    margin-bottom: 12px;
}

.home-block6-content-sod2-spisok-element>img {
    margin-bottom: auto;
}

.home-block7 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block7-content-pc-product>h3 {
    margin-bottom: 24px;
    color: #1A1C15;
    font-size: 32px;
    line-height: 110%;
    font-weight: 500;
}

.home-block7-content-pc-product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.home-block7-content-pc-product-info-left,
.home-block7-content-pc-product-info-right {
    width: calc(50% - (20px * 1 / 2));
}

.home-block7-content-pc-product-info-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
}

.home-block7-content-pc-product-info-left-small {
    width: 178px;
}

.home-block7-content-pc-product-info-left-big {
    width: calc(100% - 178px - 8px);
}

.home-block7-content-pc-product-info-left-big>img {
    border: 1px solid #747968;
    border-radius: 20px;
}

.home-block7-content-pc-product-info-left-small>img {
    border: 1px solid #747968;
    border-radius: 20px;
}

.home-block7-content-pc-product-info-left-small>img:not(:last-of-type) {
    margin-bottom: 8px;
}



.home-block7-content-pc-product-info-right-tabel {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border: 1px solid #747968;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    margin-bottom: 40px;
}

.home-block7-content-pc-product-info-right-tabel-head-cell {
    width: 50%;
    background: #C4C9B5;
    color: #1A1C15;
    font-size: 20px;
    line-height: 110%;
    font-weight: 400;
    text-align: left;
    padding: 7px 10px;
    border-bottom: 1px solid #747968;
    font-family: "Unbounded", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.home-block7-content-pc-product-info-right-tabel-head-cell+.home-block7-content-pc-product-info-right-tabel-head-cell {
    border-left: 1px solid #747968;
}

.home-block7-content-pc-product-info-right-tabel-cell {
    width: 50%;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    padding: 7px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #747968;
}

.home-block7-content-pc-product-info-right-tabel-cell-left {
    color: #747968;
}

.home-block7-content-pc-product-info-right-tabel-cell-right {
    color: #1A1C15;
    border-left: 1px solid #747968;
}

/* убираем нижнюю линию у последней строки, чтобы совпало со скруглением */
.home-block7-content-pc-product-info-right-tabel-body .home-block7-content-pc-product-info-right-tabel-row:last-child .home-block7-content-pc-product-info-right-tabel-cell {
    border-bottom: none;
}


.home-block7-content-pc-product-info-right-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.home-block7-content-pc-product-info-right-text>p {
    width: 210px;
    color: #1A1C15;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
}

.home-block7-content-pc-product-info-right-text>div {
    width: calc(100% - 210px - 20px);
}

.home-block7-content-pc-product-info-right-text>div>p:not(:last-of-type) {
    margin-bottom: 12px;
}

.home-block7-content-pc-product-info-right-text>div>p {
    font-size: 16px;
    line-height: 110%;
}

.home-block7-content-pc>.home-block7-content-pc-product:not(:last-of-type) {
    margin-bottom: 40px;
}





/* ====== Block7 Price Popup (FIX) ====== */

html.home-block7-popup-lock,
body.home-block7-popup-lock {
    overflow: hidden !important;
}

/* overlay must be fixed always */
.home-block7-popup-overlay {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    z-index: 999999 !important;

    display: -webkit-box !important;

    display: -ms-flexbox !important;

    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;

    padding: 16px !important;

    background: rgba(26, 28, 21, 0.45) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-transition: opacity 220ms ease !important;
    -o-transition: opacity 220ms ease !important;
    transition: opacity 220ms ease !important;
}

.home-block7-popup-overlay.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.home-block7-popup {
    width: min(1100px, 100%) !important;
    background: #F9FAEE !important;
    border: 1px solid #C4C9B5 !important;
    border-radius: 24px !important;
    -webkit-box-shadow: 0 18px 55px rgba(26, 28, 21, 0.25) !important;
            box-shadow: 0 18px 55px rgba(26, 28, 21, 0.25) !important;
    overflow: hidden !important;

    -webkit-transform: translateY(18px);

        -ms-transform: translateY(18px);

            transform: translateY(18px);
    -webkit-transition: -webkit-transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
    transition: -webkit-transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
    -o-transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-block7-popup-overlay.is-open .home-block7-popup {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

/* header */
.home-block7-popup-header {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    gap: 12px !important;

    padding: 16px 18px !important;
    background: #C4C9B5 !important;
    border-bottom: 1px solid #747968 !important;
}

.home-block7-popup-title {
    font-family: Unbounded, sans-serif !important;
    font-size: 20px !important;
    line-height: 110% !important;
    font-weight: 400 !important;
    color: #1A1C15 !important;
}

/* close */
.home-block7-popup-close {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    border: 1px solid #747968 !important;
    background: #F9FAEE !important;

    display: -webkit-box !important;

    display: -ms-flexbox !important;

    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;

    cursor: pointer !important;
    -webkit-transition: background-color 0.25s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.25s ease !important;
    transition: background-color 0.25s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.25s ease !important;
    -o-transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease !important;
    transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease !important;
    transition: transform 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.25s ease !important;
}

.home-block7-popup-close:hover {
    background: #ABD468 !important;
    -webkit-transform: translateY(-1px) !important;
        -ms-transform: translateY(-1px) !important;
            transform: translateY(-1px) !important;
    -webkit-box-shadow: 0 8px 18px rgba(61, 91, 0, 0.18) !important;
            box-shadow: 0 8px 18px rgba(61, 91, 0, 0.18) !important;
}

.home-block7-popup-close svg {
    width: 18px !important;
    height: 18px !important;
}

.home-block7-popup-close svg path {
    stroke: #1A1C15 !important;
}

.home-block7-popup-close:hover svg path {
    stroke: #3D5B00 !important;
}

/* body */
.home-block7-popup-body {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 16px 1fr !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 18px !important;
}

.home-block7-popup-left,
.home-block7-popup-right {

    border-radius: 18px !important;
    background: #F9FAEE !important;
}

.home-block7-popup-left {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
}

.home-block7-popup-left img {
    width: 100% !important;
    height: auto !important;
    max-height: 520px !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    display: block !important;
    border-radius: 18px;
    border: 1px solid #C4C9B5 !important;
}

/* form */
.home-block7-popup-form {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 12px !important;
}

.home-block7-popup-field label {
    display: block !important;
    margin-bottom: 6px !important;
    font-family: Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 140% !important;
    font-weight: 400 !important;
    color: #747968 !important;
}

.home-block7-popup-field input,
.home-block7-popup-field textarea {
    width: 100% !important;
    border: 1px solid #747968 !important;
    background: #FFFFFF !important;
    border-radius: 12px !important;
    padding: 10px 12px !important;

    font-family: Roboto, sans-serif !important;
    font-size: 16px !important;
    line-height: 140% !important;
    font-weight: 400 !important;
    color: #1A1C15 !important;

    outline: none !important;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease !important;
    transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease !important;
    -o-transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease !important;
}

.home-block7-popup-field textarea {
    min-height: 110px !important;
    resize: vertical !important;
}

.home-block7-popup-field input:focus,
.home-block7-popup-field textarea:focus {
    border-color: #3D5B00 !important;
    -webkit-box-shadow: 0 0 0 3px rgba(171, 212, 104, 0.35) !important;
            box-shadow: 0 0 0 3px rgba(171, 212, 104, 0.35) !important;
}

/* allow your classic-button inside form */
.home-block7-popup-form .classic-button {
    cursor: pointer;
    background: transparent;
}




.home-block8 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block8-content>h2 {
    color: #3D5B00;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: 2%;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-block8-content>p {
    color: #3D5B00;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 60px;
}

.home-block8-content-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.home-block8-content-block>div {
    width: calc(100% / 2 - (20px * 1 / 2));
}

.home-block8-content-block-right-elemtn {
    padding: 9px 9px 9px 0;
    background-color: #D4E7B2;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.home-block8-content-block-right-elemtn>.home-block8-content-block-right-elemtn-left {
    font-size: 157px;
    letter-spacing: 2%;
    font-weight: 700;
    line-height: 70%;
    color: #ABD468;
    width: 110px;
}

.home-block8-content-block-right-elemtn-right {
    margin-top: auto;
    margin-bottom: auto;
    width: calc(100% - 110px - 16px);
}

.home-block8-content-block-right-elemtn-right>h4 {
    color: #3D5B00;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 110%;
    font-weight: 400;
}

.home-block8-content-block-right-elemtn-right>p {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    color: #3D5B00;
}

.home-block8-content-block-right>.home-block8-content-block-right-elemtn:not(:last-of-type) {
    margin-bottom: 15px;
}

.home-block9 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block9-content>h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #456600;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: 2%;
    font-weight: 700;
}

.home-block9-content>p {
    text-align: center;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    max-width: 1166px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.home-block9-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 80px;
}

.home-block9-content-container-center {
    width: calc(22% - (80px * 2 / 3));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-block9-content-container-center>img {
    margin-top: auto;
    margin-bottom: auto;
}

.home-block9-content-container-left,
.home-block9-content-container-right {
    width: calc((100% - 22%) / 2 - (80px * 2 / 3));
}

.home-block9-content-container-left-cont>img {
    margin-left: auto;
    margin-bottom: 16px;
}

.home-block9-content-container-left-cont>h3 {
    margin-bottom: 22px;
    font-size: 24px;
    text-align: right;
    font-weight: 400;
    line-height: 110%;
}

.home-block9-content-container-left-cont>p {
    text-align: right;
    color: #1A1C15;
    font-size: 18px;
    line-height: 140%;
}

.home-block9-content-container-left>.home-block9-content-container-left-cont:not(:last-of-type) {
    margin-bottom: 58px;
}

.home-block9-content-container-left>.home-block9-content-container-left-cont:nth-child(2) {
    padding-right: 40px;
}


.home-block9-content-container-right-content>h3 {
    margin-bottom: 22px;
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
}

.home-block9-content-container-right-content>img {
    margin-bottom: 16px;
}

.home-block9-content-container-right-content>p {
    color: #1A1C15;
    font-size: 18px;
    line-height: 140%;
}

.home-block9-content-container-right>.home-block9-content-container-right-content:not(:last-of-type) {
    margin-bottom: 58px;
}

.home-block9-content-container-right>.home-block9-content-container-right-content:nth-child(2) {
    padding-left: 40px;
}

.home-block10 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block10-content-lvl1 {
    padding: 80px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    margin-bottom: 40px;
}

.home-block10-content-lvl1>h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 42px;
    line-height: 110%;
    letter-spacing: 2%;
    font-weight: 700;
    color: #456600;
}

.home-block10-content-lvl1>p {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.home-block10-content-lvl1>p:not(:last-of-type) {
    margin-bottom: 12px;
}

.home-block10-content-lvl2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.home-block10-content-lvl2-element {
    width: calc(100% / 4 - (20px * 3 / 4));
    background-color: #D4E7B2;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-block10-content-lvl2-element>img {
    width: 85px;
    height: auto;
    margin-left: 10px;
    margin-right: 5px;
}

.home-block10-content-lvl2-element>p {
    color: #1A1C15;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.home-block11 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block11-content-video-block {
    position: relative;
    display: block;
    width: 100%;
    background: #000;
    /* чтобы поля были черные */
    overflow: hidden;
}

/* картинка-постер */
.home-block11-video-poster {
    display: block;
    width: 100%;
    height: auto;
}

/* кнопка play */
.home-block11-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px solid #ABD468;
    background: rgba(171, 212, 104, 0.85);

    color: #3D5B00;
    font-size: 32px;
    font-weight: 700;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;

    transition: background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;

    -o-transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    cursor: pointer;
}

.home-block11-video-play:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.06);
        -ms-transform: translate(-50%, -50%) scale(1.06);
            transform: translate(-50%, -50%) scale(1.06);
    -webkit-box-shadow: 0 10px 26px rgba(61, 91, 0, 0.25);
            box-shadow: 0 10px 26px rgba(61, 91, 0, 0.25);
    background: #ABD468;
}

/* сам видеоплеер всегда 100% блока */
.home-block11-video-player {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    /* поля внутри плеера */
    background: #000;
}


.home-block11-content-video-block {
    margin-bottom: 40px;
}

.home-block11-content-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.home-block11-content-img>img {
    width: calc(100% / 5 - (20px * 4 / 5));
}

.home-block11-content-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-block11-content-button>a {
    margin-left: auto;
    margin-right: auto;
}

.home-block12 {
    padding-top: 120px;
    padding-bottom: 120px;
}




.home-block12-slider {
    width: 100%;
    position: relative;
}

.home-block12-slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 10px;
    /* left/right выставим из JS */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    scrollbar-width: none;
}

.home-block12-slider-track::-webkit-scrollbar {
    display: none;
}

.home-block12-slider-track.is-dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.home-block12-slider-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 277px;
    height: 380px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: -webkit-transform .18s ease, -webkit-box-shadow .22s ease;
    transition: -webkit-transform .18s ease, -webkit-box-shadow .22s ease;
    -o-transition: transform .18s ease, box-shadow .22s ease;
    transition: transform .18s ease, box-shadow .22s ease;
    transition: transform .18s ease, box-shadow .22s ease, -webkit-transform .18s ease, -webkit-box-shadow .22s ease;
}

/* 4) тень на основном слайде при hover */
.home-block12-slider-img:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

/* overlay шириной как container */
.home-block12-slider-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 100%;
    width: min(100%, var(--container-width, 1200px));
    pointer-events: none;
}

.home-block12-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    -webkit-transition: opacity .2s ease, -webkit-filter .2s ease;
    transition: opacity .2s ease, -webkit-filter .2s ease;
    -o-transition: opacity .2s ease, filter .2s ease;
    transition: opacity .2s ease, filter .2s ease;
    transition: opacity .2s ease, filter .2s ease, -webkit-filter .2s ease;
}

.home-block12-arrow img {
    width: 40px;
    height: 40px;
    display: block;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
}

.home-block12-arrow:hover {
    -webkit-filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.20));
            filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.20));
}

.home-block12-arrow--right {
    right: 0;
}

.home-block12-arrow--left {
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.home-block12-arrow--left img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.home-block12-slider.has-left .home-block12-arrow--left {
    opacity: 1;
    pointer-events: auto;
}

.home-block12-slider.no-right .home-block12-arrow--right {
    opacity: 0;
    pointer-events: none;
}

/* -------------------- LIGHTBOX -------------------- */
.home-block12-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.home-block12-lightbox.is-open {
    display: block;
}

.home-block12-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 14, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-block12-lightbox-panel {
    position: absolute;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 24px;
    pointer-events: none;
}

/* 1) media БЕЗ фона/теней — чисто картинка */
.home-block12-lightbox-media {
    width: min(70vw, 1100px);
    height: 70vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    pointer-events: auto;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.home-block12-lightbox-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}

/* 2) счетчик снизу */
.home-block12-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: -44px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 14px;
    line-height: 1;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
}

.home-block12-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    pointer-events: auto;
    -webkit-transition: background .2s ease, -webkit-transform .15s ease, -webkit-box-shadow .2s ease;
    transition: background .2s ease, -webkit-transform .15s ease, -webkit-box-shadow .2s ease;
    -o-transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, -webkit-transform .15s ease, -webkit-box-shadow .2s ease;
}

.home-block12-lightbox-close:hover {
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
    -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.14);
}

.home-block12-lightbox-close-x {
    display: block;
    font-size: 26px;
    line-height: 44px;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.home-block12-lightbox-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    -webkit-transition: opacity .2s ease, -webkit-filter .2s ease;
    transition: opacity .2s ease, -webkit-filter .2s ease;
    -o-transition: opacity .2s ease, filter .2s ease;
    transition: opacity .2s ease, filter .2s ease;
    transition: opacity .2s ease, filter .2s ease, -webkit-filter .2s ease;
}

.home-block12-lightbox-nav img {
    width: 40px;
    height: 40px;
    display: block;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-user-drag: none;
}

.home-block12-lightbox-nav:hover {
    -webkit-filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.home-block12-lightbox-nav--left {
    left: 18px;
}

.home-block12-lightbox-nav--left img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.home-block12-lightbox-nav--right {
    right: 18px;
}

/* 3) если листать нельзя — скрываем стрелки */
.home-block12-lightbox.no-prev .home-block12-lightbox-nav--left {
    opacity: 0;
    pointer-events: none;
}

.home-block12-lightbox.no-next .home-block12-lightbox-nav--right {
    opacity: 0;
    pointer-events: none;
}





.home-block13 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-block13-content {
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}







.home-block13-content-faq-element {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 17px;
}

/* lvl1 делаем кнопкой (для доступности) */
.home-block13-content-faq-element-lvl1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    cursor: pointer;

    background: transparent;
    border: 0;
    padding: 0;
    text-align: left;
}

/* лёгкий hover чтобы было понятно что кликабельно */
.home-block13-content-faq-element-lvl1:hover {
    -webkit-filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.06));
            filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.06));
}

.home-block13-content-faq-element-lvl1>h3 {
    margin-top: auto;
    margin-bottom: auto;
    color: #1A1C15;
    font-size: 20px;
    line-height: 110%;
    font-weight: 400;
}

.home-block13-content-faq-element-lvl1>img {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;

    width: 28px;
    height: 28px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

/* Скрываем/открываем через max-height (плавно) */
.home-block13-content-faq-element-lvl2 {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;

    -webkit-transition:
        max-height 0.28s ease,
        opacity 0.2s ease,
        margin-top 0.28s ease;

    -o-transition:
        max-height 0.28s ease,
        opacity 0.2s ease,
        margin-top 0.28s ease;

    transition:
        max-height 0.28s ease,
        opacity 0.2s ease,
        margin-top 0.28s ease;
}

.home-block13-content-faq-element.is-open .home-block13-content-faq-element-lvl2 {
    opacity: 1;
    margin-top: 24px;
}

.home-block13-content-faq-element-lvl2>p {
    color: #44493A;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.home-block13-content-faq>.home-block13-content-faq-element:not(:last-of-type) {
    margin-bottom: 16px;
}

.container6 {
    max-width: 1166px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.home-block14 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.home-block14-content>h2 {
    color: #456600;
    font-size: 32px;
    line-height: 110%;
    font-weight: 500;
    margin-bottom: 60px;
}


/* ====== HOME BLOCK 14 FORM (как на скрине) ====== */
/* ВАЖНО: этот CSS рассчитан на HTML, который я дал ранее */

.home-block14-content-form {
    width: 100%;
}

.home-block14-content-form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 22px;
    /* расстояние между инпутами и кнопкой */
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}

.home-block14-content-form-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 22px;
    /* расстояние между инпутами */
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
}

.home-block14-content-form-field {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 220px;
    /* чтобы капсулы не сжимались в 0 */
}

/* Инпуты-капсулы */
.home-block14-content-form-input {
    width: 100%;
    height: 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    padding: 0 26px;
    border-radius: 999px;

    border: 2px solid #A9D564;
    /* зелёная обводка как на скрине */
    background: transparent;
    /* фон как у секции */
    outline: none;

    font-size: 16px;
    line-height: 100%;
    font-weight: 400;

    color: #1A1C15;

    -webkit-transition: border-color .2s ease, -webkit-box-shadow .2s ease, -webkit-transform .2s ease;

    transition: border-color .2s ease, -webkit-box-shadow .2s ease, -webkit-transform .2s ease;

    -o-transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;

    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;

    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease, -webkit-box-shadow .2s ease, -webkit-transform .2s ease;
}

.home-block14-content-form-input::-webkit-input-placeholder {
    color: rgba(26, 28, 21, 0.55);
}

.home-block14-content-form-input::-moz-placeholder {
    color: rgba(26, 28, 21, 0.55);
}

.home-block14-content-form-input:-ms-input-placeholder {
    color: rgba(26, 28, 21, 0.55);
}

.home-block14-content-form-input::-ms-input-placeholder {
    color: rgba(26, 28, 21, 0.55);
}

.home-block14-content-form-input::placeholder {
    color: rgba(26, 28, 21, 0.55);
}

/* Hover/focus — лёгкая подсветка */
.home-block14-content-form-input:hover {
    -webkit-box-shadow: 0 10px 24px rgba(61, 91, 0, 0.10);
            box-shadow: 0 10px 24px rgba(61, 91, 0, 0.10);
}

.home-block14-content-form-input:focus {
    border-color: #93C84C;
    -webkit-box-shadow: 0 12px 28px rgba(61, 91, 0, 0.14);
            box-shadow: 0 12px 28px rgba(61, 91, 0, 0.14);
}

/* Блок кнопки */
.home-block14-content-form-submit {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/* Чтобы classic-button по высоте совпадала с инпутами */
.home-block14-content-form-submit .classic-button {
    height: 60px;
}

/* Подгоняем внутренности твоей кнопки под форму (не ломая стиль) */
.home-block14-content-form-submit .classic-button-left,
.home-block14-content-form-submit .classic-button-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    /* важно: ровно как инпуты */
}

/* На скрине текст крупнее и “в центре” */
.home-block14-content-form-submit .classic-button-left {
    padding: 0 26px;
    /* как у инпутов */
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
}

/* Правая часть как отдельная белая капсула со стрелкой */
.home-block14-content-form-submit .classic-button-right {
    width: 64px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* Иконка стрелки внутри правой капсулы */
.home-block14-content-form-submit .classic-button-right img {
    width: 22px;
    height: 22px;
    display: block;
}




.home-block14-content-form {
    margin-bottom: 40px;
}

.home-block14-content-text>p {
    color: #44493A;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}



footer {
    background-color: #1A1C15;
    padding-top: 48px;
    padding-bottom: 48px;
}

.footer-lvl1 {
    padding-bottom: 48px;
    border-bottom: 1px solid #C4C9B5;
    margin-bottom: 48px;
}


.footer-lvl1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
}

.footer-lvl1-left,
.footer-lvl1-right {
    width: calc(15% - (16px * 2 / 3));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-lvl1-center {
    width: calc(70% - (16px * 2 / 3));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-lvl1-left>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}

.footer-lvl1-right-social {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

.footer-lvl1-right-social>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-lvl1-right-social>a>img {
    height: 24px;
    width: auto;
}

.footer-lvl1-center>nav {
    margin: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-lvl1-center>nav>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.footer-lvl1-center>nav>ul>li {
    margin-left: auto;
    margin-right: auto;
}

.footer-lvl1-center>nav>ul>li>a {
    color: #C4C9B5;
}

.footer-lvl2-url {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-lvl2-url>p {
    margin-left: auto;
    color: #ABD468;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
}

.footer-lvl2-url>a:last-of-type {
    margin-right: auto;
}

.footer-lvl2-url>a {
    color: #ABD468;
    font-size: 14px;
    line-height: 140%;
    font-weight: 700;
}

.footer-lvl2>p {
    text-align: center;
    color: #C4C9B5;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
}

@media (max-width: 1600px) {

    .home-block6-content-sod1,
    .home-block6-content-sod2 {
        width: calc(100% / 2 - (20px*1/2));
    }
}


@media (max-width: 1100px) {
    .home-slide-img-right>img {
        max-width: 100%;
    }

    .home-slide-content {
        padding: 50px;
    }

    .home-block2,
    .home-block4,
    .home-block5,
    .home-block6,
    .home-block7,
    .home-block8,
    .home-block9,
    .home-block10,
    .home-block11,
    .home-block12,
    .home-block13,
    .home-block14 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .home-block10-content-lvl2-element {
        width: calc(100% / 2 - (20px * 1 / 2));
    }

    .home-block11-content-img>img {
        width: calc(100% / 2 - (20px * 1 / 2));
    }
}




@media (min-width: 981px) {
    .mobilmenu {
        display: none;
    }

    .home-slide-mobil {
        display: none;
    }

    .mobil-img {
        display: none;
    }

    .home-block7-content-mobil {
        display: none;
    }

    #mnavOverlay {
  display: none;
}
}



/* Адаптив: на узких экранах переносим в 2 строки */
@media (max-width: 980px) {
    .home-block7-content-pc {
        display: none;
    }

    /* контейнер можно не трогать, но пусть будет */
    .home-block7-content-mobil-slider {
        width: 100%;
    }

    /* Заголовки: показываем только активный */
    .home-block7-content-mobil-title>h3 {
        display: none;
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 110%;
        font-weight: 400;
    }

    .home-block7-content-mobil-title>h3.is-active {
        display: block;
    }

    /* Обертка слайдера */
    .home-block7-content-mobil-mimg {
        position: relative;
        width: 100%;
        overflow: hidden;
        /* важно: чтобы "торчащие" обрезались красиво */
        padding: 0 10px;
        /* небольшой воздух по бокам */
        margin-bottom: 16px;
    }

    /* Лента */
    .home-block7-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 16px;
        will-change: transform;
        -ms-touch-action: pan-y;
            touch-action: pan-y;
        /* позволяем вертикальный скролл страницы */
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        cursor: -webkit-grab;
        cursor: grab;
    }

    .home-block7-track.is-dragging {
        cursor: -webkit-grabbing;
        cursor: grabbing;
    }

    /* Слайд: ширина 80%, чтобы было видно соседние */
    .home-block7-slide {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 80%;
                flex: 0 0 80%;
    }

    /* Картинка: как у тебя, но гарантируем размеры */
    .home-block7-slide img {
        width: 100%;
        display: block;
        border: 1px solid #747968;
        border-radius: 10px;
        background: #fff;
        margin-bottom: 1px;
    }

    /* Контент: показываем только активный */
    .home-block7-content-mobil-content-sod {
        display: none;
    }

    .home-block7-content-mobil-content-sod.is-active {
        display: block;
    }


    .header-content-center>nav {
        display: none;
    }

    .mobilmenu {
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    .header-content-center {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        width: calc(5% - (16px * 2 / 3));
    }

    .header-content-right {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: calc(80% - (16px * 2 / 3));
    }

    .home-slide-content-left>h1 {
        font-size: 24px;
        line-height: 110%;
        font-weight: 400;
        margin-top: auto;
    }

    .home-slide-content-left>p {
        display: none;
    }

    .home-slide-content-left>.social-block {
        display: none;
    }

    .home-slide-content-left>.classic-button {
        display: none;
    }

    .home-slide-img-right>img {
        max-width: 152px;
        margin-left: auto;
    }

    .home-slide-content {
        padding: 19px;
    }

    .home-slide-content {
        min-height: 225px;
    }

    .home-slide-content-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .home-slide {
        padding-top: 12px;
        padding-bottom: 32px;
    }

    .home-slide-all {
        margin-bottom: 34px;
    }

    .social-block>a:first-of-type {
        margin-left: auto;
    }

    .social-block>a:last-of-type {
        margin-right: auto;
    }

    .social-block {
        margin-bottom: 40px;
    }

    .home-slide-mobil-m {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .home-slide-mobil-m>a {
        margin-left: auto;
        margin-right: auto;
    }

    .home-block2 p {
        font-size: 16px;
        line-height: 140%;
        font-weight: 400;
    }

    .home-block2>.container2 {
        display: -ms-inline-grid;
        display: inline-grid;
        width: 100%;
    }

    .home-block2,
    .home-block4,
    .home-block5,
    .home-block6,
    .home-block7,
    .home-block8,
    .home-block9,
    .home-block10,
    .home-block11,
    .home-block12,
    .home-block13,
    .home-block14 {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .pc-img {
        display: none;
    }

    .mobil-img {
        width: 100%;
    }

    .h2-classic {
        font-size: 24px;
        line-height: 110%;
        font-weight: 400;
        margin-bottom: 24px;
    }

    .home-block4-sod-block>div {
        width: 100%;
    }

    .home-block5 p {
        font-size: 16px;
        line-height: 180%;
        font-weight: 400;
    }

    .home-block6-content-sod1,
    .home-block6-content-sod2 {
        width: 100%;
    }

    .home-block6-content-sod2 {
        padding: 12px;
    }

    .home-block6-content-sod2>h3 {
        font-size: 20px;
        line-height: 110%;
        font-weight: 400;
        margin-bottom: 12px;
    }

    .home-block6-content-sod2>p {
        font-size: 12px;
        line-height: 140%;
        font-weight: 400;
        margin-bottom: 8px;
    }

    .home-block6-content-sod2-spisok-element>p {
        font-size: 14px;
    }

    .home-block8-content>h2 {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .home-block8-content>p {
        font-size: 10px;
        font-weight: 400;
        margin-bottom: 24px;
    }

    .home-block8-content-block>div {
        width: 100%;
    }

    .home-block8-content-block-right-elemtn-right>h4 {
        font-size: 18px;
    }

    .home-block8-content-block-right-elemtn-right>p {
        font-size: 12px;
    }

    .home-block9-content>h2 {
        text-align: left;
        margin-bottom: 12px;
        font-size: 24px;
        font-weight: 400;
    }

    .home-block9-content>p {
        text-align: left;
        font-size: 12px;
        margin-bottom: 30px;
    }

    .home-block9-content-container-center {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        width: 100%;
    }

    .home-block9-content-container-left,
    .home-block9-content-container-right {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 100%;
    }

    .home-block9-content-container-center>img {
        max-width: 323px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-block9-content-container {
        gap: 24px;
    }

    .home-block9-content-container {
        gap: 12px;
    }

    .home-block9-content-container-left-cont>img,
    .home-block9-content-container-right-content>img {
        display: none;
    }

    .home-block9-content-container-left-cont>h3,
    .home-block9-content-container-right-content>h3 {
        text-align: left;
        color: #466801;
        font-size: 10px;
        line-height: 140%;
        font-weight: 400;
        margin-bottom: 4px;
    }

    .home-block9-content-container-left-cont>p,
    .home-block9-content-container-right-content>p {
        color: #1A1C15;
        font-size: 10px;
        line-height: 145%;
        font-weight: 400;
        text-align: left;
    }

    .home-block9-content-container-right>.home-block9-content-container-right-content:nth-child(2) {
        padding-left: 0px;
    }

    .home-block9-content-container-left>.home-block9-content-container-left-cont:nth-child(2) {
        padding-right: 0px;
    }

    .home-block9-content-container-left>.home-block9-content-container-left-cont:not(:last-of-type),
    .home-block9-content-container-right>.home-block9-content-container-right-content:not(:last-of-type) {
        margin-bottom: 12px;
    }

    .home-block10-content-lvl1 {
        padding: 12px;
    }

    .home-block10-content-lvl1 {
        border-radius: 10px;
        margin-bottom: 24px;
    }

    .home-block10-content-lvl1>h2 {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 400;
    }

    .home-block10-content-lvl1>p {
        font-size: 12px;
        font-weight: 400;
    }

    .home-block10-content-lvl2-element {
        width: 100%;
    }

    .home-block10-content-lvl2 {
        gap: 12px;
    }

    .home-block11-content-img>img {
        width: 100%;
    }

    .home-block12-slider-overlay {
        display: none;
    }

    .home-block14-content>h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .home-block13-content-faq-element-lvl2>p {
        font-size: 12px;
    }

    .footer-lvl1-center {
        display: none;
    }

    .footer-lvl1-left,
    .footer-lvl1-right {
        width: calc(50% - (16px * 1 / 2));
    }

    .home-block7-content-pc-product-info-right-tabel-head-cell {
        font-size: 18px;
        font-weight: 700;
    }

    .home-block7-content-pc-product-info-right-tabel-cell {
        font-size: 10px;
    }

    .home-block7-content-pc-product-info-right-tabel {
        margin-bottom: 10px;
    }

    .home-block7-content-pc-product-info-right-text {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-bottom: 28px;
    }

    .home-block7-content-pc-product-info-right-text>p {
        width: 100%;
    }

    .home-block7-content-pc-product-info-right-text>div {
        width: 100%;
    }

    .home-block7-content-pc-product-info-right-text>div>p {
        font-size: 12px;
    }

    .mobil-buttonrov {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .mobil-buttonrov>a {
        margin-left: auto;
        margin-right: auto;
    }








    .home-block14-content-form-inner {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .home-block14-content-form-fields {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .home-block14-content-form-field {
        min-width: 260px;
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%;
        width: 100%;
    }

    .home-block14-content-form-submit {
        width: 100%;
    }

    .home-block14-content-form-submit .classic-button {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .home-block14-content-form-fields {
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%
    }
}

/* responsive */
@media (max-width: 900px) {
    .home-block7-popup-body {
        -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .home-block12-lightbox-media {
        width: 92vw;
        height: 70vh;
    }

    .home-block12-lightbox-counter {
        bottom: -40px;
        font-size: 13px;
    }

    .home-block12-lightbox-nav--left {
        left: 10px;
    }

    .home-block12-lightbox-nav--right {
        right: 10px;
    }
}

@media (max-width: 740px) {
    .header-content-right {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: calc(60% - (16px * 2 / 3));
    }

    .header-content-center {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        width: calc(9% - (16px * 2 / 3));
    }

    .header-content-left {
        width: calc(31% - (16px * 2 / 3));
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}


@media (max-width: 520px) {
    .home-block14-content-form-input {
        height: 56px;
        padding: 0 20px;
    }

    .home-block14-content-form-submit .classic-button,
    .home-block14-content-form-submit .classic-button-left,
    .home-block14-content-form-submit .classic-button-right {
        height: 56px;
    }

    .home-block14-content-form-submit .classic-button-left {
        padding: 0 20px;
        font-size: 16px;
    }

    .home-block14-content-form-submit .classic-button-right {
        width: 58px;
    }
}


















/* ===== MOBILE NAV POPUP — STYLE LIKE lang-dropdown (<=980px) ===== */
@media (max-width: 980px) {
  .mnav-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;

    /* отступ сверху = высота .header-content (задаётся из JS) */
    padding: var(--header-h, 72px) 16px 16px;

    /* у lang-dropdown нет затемнения, но для попапа оставим лёгкое */
    background: rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;

    -o-transition: opacity 0.25s ease, visibility 0.25s ease;

    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mnav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ПАНЕЛЬ — как .lang-dropdown */
  .mnav {
    width: 100%;
    background: #F9FAEE;
    border: 1px solid #C4C9B5;
    border-radius: 8px;
    overflow: hidden;

    /* лёгкая анимация появления */
    -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  }

  .mnav-overlay.is-open .mnav {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }

  /* ВНУТРЯНКА — без лишних отступов, как у ul.lang-dropdown */
  .mnav-inner {
    padding: 0;
    margin: 0;
    display: block;
  }

  /* ССЫЛКИ — как .lang-option */
  .mnav-link {
    display: block;
    width: 100%;
    text-decoration: none;

    padding: 8px;
    text-align: left;

    color: #3D5B00;
    background: transparent;
    border-radius: 0;

    -webkit-transition: background 0.2s ease;

    -o-transition: background 0.2s ease;

    transition: background 0.2s ease;
  }

  .mnav-link:hover,
  .mnav-link:focus {
    background: rgba(196, 201, 181, 0.25);
    outline: none;
  }

  /* РАЗДЕЛИТЕЛИ — как .lang-dropdown li+li border-top */
  .mnav-link + .mnav-link {
    border-top: 1px solid #C4C9B5;
  }
}
