

/* Start:/production/style.css?178470719526859*/
<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("Title");
?>html {
    scroll-behavior: smooth;
}
:root {
    --dt-blue: #194a96;
    --dt-blue-rgb: 25, 74, 150;
    --dt-blue-hover: #153f80;
    --dt-blue-dark: #0b3158;
    --dt-blue-mid: #124a80;
    --dt-blue-light: #7ebcf4;
    --dt-text: #172b43;
    --dt-muted: #667085;
    --section-padding-top: 40px;
    --section-padding-bottom: 50px;
    --section-heading-gap: 22px;
    --dt-gradient-dark: linear-gradient(
        115deg,
        var(--dt-blue-dark) 0%,
        var(--dt-blue-mid) 62%,
        var(--dt-blue) 100%
    );
}

/* ---------- */

.production-container{

    max-width:1440px;

    margin:0 auto;

    padding:0 35px;

}

/* ---------- */

.hero-production{

    position:relative;

    min-height:680px;

    overflow:hidden;

}

/* ---------- */

.hero-production__image{

    position:absolute;

    inset:0;

    background:
    url("/production/images/hero/hero.png")
    center center / cover
    no-repeat;

}

/* Логотип поверх фотографии и затемнения */

.hero-production__image::after{

    content:"";

    position:absolute;
    z-index:3;

    top:25px;
    right:-25px;

    width:340px;
    height:130px;

    background:
    url("/production/images/hero/logo-engineering.png")
    center / contain
    no-repeat;

    opacity:1;
    pointer-events:none;

}

/* ---------- */

.hero-production__overlay{

    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(8,28,49,.82) 0%,
        rgba(8,28,49,.55) 45%,
        rgba(8,28,49,.15) 100%
    );

}

/* ---------- */

.hero-production__content{
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: flex;
    align-items: center;
}

.hero-production__inner{
    max-width:720px;
    margin-left:90px;
}

/* ---------- */

/* ---------- */

.hero-production h1{

    margin:30px 0;

    color:#fff;

    font-size:64px;
line-height:1.05;

    font-weight:700;

}

/* ---------- */

.hero-production p{

    margin:0;

    width:620px;

    color:#fff;

    font-size:22px;

    line-height:1.7;

    opacity:.92;

}

/* ---------- */

.hero-production__buttons{

    margin-top:45px;

    display:flex;

    gap:18px;

}

/* ---------- */

.hero-btn{

    padding:18px 36px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

}

/* ---------- */

.hero-btn--blue{

    background:var(--dt-blue);

    color:#fff;

}

/* ---------- */

.hero-btn--blue:hover{

    background:var(--dt-blue-hover);

}

/* ---------- */

/* ---------- */

/* ---------- */

.hero-features{

    margin-top:-70px;

    position:relative;

    z-index:5;

}

/* ---------- */

.hero-features .production-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/* ---------- */

.hero-feature{

    background:#fff;

    border-radius:16px;

    padding:28px;

    box-shadow:

        0 20px 45px rgba(0,0,0,.08);

}

/* ---------- */

.hero-feature strong{

    display:block;

    color:var(--dt-blue);

    font-size:24px;

}

/* ---------- */

.hero-feature span{

    display:block;

    margin-top:10px;

    color:#555;

    line-height:1.6;

}
#pagetitle{
    display:none;
}

/* ==========================================
   ПРОИЗВОДСТВЕННЫЕ КОМПЕТЕНЦИИ
========================================== */

.production-skills {
    position: relative;
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    overflow: hidden;
    isolation: isolate;
    background: #fff;
}

.production-skills .production-container {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.production-skills .section-title {
    position: sticky;
    top: 120px;
}

.production-skills .section-title > span {
    display: block;
    margin-bottom: 14px;
    color: #EF7F1A;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.production-skills .section-title h2 {
    margin: 0 0 24px;
    color: var(--dt-text);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
}

.production-skills .section-title p {
    margin: 0;
    color: var(--dt-muted);
    font-size: 17px;
    line-height: 1.7;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.skill-card {
    position: relative;
    min-height: 185px;
    padding: 38px 34px 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(24, 53, 87, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.skill-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 58px;
    height: 4px;
    background: #EF7F1A;
    border-radius: 0 0 4px 4px;
    transition: width 0.25s ease;
}

.skill-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -52px;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(var(--dt-blue-rgb), 0.09);
    border-radius: 50%;
}

.skill-card--large {
    grid-column: 1 / -1;
    min-height: 175px;
    padding-right: 120px;
    background: var(--dt-gradient-dark);
    border-color: transparent;
}

.skill-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--dt-text);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.skill-card p {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0;
    color: var(--dt-muted);
    font-size: 16px;
    line-height: 1.65;
}

.skill-card--large h3 {
    color: #fff;
    font-size: 30px;
}

.skill-card--large p {
    max-width: none;
    width: 100%;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.skill-card:hover{
    transform:translateY(-6px);

    border-color:rgba(239,127,26,.45);

    box-shadow:
        0 0 0 1px rgba(239,127,26,.15),
        0 18px 42px rgba(239,127,26,.18);
}

.skill-card:hover::before {
    width: 92px;
}

@media (max-width: 991px) {

    .production-skills .production-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .production-skills .section-title {
        position: static;
        max-width: 720px;
    }

    .production-skills .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-card,
    .skill-card--large {
        grid-column: auto;
        min-height: auto;
        padding: 32px 26px;
    }

    .skill-card--large {
        padding-right: 26px;
    }

    .production-skills .section-title h2 {
        font-size: 30px;
    }

    .skill-card h3,
    .skill-card--large h3 {
        font-size: 23px;
    }
}
/* Фирменные наклонные линии в блоке компетенций */


/* ==========================================
   ЕДИНЫЕ ФИРМЕННЫЕ ЛИНИИ ДЛЯ СЕКЦИЙ
========================================== */

.production-skills::before,
.production-skills::after,
.production-park::before,
.production-park::after,
.production-products::before,
.production-projects::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    pointer-events: none;
    background: repeating-linear-gradient(
        120deg,
        transparent 0,
        transparent 36px,
        rgba(var(--dt-blue-rgb), 0.08) 36px,
        rgba(var(--dt-blue-rgb), 0.08) 38px
    );
}

.production-skills::before,
.production-park::before,
.production-projects::before {
    top: -180px;
    right: -140px;
}

.production-skills::after,
.production-park::after {
    left: -180px;
    bottom: -280px;
}

.production-products::before {
    top: -280px;
    left: -180px;
}

.production-park::before,
.production-park::after {
    background: repeating-linear-gradient(
        120deg,
        transparent 0,
        transparent 36px,
        rgba(255, 255, 255, 0.09) 36px,
        rgba(255, 255, 255, 0.09) 38px
    );
    opacity: 0.14;
}

.production-skills::before,
.production-skills::after,
.production-products::before,
.production-projects::before {
    opacity: 0.35;
}

.skill-card--large::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 68px;
    height: 5px;
    background: #fff;
    border-radius: 0 0 4px 4px;
    transform: skewX(-28deg);
    transform-origin: left top;
}

.skill-card--large .skill-card__angle {
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 100%;
    pointer-events: none;
    opacity: 0.18;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 36px,
            rgba(255, 255, 255, 0.65) 26px,
            rgba(255, 255, 255, 0.65) 28px
        );

    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}
/* ==========================================
   ТЕХНОЛОГИЧЕСКИЕ ВОЗМОЖНОСТИ
========================================== */

.production-park {
    position: relative;
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    overflow: hidden;
    color: #fff;
    background: var(--dt-gradient-dark);
}

/* Наклонные фирменные линии */
.production-park .production-container {
    position: relative;
    z-index: 1;
}

/* Заголовок блока */

   .production-park__heading {
    display: block;
    margin-bottom: var(--section-heading-gap);
}

.production-park__heading > span {
    display: block;
    margin-bottom: 12px;
    color: #EF7F1A;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.production-park__heading h2 {
    margin: 0;
    max-width: none;
    color: #fff;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;
    white-space: nowrap;
}

.production-park__heading h2 br {
    display: none;
}

.production-park__heading p {
    display: none;
}

/* Список оборудования */

.production-park__list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.park-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 160px;
    gap: 35px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        padding 0.25s ease,
        background 0.25s ease;
}

.park-item::before {
    content: "";
    position: absolute;
    inset: 0 -25px;
    z-index: -1;
    opacity: 0;
    background: rgba(255, 255, 255, 0.06);
    transition: opacity 0.25s ease;
}

.park-item:hover {
    padding-left: 20px;
    padding-right: 20px;
}

.park-item:hover::before {
    opacity: 1;
}

.park-item__number {
    color: #EF7F1A;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

.park-item__content {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1.2fr);
    gap: 55px;
    align-items: center;
}

.park-item h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
}

.park-item p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.65;
}

.park-item__line {
    display: block;
    width: 135px;
    height: 2px;
    margin-left: auto;
    transform: skewX(-35deg);
    transform-origin: right center;
    background: linear-gradient(
        90deg,
        #EF7F1A 0%,
        rgba(239,127,26,.08) 100%
    );
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.park-item:hover .park-item__line {
    width: 160px;
    background: linear-gradient(
        90deg,
        #fff 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
}

/* Планшет */

@media (max-width: 991px) {

    .production-park__heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .production-park__heading > span {
        grid-column: auto;
        margin-bottom: 0;
    }

    .production-park__heading h2 {
        font-size: 36px;
        white-space: normal;
    }

    .park-item {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .park-item__content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .park-item__line {
        display: none;
    }
}

/* Телефон */

@media (max-width: 767px) {
.hero-production__image::after{

    width:150px;
    height:56px;

    top:20px;
    right:-5px;

}

    .production-park__heading h2 {
        font-size: 30px;
    }

    .production-park__heading p {
        font-size: 16px;
    }

    .park-item {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 16px;
        padding: 26px 0;
    }

    .park-item:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .park-item h3 {
        font-size: 22px;
    }

    .park-item p {
        font-size: 15px;
    }
}
/* ==========================================
   ДЕТАЛИ И УЗЛЫ
========================================== */

.production-products {
    position: relative;
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    overflow: visible;
    background: #fff;
}

.production-products .production-container {
    position: relative;
    z-index: 1;
}

.production-products__heading {
    display: block;
    margin-bottom: 32px;
}

.production-products__heading > span {
    display: block;
    margin-bottom: 10px;
    color: #EF7F1A;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.production-products__heading h2 {
    margin: 0 0 18px;
    max-width: 900px;
    color: var(--dt-text);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.production-products__heading p {
    max-width: 760px;
    margin: 0;
    color: var(--dt-muted);
    font-size: 17px;
    line-height: 1.7;
}

.production-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-manufacturing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 32px 28px;
    overflow: hidden;
    background: #f7f9fc;
    border: 1px solid #e3e9f0;
    border-radius: 14px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-manufacturing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 54px;
    height: 4px;
    background: #EF7F1A;
    transform: skewX(-28deg);
    transform-origin: left center;
    transition: width 0.25s ease;
}

.product-manufacturing-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -120px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(var(--dt-blue-rgb), 0.08);
    border-radius: 50%;
}

.product-manufacturing-card > span,
.product-manufacturing-card > h3,
.product-manufacturing-card > p {
    position: relative;
    z-index: 3;
}

.product-manufacturing-card > span {
    display: block;
    margin-bottom: 44px;
    color: #EF7F1A;
    font-size: 13px;
    font-weight: 700;
    transition: transform 0.35s ease;
}

.product-manufacturing-card h3 {
    margin: 0 0 16px;
    color: var(--dt-text);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 700;
    transition: transform 0.35s ease;
}

.product-manufacturing-card p {
    margin: 0;
    color: var(--dt-muted);
    font-size: 15px;
    line-height: 1.65;
    transition:
        transform 0.35s ease,
        max-width 0.35s ease;
}

.product-manufacturing-card:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: rgba(239, 127, 26, .55);
    box-shadow:
        0 0 0 1px rgba(239, 127, 26, .16),
        0 18px 42px rgba(239, 127, 26, .20),
        0 28px 55px rgba(24, 53, 87, .12);
}

.product-manufacturing-card:hover::before {
    width: 110px;
}

/* Карточка с PNG-моделью:
   текст остаётся в фоне, модель выходит на первый план */
.product-manufacturing-card--with-image {
    z-index: 1;
    overflow: hidden;
}

.product-manufacturing-card--with-image:hover {
    z-index: 10;
    background: #f4f7fb;
    box-shadow:
        inset 0 0 85px rgba(255,255,255,.78),
        0 0 0 1px rgba(239,127,26,.16),
        0 18px 42px rgba(239,127,26,.20),
        0 28px 55px rgba(24,53,87,.12);
}


/* Текст остаётся видимым, но уходит на второй план */
.product-manufacturing-card--with-image > span,
.product-manufacturing-card--with-image > h3,
.product-manufacturing-card--with-image > p {
    position: relative;
    z-index: 2;

    transition:
        opacity .26s ease,
        filter .26s ease,
        transform .32s ease;
}

.product-manufacturing-card--with-image:hover > span,
.product-manufacturing-card--with-image:hover > h3,
.product-manufacturing-card--with-image:hover > p {
    opacity: .20;
    filter: blur(.6px);
    transform: scale(.985);
}

/* PNG-модель */
.product-manufacturing-card__image {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;

    width: 330px;
    height: 245px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
        translate(-50%, -42%)
        scale(.48)
        rotate(-10deg);

    transform-origin: center;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .58s cubic-bezier(.16, .84, .24, 1);
}

.product-manufacturing-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(0 28px 34px rgba(24, 53, 87, .30))
        drop-shadow(0 10px 16px rgba(24, 53, 87, .18));
}

/* Модель появляется по центру карточки */
.product-manufacturing-card--with-image:hover .product-manufacturing-card__image {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, -50%)
        scale(1)
        rotate(0);
}

.product-manufacturing-card--accent {
    color: #fff;
    background: var(--dt-gradient-dark);
    border-color: transparent;
}

.product-manufacturing-card--accent::before {
    background: #fff;
}

.product-manufacturing-card--accent::after {
    display: none;
}

.product-manufacturing-card--accent > span {
    color: #EF7F1A;
}

.product-manufacturing-card--accent h3 {
    color: #fff;
}

.product-manufacturing-card--accent p {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1100px) {
    .production-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    .production-products__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 45px;
    }

    .production-products__heading h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .production-products__heading h2 {
        font-size: 30px;
    }

    .production-products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-manufacturing-card {
        min-height: auto;
        padding: 30px 26px;
    }

    .product-manufacturing-card > span {
        margin-bottom: 32px;
    }

    .product-manufacturing-card__image {
        display: none;
    }

    .product-manufacturing-card--with-image:hover > span,
    .product-manufacturing-card--with-image:hover > h3,
    .product-manufacturing-card--with-image:hover > p {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
/* ==========================================
   РЕАЛИЗОВАННЫЕ ПРОЕКТЫ
========================================== */

.production-projects {
    position: relative;
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    overflow: hidden;
    background: #f5f7fa;
}

.production-projects .production-container {
    position: relative;
    z-index: 1;
}

.production-projects__heading {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    column-gap: 80px;
    row-gap: 18px;
    align-items: end;
    margin-bottom: var(--section-heading-gap);
}

.production-projects__heading span {
    display: block;
    margin-bottom: 14px;
    color: #EF7F1A;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.production-projects__heading h2 {
    margin: 0;
    color: var(--dt-text);
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.production-projects__heading-right {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.production-projects__heading-right p {
    max-width: 520px;
    margin: 0;
    color: var(--dt-muted);
    font-size: 17px;
    line-height: 1.7;
}

.production-projects__all {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 7px;
    color: #EF7F1A;
    border-bottom: 1px solid rgba(var(--dt-blue-rgb), 0.35);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        gap 0.25s ease,
        border-color 0.25s ease;
}

.production-projects__all:hover {
    gap: 18px;
    color: var(--dt-blue-hover);
    border-color: var(--dt-blue-hover);
}

.production-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.production-project-card {
    position: relative;
    display: flex;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    background: var(--dt-gradient-dark);
    box-shadow: 0 18px 42px rgba(24, 53, 87, 0.12);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.production-project-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -115px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.production-project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 58px rgba(24, 53, 87, 0.22);
}

.production-project-card__number {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 1;
    color: #EF7F1A;
    font-size: 13px;
    font-weight: 700;
}

.production-project-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 520px;
}

.production-project-card__category {
    display: block;
    margin-bottom: 16px;
    color: #EF7F1A;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.production-project-card h3 {
    margin: 0 0 28px;
    color: #fff;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.production-project-card__link {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.production-project-card:hover .production-project-card__link {
    transform: translateX(7px);
}

@media (max-width: 991px) {

    .production-projects__heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 45px;
    }

    .production-projects__heading h2 {
        font-size: 36px;
    }

    .production-projects__heading-right {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {

    .production-projects__heading h2 {
        font-size: 30px;
    }

    .production-projects__heading-right {
        flex-direction: column;
        gap: 22px;
    }

    .production-projects__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .production-project-card {
        min-height: 285px;
        padding: 28px 26px;
    }

    .production-project-card__number {
        top: 28px;
        right: 26px;
    }

    .production-project-card h3 {
        font-size: 23px;
    }
}

/* ==========================================
   ЕДИНЫЕ АДАПТИВНЫЕ ОТСТУПЫ
========================================== */

@media (max-width: 991px) {
    .production-skills,
    .production-park,
    .production-products,
    .production-projects {
        padding: 60px 0 70px;
    }

    .production-park__heading,
    .production-products__heading,
    .production-projects__heading {
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    .production-skills,
    .production-park,
    .production-products,
    .production-projects {
        padding: 45px 0 55px;
    }

    .production-park__heading,
    .production-products__heading,
    .production-projects__heading {
        margin-bottom: 28px;
    }
}

.production-products,
.production-projects {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}
@media (max-width: 767px) {

    .hero-production {
        min-height: 560px;
    }

    .hero-production__content {
        min-height: 560px;
        align-items: flex-end;
        padding: 90px 0 110px;
    }

    .hero-production__inner {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 0 16px;
    box-sizing: border-box;
}

    .hero-production h1 {
    max-width: none;
    margin: 18px 0;
    font-size: 25px;
    line-height: 1.12;
}

    .hero-production p {
        width: auto;
        max-width: 270px;
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-production__buttons {
        margin-top: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 24px;
    }

    .hero-production__image {
        background-position: 68% center;
    }
}
@media (max-width: 767px) {

    .hero-features {
        margin-top: 0 !important;
        padding-top: 16px;
    }

    .hero-features .production-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0 16px;
    }

    .hero-feature {
        min-height: 90px;
        padding: 16px 12px;
        border-radius: 12px;
    }

    .hero-feature strong {
        font-size: 15px;
line-height: 1.2;
    }

    .hero-feature span {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.4;
    }
}<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>
/* End */
/* /production/style.css?178470719526859 */
