 /* производство главная страница=========================================== */
     .wp-section-mt {
        margin-top: 80px;
    }
    
    .wp-grid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        font-family: 'Jost Medium', 'Arial', sans-serif;
    }
      @keyframes wp-fadeInUp {
        from { opacity: 0; transform: translateY(50px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes wp-fadeInLeft {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes wp-fadeInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes wp-scaleIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }
    
     .wp-animate-fade-up,
    .wp-animate-fade-left,
    .wp-animate-fade-right,
    .wp-animate-scale {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .wp-animate-fade-up { transform: translateY(50px); }
    .wp-animate-fade-left { transform: translateX(-50px); }
    .wp-animate-fade-right { transform: translateX(50px); }
    .wp-animate-scale { transform: scale(0.9); }
      .wp-visible {
        opacity: 1 !important;
        transform: translateY(0) translateX(0) scale(1) !important;
    }
    
     .wp-delay-1 { transition-delay: 0.1s; }
    .wp-delay-2 { transition-delay: 0.2s; }
    .wp-delay-3 { transition-delay: 0.3s; }
    .wp-delay-4 { transition-delay: 0.4s; }
    .wp-delay-5 { transition-delay: 0.5s; }
    .wp-delay-6 { transition-delay: 0.6s; }
    .wp-delay-7 { transition-delay: 0.7s; }
    .wp-delay-8 { transition-delay: 0.8s; }
      .wp-page-h2 {
        font-size: 42px;
        font-weight: 400;
        text-transform: uppercase;
        color: rgb(43, 65, 157, 1);
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }
    
    .wp-page-h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: rgb(43, 65, 157, 1);
    }
    
    .wp-default-text {
        font-size: 20px;
        line-height: 1.6;
        color: #2F3E46;
     }
	
	.h2tu { margin-top: 50px; } 
    
     .wp-two-horizontal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 30px 0 30px;
    }
    
    .wp-horizontal-card {
         border-radius: 10px;
        overflow: hidden;
		box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        transition: transform 0.5s ease, box-shadow 0.3s ease;
    }
    
    .wp-horizontal-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }
    
    .wp-horizontal-image {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.5s ease;
        overflow: hidden;
		background-color:#FFFFFF;
    }
    
     .wp-horizontal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
     .wp-horizontal-image svg {
        max-width: 90%;
        max-height: 90%;
        width: auto;
        height: auto;
    }
    
    .wp-horizontal-card:hover .wp-horizontal-image {
        transform: scale(1.03);
    }
    
    .wp-horizontal-content {
        padding: 24px;
    }
    
    .wp-horizontal-title {
        font-size: 24px;
        font-weight: 600;
        color: #2B419D;
        margin-bottom: 12px;
    }
    
    .wp-horizontal-text {
        font-size: 15px;
        line-height: 1.5;
        color: #2F3E46;
        margin: 0;
    }
    
     .wp-painterest {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .wp-painterest-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .wp-painterest-left-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .wp-image-placeholder {
        background: #e8ecef;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8d8fa6;
        font-size: 14px;
        overflow: hidden;
        transition: transform 0.5s ease, box-shadow 0.3s ease;
        width: 100%;
        height: 100%;
        min-height: 150px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    
     .wp-grid img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    
     .wp-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .wp-image-placeholder:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .wp-painterest-left-top .wp-image-placeholder {
        height: 280px;
    }
    
    .wp-painterest-left-bottom .wp-image-placeholder {
        height: 210px;
    }
    
    .wp-painterest-right .wp-image-placeholder {
        height: 510px;
    }
    
     .wp-link-text-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        color: #277E91;
        text-decoration: none;
        font-weight: 600;
        transition: gap 0.3s ease;
        cursor: pointer;
    }
    
    .wp-link-text-btn:hover {
        gap: 12px;
    }
    
     .ofiss1 img, 
    .ofiss2 img, 
    .ofiss3 img, 
    .ofiss4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .logoind svg { 
        max-width: 65%;
        width: auto;
        height: auto;
        max-height: 65%;
    }
    
    .imgvpp img { 
        width: 88%;
        object-fit: cover;
    }
    
    /* ========== АДАПТИВ ========== */
    @media (max-width: 768px) {
        .wp-page-h2 {
            font-size: 28px;
        }
        
        .wp-two-horizontal-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .wp-horizontal-image {
            height: 220px;
        }
        
        .wp-horizontal-title {
            font-size: 20px;
        }
        
        .wp-painterest {
            grid-template-columns: 1fr;
        }
        
        .wp-painterest-right .wp-image-placeholder {
            height: 250px;
        }
        
         .wp-painterest-left-top .wp-image-placeholder {
            height: 220px;
        }
        
        .wp-painterest-left-bottom .wp-image-placeholder {
            height: 180px;
        }
    }
    
    @media (max-width: 480px) {
        .wp-page-h2 {
            font-size: 24px;
        }
        
        .wp-horizontal-image {
            height: 180px;
        }
        
        .wp-horizontal-content {
            padding: 16px;
        }
        
         .wp-painterest-left-top .wp-image-placeholder {
            height: 180px;
        }
        
        .wp-painterest-left-bottom .wp-image-placeholder {
            height: 150px;
        }
    }
 /*    конец ============================================ */