/*
	RzhevskyRobotics 2024
	CyberneticCore Team
	style.css
	Author: Burdin E.A.
*/

/* ==== Подгружаем шрифты ==== */
@font-face {
    font-family: "InvolveMedium";
    src: url('../fonts/Involve-Medium.ttf');
}

@font-face {
    font-family: "InvolveRegular";
    src: url('../fonts/Involve-Regular.ttf');
}

@font-face {
    font-family: "InvolveBold";
    src: url('../fonts/Involve-Bold.ttf');

}

/* ==== Подгружаем шрифты ==== */

* {
    margin: 0;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100%;
    background: white;
    color: #FFFEE4;
    font-family: 'Chava';
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* iOS не зумит инпуты при фокусе, если шрифт ≥ 16px */
input, select, textarea {
    font-size: 16px;
}

h1 { font-family: 'Chava'; }
a { text-decoration: none; }
img:active { -webkit-tap-highlight-color: transparent; }

header {
    display: flex;
    background: #7E8E18;
    color: white;
    height: 220px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    font-family: 'InvolveRegular';
}

footer {
    margin-top: 60px;
    display: flex;
    align-items:center;
    justify-content: space-between;
    background: white;
    padding: 40px;
    color: #FFFEE4;
}

/* === МОДАЛКИ === */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background-color: #7E8E18;
    margin: 10% auto;
    padding: 20px;
    border: 2px solid white;
    width: 50%; height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    position: relative;
}
.modal-content h2 { font-family: 'InvolveRegular'; }
.modal-content.error { background-color: #f24545; }
.modal-content-data-style {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.close-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 40px; height: 40px;
    cursor: pointer;
}
.modal__applications {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal__content__applications {
    background-color: #7E8E18;
    margin: 10% auto;
    padding: 20px;
    border: 2px solid white;
    width: 50%; height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    position: relative;
}
.modal__content__applications .contact__form {
    width: 420px;
    height: 380px;
    display: flex;
    align-items: center;
    background-color: transparent;
    margin: 0;
}
.modal__content__applications .contact__form p {
    color: white;
    font-size: 0.8em;
    margin-bottom: 10px;
}
.modal__content__applications .contact__form p.error {
    color: #fff423;
    font-family: 'InvolveRegular';
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 3px;
}
.modal__content__applications .contact__form h3 { color: white; }
.modal__content__applications .contact__form button {
    background: white;
    color: #7E8E18;
    font-weight: bold;
    transition: transform 0.1s ease-in-out;
    cursor: pointer;
}
.modal__content__applications .contact__form button:active { transform: scale(0.95); }

.modal__more {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal__content__more {
    background-color: #7E8E18;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid white;
    width: 70%; height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    position: relative;
}
.modal__content__more h3 {
    font-family: 'InvolveRegular';
    font-size: 1.6em;
    margin-bottom: 20px;
}
.block__more {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    font-family: 'InvolveRegular';
}
.block__more h3 { font-size: 1.6em; }
.block__more__text {
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.block__more__text span {
    font-weight: bold;
    margin-right: 10px;
    font-size: 1em;
}
.block__more__text p { font-size: 1.1em; }

/* === ШАПКА === */
.logo__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.name__box {
    display: flex;
    padding: 0 90px;
    flex-direction: column;
    background-image: url("../image/Rectangle.svg");
    background-repeat: no-repeat;
    background-position: left;
    background-size: 80px;
}
.name__box h1 {
    font-family: 'InvolveBold';
    font-size: 4.4em;
}
.name__box h3 {
    font-size: 1.1em;
    font-family: 'InvolveRegular';
    font-weight: 500;
}
.button__box {
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.button__box button {
    padding: 10px 16px;
    border-radius: 40px;
    background-color: white;
    border: none;
    box-shadow: 5px black;
    font-size: 1.3em;
    font-family: 'InvolveRegular';
    margin-right: 40px;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}
.button__box button:hover { background-color: #dddddd; }
.button__box button:active { transform: scale(0.95); }
.text__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text__block p {
    font-family: 'InvolveRegular';
    font-size: 1.3em;
}
.text__block a {
    cursor: pointer;
    text-decoration: none;
    color: white;
    font-family: 'InvolveRegular';
    font-size: 1.3em;
}
.search__block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.input__box {
    margin-top: 20px;
    width: 100%;
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'InvolveRegular';
    position: relative;
}
.input__box input {
    width: 1000px;
    padding: 8px 10px;
    border-radius: 10px;
    border: none;
    font-size: 1.1em;
    padding-left: 40px;
    font-family: 'InvolveRegular';
}
.input__box input::placeholder { font-family: 'InvolveRegular'; }
.input__box::before {
    content: '';
    background: url('../image/search.svg') no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    z-index: 1;
}
.input__box button {
    padding: 10px 40px;
    border-radius: 10px;
    border: none;
    font-size: 1.1em;
    background-color: #516050;
    color: white;
    transition: transform 0.1s ease-in-out;
    cursor: pointer;
}
.input__box button:hover { background-color: #6b7d69; }
.input__box button:active { transform: scale(0.95); }

/* === Основной контент === */
.main-container {
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.box__main {
    width: 100%;
    height: 64vh;
    background-image: url("../image/background.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: -40px;
}
.main__header {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: white;
    height: 40px;
}
.menu__box {
    padding: 0 8px;
    width: 50%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1.2em;
    font-family: 'InvolveRegular';
}
.menu__box a {
    text-decoration: none;
    cursor: pointer;
    color: black;
}
.menu__box a:hover { font-weight: bold; }

/* Десктопный каталог-дропдаун */
.catalog-dropdown { position: relative; }
.catalog-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    max-height: 70vh;
    overflow-y: auto;
}
.catalog-dropdown:hover .catalog-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.catalog-menu a {
    padding: 8px 20px;
    color: #555;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.catalog-menu a:hover {
    background: #f8f9fa;
    color: #7E8E18;
    padding-left: 25px;
}
.catalog-menu .catalog-menu__separator {
    height: 1px;
    background: #d0d0d0;
    margin: 6px 12px;
}

.block__product {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-image: url("../image/background__block.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 400px;
}
.block__product2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-size: 400px;
}
.h2__box {
    margin-top: 50px;
    display: flex;
    align-items: center;
    color: #516050;
}
.h2__box img {
    margin-right: 10px;
    width: 60px;
}
.h2__box h2 {
    font-family: 'InvolveBold';
    font-size: 3.5em;
}
.h3__box {
    width: 60%;
    padding: 20px 0px 0px 70px;
    display: flex;
    align-items: center;
    color: #516050;
}
.h3__box h3 {
    font-family: 'InvolveRegular';
    font-size: 1.4em;
}
.box__product__card {
    padding: 90px 0 10px 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}
.box__product__card2 {
    padding: 40px 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}
.card__product {
    width: 350px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: black;
    font-family: 'InvolveRegular';
}
.card__product h3 { width: 100%; text-align: center; }
.card__product img { width: 280px; }
.card__product span { color: #A2B52F; font-size: 1.4em; }
.card__product p { text-align: center; }
.card__product a {
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}
.card__product button {
    margin-top: 10px;
    padding: 10px 24px;
    border-radius: 40px;
    background-color: #A2B52F;
    color: white;
    border: none;
    font-size: 1.3em;
    font-family: 'InvolveRegular';
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}
.card__product button:hover { background-color: #7e8e26; }
.card__product button:active { transform: scale(0.95); }

.block__text {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #7E8E18;
    background-image: url("../image/background__block__3.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    color: white;
    font-family: 'InvolveRegular';
}
.text__box {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    padding: 60px 80px;
    font-size: 1.8em;
}
.text__box h3 {
    margin-bottom: 10px;
    font-weight: bold;
    text-align: start;
    font-size: 1.8em;
}
.text__box__installation {
    width: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: black;
    font-family: 'InvolveRegular';
}
.text__box__installation span {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 10px;
    color: #A2B52F;
}
.text__box__installation p { width: 80%; font-size: 1.4em; }

.block__form {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-image: url("../image/kontak__form.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #7E8E18;
    color: white;
    background-size: 30%;
}
.block__form2 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #7E8E18;
    color: white;
}
.block__form2 .h2__box { color: white; }
.block__form .h2__box { color: white; }
.block__form .h2__box h2 { white-space: normal; }

.contact__form {
    padding: 20px;
    margin: 40px 76px;
    width: 520px;
    height: 380px;
    background-color: white;
    border-radius: 20px;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'InvolveRegular';
}
.contact__form p { width: 460px; font-size: 1em; margin-bottom: 10px; }
.contact__form p.error {
    color: #f11e1e;
    font-family: 'InvolveRegular';
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 3px;
}
.contact__form input {
    width: 380px;
    padding: 6px;
    border-radius: 14px;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 20px;
}
.contact__form input::placeholder { padding-left: 10px; }
.contact__form h3 { font-size: 2em; }
.contact__form button {
    width: 280px;
    padding: 6px;
    border-radius: 14px;
    font-size: 1.2em;
    background-color: #7e8e18;
    color: white;
    border: none;
}

.block__info {
    width: 80%;
    margin: 40px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.info__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'InvolveRegular';
}
.info__card a {
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
    font-size: 1.6em;
}
.info__card h3 { margin-bottom: 20px; font-size: 1.8em; }
.info__card p { margin-bottom: 10px; font-size: 1.6em; }
.info__card img { width: 240px; margin-bottom: 10px; border-radius: 20px; }
.info__card .vk__img { margin-top: 20px; width: 80px; }

.main-container header h1 {
    color: white;
    font-size: 1.8em;
    font-weight: 800;
    font-family: 'Chava';
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Chava';
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.logo__header__mobile { display: none; }
.box__product__card__mobile { display: none; }
.main__header__mobile { display: none; }
.h2__box__mobile { display: none; }
.h3__box__mobile { display: none; }

.highlight { background-color: yellow; }

/* =====================================================================
   ФУТЕР (новая версия v4 — статичный, всегда видимый, меняет только цвет)
   По умолчанию скрыт. Показывается на экранах ≤ 1024px.
   ===================================================================== */
.footer { display: none; }

@media only screen and (max-width: 1024px) {
    .footer {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 600px;
        height: 60px;
        background-color: #7E8E18;
        border-radius: 40px;
        color: white;
        z-index: 500;
        transition: background-color 0.3s, color 0.3s;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .footer.footer__white {
        background-color: white;
    }
    .footer.footer__white .footer-main > a,
    .footer.footer__white .footer-catalog__toggle {
        color: #7E8E18;
    }

    .footer__menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 18px;
        box-sizing: border-box;
        gap: 10px;
        margin: 0;
    }
    .footer__menu__content {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        width: auto;
    }
    .footer-main {
        display: flex !important;
        align-items: center;
        gap: 14px;
        flex: 1;
        min-width: 0;
    }
    .footer-main > a {
        color: white;
        text-decoration: none;
        font-family: 'InvolveRegular';
        font-size: 0.95em;
        white-space: nowrap;
    }
    .footer__menu img#search-toggle,
    .footer__menu img#menu-toggle {
        width: 28px;
        height: 28px;
        cursor: pointer;
        flex-shrink: 0;
    }

    /* Каталог-переключатель */
    .footer-catalog { position: relative; }
    .footer-catalog__toggle {
        color: white;
        text-decoration: none;
        cursor: pointer;
        font-family: 'InvolveRegular';
        font-size: 0.95em;
        white-space: nowrap;
    }
    .footer-catalog__toggle::after {
        content: " ▾";
        font-size: 0.8em;
        transition: transform 0.2s;
        display: inline-block;
    }
    .footer-catalog__toggle.active::after {
        transform: rotate(180deg);
    }

    /* Выпадашка каталога — по центру над футером */
    .footer-catalog__dropdown {
        position: fixed;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 600px;
        background: #7E8E18;
        border-radius: 20px;
        padding: 10px 0;
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s, visibility 0.25s;
        z-index: 499;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        display: block;
    }
    .footer-catalog__dropdown.active {
        opacity: 1;
        visibility: visible;
    }
    .footer-catalog__dropdown a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        font-family: 'InvolveRegular';
        font-size: 0.95em;
        white-space: normal;
        text-align: left;
    }
    .footer-catalog__dropdown.white {
        background: white;
    }
    .footer-catalog__dropdown.white a,
    .footer-catalog__dropdown a.green {
        color: #7E8E18;
    }

    .catalog-menu__separator {
        height: 1px;
        background: rgba(255,255,255,0.3);
        margin: 6px 20px;
    }
    .footer-catalog__dropdown.white .catalog-menu__separator {
        background: rgba(126, 142, 24, 0.3);
    }

    /* Поле поиска внутри футера */
    #footer-search-wrap {
        display: flex;
        flex: 1;
        align-items: center;
    }
    #footer-search-input {
        width: 100%;
        padding: 8px 14px;
        border-radius: 20px;
        border: 2px solid white;
        background: white;
        color: black;
        font-size: 16px;
        outline: none;
        font-family: 'InvolveRegular';
    }
}

/* На узких экранах ужать */
@media only screen and (max-width: 380px) {
    .footer-main > a,
    .footer-catalog__toggle {
        font-size: 0.85em;
    }
    .footer-main {
        gap: 10px;
    }
    .footer__menu {
        padding: 0 14px;
    }
}

/* =====================================================================
   МОБИЛЬНЫЕ СТИЛИ (содержимое страниц, карточки и т.д.)
   ===================================================================== */
@media only screen and (max-width: 667px) {
    html, body { margin: 0; padding: 0; }
    body { overflow-x: hidden; }

    .modal__content__applications { width: 80%; height: fit-content; }
    .modal__content__applications .contact__form {
        width: 100%;
        height: fit-content;
        background-color: transparent;
    }
    .modal__content__applications .contact__form button {
        background: white;
        color: #7E8E18;
        font-weight: bold;
        transition: transform 0.1s ease-in-out;
        cursor: pointer;
        width: 180px;
        font-size: 1.1em;
    }
    .modal__content__applications .contact__form input { width: 200px; }
    .main-container {
        min-height: 100vh;
        box-sizing: border-box;
        transition: background-color 0.5s;
    }
    .modal-content { width: 60%; height: 30%; font-size: 0.8em; padding: 10px; }

    .modal__more {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0; top: 0;
        width: 100%; height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .modal__content__more {
        background-color: #7E8E18;
        margin: 5% auto;
        padding: 40px;
        border: 1px solid white;
        max-width: 600px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 20px;
        position: relative;
        overflow-y: auto;
    }
    .modal__content__more h3 {
        font-family: 'InvolveRegular';
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .block__more {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        font-family: 'InvolveRegular';
    }
    .block__more h3 { font-size: 1.6em; }
    .block__more__text {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.5;
    }
    .block__more__text span {
        font-weight: bold;
        margin-right: 10px;
        font-size: 1em;
    }
    .block__more__text p { font-size: 1.1em; margin-bottom: 10px; }
    .close-btn { width: 30px; height: 30px; }

    header {
        width: 90%;
        height: 150px;
        border-radius: 0 0 40px 0;
    }
    .logo__header { display: none; }
    .search__block { display: none; }
    .main__header { display: none; }
    .logo__header__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .name__box__mobile {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-image: url("../image/Rectangle.svg");
        background-repeat: no-repeat;
        background-position: left;
        background-size: 35px;
    }
    .name__box__mobile h1 {
        font-family: 'InvolveRegular';
        margin-left: 40px;
    }
    .logo__header__mobile h3 {
        margin-left: 40px;
        font-size: 0.7em;
        font-weight: 500;
    }
    .box__main { display: none; }

    .main__header__mobile {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        background-color: white;
    }
    #box-elem6-green { width: 90%; }
    .sticky-header {
        position: sticky;
        top: -2px;
        z-index: 500;
    }
    .number__box__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 10px;
    }
    .img__box__mobile {
        display: flex;
        color: black;
        font-family: 'InvolveRegular';
        font-weight: bold;
        font-size: 1.2em;
    }
    .img__box__mobile img { margin-right: 5px; width: 30px; }
    .img__box__mobile a { text-decoration: none; color: black; }
    .main__header__mobile button {
        padding: 10px 10px;
        border-radius: 40px;
        background-color: white;
        border: 6px solid #7E8E18;
        box-shadow: 5px black;
        color: black;
        font-size: 1em;
        font-family: 'InvolveRegular';
        cursor: pointer;
        transition: transform 0.1s ease-in-out;
    }
    .main__header__mobile button:active { transform: scale(0.95); }

    .block__product { background-image: none; }
    .h2__box { display: none; }
    .h2__box__mobile {
        width: 100%;
        display: flex;
        align-items: center;
        background-color: #7E8E18;
        color: white;
        font-family: 'InvolveRegular';
    }
    .h2__box__mobile h2 {
        padding: 20px 40px;
        font-size: 2em;
        text-wrap: wrap;
    }
    .h2__box img { display: none; }
    .h3__box__mobile {
        width: 100%;
        display: flex;
        align-items: center;
        color: #4c550f;
        font-family: 'InvolveRegular';
    }
    .h3__box__mobile h3 {
        width: 100%;
        padding: 20px 20px;
        font-size: 1.2em;
        text-wrap: wrap;
        text-align: center;
    }
    .h3__box { display: none; }

    .box__product__card__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 20px 0;
    }
    .button__block__line__mobile {
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: 30px;
    }
    .box__button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        background: white;
        color: black;
        border: 2px solid #7E8E18;
        border-radius: 15px;
        font-family: 'InvolveRegular';
        cursor: pointer;
    }
    .box__button span { font-weight: bold; }
    .box__button.active {
        background: #7E8E18;
        border: 2px solid #4c550f;
        color: white;
    }

    .swiper-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .card__product {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        height: auto;
    }
    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    .swiper-button-next { right: 10px; }
    .swiper-button-prev { left: 10px; }

    .box__product__card { display: none; }
    .box__product__card2 { display: none; }
    .text__box { display: none; }
    .block__text { display: none; }

    .block__text__mobile {
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        color: white;
        font-family: 'InvolveRegular';
        background-color: #7E8E18;
        background-image: url("../image/bakcground__mobile1.svg"), url("../image/background__mobile2.svg");
        background-position: top right, bottom left;
        background-repeat: no-repeat;
        background-size: auto;
    }
    .text__box__mobile {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: start;
        padding-top: 60px;
        padding-bottom: 160px;
        font-size: 1.4em;
    }
    .text__box__mobile h3 {
        margin-top: 40px;
        margin-bottom: 10px;
        font-weight: bold;
        text-align: start;
        font-size: 1.4em;
    }
    .text__box__installation {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: black;
        font-family: 'InvolveRegular';
        padding: 20px 40px;
    }
    .text__box__installation span {
        width: 80%;
        font-size: 1.8em;
        text-wrap: wrap;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .contact__form {
        padding: 20px;
        margin: 40px 40px;
        width: 310px;
        height: fit-content;
        background-color: white;
        border-radius: 20px;
        color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'InvolveRegular';
    }
    .contact__form p {
        width: 280px;
        margin-bottom: 10px;
        font-size: 0.8em;
    }
    .block__form {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #7E8E18;
        color: white;
        background-image: none;
    }
    .contact__form input {
        width: 280px;
        padding: 6px;
        border-radius: 14px;
        font-size: 1.2em;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .contact__form input::placeholder { padding-left: 10px; }
    .contact__form h3 { font-size: 2em; }
    .contact__form button {
        width: 220px;
        padding: 6px;
        border-radius: 14px;
        font-size: 1.2em;
        background-color: #7e8e18;
        color: white;
        border: none;
    }
    .block__info {
        height: auto;
        width: 100%;
        margin: 40px 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        background-color: #7E8E18;
    }
    .info__card {
        padding: 40px 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'InvolveRegular';
    }
    .info__card h3 {
        text-align: center;
        width: 100%;
        margin-bottom: 20px;
        font-size: 1.8em;
    }
    .info__card p { margin-bottom: 10px; font-size: 1.6em; }
    .info__card img { display: none; }
    .block__form2 {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #7E8E18;
        color: white;
    }
    .info__card .vk__img {
        display: block;
        margin-top: 20px;
        margin-bottom: 60px;
        width: 80px;
        cursor: pointer;
    }
}
