@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --orange: #ef9c3a;
    --light-blue: #43518c;
    --green: #4a8066;
    --light-green: #649b80;
    --gray: #767676;
    --white: #fff;
    --light-blue-2: #8995c7;
    --black: #000;
    --lihjt-blue-3: #fafbff;
    --font-size: 16px;


    /* Размеры (шаг 8px) */
    --s8: 8px;
    --s16: 16px;
    --s24: 24px;
    --s32: 32px;
    --s48: 48px;

    /* Цвета */
    --accent-color: #e53935;
    --text-primary: #333;
    --text-secondary: #666;
    --bg-light: #f9f9f9;

    /* Прочее */
    --radius: 8px;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body {
    margin: 0;
    padding: 0;
    cursor: default;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: var(--font-size);
}

.flex {
    display: flex;
    flex-wrap: wrap;
}
.align-between {
    justify-content: space-between;
}
.align-right {
    justify-content: right;
}
.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.55);
    display: none;
}
.content_inject {
    width: 543px;
    height: 414px;
    background: #fff;
    border-radius: 16px;
    margin: auto;
    z-index: 101;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    display: none;
}
.content_inject_default {
    padding: 40px;
}
.content_inject_close {
    position: absolute;
    right: 31px;
    top: 31px;
    cursor: pointer;
}
.align-center {
    justify-content: center;
}
.vertical-center {
    align-items: center;
}
header {
    padding: 15px 0;
}
.logo {
    display: block;
    background: url("/images/logo.png");
    width: 285px;
    height: 80px;
    background-size: cover;
}
.phone {
    color: #333;
    font-weight: 300;
    font-size: 18px;
    text-decoration: none;
    margin-left: 10px;
}
.phone-ico {
    color: #999;
}
menu {
    background: #13191e;

    margin-bottom: 0;
}
.menu-link {
    color: #8594a0;
    transition: all ease 0.6s;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}
.menu-item-wrapper:hover .menu-link {
    color: #fff;
}
.menu-item-wrapper {
    position: relative;
    padding: 20px;
}
.menu-item-wrapper:after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    left: 50%;
    transition: all ease 0.8s;
    background: #ee221d;
    bottom: 0px;
}
.menu-item-wrapper:hover:after {
    width: 100%;
    left:0;
}

.menu-item-wrapper1 {
    position: relative;
}






/* === Третий уровень меню === */
.submenu1 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* открывается вправо от второго уровня */
    background: #3a3a3a;
    min-width: 220px;
    padding: 10px 0;
    z-index: 9999;
}

/* Показываем при наведении на пункт второго уровня */
.menu-item-wrapper1:hover > .submenu1 {
    display: block;
}

/* Ссылки третьего уровня */
.submenu-link1 {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 6px 7px;
    font-size: 13px;
    transition: background 0.3s;
    white-space: nowrap;
}

.submenu-link1:hover {
    background: #ee221d;
    color: #fff;
}
.bs {
    text-decoration: none;
    text-transform: uppercase;
    color: #424242;
    text-align: center;
}
.bs img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 15px;
    height: 360px;
}
/* (опционально) стрелка для второго уровня, если есть подменю третьего уровня */
.menu-item-wrapper1:has(.submenu1) > .submenu-link::after {
    content: "▶";
    float: right;
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
}

.submenu1 {
    position: absolute;
    top: 0;
    left: 100%;
    background: #3a3a3a;
    min-width: 220px;
    padding: 10px 0;
    z-index: 9999;

    /* Изначально скрыто */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px); /* немного сдвигаем вправо */
    transition: all 0.3s ease;
}

/* Показываем при наведении на пункт второго уровня */
.menu-item-wrapper1:hover > .submenu1 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ссылки третьего уровня */
.submenu-link1 {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.3s;
    white-space: nowrap;
}

.submenu-link1:hover {
    background: #ee221d;
    color: #fff;
}

/* Добавляем стрелку для пунктов, у которых есть третий уровень */
.menu-item-wrapper1:has(.submenu1) > .submenu-link::after {
    content: "▶";
    float: right;
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* При наведении стрелочка чуть поворачивается */
.menu-item-wrapper1:hover > .submenu-link::after {
    transform: translateX(2px);
}
.gap-20 {
    gap: 20px;
}
.gap-40 {
    gap: 40px;
}
.slider-index .swiper {
    width: 100%;
    height: 945px;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

/* ОБЩИЕ СТИЛИ */
.slide-top,
.slide-left,
.slide-right,
.slide-bottom {
    opacity: 0;
    position: relative;
    transition: all 0.7s ease;
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

/* ИНДИВИДУАЛЬНОЕ ПОВЕДЕНИЕ */
.slide-top    { transform: translateY(-100vh); }  /* Вылет сверху */
.slide-left   { transform: translateX(-100vw);  font-size: 90px;}  /* Слева */
.slide-right  { transform: translateX(150vw); }   /* Справа */
.slide-bottom { transform: translateY(130vh); }   /* Снизу */

.swiper-slide-active .slide-top {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.swiper-slide-active .slide-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

.swiper-slide-active .slide-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}
.text-black {
    color: #333 !important;
}
.swiper-slide-active .slide-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    pointer-events: auto;
}


.grid-xl-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:0;
}
.grid-inner:before {
    content: "";
    display: block;
    position: absolute;
    border: 12px solid #000;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    opacity: 0;
    transition: all .3s ease;
    left: 0;
    top: 0;
    z-index: 3;
}
.inside {
    min-height: calc(100vh - 529px);
    border-bottom: solid 1px #ccc;
    padding-bottom: 50px;
}
.grid-inner {
    background: url("/images/redbg.png") center no-repeat;
    height: 200px;
    background-size: cover;
    padding: 60px;
    font-size: 45px;
    color: #fff;
    display: block;text-decoration: none;
    position: relative;
    overflow: hidden;
}
.grid-inner img {
    position: absolute;
    right: -30px;
    bottom: -30px;
    height: calc(100% + 30px);
}
.grid-inner:hover:before {
    opacity: 0.6;
}
.fw {
    max-width: 100vw;
}

.grid-inner-black {

    background: url("/images/greybg.png") center no-repeat;
}
.product-name {
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}
.product-name-1 {
    font-size: 35px;
    display: block;
    font-weight: 300;
}
.product-name-2 {
    font-size: 12px;
}
.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    line-height: 1;
}
.pt-50 {
    padding-top: 50px !important;
}
.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--s32);
}


.special-item-img img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.gap-0 {
    gap: 0 !important;
}
.special-item-img {
    margin-bottom: 15px;
}
.special-item-name {
    margin-bottom: 15px;
    font-weight: 400;
}
.special-item-short {
    margin-bottom: 30px;
}
.special-item-link {
    border: solid 2px #000;
    color: #fff;
    background: #000;
    padding: 8px 15px;
    transition: all ease 0.6s;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.special-item-link:hover {
    background: #fff;
    color: #000;
}
.special-item-link span {
    margin-right: 15px;
}
.special-item-price-title {
    color: #888888;
    margin-bottom: 10px;
    font-weight: 500;
}
.special-item-price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #555;
}
.gap-top {
    gap: 60px 30px;
}
.mt-50 {
    margin-top: 50px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.hero-item {
    height: 33.3333vw;
    background-size: cover;
    background-position: center;
}
.hero-item:before {
    content: "";
    display: block;
    position: absolute;
    border: 12px solid #000;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    opacity: 0;
    transition: all .3s ease;
    left: 0;
    top: 0;
    z-index: 2;
}
.hero-item:hover:before {
    opacity: 0.6;
}
.hero-item-1 {
    background-image: url("/images/b1.png");
}
.hero-item-1:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(rgba(237, 34, 28, 0.7), rgba(237, 34, 28, 0.95));
}
.hero-item-2 {
    background-image: url("/images/b2.png");
}
.hero-item-2:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}
.hero-item-3 {
    background-image: url("/images/b3.png");
}
.hero-item-3:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(21, 25, 31, 0.7));
}
.hero-wrapper {
    padding: 0 50px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 3;
}
.pr {
    position: relative;
}
.hero-name {
    color: #fff;
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 20px;
    width: 100%;
}
.hero-text {
    font-weight: 300;
    font-size: 25px;
    color: #fff;
    margin-bottom: 20px;
}
.hero-text-1 {
    font-weight: 500;
    font-size: 40px;
    color: #fff;
    margin-bottom: 40px;
}
.hero-item-1 {
    background-image: url("/images/b1.png");
}
.hero-link {
    border: solid 2px #fff;
    color: #fff;
    background: transparent;
    padding: 15px 15px;
    transition: all ease 0.6s;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.hero-link:hover {
    border: solid 2px #8594a0;
    background: #8594a0;
}
.company-stats {
    text-align: center;
    padding: var(--s32);
}

.stat-item {
    background: #f9f9f9;
    padding: var(--s24);
    border-radius: var(--s8);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-item .material-icons {
    font-size: 48px;
    color: #e53935;
    margin-bottom: var(--s8);
}

.stat-item h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.stat-item p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}
.stat-item .material-symbols-outlined {
    font-size: 80px;
    color: #656f7a;
    transition: all ease 0.7s;
}
.stat-item:hover .material-symbols-outlined {
    transform: scale(1.25);
}
.subscribe-block {
    background: var(--accent-color);
    color: var(--white);
    padding: var(--s48) 0;
    margin-top: 100px;
}

.subscribe-title {
    font-size: var(--s24);
    font-weight: 700;
    margin: 0 0 var(--s8);
}

.subscribe-text {
    font-size: var(--s16);
    font-weight: 300;
    margin: 0;
}

.subscribe-input {
    padding: var(--s8) var(--s16);
    font-size: var(--s16);
    border: none;
    border-radius: var(--radius);
    outline: none;
    flex-grow: 1;
    max-width: 300px;
}

.subscribe-button {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: var(--s8) var(--s16);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background: var(--white);
    color: var(--accent-color);
}

.footer {

    padding: var(--s48) 0;
    font-size: var(--s16);
    color: var(--text-secondary);
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: var(--s24);
    font-size: 14px;
    color: #aaa;
}
.menu-item-wrapper:has(.submenu) .menu-link::after {
    content: '▾';
    margin-left: var(--s8);
    font-size: 17px;
    color: #8594a0;
}

/* Скрытое подменю */
.menu-item-wrapper .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    padding: var(--s8) 0;
    display: flex;
    flex-direction: column;
    min-width: 240px;
    width: 100%;
    z-index: 20;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease;
}

.menu-item-wrapper:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Стили подменю */
.submenu-link {
    padding: var(--s8) var(--s16);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 13px;
}

.submenu-link::before {
    content: '›';
    display: inline-block;
    margin-right: var(--s8);
    color: var(--accent-color);
    font-size: 16px;
}

.submenu-link:hover {
    background: #f5f5f5;
    color: var(--accent-color);
}
.breadcrumb-wrapper {
    padding: 20px 0;
    background-color: #f5f5f5;
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #555;
}

.breadcrumb-list li {
    margin-right: 5px;
    color: #999;
}

.breadcrumb-list li::after {
    content: ">";
    margin-left: 5px;
    color: #ccc;
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: #ff3c3c;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 22px;

}

.contact-list .material-symbols-outlined {
    margin-right: 10px;
    font-size: 20px;
    color: #f28c00; /* можно заменить под цвет бренда */
}
.map-wrapper iframe {
    border-radius: var(--s32);
}
.contact-list a {
    color: inherit;
    text-decoration: none;
}

.map-wrapper {
    width: 100%;
    min-height: 300px;
    background-color: #f0f0f0; /* Заглушка под карту */
    border-radius: var(--s32);
}
.submenu1 {
    display:none;
}
.form-right {
    padding: 15px;
    background: #f5f5f5;
    text-align: center;
}
.form-right a {
    color: #424242;
}
.form-right h3 {
    font-weight: 400;
    margin: 10px 0;
}
.form-right p {
    margin: 10px 0;
    font-size: 13px;
}
.m-input {
    display: block;
    width: calc(100% - 30px);
    margin-bottom: 10px;
    padding: 10px 15px;
    outline: none;
    border: solid 1px #ccc;
}
.mt-64 {
    margin-top: 64px !important;
}
.mt-32 {
    margin-top: 32px !important;
}
.m-submit {
    cursor: pointer;
    display: block;
    text-align: center;
    border: none;
    background: #ef9c3a;
    color: #fff;
    transition: all ease 0.6s;
    padding: 10px 15px;
    margin: 0 auto;
    text-transform: uppercase;
}
.m-submit:hover {
    background: #d2872e;
}
.menu-catalogue-fix {
    z-index: 25;
    left: 0;
    position: fixed;
    bottom: 15px;
    width: 100%;
}
.menu-catalogue {
    padding: 15px 32px;
    background: rgba(245,245,245,0.5);
    display: flex;
    gap: 32px;
    box-shadow: 0 0 3px #888;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.mc-item {
    display: flex;
    vertical-align: middle;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    opacity: 0.8;
    transition: all ease 0.6s;
}
.mc-item svg {
    stroke: #000;
}
.mc-item:hover {
    opacity: 1;
    color: #d2872e;
}
.mc-item:hover svg {
    stroke: #d2872e;
}
.thanks {

    font-weight: 500;
    font-size: 40px;
    text-align: center;
    color: #000;
}
.thanks-small {

    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: rgba(51, 51, 51, 0.6);
    margin-top:15px;
}
.order-correct1 p {
    margin: 10px 0;
    font-size: 13px;
}
.callback {
    background: var(--accent-color);
    color: #fff;
    margin: 10px 0 0 auto;
    padding: 7px 15px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    width: 160px;
    transition: all ease 0.6s;
}
.callback:hover {
    background: #cf2b28;
}
@media (min-width: 200px) {
    .container {
        width: 100%;
    }
    .col-1 {
        grid-column: span 1;
    }
    .col-2 {
        grid-column: span 2;
    }
    .col-3 {
        grid-column: span 3;
    }
    .col-4 {
        grid-column: span 4;
    }
    .col-5 {
        grid-column: span 5;
    }
    .col-6 {
        grid-column: span 6;
    }
    .col-7 {
        grid-column: span 7;
    }
    .col-8 {
        grid-column: span 8;
    }
    .col-9 {
        grid-column: span 9;
    }
    .col-10 {
        grid-column: span 10;
    }
    .col-11 {
        grid-column: span 11;
    }
    .col-12 {
        grid-column: span 12;
    }
}
@media (min-width: 700px) {
    .col-sm-1 {
        grid-column: span 1;
    }
    .col-sm-2 {
        grid-column: span 2;
    }
    .col-sm-3 {
        grid-column: span 3;
    }
    .col-sm-4 {
        grid-column: span 4;
    }
    .col-sm-5 {
        grid-column: span 5;
    }
    .col-sm-6 {
        grid-column: span 6;
    }
    .col-sm-7 {
        grid-column: span 7;
    }
    .col-sm-8 {
        grid-column: span 8;
    }
    .col-sm-9 {
        grid-column: span 9;
    }
    .col-sm-10 {
        grid-column: span 10;
    }
    .col-sm-11 {
        grid-column: span 11;
    }
    .col-sm-12 {
        grid-column: span 12;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1104px;
        margin: 0 auto;
    }
    .col-lg-1 {
        grid-column: span 1;
    }
    .col-lg-2 {
        grid-column: span 2;
    }
    .col-lg-3 {
        grid-column: span 3;
    }
    .col-lg-4 {
        grid-column: span 4;
    }
    .col-lg-5 {
        grid-column: span 5;
    }
    .col-lg-6 {
        grid-column: span 6;
    }
    .col-lg-7 {
        grid-column: span 7;
    }
    .col-lg-8 {
        grid-column: span 8;
    }
    .col-lg-9 {
        grid-column: span 9;
    }
    .col-lg-10 {
        grid-column: span 10;
    }
    .col-lg-11 {
        grid-column: span 11;
    }
    .col-lg-12 {
        grid-column: span 12;
    }
}
@media (min-width: 1450px) {
    .container {
        width: 1404px;
        margin: 0 auto;
    }
}