{"id":3597,"date":"2025-03-28T03:07:23","date_gmt":"2025-03-28T03:07:23","guid":{"rendered":"https:\/\/convertifypro.com\/?page_id=3597"},"modified":"2025-03-28T03:07:24","modified_gmt":"2025-03-28T03:07:24","slug":"understanding-color-spaces-in-digital-images","status":"publish","type":"page","link":"https:\/\/convertifypro.com\/kk\/%d1%81%d0%b0%d0%bd%d0%b4%d1%8b%d2%9b-%d0%ba%d0%b5%d1%81%d0%ba%d1%96%d0%bd%d0%b4%d0%b5%d1%80%d0%b4%d0%b5%d0%b3%d1%96-%d1%82%d2%af%d1%81-%d0%ba%d0%b5%d2%a3%d1%96%d1%81%d1%82%d1%96%d0%ba%d1%82%d0%b5\/","title":{"rendered":"\u0421\u0430\u043d\u0434\u044b\u049b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"description\" content=\"Comprehensive guide to understanding color spaces in digital images including RGB, CMYK, LAB, HSL, YCbCr, and more. Learn how different color models affect image quality, editing, and reproduction across devices.\">\n    <meta name=\"keywords\" content=\"color spaces, RGB, CMYK, LAB, HSL, color management, ICC profiles, sRGB, Adobe RGB, ProPhoto RGB, color gamut, color models, digital imaging, photography, design\">\n    <title>\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443: RGB, CMYK, LAB, HSL \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0442\u043e\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <style>\n        \/* Main Styles *\/\n        :root {\n            --primary-color: #FD9800;\n            --primary-hover: #e88a00;\n            --text-color: #3A3A3A;\n            --light-bg: #f8faff;\n            --gradient-bg: linear-gradient(135deg, #f8faff 0%, #fff5e6 100%);\n            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);\n            --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);\n            --border-color: #f1f5f9;\n        }\n\n        .color-spaces-section {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 2rem 1.5rem;\n            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;\n            color: var(--text-color);\n        }\n\n        \/* Hero Section *\/\n        .hero-section {\n            text-align: center;\n            padding: 3rem 1rem;\n            margin-bottom: 3rem;\n            background: var(--gradient-bg);\n            border-radius: 16px;\n            position: relative;\n            overflow: hidden;\n        }\n\n        .hero-pattern {\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background-image: url(\"data:image\/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fd9800' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'\/%3E%3C\/g%3E%3C\/g%3E%3C\/svg%3E\");\n            opacity: 0.5;\n            z-index: 0;\n        }\n\n        .hero-content {\n            position: relative;\n            z-index: 1;\n            max-width: 800px;\n            margin: 0 auto;\n        }\n\n        .hero-title {\n            font-size: 2.8rem;\n            font-weight: 800;\n            margin-bottom: 1.5rem;\n            color: var(--text-color);\n        }\n\n        .hero-subtitle {\n            font-size: 1.25rem;\n            margin-bottom: 2rem;\n            color: var(--text-color);\n            line-height: 1.6;\n        }\n\n        .hero-badges {\n            display: flex;\n            flex-wrap: wrap;\n            justify-content: center;\n            gap: 1rem;\n            margin-bottom: 2rem;\n        }\n\n        .hero-badge {\n            display: flex;\n            align-items: center;\n            background: white;\n            border-radius: 50px;\n            padding: 0.5rem 1rem;\n            box-shadow: var(--box-shadow);\n            transition: all 0.3s ease;\n            border: 1px solid var(--border-color);\n        }\n\n        .hero-badge:hover {\n            transform: translateY(-3px);\n            box-shadow: var(--hover-shadow);\n            border-color: rgba(253, 152, 0, 0.3);\n        }\n\n        .hero-badge-icon {\n            color: var(--primary-color);\n            margin-right: 0.5rem;\n            font-size: 1rem;\n        }\n\n        .hero-badge-text {\n            font-size: 0.9rem;\n            font-weight: 600;\n            color: var(--text-color);\n        }\n\n        .hero-buttons {\n            display: flex;\n            justify-content: center;\n            gap: 1rem;\n            flex-wrap: wrap;\n        }\n\n        .btn {\n            display: inline-block;\n            padding: 0.75rem 1.5rem;\n            border-radius: 8px;\n            font-weight: 600;\n            text-decoration: none !important;\n            transition: all 0.3s ease;\n            cursor: pointer;\n            font-size: 1rem;\n        }\n\n        .btn-primary {\n            background-color: var(--primary-color);\n            color: white !important;\n            box-shadow: 0 8px 16px rgba(253, 152, 0, 0.2);\n            border: none;\n        }\n\n        .btn-primary:hover {\n            background-color: var(--primary-hover);\n            transform: translateY(-2px);\n            text-decoration: none !important;\n        }\n\n        .btn-secondary {\n            background-color: white;\n            color: var(--primary-color) !important;\n            border: 1px solid var(--border-color);\n        }\n\n        .btn-secondary:hover {\n            background-color: #fff5e6;\n            transform: translateY(-2px);\n            text-decoration: none !important;\n        }\n\n        \/* Features Section *\/\n        .section-title {\n            font-size: 2.2rem;\n            font-weight: 700;\n            text-align: center;\n            margin-bottom: 2.5rem;\n            color: var(--text-color);\n        }\n\n        .section-intro {\n            font-size: 1.1rem;\n            text-align: center;\n            margin-bottom: 2.5rem;\n            color: #555;\n            line-height: 1.6;\n            max-width: 900px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n\n        .features-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 2rem;\n            margin-bottom: 3rem;\n        }\n\n        .feature-card {\n            background: white;\n            border-radius: 16px;\n            overflow: hidden;\n            box-shadow: var(--box-shadow);\n            transition: all 0.3s ease;\n            border: 1px solid var(--border-color);\n            height: 100%;\n            display: flex;\n            flex-direction: column;\n            margin-bottom: 2rem;\n        }\n\n        .feature-card:hover {\n            transform: translateY(-5px);\n            box-shadow: var(--hover-shadow);\n            border-color: rgba(253, 152, 0, 0.3);\n        }\n\n        .feature-icon {\n            width: 60px;\n            height: 60px;\n            background-color: rgba(253, 152, 0, 0.15);\n            color: var(--primary-color);\n            border-radius: 12px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            margin-bottom: 1.5rem;\n            font-size: 1.8rem;\n            transition: all 0.3s ease;\n        }\n\n        .feature-card:hover .feature-icon {\n            background: linear-gradient(135deg, #FD9800 0%, #FF6D00 100%);\n            color: white;\n            box-shadow: 0 10px 20px rgba(253, 152, 0, 0.2);\n        }\n\n        .feature-content {\n            padding: 2rem;\n            flex-grow: 1;\n        }\n\n        .feature-title {\n            font-size: 1.4rem;\n            font-weight: 700;\n            margin-bottom: 1rem;\n            color: var(--text-color);\n        }\n\n        .feature-text {\n            font-size: 1rem;\n            color: #555;\n            line-height: 1.6;\n            margin-bottom: 1.5rem;\n        }\n\n        .feature-list {\n            list-style: none;\n            padding: 0;\n            margin: 0;\n        }\n\n        .feature-item {\n            display: flex;\n            align-items: flex-start;\n            margin-bottom: 0.75rem;\n            line-height: 1.5;\n        }\n\n        .feature-check {\n            color: var(--primary-color);\n            margin-right: 0.75rem;\n            flex-shrink: 0;\n            margin-top: 0.2rem;\n        }\n\n        .feature-item-text {\n            font-size: 0.95rem;\n            color: var(--text-color);\n        }\n\n        \/* Steps Container *\/\n        .steps-container {\n            max-width: 900px;\n            margin: 0 auto 3rem;\n        }\n\n        .step-card {\n            display: flex;\n            align-items: flex-start;\n            background: white;\n            border-radius: 16px;\n            padding: 2rem;\n            box-shadow: var(--box-shadow);\n            margin-bottom: 2rem;\n            border: 1px solid var(--border-color);\n            transition: all 0.3s ease;\n        }\n\n        .step-card:hover {\n            transform: translateY(-5px);\n            box-shadow: var(--hover-shadow);\n            border-color: rgba(253, 152, 0, 0.3);\n        }\n\n        .step-number {\n            width: 50px;\n            height: 50px;\n            background-color: rgba(253, 152, 0, 0.15);\n            color: var(--primary-color);\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.5rem;\n            font-weight: 700;\n            margin-right: 1.5rem;\n            flex-shrink: 0;\n            transition: all 0.3s ease;\n        }\n\n        .step-card:hover .step-number {\n            background: linear-gradient(135deg, #FD9800 0%, #FF6D00 100%);\n            color: white;\n            box-shadow: 0 10px 20px rgba(253, 152, 0, 0.2);\n        }\n\n        .step-content {\n            flex: 1;\n        }\n\n        .step-title {\n            font-size: 1.4rem;\n            font-weight: 700;\n            margin-bottom: 0.75rem;\n            color: var(--text-color);\n        }\n\n        .step-text {\n            font-size: 1rem;\n            color: #555;\n            line-height: 1.6;\n            margin-bottom: 1rem;\n        }\n\n        \/* Format items *\/\n        .formats-container {\n            background: white;\n            border-radius: 16px;\n            padding: 2rem;\n            box-shadow: var(--box-shadow);\n            border: 1px solid var(--border-color);\n            margin-bottom: 3rem;\n        }\n\n        .formats-title {\n            font-size: 1.8rem;\n            font-weight: 700;\n            text-align: center;\n            margin-bottom: 2rem;\n            color: var(--text-color);\n        }\n\n        .formats-subtitle {\n            font-size: 1.1rem;\n            text-align: center;\n            margin-bottom: 2rem;\n            color: #555;\n            line-height: 1.6;\n            max-width: 800px;\n            margin-left: auto;\n            margin-right: auto;\n        }\n\n        .formats-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));\n            gap: 1rem;\n            margin-bottom: 2rem;\n        }\n\n        .format-item {\n            background-color: var(--light-bg);\n            border: 1px solid var(--border-color);\n            border-radius: 8px;\n            padding: 0.75rem 0.5rem;\n            font-size: 0.9rem;\n            text-align: center;\n            color: var(--text-color);\n            transition: all 0.2s ease;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            height: 2.5rem;\n        }\n\n        .format-item:hover {\n            background-color: #fff5e6;\n            border-color: var(--primary-color);\n            color: var(--primary-color);\n            transform: translateY(-2px);\n        }\n\n        \/* FAQ Section *\/\n        .faq-section {\n            margin-bottom: 4rem;\n        }\n\n        .faq-container {\n            max-width: 900px;\n            margin: 0 auto;\n        }\n\n        .faq-item {\n            background: white;\n            border-radius: 16px;\n            padding: 1.5rem 2rem;\n            box-shadow: var(--box-shadow);\n            margin-bottom: 1.5rem;\n            border: 1px solid var(--border-color);\n            transition: all 0.3s ease;\n        }\n\n        .faq-item:hover {\n            transform: translateY(-3px);\n            box-shadow: var(--hover-shadow);\n            border-color: rgba(253, 152, 0, 0.3);\n        }\n\n        .faq-question {\n            font-size: 1.2rem;\n            font-weight: 700;\n            margin-bottom: 1rem;\n            color: var(--text-color);\n            display: flex;\n            align-items: center;\n        }\n\n        .faq-icon {\n            color: var(--primary-color);\n            margin-right: 0.75rem;\n            font-size: 1.2rem;\n        }\n\n        .faq-answer {\n            font-size: 1rem;\n            color: #555;\n            line-height: 1.6;\n        }\n\n        \/* CTA Section *\/\n        .cta-section {\n            text-align: center;\n            padding: 3rem 1rem;\n            background: var(--gradient-bg);\n            border-radius: 16px;\n            position: relative;\n            overflow: hidden;\n            margin-bottom: 2rem;\n        }\n\n        .cta-pattern {\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background-image: url(\"data:image\/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fd9800' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'\/%3E%3C\/g%3E%3C\/g%3E%3C\/svg%3E\");\n            opacity: 0.5;\n            z-index: 0;\n        }\n\n        .cta-content {\n            position: relative;\n            z-index: 1;\n            max-width: 800px;\n            margin: 0 auto;\n        }\n\n        .cta-title {\n            font-size: 2.2rem;\n            font-weight: 700;\n            margin-bottom: 1.5rem;\n            color: var(--text-color);\n        }\n\n        .cta-text {\n            font-size: 1.1rem;\n            margin-bottom: 2rem;\n            color: #555;\n            line-height: 1.6;\n        }\n\n        \/* Color space specific sections *\/\n        .color-space-detail-section {\n            margin-bottom: 4rem;\n        }\n\n        \/* Comparison section *\/\n        .comparison-section {\n            margin-bottom: 4rem;\n        }\n\n        \/* Responsive Styles *\/\n        @media (max-width: 768px) {\n            .hero-title {\n                font-size: 2.2rem;\n            }\n            \n            .section-title {\n                font-size: 1.8rem;\n            }\n            \n            .cta-title {\n                font-size: 1.8rem;\n            }\n            \n            .features-grid {\n                grid-template-columns: 1fr;\n                max-width: 500px;\n                margin: 0 auto;\n            }\n            \n            .step-card {\n                flex-direction: column;\n                align-items: flex-start;\n            }\n            \n            .step-number {\n                margin-bottom: 1rem;\n                margin-right: 0;\n            }\n        }\n\n        @media (max-width: 480px) {\n            .hero-title {\n                font-size: 1.8rem;\n            }\n            \n            .hero-subtitle {\n                font-size: 1.1rem;\n            }\n            \n            .section-title {\n                font-size: 1.6rem;\n            }\n            \n            .feature-content {\n                padding: 1.5rem;\n            }\n            \n            .formats-container {\n                padding: 1.5rem;\n            }\n            \n            .step-card {\n                padding: 1.5rem;\n            }\n            \n            .faq-item {\n                padding: 1.25rem;\n            }\n        }\n\n        \/* Button text should never be underlined *\/\n        .btn:hover, .btn:focus, .btn:active {\n            text-decoration: none !important;\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"color-spaces-section\">\n        <!-- Hero Section -->\n        <section class=\"hero-section\">\n            <div class=\"hero-pattern\"><\/div>\n            <div class=\"hero-content\">\n                <h1 class=\"hero-title\">\u0421\u0430\u043d\u0434\u044b\u049b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443<\/h1>\n                <p class=\"hero-subtitle\">\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456, \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0436\u04d9\u043d\u0435 \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442, \u0434\u0438\u0437\u0430\u0439\u043d \u0436\u04d9\u043d\u0435 \u0441\u0430\u043d\u0434\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0435\u0433\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u0442\u0443\u0440\u0430\u043b\u044b \u0442\u043e\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b\u0442\u044b \u0437\u0435\u0440\u0442\u0442\u0435\u04a3\u0456\u0437. \u0411\u0430\u0440\u043b\u044b\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u0442\u0430\u043c\u0430\u0448\u0430 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0433\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u04af\u0448\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u043c\u0435\u04a3\u0433\u0435\u0440\u0456\u04a3\u0456\u0437.<\/p>\n                \n                <div class=\"hero-badges\">\n                    <div class=\"hero-badge\">\n                        <span class=\"hero-badge-icon\"><i class=\"fas fa-palette\"><\/i><\/span>\n                        <span class=\"hero-badge-text\">RGB \u0436\u04d9\u043d\u0435 CMYK<\/span>\n                    <\/div>\n                    <div class=\"hero-badge\">\n                        <span class=\"hero-badge-icon\"><i class=\"fas fa-paint-brush\"><\/i><\/span>\n                        <span class=\"hero-badge-text\">HSL \u0436\u04d9\u043d\u0435 HSV<\/span>\n                    <\/div>\n                    <div class=\"hero-badge\">\n                        <span class=\"hero-badge-icon\"><i class=\"fas fa-image\"><\/i><\/span>\n                        <span class=\"hero-badge-text\">LAB &#038; XYZ<\/span>\n                    <\/div>\n                    <div class=\"hero-badge\">\n                        <span class=\"hero-badge-icon\"><i class=\"fas fa-tv\"><\/i><\/span>\n                        <span class=\"hero-badge-text\">YCbCr \u0436\u04d9\u043d\u0435 YUV<\/span>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"hero-buttons\">\n                    <a href=\"#color-comparison\" class=\"btn btn-primary\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443<\/a>\n                    <a href=\"#practical-guides\" class=\"btn btn-secondary\">\u041f\u0440\u0430\u043a\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b\u0442\u0430\u0440<\/a>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- Introduction Section -->\n        <section class=\"intro-section\">\n            <h2 class=\"section-title\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u043e\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b<\/h2>\n            <p class=\"section-intro\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 &#8212; \u0431\u04b1\u043b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u0439\u0435\u043b\u0456 \u0442\u04af\u0440\u0434\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u0436\u04d9\u043d\u0435 \u043d\u0430\u049b\u0442\u044b \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0442\u0456\u043d \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u043c\u043e\u0434\u0435\u043b\u044c\u0434\u0435\u0440. \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0442\u0430\u0440, \u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440\u043b\u0435\u0440, \u0431\u0435\u0439\u043d\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u043b\u0430\u0440 \u0436\u04d9\u043d\u0435 \u0441\u0430\u043d\u0434\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0442\u0456\u043d \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0430\u0434\u0430\u043c \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b. \u0411\u04b1\u043b \u0436\u0430\u043d-\u0436\u0430\u049b\u0442\u044b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u04b1\u0493\u044b\u043c\u0434\u0430\u0440\u0434\u0430\u043d \u0431\u0430\u0441\u0442\u0430\u043f \u0442\u04af\u0441\u0442\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b\u04a3 \u043e\u0437\u044b\u049b \u04d9\u0434\u0456\u0441\u0442\u0435\u0440\u0456\u043d\u0435 \u0434\u0435\u0439\u0456\u043d \u0431\u0430\u0440\u043b\u044b\u0493\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b.<\/p>\n            \n            <div class=\"feature-card\">\n                <div class=\"feature-content\">\n                    <div class=\"feature-icon\">\n                        <i class=\"fas fa-lightbulb\"><\/i>\n                    <\/div>\n                    <h3 class=\"feature-title\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043d\u0435\u0433\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b<\/h3>\n                    <p class=\"feature-text\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0442\u04af\u0440\u043b\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u043c\u0435\u0434\u0438\u0430\u0434\u0430 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u049b\u0430\u043b\u0430\u0439 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. \u041e\u043b\u0430\u0440 \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0434\u04d9\u043b\u0434\u0456\u0433\u0456 \u043c\u0435\u043d \u0441\u0435\u0440\u043f\u0456\u043d\u0434\u0456\u043b\u0456\u0433\u0456\u043d\u0435 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0442\u0456\u043d, \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0431\u043e\u043b\u0430\u0442\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440 \u0430\u0443\u049b\u044b\u043c\u044b\u043d (\u0433\u0430\u043c\u043c\u0430) \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0434\u04b1\u0440\u044b\u0441 \u0431\u0430\u0441\u049b\u0430\u0440\u043c\u0430\u0439, \u043c\u04b1\u049b\u0438\u044f\u0442 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440\u0434\u0430 \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0434\u0430\u0440\u0434\u0430 \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u043d\u0493\u0430\u043d\u043d\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0448\u0430 \u043a\u04e9\u0440\u0456\u043d\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.<\/p>\n                    <p class=\"feature-text\">\u0426\u0438\u0444\u0440\u043b\u044b\u049b \u04d9\u043b\u0435\u043c \u043d\u0430\u049b\u0442\u044b \u0442\u04af\u0441 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u043d\u0430 \u0441\u04af\u0439\u0435\u043d\u0435\u0434\u0456. \u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u043a\u0435 \u0442\u04af\u0441\u0456\u0440\u0433\u0435\u043d\u0434\u0435, \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u0442\u044b \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u0434\u0430, \u0441\u0456\u0437 \u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u04af\u0441\u0442\u0435\u0440 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043a\u0435\u043d\u0456\u043d \u0436\u04d9\u043d\u0435 \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u0442\u04af\u0440\u0434\u0435 \u049b\u0430\u043b\u0430\u0439 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0442\u044b\u043d \u0431\u0435\u043b\u0433\u0456\u043b\u0456 \u0431\u0456\u0440 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0436\u0430\u0441\u0430\u0439\u0441\u044b\u0437. \u0411\u04b1\u043b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u04d9\u043c\u0431\u0435\u0431\u0430\u043f \u0442\u0456\u043b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442 \u0435\u0442\u0435\u0434\u0456, \u043e\u043b \u0441\u0456\u0437\u0434\u0456\u04a3 \u049b\u044b\u0437\u044b\u043b \u0442\u04af\u0441\u0456\u04a3\u0456\u0437 \u0431\u0456\u0440\u0435\u0443\u0434\u0456\u04a3 \u044d\u043a\u0440\u0430\u043d\u044b\u043d\u0434\u0430 \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u0441\u043f\u0430\u0434\u0430 \u0431\u0456\u0440\u0434\u0435\u0439 \u049b\u044b\u0437\u044b\u043b \u0431\u043e\u043b\u0443\u044b\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                    <ul class=\"feature-list\">\n                        <li class=\"feature-item\">\n                            <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                            <span class=\"feature-item-text\">\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0434\u04d9\u0439\u0435\u043a\u0442\u0456 \u0442\u04af\u0441\u0442\u0456 \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                        <\/li>\n                        <li class=\"feature-item\">\n                            <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                            <span class=\"feature-item-text\">\u041e\u0440\u0442\u0430\u04a3\u044b\u0437 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0442\u04af\u0441 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0431\u0430\u0440\u044b\u043d\u0448\u0430 \u0430\u0440\u0442\u0442\u044b\u0440\u0430\u0434\u044b<\/span>\n                        <\/li>\n                        <li class=\"feature-item\">\n                            <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                            <span class=\"feature-item-text\">\u041f\u0456\u0448\u0456\u043c\u0434\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u04af\u0441 \u044b\u0493\u044b\u0441\u0443\u044b\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0439\u0434\u044b<\/span>\n                        <\/li>\n                        <li class=\"feature-item\">\n                            <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                            <span class=\"feature-item-text\">\u041a\u04d9\u0441\u0456\u0431\u0438 \u0441\u0430\u043f\u0430\u043b\u044b \u04e9\u043d\u0456\u043c \u0448\u044b\u0493\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0436\u0435\u0442<\/span>\n                        <\/li>\n                        <li class=\"feature-item\">\n                            <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                            <span class=\"feature-item-text\">\u0426\u0438\u0444\u0440\u043b\u044b\u049b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u043f\u0430 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u0493\u044b \u0431\u0440\u0435\u043d\u0434 \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0456\u0433\u0456 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b<\/span>\n                        <\/li>\n                    <\/ul>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- Color Models Section -->\n        <section class=\"color-models-section\">\n            <h2 class=\"section-title\">\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u043c\u0435\u043d \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0441\u0456\u043d\u0443<\/h2>\n            \n            <div class=\"features-grid\">\n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-cubes\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456<\/h3>\n                        <p class=\"feature-text\">\u041a\u04e9\u0431\u0456\u043d\u0435\u0441\u0435 \u0431\u0456\u0440-\u0431\u0456\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0493\u0430\u043d\u044b\u043c\u0435\u043d, \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u043c\u0435\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u04b1\u0493\u044b\u043c\u0434\u0430\u0440 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0422\u04af\u0441 \u043c\u043e\u0434\u0435\u043b\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043e\u0440\u0438\u044f\u043b\u044b\u049b \u043d\u0435\u0433\u0456\u0437 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b (\u043c\u044b\u0441\u0430\u043b\u044b, RGB \u043d\u0435\u043c\u0435\u0441\u0435 CMYK), \u0430\u043b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 &#8212; \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0493\u0430\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u0431\u0430\u0440 \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456\u043d\u0456\u04a3 \u043d\u0430\u049b\u0442\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0443\u044b (\u043c\u044b\u0441\u0430\u043b\u044b, sRGB \u043d\u0435\u043c\u0435\u0441\u0435 Adobe RGB).<\/p>\n                        <p class=\"feature-text\">\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0443\u0434\u044b\u04a3 \u0436\u0430\u043b\u043f\u044b \u0442\u04d9\u0441\u0456\u043b\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u0430\u0440\u0430\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437, \u043c\u044b\u0441\u0430\u043b\u044b, \u00ab\u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u044b\u0437\u044b\u043b, \u0436\u0430\u0441\u044b\u043b \u0436\u04d9\u043d\u0435 \u043a\u04e9\u043a \u0436\u0430\u0440\u044b\u049b\u0442\u044b \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437\u00bb. \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043d\u0430\u049b\u0442\u044b \u0435\u0440\u0435\u0436\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456: \u049b\u044b\u0437\u044b\u043b, \u0436\u0430\u0441\u044b\u043b \u0436\u04d9\u043d\u0435 \u043a\u04e9\u043a\u0442\u0456\u04a3 \u049b\u0430\u043d\u0434\u0430\u0439 \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u043a\u0435\u0440\u0435\u043a \u0436\u04d9\u043d\u0435 \u0434\u04d9\u0439\u0435\u043a\u0442\u0456 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0433\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u04af\u0448\u0456\u043d \u043e\u043b\u0430\u0440\u0434\u044b \u0434\u04d9\u043b \u049b\u0430\u043b\u0430\u0439 \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443 \u043a\u0435\u0440\u0435\u043a.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u0442\u04af\u0441\u0442\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043d\u0435\u0433\u0456\u0437\u0434\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u04af\u043b\u0433\u0456\u0434\u0435\u0433\u0456 \u043d\u0430\u049b\u0442\u044b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0411\u0456\u0440 \u04af\u043b\u0433\u0456\u0434\u0435 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0456\u04a3 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0493\u0430\u043d \u0448\u0435\u043a\u0430\u0440\u0430\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u0442\u0435\u04a3\u0434\u0435\u0443\u043b\u0435\u0440\u0456 \u0431\u0430\u0440<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-sync-alt\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u049a\u043e\u0441\u043f\u0430 \u0436\u04d9\u043d\u0435 \u0441\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0441<\/h3>\n                        <p class=\"feature-text\">\u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u0436\u043e\u043b\u044b\u043d\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043d\u0435\u043c\u0435\u0441\u0435 \u0430\u0437\u0430\u0439\u0442\u0443 \u0431\u043e\u043b\u044b\u043f \u0431\u04e9\u043b\u0456\u043d\u0435\u0434\u0456. \u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u043e\u0434\u0435\u043b\u044c\u0434\u0435\u0440 (RGB \u0441\u0438\u044f\u049b\u0442\u044b) \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u044b \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0435\u0434\u0456, \u0430\u043b \u0441\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432\u0442\u0456 \u043c\u043e\u0434\u0435\u043b\u044c\u0434\u0435\u0440 (\u043c\u044b\u0441\u0430\u043b\u044b, CMYK) \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u04a3 \u0442\u043e\u043b\u049b\u044b\u043d \u04b1\u0437\u044b\u043d\u0434\u044b\u0493\u044b\u043d \u0436\u04b1\u0442\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456.<\/p>\n                        <p class=\"feature-text\">\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440\u0456\u043d\u0434\u0435 \u0436\u0430\u0442\u044b\u0440: \u0430\u0434\u0434\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0441 \u049b\u0430\u0440\u0430\u04a3\u0493\u044b\u043b\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b (\u0436\u0430\u0440\u044b\u049b\u0441\u044b\u0437) \u0436\u04d9\u043d\u0435 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b\u0442\u044b \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u04af\u0440\u043b\u0456-\u0442\u04af\u0441\u0442\u0456 \u0436\u0430\u0440\u044b\u049b \u049b\u043e\u0441\u0430\u0434\u044b, \u0431\u0430\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0435\u0440 \u0442\u043e\u043b\u044b\u049b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u049b\u043f\u0435\u043d \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435 \u0430\u049b \u0442\u04af\u0441\u043a\u0435 \u0436\u0435\u0442\u0435\u0434\u0456. \u0421\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0441 \u0430\u049b \u0442\u04af\u0441\u0442\u0435\u043d \u0431\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b (\u0431\u043e\u0441 \u0431\u0435\u0442 \u0441\u0438\u044f\u049b\u0442\u044b) \u0436\u04d9\u043d\u0435 \u0431\u0430\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0435\u0440 \u0442\u043e\u043b\u044b\u049b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u049b\u043f\u0435\u043d \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d\u0434\u0435 \u049b\u0430\u0440\u0430 \u0442\u04af\u0441\u043a\u0435 \u0436\u0435\u0442\u0435\u0442\u0456\u043d \u0431\u0435\u043b\u0433\u0456\u043b\u0456 \u0431\u0456\u0440 \u0442\u043e\u043b\u049b\u044b\u043d \u04b1\u0437\u044b\u043d\u0434\u044b\u0493\u044b\u043d \u0430\u043b\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u0439\u0442\u044b\u043d (\u0436\u04b1\u0442\u0430\u0442\u044b\u043d) \u0441\u0438\u044f\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u0441\u0430\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u043e\u0441\u044b\u043c\u0448\u0430: RGB (\u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440, \u0441\u0430\u043d\u0434\u044b\u049b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0421\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432: CMYK (\u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443, \u0444\u0438\u0437\u0438\u043a\u0430\u043b\u044b\u049b \u043c\u0435\u0434\u0438\u0430)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04d8\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0442\u04d9\u0441\u0456\u043b\u0434\u0435\u0440\u0434\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u0434\u0434\u0438\u0442\u0438\u0432\u0442\u0456 \u0436\u04d9\u043d\u0435 \u0441\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432\u0442\u0456 \u0436\u04af\u0439\u0435\u043b\u0435\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0442\u04af\u0441\u0442\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043a\u04af\u0440\u0434\u0435\u043b\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-border-all\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0422\u04af\u0441 \u0433\u0430\u043c\u043c\u0430\u0441\u044b \u0436\u04d9\u043d\u0435 \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456<\/h3>\n                        <p class=\"feature-text\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0433\u0430\u043c\u043c\u0430\u0441\u044b \u043e\u043b \u043a\u04e9\u0440\u0441\u0435\u0442\u0435 \u0430\u043b\u0430\u0442\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456. \u0411\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u043e\u0441\u044b \u0433\u0430\u043c\u043c\u0430\u0434\u0430 \u049b\u0430\u043d\u0448\u0430 \u0442\u04af\u0440\u043b\u0456 \u0442\u04af\u0441\u0442\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u0431\u043e\u043b\u0430\u0442\u044b\u043d\u0434\u044b\u0493\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0444\u0430\u043a\u0442\u043e\u0440\u043b\u0430\u0440 \u0431\u0456\u0440\u0433\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">\u0413\u0430\u043c\u043c\u0430\u043d\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0442\u04af\u0441\u0442\u0435\u0440 \u043f\u0430\u043b\u0438\u0442\u0440\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04d9\u043d\u0435 \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d \u0431\u04b1\u043b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043d\u0448\u0430\u043b\u044b\u049b\u0442\u044b \u0436\u0430\u049b\u0441\u044b \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443\u0493\u0430 \u0431\u043e\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0435\u043b\u0435\u0441\u0442\u0435\u0442\u0456\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437. \u0428\u0435\u043a\u0442\u0435\u0443\u043b\u0456 \u0433\u0430\u043c\u043c\u0430\u0434\u0430 \u0431\u0435\u043b\u0433\u0456\u043b\u0456 \u0431\u0456\u0440 \u0436\u0430\u043d\u0434\u044b \u0442\u04af\u0441\u0442\u0435\u0440 \u0442\u043e\u043b\u044b\u0493\u044b\u043c\u0435\u043d \u0431\u043e\u043b\u043c\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d, \u0430\u043b \u0436\u0435\u0442\u043a\u0456\u043b\u0456\u043a\u0441\u0456\u0437 \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u0442\u0435\u0433\u0456\u0441 \u0430\u0443\u044b\u0441\u0443\u043b\u0430\u0440\u0434\u044b\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0434\u0435 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0436\u043e\u043b\u0430\u049b\u0442\u044b \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u041a\u04d9\u0441\u0456\u0431\u0438 \u0436\u04b1\u043c\u044b\u0441 \u043a\u04e9\u0431\u0456\u043d\u0435\u0441\u0435 \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u04a3 \u0442\u043e\u043b\u044b\u049b \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0442\u04af\u0441\u0456\u0440\u0443 \u0436\u04d9\u043d\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u043e\u0493\u0430\u0440\u044b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0435\u04a3\u0456\u0440\u0435\u043a \u0433\u0430\u043c\u043c\u0430\u043b\u0430\u0440 \u043d\u0435\u0493\u04b1\u0440\u043b\u044b\u043c \u0436\u0430\u0440\u049b\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435 \u0430\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u043e\u0493\u0430\u0440\u044b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u0442\u0435\u0433\u0456\u0441 \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">8-\u0431\u0438\u0442 = \u04d9\u0440 \u0430\u0440\u043d\u0430\u0493\u0430 256 \u0434\u0435\u04a3\u0433\u0435\u0439 (16,7 \u043c\u0438\u043b\u043b\u0438\u043e\u043d \u0442\u04af\u0441)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">16-\u0431\u0438\u0442 = \u04d9\u0440 \u0430\u0440\u043d\u0430\u0493\u0430 65536 \u0434\u0435\u04a3\u0433\u0435\u0439 (\u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u0442\u0430\u0493\u0430\u043d \u0442\u04af\u0441\u0442\u0435\u0440)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04d9\u0441\u0456\u0431\u0438 \u0436\u04b1\u043c\u044b\u0441 \u0436\u0438\u0456 \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u0436\u043e\u0493\u0430\u0440\u044b \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- RGB Color Spaces Section -->\n        <section id=\"rgb-spaces\" class=\"color-space-detail-section\">\n            <h2 class=\"section-title\">RGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0442\u04af\u0441\u0456\u043d\u0434\u0456\u0440\u0456\u043b\u0434\u0456<\/h2>\n            \n            <div class=\"feature-card\">\n                <div class=\"feature-content\">\n                    <div class=\"feature-icon\">\n                        <i class=\"fas fa-desktop\"><\/i>\n                    <\/div>\n                    <h3 class=\"feature-title\">RGB \u0442\u04af\u0441\u0442\u0456 \u04af\u043b\u0433\u0456\u0441\u0456<\/h3>\n                    <p class=\"feature-text\">RGB (\u049a\u044b\u0437\u044b\u043b, \u0416\u0430\u0441\u044b\u043b, \u041a\u04e9\u043a) \u049b\u044b\u0437\u044b\u043b, \u0436\u0430\u0441\u044b\u043b \u0436\u04d9\u043d\u0435 \u043a\u04e9\u043a \u0436\u0430\u0440\u044b\u049b \u0442\u04af\u0440\u043b\u0456 \u0442\u04d9\u0441\u0456\u043b\u0434\u0435\u0440\u043c\u0435\u043d \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0456\u043f, \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0448\u044b\u0493\u0430\u0440\u0430\u0442\u044b\u043d \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0411\u04b1\u043b \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440\u0434\u0430\u043d \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440\u043b\u0430\u0440\u0493\u0430 \u0434\u0435\u0439\u0456\u043d\u0433\u0456 \u0441\u0430\u043d\u0434\u044b\u049b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0434\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456.<\/p>\n                    <p class=\"feature-text\">RGB \u04af\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u04d9\u0440 \u0442\u04af\u0441\u0442\u0456 \u0430\u0440\u043d\u0430 \u04d9\u0434\u0435\u0442\u0442\u0435 8 \u0431\u0438\u0442\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b, \u0431\u04b1\u043b \u04d9\u0440 \u0430\u0440\u043d\u0430\u0493\u0430 256 \u0434\u0435\u04a3\u0433\u0435\u0439\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0411\u04b1\u043b \u0448\u0430\u043c\u0430\u043c\u0435\u043d 16,7 \u043c\u0438\u043b\u043b\u0438\u043e\u043d \u0442\u04af\u0441\u0442\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0442\u0456 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b 24 \u0431\u0438\u0442 \u0442\u04af\u0441 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d (8 \u0431\u0438\u0442 \u00d7 3 \u0430\u0440\u043d\u0430) \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u041a\u04d9\u0441\u0456\u0431\u0438 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440 \u043d\u0430\u049b\u0442\u044b \u0442\u04af\u0441 \u0433\u0440\u0430\u0434\u0430\u0446\u0438\u044f\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0436\u0438\u0456 10 \u0431\u0438\u0442\u0442\u0456\u043a (1 \u043c\u0438\u043b\u043b\u0438\u0430\u0440\u0434\u0442\u0430\u043d \u0430\u0441\u0442\u0430\u043c \u0442\u04af\u0441\u0442\u0435\u0440) \u043d\u0435\u043c\u0435\u0441\u0435 16 \u0431\u0438\u0442\u0442\u0456\u043a (281 \u0442\u0440\u0438\u043b\u043b\u0438\u043e\u043d\u043d\u0430\u043d \u0430\u0441\u0442\u0430\u043c \u0442\u04af\u0441\u0442\u0435\u0440) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b.<\/p>\n                    <p class=\"feature-text\">RGB \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u043a\u04e9\u0440\u0443 \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0456\u04a3 \u0436\u0430\u0440\u044b\u049b\u049b\u0430 \u0440\u0435\u0430\u043a\u0446\u0438\u044f\u0441\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d, \u04af\u0448 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0442\u04af\u0441 \u0431\u0456\u0437\u0434\u0456\u04a3 \u043a\u04e9\u0437\u0456\u043c\u0456\u0437\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u0440\u0435\u0446\u0435\u043f\u0442\u043e\u0440\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 (\u043a\u043e\u043d\u0443\u0441\u0442\u0430\u0440\u044b\u043d\u044b\u04a3) \u04af\u0448 \u0442\u04af\u0440\u0456\u043d\u0435 \u0448\u0430\u043c\u0430\u043c\u0435\u043d \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u043e\u043d\u044b \u0441\u0430\u043d\u0434\u044b\u049b \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0431\u0438\u0493\u0438 \u0442\u04af\u0440\u0434\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b \u0435\u0442\u0435\u0434\u0456, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 RGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0443\u049b\u044b\u043c\u044b \u043c\u0435\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04e9\u0437\u0433\u0435\u0440\u0435\u0442\u0456\u043d\u0456\u043d \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456.<\/p>\n                <\/div>\n            <\/div>\n            \n            <div class=\"steps-container\">\n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">sRGB (\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b RGB)<\/h3>\n                        <p class=\"step-text\">1996 \u0436\u044b\u043b\u044b HP \u0436\u04d9\u043d\u0435 Microsoft \u04d9\u0437\u0456\u0440\u043b\u0435\u0433\u0435\u043d sRGB \u0441\u0430\u043d\u0434\u044b\u049b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435, \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u043b\u0430\u0440\u0434\u0430 \u0436\u04d9\u043d\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0435\u04a3 \u043a\u04e9\u043f \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u041e\u043b \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0442\u04af\u0441 \u0441\u043f\u0435\u043a\u0442\u0440\u0456\u043d\u0456\u04a3 \u0448\u0430\u043c\u0430\u043c\u0435\u043d 35% \u049b\u0430\u043c\u0442\u0438\u0434\u044b \u0436\u04d9\u043d\u0435 \u04d9\u0434\u0435\u0442\u0442\u0435\u0433\u0456 \u04af\u0439 \u0436\u04d9\u043d\u0435 \u043a\u0435\u04a3\u0441\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0442\u0456\u043d\u0434\u0435\u0439 \u0435\u0442\u0456\u043f \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d.<\/p>\n                        <p class=\"step-text\">\u0421\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b \u0442\u04af\u0440\u0434\u0435 \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0456 \u0433\u0430\u043c\u043c\u0430\u0493\u0430 \u049b\u0430\u0440\u0430\u043c\u0430\u0441\u0442\u0430\u043d, sRGB \u04d9\u043c\u0431\u0435\u0431\u0430\u043f \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u0433\u0456\u043d\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u0432\u0435\u0431-\u043c\u0430\u0437\u043c\u04b1\u043d \u043c\u0435\u043d \u0442\u04b1\u0442\u044b\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u04af\u0448\u0456\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0431\u043e\u043b\u044b\u043f \u049b\u0430\u043b\u0430 \u0431\u0435\u0440\u0435\u0434\u0456. \u041a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 sRGB \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u044b\u043d \u04d9\u0434\u0435\u043f\u043a\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0434\u04b1\u0440\u044b\u0441 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u043d\u0433\u0435\u043d, \u0431\u04b1\u043b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0441\u044b\u0437 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440\u0434\u0430 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u043a\u0435\u043d\u0434\u0435 \u043e\u043d\u044b \u0435\u04a3 \u049b\u0430\u0443\u0456\u043f\u0441\u0456\u0437 \u0442\u0430\u04a3\u0434\u0430\u0443 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">sRGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 1990 \u0436\u044b\u043b\u0434\u0430\u0440\u0434\u0430\u0493\u044b CRT \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0442\u0456\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b \u0442\u04af\u0440\u0434\u0435 \u0448\u0430\u0493\u044b\u043d \u0433\u0430\u043c\u043c\u0430\u043c\u0435\u043d \u04d9\u0434\u0435\u0439\u0456 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d. \u0411\u04b1\u043b \u0448\u0435\u043a\u0442\u0435\u0443 \u0437\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0432\u0435\u0431-\u044d\u043a\u043e\u0436\u04af\u0439\u0435\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b, \u0431\u0456\u0440\u0430\u049b \u043e\u043d\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0436\u0430\u04a3\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440 \u0431\u0456\u0440\u0442\u0456\u043d\u0434\u0435\u043f \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0443\u0434\u0430.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u0441\u0430\u043d\u0434\u044b\u049b \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u04d9\u0434\u0435\u043f\u043a\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u0434\u04d9\u0439\u0435\u043a\u0442\u0456 \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0442\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0412\u0435\u0431-\u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0436\u04d9\u043d\u0435 \u0436\u0430\u043b\u043f\u044b \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u0442\u04b1\u0442\u044b\u043d\u0443\u0448\u044b\u043b\u0430\u0440 \u043a\u0430\u043c\u0435\u0440\u0430\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440\u044b\u043d\u0434\u0430 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0413\u0430\u043c\u043c\u0430 \u043c\u04d9\u043d\u0456 \u0448\u0430\u043c\u0430\u043c\u0435\u043d 2,2<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">Adobe RGB (1998)<\/h3>\n                        <p class=\"step-text\">Adobe Systems \u04d9\u0437\u0456\u0440\u043b\u0435\u0433\u0435\u043d Adobe RGB sRGB-\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u04b1\u0441\u044b\u043d\u0430\u0434\u044b, \u043e\u043b \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0442\u04af\u0441 \u0441\u043f\u0435\u043a\u0442\u0440\u0456\u043d\u0456\u04a3 \u0448\u0430\u043c\u0430\u043c\u0435\u043d 50% \u049b\u0430\u043c\u0442\u0438\u0434\u044b. \u041e\u043b CMYK \u0442\u04af\u0441\u0442\u0456 \u043f\u0440\u0438\u043d\u0442\u0435\u0440\u043b\u0435\u0440\u0456\u043d\u0434\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0433\u0435 \u0431\u043e\u043b\u0430\u0442\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u04e9\u043f\u0448\u0456\u043b\u0456\u0433\u0456\u043d \u049b\u0430\u043c\u0442\u0443 \u04af\u0448\u0456\u043d \u0430\u0440\u043d\u0430\u0439\u044b \u04d9\u0437\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d, \u0431\u04b1\u043b \u043e\u043d\u044b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456\u043d\u0456\u04a3 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0440\u0434\u0456\u0441\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u049b\u04b1\u043d\u0434\u044b \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">Adobe RGB \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0433\u0430\u043c\u043c\u0430\u0441\u044b \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 sRGB-\u0434\u0435 \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0442\u044b\u043d \u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440-\u0436\u0430\u0441\u044b\u043b \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0434\u0435 \u0431\u0430\u0439\u049b\u0430\u043b\u0430\u0434\u044b. \u0411\u04b1\u043b \u043e\u043d\u044b \u0436\u0430\u043d\u0434\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0441\u0430\u049b\u0442\u0430\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u043a\u04d9\u0441\u0456\u0431\u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0442\u0430\u0440 \u043c\u0435\u043d \u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440\u043b\u0435\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u043d\u044b\u043c\u0430\u043b \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">Adobe RGB \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u044b\u04a3 \u0431\u0456\u0440\u0456 \u043e\u043d\u044b\u04a3 \u0436\u0430\u0441\u044b\u043b-\u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440 \u0430\u0439\u043c\u0430\u049b\u0442\u0430 \u049b\u0430\u043d\u044b\u049b\u049b\u0430\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b, \u0431\u04b1\u043b \u043f\u0435\u0439\u0437\u0430\u0436\u0434\u044b\u049b \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u043c\u0435\u043d \u0442\u0430\u0431\u0438\u0493\u0430\u0442 \u043d\u044b\u0441\u0430\u043d\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u043c\u0430\u04a3\u044b\u0437\u0434\u044b. \u0414\u0435\u0433\u0435\u043d\u043c\u0435\u043d, \u0431\u04b1\u043b \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b \u0431\u04af\u043a\u0456\u043b \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 (\u0442\u04af\u0441\u0456\u0440\u0443, \u04e9\u04a3\u0434\u0435\u0443 \u0436\u04d9\u043d\u0435 \u0448\u044b\u0493\u0430\u0440\u0443) Adobe RGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u0493\u0430\u043d\u0430 \u0436\u04af\u0437\u0435\u0433\u0435 \u0430\u0441\u044b\u0440\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">sRGB \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u043a\u0435\u04a3\u0456\u0440\u0435\u043a \u0433\u0430\u043c\u043c\u0430, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0436\u0430\u0441\u044b\u043b \u0436\u04d9\u043d\u0435 \u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0435<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0411\u0430\u0441\u043f\u0430 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456\u043d\u0456\u04a3 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u043a\u04d9\u0441\u0456\u0431\u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0442\u0430\u0440 \u0442\u0430\u04a3\u0434\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u043e\u0493\u0430\u0440\u044b \u0434\u0435\u04a3\u0433\u0435\u0439\u043b\u0456 \u043a\u0430\u043c\u0435\u0440\u0430\u043b\u0430\u0440\u0434\u0430 \u0442\u04af\u0441\u0456\u0440\u0443 \u043e\u043f\u0446\u0438\u044f\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0414\u04b1\u0440\u044b\u0441 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">ProPhoto RGB<\/h3>\n                        <p class=\"step-text\">Kodak \u04d9\u0437\u0456\u0440\u043b\u0435\u0433\u0435\u043d ProPhoto RGB (ROMM RGB \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0434\u0435 \u0431\u0435\u043b\u0433\u0456\u043b\u0456) \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u0448\u0430\u043c\u0430\u043c\u0435\u043d 90%-\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0435\u04a3 \u04af\u043b\u043a\u0435\u043d RGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0456\u04a3 \u0431\u0456\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u041e\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0430\u0439\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u0430 \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u043a\u04e9\u0440\u0443 \u0430\u0443\u049b\u044b\u043c\u044b\u043d\u0430\u043d \u0430\u0441\u044b\u043f \u0442\u04af\u0441\u0435\u0434\u0456, \u0431\u04b1\u043b \u043a\u0430\u043c\u0435\u0440\u0430 \u0442\u04af\u0441\u0456\u0440\u0435 \u0430\u043b\u0430\u0442\u044b\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0434\u0435\u0440\u043b\u0456\u043a \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0430\u049b\u0442\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">\u041a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d\u044b\u04a3 \u0430\u0440\u049b\u0430\u0441\u044b\u043d\u0434\u0430 ProPhoto RGB \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u0493\u0430\u0440\u044b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d (\u04d9\u0440 \u0430\u0440\u043d\u0430\u0493\u0430 8-\u0431\u0438\u0442\u0442\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 16-\u0431\u0438\u0442) \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u043b, \u0435\u04a3 \u0430\u043b\u0434\u044b\u043c\u0435\u043d, \u043a\u04d9\u0441\u0456\u0431\u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u043b\u044b\u049b \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456\u043d\u0434\u0435, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u043c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u044b\u049b \u043c\u0430\u049b\u0441\u0430\u0442\u0442\u0430\u0440\u0434\u0430 \u0436\u04d9\u043d\u0435 \u0436\u043e\u0493\u0430\u0440\u044b \u0434\u0435\u04a3\u0433\u0435\u0439\u043b\u0456 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"step-text\">ProPhoto RGB Adobe Lightroom \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0434\u0435\u0433\u0456 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u0436\u04b1\u043c\u044b\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0438\u0456 \u04e9\u04a3\u0434\u0435\u043b\u043c\u0435\u0433\u0435\u043d \u04e9\u04a3\u0434\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u0442\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u04b1\u0441\u044b\u043d\u044b\u043b\u0430\u0434\u044b. \u041e\u043d\u044b\u04a3 \u04af\u043b\u043a\u0435\u043d\u0434\u0456\u0433\u0456 \u0441\u043e\u043d\u0448\u0430, \u043e\u043d\u044b\u04a3 \u043a\u0435\u0439\u0431\u0456\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0456 \u00ab\u049b\u0438\u044f\u043b\u00bb (\u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u043a\u04e9\u0440\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456\u043d\u0435\u043d \u0442\u044b\u0441), \u0431\u0456\u0440\u0430\u049b \u0431\u04b1\u043b \u04e9\u04a3\u0434\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043a\u0430\u043c\u0435\u0440\u0430 \u0442\u04af\u0441\u0456\u0440\u0433\u0435\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u0435\u0441\u0456\u043b\u043c\u0435\u0443\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0415\u04a3 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u04e9\u0442\u0435 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u043e\u0493\u0430\u0440\u044b \u0441\u0430\u043f\u0430\u043b\u044b \u043a\u0430\u043c\u0435\u0440\u0430\u043b\u0430\u0440 \u0442\u04af\u0441\u0456\u0440\u0433\u0435\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u043e\u043b\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u04af\u0448\u0456\u043d 16 \u0431\u0438\u0442\u0442\u0456\u043a \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">Adobe Lightroom \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0434\u0435\u0433\u0456 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0436\u04b1\u043c\u044b\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0441\u0456\u0437 \u0441\u043e\u04a3\u0493\u044b \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0436\u0430\u0440\u0430\u043c\u0441\u044b\u0437<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">P3 \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u0456<\/h3>\n                        <p class=\"step-text\">Apple \u04d9\u0437\u0456\u0440\u043b\u0435\u0433\u0435\u043d Display P3 \u0446\u0438\u0444\u0440\u043b\u044b\u049b \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d DCI-P3 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d. \u041e\u043b sRGB-\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0448\u0430\u043c\u0430\u043c\u0435\u043d 25% \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0442\u04af\u0441\u0442\u0456 \u049b\u0430\u043c\u0442\u0443\u0434\u044b \u04b1\u0441\u044b\u043d\u0430\u0434\u044b, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u049b\u044b\u0437\u044b\u043b \u0436\u04d9\u043d\u0435 \u0436\u0430\u0441\u044b\u043b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0435, \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0456 \u0436\u0430\u043d\u0434\u044b \u0436\u04d9\u043d\u0435 \u0448\u044b\u043d\u0430\u0439\u044b\u0440\u0430\u049b \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">\u0414\u0438\u0441\u043f\u043b\u0435\u0439 P3 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u0442\u0430\u043d\u044b\u043c\u0430\u043b \u0431\u043e\u043b\u0434\u044b, \u04e9\u0439\u0442\u043a\u0435\u043d\u0456 \u043e\u043d\u044b Apple \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b, \u0441\u043e\u043d\u044b\u04a3 \u0456\u0448\u0456\u043d\u0434\u0435 iPhone, iPad \u0436\u04d9\u043d\u0435 \u043a\u0435\u04a3 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0434\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0456 \u0431\u0430\u0440 Mac \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043b\u0435\u0440\u0456 \u049b\u043e\u043b\u0434\u0430\u0439\u0434\u044b. \u041e\u043b sRGB \u0436\u04d9\u043d\u0435 Adobe RGB \u0441\u0438\u044f\u049b\u0442\u044b \u043a\u0435\u04a3\u0456\u0440\u0435\u043a \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u043e\u0440\u0442\u0430\u043d\u044b \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0430\u049b\u044b\u043b\u0493\u0430 \u049b\u043e\u043d\u044b\u043c\u0434\u044b \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0441\u0430\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u04b1\u0441\u044b\u043d\u0430\u0434\u044b.<\/p>\n                        <p class=\"step-text\">P3 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b\u0434\u0430 \u0446\u0438\u0444\u0440\u043b\u044b\u049b \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u043f\u0440\u043e\u0435\u043a\u0446\u0438\u044f\u0441\u044b (DCI-P3) \u04af\u0448\u0456\u043d \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d, \u0431\u0456\u0440\u0430\u049b Apple \u043e\u043d\u044b DCI \u0430\u049b \u043d\u04af\u043a\u0442\u0435\u0441\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 D65 \u0430\u049b \u043d\u04af\u043a\u0442\u0435\u0441\u0456\u043d (sRGB \u0441\u0438\u044f\u049b\u0442\u044b) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u0441\u044b\u043d\u0430 \u0431\u0435\u0439\u0456\u043c\u0434\u0435\u0434\u0456. \u0411\u04b1\u043b \u043e\u043d\u044b \u0430\u0440\u0430\u043b\u0430\u0441 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0430\u0439\u043b\u044b\u0440\u0430\u049b \u0435\u0442\u0435\u0434\u0456, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u0431\u0456\u0440\u0433\u0435 sRGB-\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u0436\u0430\u0440\u049b\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u044b\u0437\u044b\u043b \u0436\u04d9\u043d\u0435 \u0436\u0430\u0441\u044b\u043b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0442\u0430\u043c\u0430\u0448\u0430 \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">Apple \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f\u0441\u044b\u043d\u044b\u04a3 Retina \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0456 \u043c\u0435\u043d \u043c\u043e\u0431\u0438\u043b\u044c\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0442\u0443\u0493\u0430\u043d \u0436\u0435\u0440\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0421\u0430\u043d\u0434\u044b\u049b \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430\u043b\u0430\u0440\u0434\u0430\u0493\u044b \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u044b\u04a3 \u04e9\u0441\u0443\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">sRGB \u0441\u0438\u044f\u049b\u0442\u044b \u0431\u0456\u0440\u0434\u0435\u0439 \u0430\u049b \u043d\u04af\u043a\u0442\u0435\u043d\u0456 (D65) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0432\u0435\u0431 \u0436\u04d9\u043d\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0434\u0438\u0437\u0430\u0439\u043d\u044b \u04af\u0448\u0456\u043d \u043c\u0430\u04a3\u044b\u0437\u0434\u044b\u0440\u0430\u049b \u0431\u043e\u043b\u0443\u0434\u0430<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">\u04b0\u0441\u044b\u043d\u044b\u0441 2020 (BT.2020)<\/h3>\n                        <p class=\"step-text\">\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b \u04e9\u0442\u0435 \u0436\u043e\u0493\u0430\u0440\u044b \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 (UHDTV) \u04af\u0448\u0456\u043d \u04d9\u0437\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d Rec.2020 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 75%-\u0434\u0430\u043d \u0430\u0441\u0442\u0430\u043c\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b. \u041e\u043b sRGB \u0436\u04d9\u043d\u0435 Adobe RGB \u0435\u043a\u0435\u0443\u0456\u043d\u0435\u043d \u0434\u0435 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04af\u043b\u043a\u0435\u043d\u0456\u0440\u0435\u043a, \u0431\u04b1\u043b 4K \u0436\u04d9\u043d\u0435 8K \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u0435\u0440\u0435\u043a\u0448\u0435 \u0442\u04af\u0441\u0442\u0456 \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">\u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440 \u0442\u043e\u043b\u044b\u049b Rec.2020 \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d \u0448\u044b\u0493\u0430\u0440\u0430 \u0430\u043b\u0430\u0442\u044b\u043d\u044b\u043c\u0435\u043d, \u043e\u043b \u0436\u043e\u0493\u0430\u0440\u044b \u0434\u0435\u04a3\u0433\u0435\u0439\u043b\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u0448\u044b\u0493\u0430\u0440\u0443 \u0436\u04d9\u043d\u0435 \u0438\u0433\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u049b\u0430 \u0431\u0430\u0493\u044b\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u044b\u0437\u043c\u0435\u0442 \u0435\u0442\u0435\u0434\u0456. \u0414\u0438\u0441\u043f\u043b\u0435\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u0441\u044b \u0434\u0430\u043c\u044b\u0493\u0430\u043d \u0441\u0430\u0439\u044b\u043d \u043e\u0441\u044b \u043a\u0435\u04a3 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0435 \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0436\u0430\u049b\u044b\u043d\u0434\u0430\u043f \u043a\u0435\u043b\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">Rec.2020 Ultra HDTV \u0445\u0430\u043b\u044b\u049b\u0430\u0440\u0430\u043b\u044b\u049b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u044b\u043d\u044b\u04a3 \u0431\u04e9\u043b\u0456\u0433\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 HDR10 \u0436\u04d9\u043d\u0435 Dolby Vision \u0441\u0438\u044f\u049b\u0442\u044b \u0416\u043e\u0493\u0430\u0440\u044b \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d (HDR) \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u0431\u0456\u0440\u0433\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u041e\u043d\u044b\u04a3 \u04e9\u0442\u0435 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430\u0441\u044b \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0441\u043f\u0435\u043a\u0442\u0440\u0434\u0456\u04a3 \u0448\u0435\u0442\u0456\u043d\u0435 \u0436\u0430\u049b\u044b\u043d \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u049b\u0430\u043d \u043c\u043e\u043d\u043e\u0445\u0440\u043e\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 (467 \u043d\u043c \u043a\u04e9\u043a, 532 \u043d\u043c \u0436\u0430\u0441\u044b\u043b \u0436\u04d9\u043d\u0435 630 \u043d\u043c \u049b\u044b\u0437\u044b\u043b) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b, \u0431\u04b1\u043b \u043e\u0493\u0430\u043d \u0430\u0434\u0430\u043c\u0434\u0430\u0440 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0439 \u0430\u043b\u0430\u0442\u044b\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0434\u0435\u0440\u043b\u0456\u043a \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04e8\u0442\u0435 \u0436\u043e\u0493\u0430\u0440\u044b \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u049b\u0442\u0430\u0493\u044b \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0414\u0430\u043c\u0443\u0448\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u049b\u0430 \u0442\u04e9\u0437\u0456\u043c\u0434\u0456 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04d9\u0441\u0456\u0431\u0438 \u0431\u0435\u0439\u043d\u0435 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456\u043d\u0456\u04a3 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456\u043d\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0443\u044b\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456\u043d\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d HDR \u044d\u043a\u043e\u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0456\u04a3 \u0431\u04e9\u043b\u0456\u0433\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0435\u0448\u0431\u0456\u0440 \u0434\u0438\u0441\u043f\u043b\u0435\u0439 \u0442\u043e\u043b\u044b\u049b Rec.2020 \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d \u0448\u044b\u0493\u0430\u0440\u0430 \u0430\u043b\u043c\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- CMYK Color Spaces Section -->\n        <section id=\"cmyk-spaces\" class=\"color-space-detail-section\">\n            <h2 class=\"section-title\">CMYK \u0442\u04af\u0441\u0442\u0456 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456<\/h2>\n            \n            <div class=\"feature-card\">\n                <div class=\"feature-content\">\n                    <div class=\"feature-icon\">\n                        <i class=\"fas fa-print\"><\/i>\n                    <\/div>\n                    <h3 class=\"feature-title\">CMYK \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456<\/h3>\n                    <p class=\"feature-text\">CMYK (\u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440, \u049b\u044b\u0437\u044b\u043b, \u0441\u0430\u0440\u044b, \u043a\u0456\u043b\u0442\/\u049b\u0430\u0440\u0430) \u2013 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0435\u043d \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0448\u0435\u0433\u0435\u0440\u0433\u0456\u0448 \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456. \u0422\u04af\u0441\u0442\u0435\u0440 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u0440\u044b\u049b \u049b\u043e\u0441\u0430\u0442\u044b\u043d RGB-\u0434\u0435\u043d \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b, CMYK \u0430\u049b \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d \u0431\u0435\u043b\u0433\u0456\u043b\u0456 \u0431\u0456\u0440 \u0442\u043e\u043b\u049b\u044b\u043d \u04b1\u0437\u044b\u043d\u0434\u044b\u0493\u044b\u043d \u0436\u04b1\u0442\u0443 (\u0430\u043b\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u0443), \u049b\u0430\u0493\u0430\u0437\u0434\u0430\u0493\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u0441\u049b\u0430 \u0441\u0443\u0431\u0441\u0442\u0440\u0430\u0442\u0442\u0430\u0440\u0434\u0430\u0493\u044b \u0441\u0438\u044f\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456.<\/p>\n                    <p class=\"feature-text\">CMYK \u0433\u0430\u043c\u043c\u0430\u0441\u044b \u04d9\u0434\u0435\u0442\u0442\u0435 RGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0435\u043d \u043a\u0456\u0448\u0456\u0440\u0435\u043a, \u0441\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u0436\u0430\u043d\u0434\u044b \u0446\u0438\u0444\u0440\u043b\u044b\u049b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0434\u0435 \u043a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0431\u043e\u043b\u044b\u043f \u043a\u04e9\u0440\u0456\u043d\u0435\u0434\u0456. RGB \u0436\u04d9\u043d\u0435 CMYK \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u049b\u0430\u0440\u044b\u043c-\u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0442\u044b \u0442\u04af\u0441\u0456\u043d\u0443 \u0441\u0430\u043d\u0434\u044b\u049b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u043f\u0430 \u043c\u0435\u0434\u0438\u0430\u0441\u044b \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0436\u0430\u0441\u0430\u0439\u0442\u044b\u043d \u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440\u043b\u0435\u0440 \u043c\u0435\u043d \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0442\u0430\u0440 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                    <p class=\"feature-text\">\u0422\u0435\u043e\u0440\u0438\u044f\u0434\u0430 \u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440, \u043a\u04af\u043b\u0433\u0456\u043d \u0436\u04d9\u043d\u0435 \u0441\u0430\u0440\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0442\u043e\u043b\u044b\u049b \u043a\u04af\u0448\u0442\u0435 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443 \u049b\u0430\u0440\u0430 \u0442\u04af\u0441\u043a\u0435 \u0438\u0435 \u0431\u043e\u043b\u0443\u044b \u043a\u0435\u0440\u0435\u043a, \u0431\u0456\u0440\u0430\u049b \u043d\u0430\u049b\u0442\u044b \u0441\u0438\u044f\u043b\u0430\u0440\u0434\u0430\u0493\u044b \u049b\u043e\u0441\u043f\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u0441\u0430\u043b\u0434\u0430\u0440\u044b\u043d\u0430\u043d \u0431\u04b1\u043b \u04d9\u0434\u0435\u0442\u0442\u0435 \u043b\u0430\u0439\u043b\u044b \u049b\u0430\u0440\u0430 \u049b\u043e\u04a3\u044b\u0440\u0493\u0430 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456. \u0421\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u0448\u044b\u043d\u0430\u0439\u044b \u049b\u0430\u0440\u0430 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0442\u0456\u043d \u0436\u04d9\u043d\u0435 \u043a\u04e9\u043b\u0435\u04a3\u043a\u0435 \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0430\u0442\u044b\u043d \u0431\u04e9\u043b\u0435\u043a \u049b\u0430\u0440\u0430 (K) \u0441\u0438\u044f \u049b\u043e\u0441\u044b\u043b\u0430\u0434\u044b. \u00abK\u00bb \u00ab\u041a\u0456\u043b\u0442\u00bb \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456, \u0441\u0435\u0431\u0435\u0431\u0456 \u049b\u0430\u0440\u0430 \u0442\u0430\u049b\u0442\u0430 \u0434\u04d9\u0441\u0442\u04af\u0440\u043b\u0456 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u0430\u0493\u044b \u0431\u0430\u0441\u049b\u0430 \u0442\u04af\u0441\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u043c\u0435\u043d \u0442\u0443\u0440\u0430\u043b\u0430\u0443\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                    <p class=\"feature-text\">\u04d8\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u0430\u0493\u0430\u0437 \u0442\u04af\u0440\u043b\u0435\u0440\u0456, \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u04d9\u0434\u0456\u0441\u0442\u0435\u0440\u0456 \u0436\u04d9\u043d\u0435 \u0441\u0438\u044f \u0444\u043e\u0440\u043c\u0443\u043b\u0430\u043b\u0430\u0440\u044b CMYK \u0442\u04af\u0441\u0442\u0435\u0440\u0456\u043d\u0456\u04a3 \u0441\u043e\u04a3\u0493\u044b \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u044b\u043c\u0434\u0430 \u049b\u0430\u043b\u0430\u0439 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d\u0456\u043d\u0435 \u049b\u0430\u0442\u0442\u044b \u04d9\u0441\u0435\u0440 \u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d. \u0421\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u043a\u04d9\u0441\u0456\u043f\u049b\u043e\u0439 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0435\u043d \u0442\u04af\u0441\u0442\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u0436\u04d9\u043d\u0435 \u043d\u0430\u049b\u0442\u044b \u04e9\u043d\u0434\u0456\u0440\u0456\u0441 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0431\u0435\u0439\u0456\u043c\u0434\u0435\u043b\u0433\u0435\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d CMYK \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u04af\u0439\u0435\u043d\u0435\u0434\u0456.<\/p>\n                <\/div>\n            <\/div>\n            \n            <div class=\"features-grid\">\n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-file-alt\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b CMYK \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456<\/h3>\n                        <p class=\"feature-text\">sRGB \u0436\u04d9\u043d\u0435 Adobe RGB \u0441\u0438\u044f\u049b\u0442\u044b \u043d\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 RGB-\u0434\u0435\u043d \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b, CMYK \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430, \u049b\u0430\u0493\u0430\u0437 \u0442\u04af\u0440\u043b\u0435\u0440\u0456\u043d\u0435 \u0436\u04d9\u043d\u0435 \u0441\u0438\u044f \u0444\u043e\u0440\u043c\u0443\u043b\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u043a\u0435\u04a3\u0456\u043d\u0435\u043d \u04e9\u0437\u0433\u0435\u0440\u0435\u0434\u0456. \u041a\u0435\u0439\u0431\u0456\u0440 \u0436\u0430\u043b\u043f\u044b CMYK \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430 \u043c\u044b\u043d\u0430\u043b\u0430\u0440 \u0436\u0430\u0442\u0430\u0434\u044b:<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0410\u049a\u0428 \u0432\u0435\u0431-\u0436\u0430\u0431\u0434\u044b\u0493\u044b (SWOP) v2<\/strong> &#8212; \u0421\u043e\u043b\u0442\u04af\u0441\u0442\u0456\u043a \u0410\u043c\u0435\u0440\u0438\u043a\u0430\u0434\u0430\u0493\u044b \u0432\u0435\u0431-\u043e\u0444\u0441\u0435\u0442\u0442\u0456 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u049a\u0430\u043f\u0442\u0430\u043b\u0493\u0430\u043d FOGRA39 (ISO 12647-2:2004)<\/strong> &#8212; \u049b\u0430\u043f\u0442\u0430\u043b\u0493\u0430\u043d \u049b\u0430\u0493\u0430\u0437\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0435\u0443\u0440\u043e\u043f\u0430\u043b\u044b\u049b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0416\u0430\u043f\u043e\u043d \u0442\u04af\u0441\u0456 2001 \u049b\u0430\u043f\u0442\u0430\u043b\u0493\u0430\u043d<\/strong> &#8212; \u0416\u0430\u043f\u043e\u043d\u0438\u044f\u0434\u0430 \u043e\u0444\u0441\u0435\u0442\u0442\u0456\u043a \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>GRACoL 2006 \u049b\u0430\u043f\u0442\u0430\u043b\u0493\u0430\u043d<\/strong> &#8212; \u0416\u043e\u0493\u0430\u0440\u044b \u0441\u0430\u043f\u0430\u043b\u044b \u043a\u043e\u043c\u043c\u0435\u0440\u0446\u0438\u044f\u043b\u044b\u049b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u0445\u043d\u0438\u043a\u0430\u043b\u044b\u049b \u0448\u0430\u0440\u0442\u0442\u0430\u0440<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0422\u04b0\u041c\u0410\u041d27<\/strong> &#8212; \u0415\u0443\u0440\u043e\u043f\u0430\u0434\u0430\u0493\u044b \u049b\u0430\u043f\u0442\u0430\u043b\u0493\u0430\u043d \u049b\u0430\u0493\u0430\u0437\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 (\u0435\u0441\u043a\u0456 \u043d\u04b1\u0441\u049b\u0430)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>US Sheetfed Coated v2<\/strong> &#8212; \u0411\u043e\u044f\u043b\u0493\u0430\u043d \u049b\u0430\u0493\u0430\u0437\u0493\u0430 \u043f\u0430\u0440\u0430\u049b\u043f\u0435\u043d \u043e\u0444\u0441\u0435\u0442\u0442\u0456\u043a \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0410\u049a\u0428 \u049b\u0430\u043f\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d v2<\/strong> &#8212; \u049a\u0430\u043f\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u049b\u0430\u0493\u0430\u0437\u0434\u0430\u0440\u0493\u0430 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0422\u04b0\u041c\u0410\u041d47<\/strong> &#8212; \u0415\u0443\u0440\u043e\u043f\u0430\u0434\u0430\u0493\u044b \u049b\u0430\u043f\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u049b\u0430\u0493\u0430\u0437\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-exchange-alt\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">RGB-\u0434\u0435\u043d CMYK-\u0433\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443<\/h3>\n                        <p class=\"feature-text\">RGB-\u0434\u0435\u043d CMYK-\u0433\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456 \u0434\u0435, \u0433\u0430\u043c\u043c\u0430\u043b\u044b\u049b \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u0434\u0430 \u049b\u0430\u043c\u0442\u0438\u0434\u044b, \u04e9\u0439\u0442\u043a\u0435\u043d\u0456 CMYK \u0431\u0430\u0440\u043b\u044b\u049b RGB \u0442\u04af\u0441\u0442\u0435\u0440\u0456\u043d \u0448\u044b\u0493\u0430\u0440\u0430 \u0430\u043b\u043c\u0430\u0439\u0434\u044b. \u0422\u04af\u0441\u0442\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u0434\u0435\u043f \u0430\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0431\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043a\u04d9\u0441\u0456\u0431\u0438 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u0441\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">RGB-\u0434\u0435\u043d CMYK-\u0433\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043a\u04af\u0440\u0434\u0435\u043b\u0456, \u0441\u0435\u0431\u0435\u0431\u0456 \u043e\u043b \u049b\u043e\u0441\u044b\u043c\u0448\u0430\u0434\u0430\u043d \u0441\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456\u043d\u0435 \u0430\u0439\u043d\u0430\u043b\u0430\u0434\u044b, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u0431\u0456\u0440\u0433\u0435 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u04af\u043b\u043a\u0435\u043d \u0433\u0430\u043c\u043c\u0430\u0434\u0430\u043d \u043a\u0456\u0448\u0456\u0440\u0435\u043a\u043a\u0435 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0430\u0434\u044b. \u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u04b1\u0440\u044b\u0441 \u0431\u0430\u0441\u049b\u0430\u0440\u043c\u0430\u0439, RGB \u0444\u043e\u0440\u043c\u0430\u0442\u044b\u043d\u0434\u0430\u0493\u044b \u0436\u0430\u0440\u049b\u044b\u043d \u043a\u04e9\u043a \u0436\u04d9\u043d\u0435 \u0436\u0430\u0441\u044b\u043b \u0442\u04af\u0441\u0442\u0435\u0440 CMYK \u0444\u043e\u0440\u043c\u0430\u0442\u044b\u043d\u0434\u0430 \u043a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0436\u04d9\u043d\u0435 \u043b\u0430\u0439 \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d, \u049b\u044b\u0437\u044b\u043b\u0434\u0430\u0440 \u049b\u044b\u0437\u0493\u044b\u043b\u0442 \u0441\u0430\u0440\u044b\u0493\u0430 \u0430\u0443\u044b\u0441\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043d\u04d9\u0437\u0456\u043a \u0432\u0430\u0440\u0438\u0430\u0446\u0438\u044f\u043b\u0430\u0440\u044b \u0436\u043e\u0493\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0414\u04d9\u043b\u0434\u0456\u043a \u04af\u0448\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456\u043d \u0442\u0430\u043b\u0430\u043f \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0415\u04a3 \u0436\u0430\u049b\u0441\u044b \u043d\u04d9\u0442\u0438\u0436\u0435\u0433\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u04af\u0448\u0456\u043d ICC \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u0443 \u043a\u0435\u0440\u0435\u043a<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u0438\u0456 \u0436\u0430\u0440\u049b\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04e8\u043d\u0434\u0456\u0440\u0456\u0441\u0442\u0456\u043a \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u0430\u049b\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u04b1\u043c\u0441\u0430\u049b \u0442\u0435\u043a\u0441\u0435\u0440\u0443 RGB \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0456\u043d\u0434\u0435 CMYK \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0456\u043d \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u043a\u04e9\u0440\u0435 \u0430\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04d8\u0440\u0442\u04af\u0440\u043b\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u0442\u0430\u0440\u044b \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0436\u0430\u0441\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-paint-roller\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0422\u04af\u0441\u0442\u0435\u0440 \u043c\u0435\u043d \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0433\u0430\u043c\u043c\u0430<\/h3>\n                        <p class=\"feature-text\">CMYK \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0456\u043d \u0435\u04a3\u0441\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0436\u0438\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u043a\u0435\u04a3\u0435\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u049b\u044b\u0437\u0493\u044b\u043b\u0442 \u0441\u0430\u0440\u044b, \u0436\u0430\u0441\u044b\u043b \u0436\u04d9\u043d\u0435 \u043a\u04af\u043b\u0433\u0456\u043d \u0441\u0438\u044f\u043b\u0430\u0440\u0434\u044b (CMYK+OGV) \u049b\u043e\u0441\u0430\u0442\u044b\u043d \u0434\u0430\u049b\u0442\u044b\u049b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 (\u043c\u044b\u0441\u0430\u043b\u044b, Pantone) \u043d\u0435\u043c\u0435\u0441\u0435 \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0433\u0430\u043c\u043c\u0430 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">\u0414\u0430\u049b \u0442\u04af\u0441\u0442\u0435\u0440 &#8212; \u043d\u0430\u049b\u0442\u044b \u0442\u04af\u0441 \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0443 \u04af\u0448\u0456\u043d, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u043b\u043e\u0433\u043e\u0442\u0438\u043f\u0442\u0435\u0440 \u0441\u0438\u044f\u049b\u0442\u044b \u0431\u0440\u0435\u043d\u0434 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0430\u0440\u043d\u0430\u0439\u044b \u0430\u0440\u0430\u043b\u0430\u0441 \u0441\u0438\u044f\u043b\u0430\u0440. \u0422\u04e9\u0440\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u0441\u0438\u044f\u043b\u0430\u0440\u0434\u044b\u04a3 \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440\u0456\u043d \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d CMYK \u043f\u0440\u043e\u0446\u0435\u0441\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441\u0442\u0435\u0440\u0456\u043d\u0435\u043d \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b, \u043d\u04af\u043a\u0442\u0435\u043b\u0456\u043a \u0442\u04af\u0441\u0442\u0435\u0440 \u0431\u0430\u0440\u043b\u044b\u049b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0434\u0430\u0440\u0434\u0430 \u0442\u0430\u043c\u0430\u0448\u0430 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0442\u0456\u043d \u043d\u0430\u049b\u0442\u044b \u0444\u043e\u0440\u043c\u0443\u043b\u0430\u0493\u0430 \u0434\u0435\u0439\u0456\u043d \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">Pantone \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0456\u043a \u0436\u04af\u0439\u0435\u0441\u0456 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0434\u0430\u049b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0434\u044b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 RGB \u0442\u04af\u0441 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u044b\u043d\u0430 \u0436\u0430\u049b\u044b\u043d\u0434\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0413\u0435\u043a\u0441\u0430\u0445\u0440\u043e\u043c \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0436\u04af\u0439\u0435\u043b\u0435\u0440 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0441\u0438\u044f\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u0441\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u0430\u043f\u0442\u0430\u043c\u0430\u0434\u0430\u0493\u044b \u0436\u04d9\u043d\u0435 \u043c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433\u0442\u0435\u0433\u0456 \u0431\u0440\u0435\u043d\u0434 \u0442\u04af\u0441\u0456\u043d\u0456\u04a3 \u0434\u04d9\u043b\u0434\u0456\u0433\u0456 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">CMYK + \u049b\u044b\u0437\u0493\u044b\u043b\u0442 \u0441\u0430\u0440\u044b, \u0436\u0430\u0441\u044b\u043b, \u043a\u04af\u043b\u0433\u0456\u043d (7 \u0442\u04af\u0441\u0442\u0456) \u0436\u04af\u0439\u0435\u043b\u0435\u0440 Pantone \u0442\u04af\u0441\u0442\u0435\u0440\u0456\u043d\u0456\u04a3 90%-\u043d\u0430 \u0434\u0435\u0439\u0456\u043d \u0448\u044b\u0493\u0430\u0440\u0430 \u0430\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0446\u0438\u0444\u0440\u043b\u044b\u049b \u043f\u0440\u0435\u0441\u0441\u0442\u0435\u0440 \u0436\u0438\u0456 \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0433\u0430\u043c\u043c\u0430 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- Lab and Device-Independent Spaces -->\n        <section id=\"lab-spaces\" class=\"color-space-detail-section\">\n            <h2 class=\"section-title\">\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430\u043b\u044b\u049b \u0436\u04d9\u043d\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456<\/h2>\n            \n            <div class=\"feature-card\">\n                <div class=\"feature-content\">\n                    <div class=\"feature-icon\">\n                        <i class=\"fas fa-globe\"><\/i>\n                    <\/div>\n                    <h3 class=\"feature-title\">\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437 \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456<\/h3>\n                    <p class=\"feature-text\">\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0442\u04d9\u0443\u0435\u043b\u0434\u0456 (\u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u0441\u044b\u0440\u0442\u049b\u044b \u0442\u04af\u0440\u0456 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u049b\u04b1\u0440\u0430\u043b\u0493\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u04e9\u0437\u0433\u0435\u0440\u0435\u0434\u0456) RGB \u0436\u04d9\u043d\u0435 CMYK-\u0442\u0435\u043d \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b, CIE L*a*b* (\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430) \u0436\u04d9\u043d\u0435 CIE XYZ \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u049b\u0430\u043b\u0430\u0439 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d\u0456\u043d\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0442\u044b\u043d\u044b\u043d\u0430 \u049b\u0430\u0440\u0430\u043c\u0430\u0441\u0442\u0430\u043d, \u0430\u0434\u0430\u043c \u043a\u04e9\u0437\u0456\u043c\u0435\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0443\u0493\u0430 \u0431\u0430\u0493\u044b\u0442\u0442\u0430\u043b\u0493\u0430\u043d.<\/p>\n                    <p class=\"feature-text\">\u0411\u04b1\u043b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0442\u04af\u0441\u0442\u0456 \u043c\u043e\u0434\u0435\u043b\u044c\u0434\u0435\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u00ab\u04d9\u043c\u0431\u0435\u0431\u0430\u043f \u0430\u0443\u0434\u0430\u0440\u043c\u0430\u0448\u044b\u00bb \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u0437\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456\u043d\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u044b\u0437\u043c\u0435\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u043b\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0435\u043d \u0433\u04e9\u0440\u0456 \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u0442\u04af\u0441 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u044b\u043d\u044b\u04a3 \u0493\u044b\u043b\u044b\u043c\u0438 \u0442\u04af\u0441\u0456\u043d\u0456\u0433\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d.<\/p>\n                    <p class=\"feature-text\">\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b, \u0441\u0435\u0431\u0435\u0431\u0456 \u043e\u043b\u0430\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0440\u0434\u0456\u0441\u0456\u043d\u0434\u0435 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u043b\u044b\u049b \u043d\u04af\u043a\u0442\u0435\u043d\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. \u0411\u0456\u0440\u0434\u0435\u0439 RGB \u043c\u04d9\u043d\u0434\u0435\u0440\u0456 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u043b\u0430\u0440\u0434\u0430 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043a\u04e9\u0440\u0456\u043d\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d, \u0431\u0456\u0440\u0430\u049b \u0437\u0435\u0440\u0442\u0445\u0430\u043d\u0430\u043b\u044b\u049b \u0442\u04af\u0441 \u043c\u04d9\u043d\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u049b\u0430\u0440\u0430\u043c\u0430\u0441\u0442\u0430\u043d \u0431\u0456\u0440\u0434\u0435\u0439 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0493\u0430\u043d \u0442\u04af\u0441\u0442\u0456 \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456. \u0421\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u0437\u0435\u0440\u0442\u0445\u0430\u043d\u0430 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0434\u04d9\u043b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u043b\u0435\u0440\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0435\u0442\u0456\u043d ICC \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u0430 \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0456 \u049b\u043e\u0441\u0443 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 (PCS) \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u044b\u0437\u043c\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                <\/div>\n            <\/div>\n            \n            <div class=\"steps-container\">\n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">CIE XYZ \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"step-text\">1931 \u0436\u044b\u043b\u044b \u0425\u0430\u043b\u044b\u049b\u0430\u0440\u0430\u043b\u044b\u049b \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d\u0434\u044b\u0440\u0443 \u043a\u043e\u043c\u0438\u0441\u0441\u0438\u044f\u0441\u044b (CIE) \u0436\u0430\u0441\u0430\u0493\u0430\u043d XYZ \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u0442\u04af\u0440\u0434\u0435 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0493\u0430\u043d \u0431\u0456\u0440\u0456\u043d\u0448\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0431\u043e\u043b\u0434\u044b. \u041e\u043b \u049b\u0430\u0440\u0430\u043f\u0430\u0439\u044b\u043c \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u043a\u04e9\u0437\u0456\u043d\u0435 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0438\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043d\u0435\u0433\u0456\u0437 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u044b\u0437\u043c\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">XYZ \u0442\u0456\u043b\u0456\u043d\u0434\u0435 Y \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u043b\u044b\u049b\u0442\u044b \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456, \u0430\u043b X \u0436\u04d9\u043d\u0435 Z \u0442\u04af\u0441\u0442\u0456\u04a3 \u0445\u0440\u043e\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u0441\u0442\u044b \u0434\u0435\u0440\u0435\u043a\u0441\u0456\u0437 \u043c\u04d9\u043d\u0434\u0435\u0440. \u0411\u04b1\u043b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0435\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u043b\u044b\u049b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043a\u043e\u0434\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0441\u0438\u0440\u0435\u043a \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u041e\u043b \u0442\u04af\u0441 \u0442\u0443\u0440\u0430\u043b\u044b \u0493\u044b\u043b\u044b\u043c \u04af\u0448\u0456\u043d \u0456\u0440\u0433\u0435\u043b\u0456 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441\u0442\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456 \u0431\u043e\u043b\u044b\u043f \u049b\u0430\u043b\u0430 \u0431\u0435\u0440\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">CIE XYZ \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u0442\u04af\u0441\u0442\u0456 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0431\u0456\u0440\u049b\u0430\u0442\u0430\u0440 \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0434\u0435\u043d \u0430\u043b\u044b\u043d\u0493\u0430\u043d. \u0417\u0435\u0440\u0442\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440 \u049b\u0430\u0440\u0430\u043f\u0430\u0439\u044b\u043c \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u04a3 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0442\u043e\u043b\u049b\u044b\u043d \u04b1\u0437\u044b\u043d\u0434\u044b\u0493\u044b\u043d \u049b\u0430\u043b\u0430\u0439 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0493\u0430\u043d\u044b\u043d \u043a\u0430\u0440\u0442\u0430\u0493\u0430 \u0442\u04af\u0441\u0456\u0440\u0456\u043f, CIE 1931 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0434\u0435\u043f \u0430\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u043d\u04d9\u0440\u0441\u0435\u043d\u0456 \u0436\u0430\u0441\u0430\u0434\u044b, \u043e\u043b \u0430\u0434\u0430\u043c\u0434\u0430\u0440\u0493\u0430 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0430\u0442\u044b\u043d \u04d9\u0439\u0433\u0456\u043b\u0456 \u00ab\u0442\u0430\u0493\u0430 \u0442\u04d9\u0440\u0456\u0437\u0434\u0456\u00bb \u0445\u0440\u043e\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430\u0441\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441\u0442\u0456 \u04e9\u043b\u0448\u0435\u0443\u0434\u0456\u04a3 \u0493\u044b\u043b\u044b\u043c\u0438 \u043d\u0435\u0433\u0456\u0437\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u0434\u0430\u043c\u0493\u0430 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0438\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441\u0442\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u0434\u0430\u043c\u043d\u044b\u04a3 \u0442\u04af\u0441 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u044b\u043d\u044b\u04a3 \u04e9\u043b\u0448\u0435\u043c\u0434\u0435\u0440\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u0448\u044b \u04af\u043b\u0433\u0456\u0441\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u04d9\u0437\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">CIE L*a*b* (\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430) \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"step-text\">1976 \u0436\u044b\u043b\u044b \u04d9\u0437\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d CIE L*a*b* (\u043a\u04e9\u0431\u0456\u043d\u0435\u0441\u0435 \u00ab\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430\u00bb \u0434\u0435\u043f \u0430\u0442\u0430\u043b\u0430\u0434\u044b) \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u0431\u043e\u043b\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d, \u044f\u0493\u043d\u0438 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0434\u0435\u0433\u0456 \u0431\u0456\u0440\u0434\u0435\u0439 \u049b\u0430\u0448\u044b\u049b\u0442\u044b\u049b\u0442\u0430\u0440 \u0442\u04af\u0441\u0442\u0435\u0433\u0456 \u0448\u0430\u043c\u0430\u043c\u0435\u043d \u0431\u0456\u0440\u0434\u0435\u0439 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0493\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u043e\u043d\u044b \u0442\u04af\u0441 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b\u043d \u04e9\u043b\u0448\u0435\u0443 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441 \u0442\u04af\u0437\u0435\u0442\u0443\u043b\u0435\u0440\u0456\u043d \u043e\u0440\u044b\u043d\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u043c\u0430\u0448\u0430 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430\u0434\u0430 L* \u0436\u0435\u04a3\u0456\u043b\u0434\u0456\u043a\u0442\u0456 (0-100), a* \u0436\u0430\u0441\u044b\u043b-\u049b\u044b\u0437\u044b\u043b \u043e\u0441\u044c\u0442\u0456 \u0436\u04d9\u043d\u0435 b* \u043a\u04e9\u043a-\u0441\u0430\u0440\u044b \u043e\u0441\u044c\u0442\u0456 \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456. \u0422\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u0430\u043d \u0430\u0448\u044b\u049b\u0442\u044b\u049b\u0442\u044b \u0431\u04b1\u043b \u0430\u0436\u044b\u0440\u0430\u0442\u0443 Lab \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0433\u0435 \u04d9\u0441\u0435\u0440 \u0435\u0442\u043f\u0435\u0441\u0442\u0435\u043d \u043a\u043e\u043d\u0442\u0440\u0430\u0441\u0442\u0442\u044b \u0440\u0435\u0442\u0442\u0435\u0443 \u0441\u0438\u044f\u049b\u0442\u044b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443 \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u044b \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430\u043d\u044b\u04a3 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456\u043b\u0456\u0433\u0456 \u043e\u043d\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0437\u0435\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0441\u0430\u043f\u0430\u043d\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u0431\u0430\u0493\u0430 \u0436\u0435\u0442\u043f\u0435\u0441 \u049b\u04b1\u043d\u0434\u044b \u0435\u0442\u0435\u0434\u0456. \u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430 \u043c\u04d9\u043d\u0434\u0435\u0440\u0456\u043d\u0434\u0435 \u0435\u043a\u0456 \u0442\u04af\u0441\u0442\u0435 \u0448\u0430\u043c\u0430\u043b\u044b \u0441\u0430\u043d\u0434\u044b\u049b \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b \u0431\u043e\u043b\u0441\u0430, \u043e\u043b\u0430\u0440 \u0430\u0434\u0430\u043c \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b\u043d\u0430\u043d \u0441\u04d9\u043b \u0493\u0430\u043d\u0430 \u0435\u0440\u0435\u043a\u0448\u0435\u043b\u0435\u043d\u0435\u0434\u0456. \u0411\u04b1\u043b \u049b\u0430\u0441\u0438\u0435\u0442 RGB \u043d\u0435\u043c\u0435\u0441\u0435 CMYK \u04af\u0448\u0456\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441, \u043c\u04b1\u043d\u0434\u0430 \u0431\u0456\u0440\u0434\u0435\u0439 \u0441\u0430\u043d\u0434\u044b\u049b \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u049b\u0430\u0439 \u0436\u0435\u0440\u0434\u0435 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u049b\u0430\u043d\u044b\u043d\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u043a\u04af\u0440\u0442 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u04e9\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440\u0433\u0435 \u04d9\u043a\u0435\u043b\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441\u0442\u0456 \u0434\u04d9\u043b \u04e9\u043b\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u0430\u043d \u0430\u0448\u044b\u049b\u0442\u044b\u049b\u0442\u044b \u0430\u0436\u044b\u0440\u0430\u0442\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u0435\u0442\u0456\u043b\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443\u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441\u0442\u0456 \u0442\u04af\u0437\u0435\u0442\u0443\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">ICC \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0440\u0434\u0456\u0441\u0456\u043d\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441 \u0431\u04e9\u043b\u0456\u0433\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">RGB \u0436\u04d9\u043d\u0435 CMYK \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d\u0430\u043d \u0442\u044b\u0441 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435 \u0430\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">Delta-E \u0442\u04af\u0441 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b\u043d \u0435\u0441\u0435\u043f\u0442\u0435\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">CIE L*u*v* \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"step-text\">CIE L*u*v* \u0431\u0430\u043b\u0430\u043c\u0430\u043b\u044b \u043f\u0435\u0440\u0446\u0435\u043f\u0442\u0438\u0432\u0442\u0456 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 L*a*b* \u049b\u0430\u0442\u0430\u0440 \u04d9\u0437\u0456\u0440\u043b\u0435\u043d\u0434\u0456. \u0411\u04b1\u043b \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0442\u04af\u0441 \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443 \u0436\u04d9\u043d\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b, \u0430\u043b L*a*b* \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0441\u0438\u044f\u049b\u0442\u044b \u0448\u0435\u0433\u0435\u0440\u0435\u0442\u0456\u043d \u0442\u04af\u0441 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0436\u0438\u0456 \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"step-text\">Lab \u0441\u0438\u044f\u049b\u0442\u044b, L*u*v* \u0436\u0435\u04a3\u0456\u043b\u0434\u0456\u043a \u04af\u0448\u0456\u043d L* \u049b\u043e\u043b\u0434\u0430\u043d\u0430\u0434\u044b, \u0430\u043b u* \u0436\u04d9\u043d\u0435 v* \u0442\u04af\u0441\u0442\u0456\u043b\u0456\u043a \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0430\u043b\u0430\u0440\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0411\u04b1\u043b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440\u043b\u044b\u049b \u0445\u0430\u0431\u0430\u0440 \u0442\u0430\u0440\u0430\u0442\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456\u043d\u0434\u0435 \u0436\u04d9\u043d\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0442\u04af\u0441 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b\u043d \u0435\u0441\u0435\u043f\u0442\u0435\u0443\u043b\u0435\u0440\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"step-text\">L*a*b* \u043c\u0435\u043d L*u*v* \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b\u04a3 \u0431\u0456\u0440\u0456 L*u*v* \u0441\u04d9\u0443\u043b\u0435\u043b\u0435\u043d\u0443 \u0442\u04af\u0441\u0442\u0435\u0440\u0456 \u043c\u0435\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d\u0434\u044b\u0440\u0443\u0434\u044b \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b \u04e9\u04a3\u0434\u0435\u0443 \u04af\u0448\u0456\u043d \u0430\u0440\u043d\u0430\u0439\u044b \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d. \u041e\u043b \u043a\u043e\u043b\u043e\u0440\u0438\u043c\u0435\u0442\u0440\u0438\u044f \u043c\u0435\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d\u0434\u044b\u0440\u0443 \u0434\u0438\u0437\u0430\u0439\u043d\u044b\u043d\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0445\u0440\u043e\u043c\u0430\u0442\u0438\u0437\u043c \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u043e\u04a3\u0430\u0439 \u043a\u043e\u0440\u0440\u0435\u043b\u044f\u0446\u0438\u044f\u043b\u0430\u043d\u0430\u0442\u044b\u043d \u0445\u0440\u043e\u043c\u0430\u0442\u0438\u0437\u043c \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0442\u0430\u0440\u044b \u0442\u04b1\u0440\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u0436\u04d9\u043d\u0435 \u0445\u0430\u0431\u0430\u0440 \u0442\u0430\u0440\u0430\u0442\u0443 \u0441\u0430\u043b\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0411\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u0442\u04af\u0441 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b \u04e9\u043b\u0448\u0435\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u042d\u043c\u0438\u0441\u0441\u0438\u0432\u0442\u0456 \u0442\u04af\u0441\u0442\u0435\u0440 \u043c\u0435\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d\u0434\u044b\u0440\u0443 \u0434\u0438\u0437\u0430\u0439\u043d\u044b \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u043e\u0440\u0440\u0435\u043b\u044f\u0446\u0438\u044f\u043b\u044b\u049b \u0442\u04af\u0441 \u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430\u0441\u044b\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u0430\u043c\u0442\u0438\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- HSL, HSV, and Perceptual Spaces -->\n        <section id=\"hsl-spaces\" class=\"color-space-detail-section\">\n            <h2 class=\"section-title\">HSL, HSV \u0436\u04d9\u043d\u0435 Perceptual Color Spaces<\/h2>\n            \n            <div class=\"feature-card\">\n                <div class=\"feature-content\">\n                    <div class=\"feature-icon\">\n                        <i class=\"fas fa-adjust\"><\/i>\n                    <\/div>\n                    <h3 class=\"feature-title\">\u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0456<\/h3>\n                    <p class=\"feature-text\">RGB \u0436\u04d9\u043d\u0435 CMYK \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443 \u0442\u04b1\u0440\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0441\u0430, HSL (\u0420\u0435\u04a3\u043a, \u049b\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b, \u0430\u0448\u044b\u049b\u0442\u044b\u049b) \u0436\u04d9\u043d\u0435 HSV\/HSB (\u0420\u0435\u04a3\u043a, \u049b\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b, \u043c\u04d9\u043d\/\u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b) \u0430\u0434\u0430\u043c\u0434\u0430\u0440\u0434\u044b\u04a3 \u0442\u04af\u0441 \u0442\u0443\u0440\u0430\u043b\u044b \u049b\u0430\u043b\u0430\u0439 \u043e\u0439\u043b\u0430\u0439\u0442\u044b\u043d\u044b\u043d \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0440\u0434\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.<\/p>\n                    <p class=\"feature-text\">\u0411\u04b1\u043b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440 \u0442\u04af\u0441 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u044b\u043d (\u0440\u0435\u04a3\u043a\u0442\u0456) \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u049b \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0442\u0430\u0440\u044b\u043d\u0430\u043d (\u049b\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b \u0436\u04d9\u043d\u0435 \u0430\u0448\u044b\u049b\u0442\u044b\u049b\/\u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b) \u0431\u04e9\u043b\u0435\u0434\u0456, \u0431\u04b1\u043b \u043e\u043b\u0430\u0440\u0434\u044b \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0442\u04af\u0441 \u0442\u0430\u04a3\u0434\u0430\u0443, UI \u0434\u0438\u0437\u0430\u0439\u043d\u044b \u0436\u04d9\u043d\u0435 \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0441\u0442\u0456 \u0440\u0435\u0442\u0442\u0435\u0443 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b \u0431\u043e\u043b\u0430\u0442\u044b\u043d \u043a\u04e9\u0440\u043a\u0435\u043c \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b \u0435\u0442\u0435\u0434\u0456.<\/p>\n                    <p class=\"feature-text\">HSL \u0436\u04d9\u043d\u0435 HSV \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u0493\u044b &#8212; \u043e\u043b\u0430\u0440 \u0430\u0434\u0430\u043c\u0434\u0430\u0440\u0434\u044b\u04a3 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0442\u0430\u0431\u0438\u0493\u0438 \u0442\u04af\u0440\u0434\u0435 \u049b\u0430\u043b\u0430\u0439 \u043e\u0439\u043b\u0430\u0439\u0442\u044b\u043d\u044b \u0436\u04d9\u043d\u0435 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439\u0442\u044b\u043d\u044b\u043c\u0435\u043d \u0442\u044b\u0493\u044b\u0437 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0434\u0456. \u0411\u0456\u0440\u0435\u0443 \u00ab\u049b\u0430\u0440\u0430 \u043a\u04e9\u043a\u00bb \u043d\u0435\u043c\u0435\u0441\u0435 \u00ab\u0430\u0448\u044b\u049b \u049b\u044b\u0437\u044b\u043b\u00bb \u0436\u0430\u0441\u0430\u0493\u044b\u0441\u044b \u043a\u0435\u043b\u0433\u0435\u043d\u0434\u0435, \u043e\u043b\u0430\u0440 RGB \u043c\u04d9\u043d\u0434\u0435\u0440\u0456 \u0442\u04b1\u0440\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u0435\u043c\u0435\u0441, \u0440\u0435\u04a3\u043a, \u049b\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b \u0436\u04d9\u043d\u0435 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0442\u04b1\u0440\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u043e\u0439\u043b\u0430\u0439\u0434\u044b. \u0421\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u0434\u0438\u0437\u0430\u0439\u043d \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0442\u04af\u0441 \u0442\u0430\u04a3\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b \u0436\u0438\u0456 RGB \u0441\u044b\u0440\u0493\u044b\u0442\u043f\u0430\u043b\u0430\u0440\u044b\u043d \u0436\u04d9\u043d\u0435 HSL\/HSV \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d \u04b1\u0441\u044b\u043d\u0430\u0434\u044b.<\/p>\n                <\/div>\n            <\/div>\n            \n            <div class=\"features-grid\">\n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-palette\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">HSL \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"feature-text\">HSL \u0446\u0438\u043b\u0438\u043d\u0434\u0440\u043b\u0456\u043a \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442 \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0434\u0435\u0433\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456, \u0440\u0435\u04a3\u043a \u0431\u04b1\u0440\u044b\u0448 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 (0-360\u00b0) \u0442\u04af\u0441 \u0442\u04af\u0440\u0456\u043d, \u049b\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b (0-100%) \u0442\u04af\u0441 \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0430\u0448\u044b\u049b\u0442\u044b\u049b (0-100%) \u0442\u04af\u0441\u0442\u0456\u04a3 \u049b\u0430\u043d\u0448\u0430\u043b\u044b\u049b\u0442\u044b \u0430\u0448\u044b\u049b \u043d\u0435\u043c\u0435\u0441\u0435 \u043a\u04af\u04a3\u0433\u0456\u0440\u0442 \u0435\u043a\u0435\u043d\u0456\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">HSL \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0434\u0438\u0437\u0430\u0439\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b, \u0441\u0435\u0431\u0435\u0431\u0456 \u043e\u043d\u044b\u04a3 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043b\u0430\u0439 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439\u0442\u044b\u043d\u044b\u043c\u044b\u0437\u0434\u044b \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0440\u0434\u0435 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0430\u0434\u044b. \u041e\u043b CSS \u0430\u0440\u049b\u044b\u043b\u044b \u0432\u0435\u0431-\u04d9\u0437\u0456\u0440\u043b\u0435\u0443\u0434\u0435 \u043a\u0435\u04a3\u0456\u043d\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b, \u043c\u04b1\u043d\u0434\u0430 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 hsl() \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u0441\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443\u0493\u0430 \u0431\u043e\u043b\u0430\u0434\u044b. \u0411\u04b1\u043b \u0442\u04af\u0441 \u0441\u0445\u0435\u043c\u0430\u043b\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u043a\u04af\u0439\u043b\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0440\u0435\u0442\u0442\u0435\u0443\u0434\u0456 (\u043c\u0435\u04a3\u0437\u0435\u0440\u0434\u0456 \u0430\u043f\u0430\u0440\u0443, \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431.) \u04d9\u043b\u0434\u0435\u049b\u0430\u0439\u0434\u0430 \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0420\u0435\u04a3\u043a: \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0442\u04af\u0441 (\u049b\u044b\u0437\u044b\u043b, \u0441\u0430\u0440\u044b, \u0436\u0430\u0441\u044b\u043b, \u0442.\u0431.)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b: \u0442\u04af\u0441 \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u0493\u044b \u0441\u04b1\u0440\u0434\u0430\u043d (0%) \u0442\u0430\u0437\u0430 \u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d (100%)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u0430\u0440\u044b\u049b\u0442\u044b\u049b: \u049b\u0430\u0440\u0430\u0434\u0430\u043d (0%) \u0442\u04af\u0441\u0442\u0435\u043d \u0430\u049b\u049b\u0430 \u0434\u0435\u0439\u0456\u043d (100%) \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0412\u0435\u0431-\u0434\u0438\u0437\u0430\u0439\u043d \u0436\u04d9\u043d\u0435 CSS \u0442\u04af\u0441 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430 \u043a\u0435\u04a3 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u0430\u0448\u044b\u049b\u0442\u044b\u049b (100%) \u0440\u0435\u04a3\u043a\u043a\u0435 \u049b\u0430\u0440\u0430\u043c\u0430\u0441\u0442\u0430\u043d \u0430\u049b \u0442\u04af\u0441 \u0431\u0435\u0440\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u0430\u0437\u0430 \u0442\u04af\u0441\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u043e\u0440\u0442\u0430\u0448\u0430 \u0436\u0435\u04a3\u0456\u043b\u0434\u0456\u0433\u0456 (50%) \u0431\u0430\u0440 \u0441\u0438\u043c\u043c\u0435\u0442\u0440\u0438\u044f\u043b\u044b\u049b \u043c\u043e\u0434\u0435\u043b\u044c<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-fill-drip\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">HSV\/HSB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"feature-text\">HSV (HSB \u0434\u0435\u043f \u0442\u0435 \u0430\u0442\u0430\u043b\u0430\u0434\u044b) HSL-\u0433\u0435 \u04b1\u049b\u0441\u0430\u0441, \u0431\u0456\u0440\u0430\u049b \u0416\u0435\u04a3\u0456\u043b\u0434\u0456\u043a\u0442\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u041c\u04d9\u043d\/\u0416\u0430\u0440\u044b\u049b\u0442\u044b\u049b\u0442\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. HSV \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0434\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b (100%) \u049b\u0430\u043d\u044b\u049b\u0442\u044b\u0493\u044b\u043d\u0430 \u049b\u0430\u0440\u0430\u043c\u0430\u0441\u0442\u0430\u043d \u0442\u043e\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0456 \u0431\u0435\u0440\u0435\u0434\u0456, \u0430\u043b HSL \u0440\u0435\u0436\u0438\u043c\u0456\u043d\u0434\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u0430\u0448\u044b\u049b\u0442\u044b\u049b \u04d9\u0440\u049b\u0430\u0448\u0430\u043d \u0430\u049b \u0442\u04af\u0441\u0442\u0456 \u0431\u0435\u0440\u0435\u0434\u0456.<\/p>\n                        <p class=\"feature-text\">HSV \u043c\u043e\u0434\u0435\u043b\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0442\u0435\u0440\u0456\u043d\u0434\u0435 \u0436\u0438\u0456 \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b, \u0441\u0435\u0431\u0435\u0431\u0456 \u043e\u043b \u0441\u0443\u0440\u0435\u0442\u0448\u0456\u043b\u0435\u0440\u0434\u0456\u04a3 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u043e\u044f\u0443\u043c\u0435\u043d \u0430\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443 \u0436\u043e\u043b\u044b\u043d \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0440\u0434\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456 &#8212; \u049b\u0430\u0440\u0430 \u0442\u04af\u0441\u0442\u0435\u043d (\u0436\u0430\u0440\u044b\u049b\/\u043c\u04d9\u043d \u0436\u043e\u049b) \u0436\u04d9\u043d\u0435 \u0436\u043e\u0493\u0430\u0440\u044b\u0440\u0430\u049b \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0438\u0433\u043c\u0435\u043d\u0442 \u049b\u043e\u0441\u0443. \u0422\u04af\u0441\u0442\u0456\u04a3 \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0456\u043d \u0441\u0430\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u043e\u043d\u044b\u04a3 \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0456 \u043c\u0435\u043d \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0420\u0435\u04a3\u043a: \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0442\u04af\u0441 (\u049b\u044b\u0437\u044b\u043b, \u0441\u0430\u0440\u044b, \u0436\u0430\u0441\u044b\u043b, \u0442.\u0431.)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b: \u0442\u04af\u0441 \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u0493\u044b \u0430\u049b\/\u0441\u04b1\u0440\u0434\u0430\u043d (0%) \u0442\u0430\u0437\u0430 \u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d (100%)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041c\u04d9\u043d\/\u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b: \u049b\u0430\u0440\u0430\u0434\u0430\u043d (0%) \u0442\u043e\u043b\u044b\u049b \u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d (100%) \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b\u043b\u044b\u049b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0413\u0440\u0430\u0444\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0437\u0430\u0439\u043d \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u04af\u0441 \u0442\u0430\u04a3\u0434\u0430\u0443\u0434\u0430 \u0436\u0438\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u043c\u04d9\u043d (100%) \u0442\u043e\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0456 \u0435\u04a3 \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0435\u0440\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0420\u0435\u04a3\u043a\u0442\u0435\u0440 \u043c\u0435\u043d \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-eye\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">Munsell \u0442\u04af\u0441 \u0436\u04af\u0439\u0435\u0441\u0456<\/h3>\n                        <p class=\"feature-text\">Munsell \u0436\u04af\u0439\u0435\u0441\u0456 &#8212; \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u04af\u0448 \u04e9\u043b\u0448\u0435\u043c\u0434\u0435 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0430\u0442\u044b\u043d \u0442\u0430\u0440\u0438\u0445\u0438 \u043f\u0435\u0440\u0446\u0435\u043f\u0442\u0438\u0432\u0442\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456: \u0440\u0435\u04a3\u043a, \u043c\u04d9\u043d (\u0430\u0448\u044b\u049b\u0442\u044b\u049b) \u0436\u04d9\u043d\u0435 \u0445\u0440\u043e\u043c\u0430 (\u0442\u04af\u0441 \u0442\u0430\u0437\u0430\u043b\u044b\u0493\u044b). \u041e\u043b \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0443\u0434\u044b\u04a3 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u04d9\u0434\u0456\u0441\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d.<\/p>\n                        <p class=\"feature-text\">\u041f\u0440\u043e\u0444\u0435\u0441\u0441\u043e\u0440 \u0410\u043b\u044c\u0431\u0435\u0440\u0442 \u0425.\u041c\u0443\u043d\u0441\u0435\u043b\u043b 20 \u0493\u0430\u0441\u044b\u0440\u0434\u044b\u04a3 \u0431\u0430\u0441\u044b\u043d\u0434\u0430 \u04d9\u0437\u0456\u0440\u043b\u0435\u0433\u0435\u043d \u0431\u04b1\u043b \u0436\u04af\u0439\u0435 \u0440\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f\u043b\u044b\u049b \u0431\u043e\u043b\u0434\u044b, \u04e9\u0439\u0442\u043a\u0435\u043d\u0456 \u043e\u043b \u0444\u0438\u0437\u0438\u043a\u0430\u043b\u044b\u049b \u049b\u0430\u0441\u0438\u0435\u0442\u0442\u0435\u0440\u0433\u0435 \u0435\u043c\u0435\u0441, \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u0434\u044b\u04a3 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456\u043b\u0456\u0433\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0493\u0430\u043d \u0430\u043b\u0493\u0430\u0448\u049b\u044b\u043b\u0430\u0440\u0434\u044b\u04a3 \u0431\u0456\u0440\u0456 \u0431\u043e\u043b\u0434\u044b. \u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0446\u0438\u0444\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0456 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0434\u0435\u043d \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b, \u0431\u04b1\u043b \u04af\u0448 \u04e9\u043b\u0448\u0435\u043c\u0434\u0456 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0431\u043e\u044f\u043b\u0493\u0430\u043d \u0442\u04af\u0441\u0442\u0456 \u0447\u0438\u043f\u0442\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d \u0444\u0438\u0437\u0438\u043a\u0430\u043b\u044b\u049b \u0436\u04af\u0439\u0435 \u0431\u043e\u043b\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0421\u0430\u043d\u0434\u044b\u049b \u0442\u04af\u0441\u0442\u0456 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0434\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430 \u0431\u043e\u043b\u0493\u0430\u043d, \u0431\u0456\u0440\u0430\u049b \u04d9\u043b\u0456 \u0434\u0435 \u043a\u0435\u0439\u0431\u0456\u0440 \u04e9\u0440\u0456\u0441\u0442\u0435\u0440\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0437\u0430\u043c\u0430\u043d\u0493\u044b \u0442\u04af\u0441 \u0442\u0435\u043e\u0440\u0438\u044f\u0441\u044b\u043d\u044b\u04a3 \u0434\u0430\u043c\u0443\u044b\u043d\u0430 \u044b\u049b\u043f\u0430\u043b \u0435\u0442\u0442\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u043e\u043f\u044b\u0440\u0430\u049b\u0442\u044b \u0436\u0456\u043a\u0442\u0435\u0443\u0434\u0435, \u043a\u04e9\u0440\u043a\u0435\u043c\u0434\u0456\u043a \u0431\u0456\u043b\u0456\u043c \u0431\u0435\u0440\u0443\u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u0430 \u04d9\u043b\u0456 \u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u0444\u043e\u0440\u043c\u0443\u043b\u0430\u043b\u0430\u0440\u0434\u0430\u043d \u0433\u04e9\u0440\u0456 \u043f\u0435\u0440\u0446\u0435\u043f\u0442\u0438\u0432\u0442\u0456 \u049b\u0430\u0448\u044b\u049b\u0442\u044b\u049b\u049b\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041e\u0440\u0442\u0430\u043b\u044b\u049b \u043e\u0441\u044c\u0442\u0435\u043d \u0448\u044b\u0493\u0430\u0442\u044b\u043d \u0440\u0435\u04a3\u043a\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 \u0430\u0493\u0430\u0448 \u0442\u04d9\u0440\u0456\u0437\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u044b\u043c\u0434\u0430\u0493\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0430\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-bezier-curve\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">HCL \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"feature-text\">HCL (Renk, Chroma, Luminance) \u2013 HSL \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u0430\u0431\u0438\u0493\u0430\u0442\u044b\u043d \u0437\u0435\u0440\u0442\u0445\u0430\u043d\u0430\u043d\u044b\u04a3 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456\u043b\u0456\u0433\u0456\u043c\u0435\u043d \u04af\u0439\u043b\u0435\u0441\u0442\u0456\u0440\u0435\u0442\u0456\u043d \u043f\u0435\u0440\u0446\u0435\u043f\u0442\u0438\u0432\u0442\u0456 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456. \u0411\u04b1\u043b \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0442\u04af\u0441 \u043f\u0430\u043b\u0438\u0442\u0440\u0430\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u0433\u0440\u0430\u0434\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b, \u043e\u043b\u0430\u0440 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u043f\u0435\u043d \u049b\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b\u0442\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0434\u0456.<\/p>\n                        <p class=\"feature-text\">HSL \u043d\u0435\u043c\u0435\u0441\u0435 HSV \u0441\u0438\u044f\u049b\u0442\u044b \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u0434\u0430 \u043a\u0435\u04a3\u0456\u043d\u0435\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u043b\u043c\u0435\u0433\u0435\u043d\u0456\u043c\u0435\u043d, HCL (\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0431\u0430\u0441\u049b\u0430\u0448\u0430 \u0440\u0435\u0442\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435 LCh \u0434\u0435\u043f \u0442\u0435 \u0430\u0442\u0430\u043b\u0430\u0434\u044b) \u0432\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043c\u0435\u043d \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u043e\u0431\u0430\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u043d\u044b\u043c\u0430\u043b \u0431\u043e\u043b\u0443\u0434\u0430, \u0441\u0435\u0431\u0435\u0431\u0456 \u043e\u043b \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u0493\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0442\u0456\u043d \u0442\u04af\u0441 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u043c\u04d9\u043d \u043c\u04d9\u043d\u0434\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04af\u0441 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0432\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">HSL\/HSV-\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443 \u0436\u0430\u0493\u044b\u043d\u0430\u043d \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04b1\u0440\u0430\u049b\u0442\u044b \u0442\u04af\u0441 \u0448\u043a\u0430\u043b\u0430\u043b\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u043c\u0430\u0448\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d, \u0431\u0456\u0440\u0430\u049b \u043f\u043e\u043b\u044f\u0440\u043b\u044b\u049b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0430\u043b\u0430\u0440\u044b \u0431\u0430\u0440<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0432\u0438\u0437\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f\u043b\u0430\u0443\u0434\u0430 \u0436\u04d9\u043d\u0435 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u0434\u0438\u0437\u0430\u0439\u043d\u0434\u0430 \u0436\u0438\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041d\u0435\u0493\u04b1\u0440\u043b\u044b\u043c \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u04af\u0441 \u0441\u0445\u0435\u043c\u0430\u043b\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- YCbCr and Video Color Spaces -->\n        <section id=\"video-spaces\" class=\"color-space-detail-section\">\n            <h2 class=\"section-title\">YCbCr \u0436\u04d9\u043d\u0435 \u0431\u0435\u0439\u043d\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456<\/h2>\n            \n            <div class=\"feature-card\">\n                <div class=\"feature-content\">\n                    <div class=\"feature-icon\">\n                        <i class=\"fas fa-film\"><\/i>\n                    <\/div>\n                    <h3 class=\"feature-title\">\u0416\u0430\u0440\u044b\u049b\u0442\u044b\u049b-\u0425\u0440\u043e\u043c\u0438\u043d\u0430\u043d\u0442\u0442\u044b \u0431\u04e9\u043b\u0443<\/h3>\n                    <p class=\"feature-text\">\u0411\u0435\u0439\u043d\u0435 \u0436\u04d9\u043d\u0435 \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u0441\u044b\u0493\u044b\u043c\u0434\u0430\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 \u043a\u04e9\u0431\u0456\u043d\u0435\u0441\u0435 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u043b\u044b\u049b\u0442\u044b (\u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b\u0442\u044b) \u0445\u0440\u043e\u043c\u0434\u044b\u049b (\u0442\u04af\u0441) \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u0430\u043d \u0431\u04e9\u043b\u0435\u0442\u0456\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. \u0411\u04b1\u043b \u0442\u04d9\u0441\u0456\u043b \u0430\u0434\u0430\u043c\u043d\u044b\u04a3 \u0432\u0438\u0437\u0443\u0430\u043b\u0434\u044b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441 \u04e9\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440\u0456\u043d\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0431\u04e9\u043b\u0448\u0435\u043a\u0442\u0435\u0440\u0456\u043d\u0435 \u0436\u043e\u0493\u0430\u0440\u044b \u0441\u0435\u0437\u0456\u043c\u0442\u0430\u043b\u0434\u044b\u0493\u044b\u043d\u044b\u04a3 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u0493\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b.<\/p>\n                    <p class=\"feature-text\">\u0416\u0430\u0440\u044b\u049b\u0442\u044b\u043b\u044b\u049b\u0442\u044b \u0445\u0440\u043e\u043c\u0434\u044b\u049b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0493\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u043e\u0493\u0430\u0440\u044b \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u049b\u043f\u0435\u043d \u043a\u043e\u0434\u0442\u0430\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04b1\u043b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0493\u0430\u043d \u043a\u0435\u0441\u043a\u0456\u043d \u0441\u0430\u043f\u0430\u0441\u044b\u043d \u0441\u0430\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u0441\u044b\u0493\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0411\u04b1\u043b \u043a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u0441\u0430\u043d\u0434\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 \u043c\u0435\u043d \u049b\u044b\u0441\u0443 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.<\/p>\n                    <p class=\"feature-text\">\u0410\u0434\u0430\u043c\u043d\u044b\u04a3 \u043a\u04e9\u0440\u0443 \u0436\u04af\u0439\u0435\u0441\u0456 \u0442\u04af\u0441\u0442\u0456\u04a3 \u04e9\u0437\u0433\u0435\u0440\u0443\u0456\u043d\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b\u0442\u044b\u04a3 \u04e9\u0437\u0433\u0435\u0440\u0443\u0456\u043d\u0435 \u04d9\u043b\u0434\u0435\u049b\u0430\u0439\u0434\u0430 \u0441\u0435\u0437\u0456\u043c\u0442\u0430\u043b. \u0411\u04b1\u043b \u0431\u0438\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u044b\u049b \u0444\u0430\u043a\u0442 \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u0441\u044b\u0493\u044b\u043c\u0434\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u04af\u0441\u043a\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d\u0434\u044b\u0440\u0443 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u0430 \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u04e9\u0442\u043a\u0456\u0437\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0442\u0456\u043b\u0456\u0433\u0456\u043d \u0431\u04e9\u043b\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0425\u0440\u043e\u043c\u0430 \u0456\u0448\u043a\u0456 \u04af\u043b\u0433\u0456\u043b\u0435\u0443 \u0434\u0435\u043f \u0430\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0431\u04b1\u043b \u0442\u04d9\u0441\u0456\u043b \u049b\u044b\u0441\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u043a\u04e9\u0437\u0433\u0435 \u0434\u0435\u0440\u043b\u0456\u043a \u0431\u0456\u0440\u0434\u0435\u0439 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0432\u0438\u0437\u0443\u0430\u043b\u0434\u044b \u0441\u0430\u043f\u0430\u043d\u044b \u0441\u0430\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0434\u0435\u0440\u0456\u043d 50% \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0430\u0437\u0430\u0439\u0442\u0430 \u0430\u043b\u0430\u0434\u044b.<\/p>\n                <\/div>\n            <\/div>\n            \n            <div class=\"steps-container\">\n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">YCbCr \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"step-text\">YCbCr &#8212; \u0441\u0430\u043d\u0434\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u043c\u0435\u043d \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u0441\u044b\u0493\u0443\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0435\u04a3 \u043a\u04e9\u043f \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456. Y \u0436\u0430\u0440\u049b\u044b\u0440\u0430\u0443\u0434\u044b \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456, \u0430\u043b Cb \u0436\u04d9\u043d\u0435 Cr \u043a\u04e9\u043a-\u0430\u0439\u044b\u0440\u043c\u0430 \u0436\u04d9\u043d\u0435 \u049b\u044b\u0437\u044b\u043b-\u0445\u0440\u043e\u043c\u0438\u043d\u0430\u043d\u0442\u0442\u044b\u049b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441 \u0431\u04e9\u043b\u0456\u043a\u0442\u0435\u0440. \u0411\u04b1\u043b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a YUV-\u043c\u0435\u043d \u0442\u044b\u0493\u044b\u0437 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b, \u0431\u0456\u0440\u0430\u049b \u0441\u0430\u043d\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0433\u0435 \u0431\u0435\u0439\u0456\u043c\u0434\u0435\u043b\u0433\u0435\u043d.<\/p>\n                        <p class=\"step-text\">JPEG \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0456, MPEG \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456 \u0436\u04d9\u043d\u0435 \u0441\u0430\u043d\u0434\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456\u043d\u0456\u04a3 \u043a\u04e9\u043f\u0448\u0456\u043b\u0456\u0433\u0456 YCbCr \u043a\u043e\u0434\u0442\u0430\u0443\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. \u0411\u04b1\u043b \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0434\u0435 &#171;\u0445\u0440\u043e\u043c\u0430 \u049b\u043e\u0441\u0430\u043b\u049b\u044b \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043d \u0430\u043b\u0443&#187; \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u0441\u0456 (Cb \u0436\u04d9\u043d\u0435 Cr \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443) \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u043b\u044b\u049b-\u0445\u0440\u043e\u043c\u0438\u043d\u0430\u043d\u0441\u0442\u044b\u049b \u0431\u04e9\u043b\u0443\u0434\u0456\u04a3 \u0430\u0440\u049b\u0430\u0441\u044b\u043d\u0434\u0430 \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u043e\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"step-text\">\u0425\u0440\u043e\u043c\u0430\u043d\u044b\u04a3 \u0456\u0448\u043a\u0456 \u0441\u044b\u043d\u0430\u043c\u0430\u0441\u044b \u04d9\u0434\u0435\u0442\u0442\u0435 4:2:0 \u043d\u0435\u043c\u0435\u0441\u0435 4:2:2 \u0441\u0438\u044f\u049b\u0442\u044b \u04af\u0448 \u0441\u0430\u043d\u043d\u044b\u04a3 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0434\u0456. 4:2:0 \u0456\u0448\u043a\u0456 \u0434\u0438\u0441\u043a\u0440\u0435\u0442\u0438\u0437\u0430\u0446\u0438\u044f\u0434\u0430 (\u0430\u0493\u044b\u043d\u0434\u044b \u0431\u0435\u0439\u043d\u0435\u0434\u0435 \u0436\u0438\u0456) \u04d9\u0440\u0431\u0456\u0440 \u0442\u04e9\u0440\u0442 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u04af\u043b\u0433\u0456\u0441\u0456 \u04af\u0448\u0456\u043d \u043a\u04e9\u043b\u0434\u0435\u043d\u0435\u04a3\u0456\u043d\u0435\u043d \u0442\u0435\u043a \u0435\u043a\u0456 \u0445\u0440\u043e\u043c\u0434\u044b\u049b \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u0431\u0430\u0440, \u0430\u043b \u0442\u0456\u0433\u0456\u043d\u0435\u043d \u0435\u0448\u049b\u0430\u0439\u0441\u044b\u0441\u044b \u0436\u043e\u049b. \u0411\u04b1\u043b \u0442\u04af\u0441 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u0436\u0430\u0440\u049b\u044b\u0440\u0430\u0443 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d\u044b\u04a3 \u0442\u04e9\u0440\u0442\u0442\u0435\u043d \u0431\u0456\u0440\u0456\u043d\u0435 \u0434\u0435\u0439\u0456\u043d \u0430\u0437\u0430\u0439\u0442\u044b\u043f, \u0442\u0430\u043c\u0430\u0448\u0430 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u0441\u0430\u043f\u0430\u043d\u044b \u0441\u0430\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u0430\u0437\u0430\u0439\u0442\u0430\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0406\u0441 \u0436\u04af\u0437\u0456\u043d\u0434\u0435 \u0431\u0430\u0440\u043b\u044b\u049b \u0441\u0430\u043d\u0434\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">JPEG \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u049b\u044b\u0441\u0443 \u043d\u0435\u0433\u0456\u0437\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u0438\u0456\u043c\u0434\u0456 \u0445\u0440\u043e\u043c\u0430\u043b\u044b\u049b \u04af\u043b\u0433\u0456\u043b\u0435\u0443\u0434\u0456 \u049b\u043e\u0441\u0430\u0434\u044b (4:2:0, 4:2:2, 4:4:4)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04d8\u0440 \u0442\u04af\u0440\u043b\u0456 \u0431\u0435\u0439\u043d\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440 \u0431\u0430\u0440<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">H.264, H.265, VP9 \u0436\u04d9\u043d\u0435 AV1 \u043a\u043e\u0434\u0435\u043a\u0442\u0435\u0440\u0456\u043d\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">YUV \u0442\u04af\u0441\u0442\u0456 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                        <p class=\"step-text\">YUV \u0442\u04af\u0440\u043b\u0456-\u0442\u04af\u0441\u0442\u0456 \u0436\u04d9\u043d\u0435 \u0430\u049b-\u049b\u0430\u0440\u0430 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u043a\u0435\u0440\u0456 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0430\u043d\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u04d9\u0437\u0456\u0440\u043b\u0435\u043d\u0433\u0435\u043d. YCbCr \u0441\u0438\u044f\u049b\u0442\u044b, \u043e\u043b \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u043b\u044b\u049b\u0442\u044b (Y) \u0445\u0440\u043e\u043c\u0438\u043d\u0430\u043d\u0442\u0442\u044b\u043b\u044b\u049b (U \u0436\u04d9\u043d\u0435 V) \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u044b\u043d\u0430\u043d \u0431\u04e9\u043b\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">YUV \u0436\u0438\u0456 \u0430\u0443\u044b\u0437\u0435\u043a\u0456 \u0442\u0456\u043b\u0434\u0435 \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b-\u0445\u0440\u043e\u043c\u0438\u043d\u0430\u0442\u0438\u0432\u0442\u0456\u043a \u043f\u0456\u0448\u0456\u043c\u0433\u0435 \u0441\u0456\u043b\u0442\u0435\u043c\u0435 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b, \u0430\u043b \u0448\u044b\u043d\u0430\u0439\u044b YUV \u0430\u043d\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430 \u0442\u04d9\u043d. \u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0446\u0438\u0444\u0440\u043b\u044b\u049b \u0436\u04af\u0439\u0435\u043b\u0435\u0440 \u04d9\u0434\u0435\u0442\u0442\u0435 YCbCr \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b, \u0434\u0435\u0433\u0435\u043d\u043c\u0435\u043d \u0442\u0435\u0440\u043c\u0438\u043d\u0434\u0435\u0440 \u0436\u0438\u0456 \u0448\u0430\u0442\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0430\u0434\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0456\u0440-\u0431\u0456\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"step-text\">YUV-\u0442\u0456\u04a3 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0434\u0430\u043c\u0443\u044b \u0431\u0430\u0440 \u0430\u049b-\u049b\u0430\u0440\u0430 \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440\u043b\u0430\u0440\u043c\u0435\u043d \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0441\u0430\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u0442\u04af\u0440\u043b\u0456-\u0442\u04af\u0441\u0442\u0456 \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u0441\u0438\u0433\u043d\u0430\u043b\u0434\u0430\u0440\u044b\u043d \u0442\u0430\u0440\u0430\u0442\u0443 \u043c\u04d9\u0441\u0435\u043b\u0435\u0441\u0456\u043d \u0448\u0435\u0448\u043a\u0435\u043d \u0442\u0430\u043c\u0430\u0448\u0430 \u0438\u043d\u0436\u0435\u043d\u0435\u0440\u043b\u0456\u043a \u0436\u0435\u0442\u0456\u0441\u0442\u0456\u043a \u0431\u043e\u043b\u0434\u044b. \u0422\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0430\u049b-\u049b\u0430\u0440\u0430 \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440\u043b\u0430\u0440 \u0435\u043b\u0435\u043c\u0435\u0439\u0442\u0456\u043d \u0435\u0442\u0456\u043f \u043a\u043e\u0434\u0442\u0430\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0438\u043d\u0436\u0435\u043d\u0435\u0440\u043b\u0435\u0440 \u0431\u0456\u0440 \u0445\u0430\u0431\u0430\u0440 \u0442\u0430\u0440\u0430\u0442\u0443\u0434\u044b \u0435\u043a\u0456 \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430 \u0434\u0430 \u043a\u04e9\u0440\u0443\u0433\u0435 \u0431\u043e\u043b\u0430\u0442\u044b\u043d \u0436\u04af\u0439\u0435\u043d\u0456 \u0436\u0430\u0441\u0430\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0434\u0430\u043c\u0443\u044b\u043d\u0434\u0430\u0493\u044b \u0442\u0430\u0440\u0438\u0445\u0438 \u043c\u0430\u04a3\u044b\u0437\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">YCbCr \u04af\u0448\u0456\u043d \u0436\u0430\u043b\u043f\u044b \u0442\u0435\u0440\u043c\u0438\u043d \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u0438\u0456 \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04d8\u0440 \u0442\u04af\u0440\u043b\u0456 \u0430\u043d\u0430\u043b\u043e\u0433\u0442\u044b\u049b \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440 \u0431\u0430\u0440<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">PAL, NTSC \u0436\u04d9\u043d\u0435 SECAM \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 YUV \u0435\u043d\u0433\u0456\u0437\u0443\u043b\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u049b-\u049b\u0430\u0440\u0430 \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440\u043c\u0435\u043d \u043a\u0435\u0440\u0456 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">Rec.709 \u0436\u04d9\u043d\u0435 HD \u0431\u0435\u0439\u043d\u0435<\/h3>\n                        <p class=\"step-text\">Rec.709 (ITU-R BT.709 \u04b1\u0441\u044b\u043d\u044b\u0441\u044b) \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b \u0436\u043e\u0493\u0430\u0440\u044b \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440 \u04af\u0448\u0456\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0436\u04d9\u043d\u0435 \u043a\u043e\u0434\u0442\u0430\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. \u041e\u043b sRGB-\u0433\u0435 \u04b1\u049b\u0441\u0430\u0441 \u0433\u0430\u043c\u043c\u0430\u0441\u044b \u0431\u0430\u0440 HD \u043c\u0430\u0437\u043c\u04b1\u043d\u044b \u04af\u0448\u0456\u043d RGB \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b\u043b\u0430\u0440\u044b\u043d \u0436\u04d9\u043d\u0435 YCbCr \u043a\u043e\u0434\u0442\u0430\u0443\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"step-text\">\u0411\u04b1\u043b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0445\u0430\u0431\u0430\u0440 \u0442\u0430\u0440\u0430\u0442\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456\u043d\u0434\u0435 HD \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u04e9\u043d\u0434\u0456\u0440\u0443 \u043c\u0435\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0434\u0435\u0433\u0456 \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0456\u043a\u0442\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. \u041e\u043b RGB-\u0442\u0430\u043d YCbCr-\u0433\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u0448\u0442\u0435\u0440\u0456\u043d\u0435, \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d\u0430 (\u0433\u0430\u043c\u043c\u0430) \u0436\u04d9\u043d\u0435 \u043c\u0430\u0442\u0440\u0438\u0446\u0430\u043b\u044b\u049b \u043a\u043e\u044d\u0444\u0444\u0438\u0446\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u043c\u0442\u0438\u0434\u044b.<\/p>\n                        <p class=\"step-text\">Rec.709 1990 \u0436\u044b\u043b\u0434\u0430\u0440\u044b HDTV \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u0430\u043d, \u043e\u043b \u0442\u0435\u043a \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0493\u0430\u043d\u0430 \u0435\u043c\u0435\u0441, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u043a\u0430\u0434\u0440 \u0436\u0438\u0456\u043b\u0456\u0433\u0456\u043d, \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u049b\u0442\u044b \u0436\u04d9\u043d\u0435 \u043a\u0430\u0434\u0440 \u0430\u0440\u0430\u049b\u0430\u0442\u044b\u043d\u0430\u0441\u044b\u043d \u0434\u0430 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456. \u041e\u043d\u044b\u04a3 \u0433\u0430\u043c\u043c\u0430 \u049b\u0438\u0441\u044b\u0493\u044b sRGB-\u0434\u0435\u043d \u0430\u0437\u0434\u0430\u043f \u0435\u0440\u0435\u043a\u0448\u0435\u043b\u0435\u043d\u0435\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u043e\u043b\u0430\u0440 \u0431\u0456\u0440\u0434\u0435\u0439 \u0442\u04af\u0441\u0442\u0456 \u0431\u0456\u0440\u0456\u043d\u0448\u0456\u043b\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u04e9\u043b\u0456\u0441\u0435\u0434\u0456. Rec.709 \u04e9\u0437 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0434\u0430 \u0440\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f\u043b\u044b\u049b \u0431\u043e\u043b\u0493\u0430\u043d\u044b\u043c\u0435\u043d, Rec.2020 \u0436\u04d9\u043d\u0435 HDR \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u0436\u0430\u04a3\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u044b \u043c\u0435\u043d \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">HD \u0442\u0435\u043b\u0435\u0434\u0438\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">sRGB-\u0433\u0435 \u04b1\u049b\u0441\u0430\u0441, \u0431\u0456\u0440\u0430\u049b \u043a\u043e\u0434\u0442\u0430\u0443\u044b \u0431\u0430\u0441\u049b\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">Blu-ray \u0434\u0438\u0441\u043a\u0456\u043b\u0435\u0440\u0456 \u043c\u0435\u043d HD \u0442\u0430\u0440\u0430\u0442\u044b\u043b\u044b\u043c\u0434\u0430\u0440\u044b\u043d\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u0440\u043d\u0430\u0439\u044b \u0441\u044b\u0437\u044b\u049b\u0442\u044b \u0435\u043c\u0435\u0441 \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u0441\u044b\u043d (\u0433\u0430\u043c\u043c\u0430) \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">PQ \u0436\u04d9\u043d\u0435 HLG \u0441\u0438\u044f\u049b\u0442\u044b HDR \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043c\u0435\u043d \u0442\u043e\u043b\u044b\u049b\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\"><i class=\"fas fa-cube\"><\/i><\/div>\n                    <div class=\"step-content\">\n                        <h3 class=\"step-title\">\u0416\u043e\u0493\u0430\u0440\u044b \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0434\u0430\u0493\u044b \u0431\u0435\u0439\u043d\u0435<\/h3>\n                        <p class=\"step-text\">\u0416\u043e\u0493\u0430\u0440\u044b \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d (HDR) \u0431\u0435\u0439\u043d\u0435 \u0434\u04d9\u0441\u0442\u04af\u0440\u043b\u0456 \u0431\u0435\u0439\u043d\u0435\u043d\u0456\u04a3 \u0442\u04af\u0441 \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d \u0434\u0430, \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0434\u0430 \u043a\u0435\u04a3\u0435\u0439\u0442\u0435\u0434\u0456. HDR10, Dolby Vision \u0436\u04d9\u043d\u0435 HLG (Hybrid Log-Gamma) \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440 \u0431\u04b1\u043b \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u049b\u0430\u043b\u0430\u0439 \u043a\u043e\u0434\u0442\u0430\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0436\u04d9\u043d\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b.<\/p>\n                        <p class=\"step-text\">HDR \u0431\u0435\u0439\u043d\u0435\u0441\u0456 \u04d9\u0434\u0435\u0442\u0442\u0435 PQ (Perceptual Quantizer, SMPTE ST 2084 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d) \u0441\u0438\u044f\u049b\u0442\u044b \u0436\u0430\u04a3\u0430 \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d (EOTF) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b, \u043e\u043b\u0430\u0440 \u0434\u04d9\u0441\u0442\u04af\u0440\u043b\u0456 \u0433\u0430\u043c\u043c\u0430 \u049b\u0438\u0441\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0434\u0435\u04a3\u0433\u0435\u0439\u043b\u0435\u0440\u0456\u043d\u0456\u04a3 \u04d9\u043b\u0434\u0435\u049b\u0430\u0439\u0434\u0430 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435 \u0430\u043b\u0430\u0434\u044b. P3 \u043d\u0435\u043c\u0435\u0441\u0435 Rec.2020 \u0441\u0438\u044f\u049b\u0442\u044b \u043a\u0435\u04a3 \u0442\u04af\u0441\u0442\u0456 \u0433\u0430\u043c\u043c\u0430\u043b\u0430\u0440\u043c\u0435\u043d \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0431\u04b1\u043b \u04d9\u043b\u0434\u0435\u049b\u0430\u0439\u0434\u0430 \u0448\u044b\u043d\u0430\u0439\u044b \u0436\u04d9\u043d\u0435 \u04d9\u0441\u0435\u0440\u043b\u0456 \u043a\u04e9\u0440\u0443 \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u0439\u0434\u044b.<\/p>\n                        <p class=\"step-text\">SDR \u043c\u0435\u043d HDR \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d\u044b\u04a3 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b \u043a\u0435\u0440\u0435\u043c\u0435\u0442 &#8212; HDR \u0430\u0434\u0430\u043c \u043a\u04e9\u0437\u0456 \u043d\u0430\u049b\u0442\u044b \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043b\u0430\u0439 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0439\u0442\u044b\u043d\u044b\u043d\u0430 \u04b1\u049b\u0441\u0430\u0441, \u0442\u0435\u0440\u0435\u04a3 \u043a\u04e9\u043b\u0435\u04a3\u043a\u0435\u043b\u0435\u0440\u0434\u0435\u043d \u0431\u0430\u0441\u0442\u0430\u043f \u0436\u0430\u0440\u049b\u044b\u043d \u0436\u0430\u0440\u044b\u049b \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440\u0433\u0435 \u0434\u0435\u0439\u0456\u043d \u0431\u0456\u0440 \u043a\u0430\u0434\u0440\u0434\u0430 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435 \u0430\u043b\u0430\u0434\u044b. \u0411\u04b1\u043b \u0444\u0438\u043b\u044c\u043c \u043c\u0435\u043d \u0431\u0435\u0439\u043d\u0435 \u0442\u0430\u0440\u0438\u0445\u044b\u043d\u0434\u0430 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d \u044d\u043a\u0441\u043f\u043e\u0437\u0438\u0446\u0438\u044f \u043c\u0435\u043d \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0434\u0430\u0493\u044b \u044b\u043c\u044b\u0440\u0430\u0493\u0430 \u043a\u0435\u043b\u0443 \u049b\u0430\u0436\u0435\u0442\u0442\u0456\u043b\u0456\u0433\u0456\u043d \u0436\u043e\u044f\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441 \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0434\u0430, \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0434\u0430 \u043a\u0435\u04a3\u0435\u0439\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">PQ \u0436\u04d9\u043d\u0435 HLG \u0441\u0438\u044f\u049b\u0442\u044b \u0436\u0430\u04a3\u0430 \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">HDR10 \u0441\u0442\u0430\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u043c\u0435\u043d 10 \u0431\u0438\u0442\u0442\u0456\u043a \u0442\u04af\u0441\u0442\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">Dolby Vision \u0441\u0430\u0445\u043d\u0430\u043b\u044b\u049b \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 12 \u0431\u0438\u0442\u0442\u0456\u043a \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u04b1\u0441\u044b\u043d\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">HLG \u0445\u0430\u0431\u0430\u0440 \u0442\u0430\u0440\u0430\u0442\u0443 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u0433\u0456 \u04af\u0448\u0456\u043d \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- Comparison Section -->\n        <section id=\"color-comparison\" class=\"comparison-section\">\n            <h2 class=\"section-title\">\u0416\u0430\u043b\u043f\u044b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443<\/h2>\n            \n            <div class=\"formats-container\">\n                <h3 class=\"formats-title\">\u0411\u0456\u0440 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456<\/h3>\n                <p class=\"formats-subtitle\">\u0411\u04b1\u043b \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0435\u04a3 \u043a\u04e9\u043f \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0436\u0430\u0493\u0434\u0430\u0439\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0442\u04af\u0441\u0456\u043d\u0443 \u0441\u0456\u0437\u0434\u0456\u04a3 \u043d\u0430\u049b\u0442\u044b \u049b\u0430\u0436\u0435\u0442\u0442\u0456\u043b\u0456\u043a\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <h3 class=\"feature-title\">RGB \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443<\/h3>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>sRGB:<\/strong> \u0415\u04a3 \u043a\u0456\u0448\u0456 \u0433\u0430\u043c\u043c\u0430, \u0432\u0435\u0431 \u04af\u0448\u0456\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442, \u04d9\u043c\u0431\u0435\u0431\u0430\u043f \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>Adobe RGB:<\/strong> \u041a\u0435\u04a3\u0456\u0440\u0435\u043a \u0433\u0430\u043c\u043c\u0430, \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 \u0436\u0430\u0441\u044b\u043b-\u043a\u04e9\u0433\u0456\u043b\u0434\u0456\u0440 \u0430\u0439\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>P3 \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u0456:<\/strong> Apple \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u049b\u044b\u0437\u044b\u043b \u0436\u04d9\u043d\u0435 \u0436\u0430\u0441\u044b\u043b \u0442\u04af\u0441\u0442\u0435\u0440<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>ProPhoto RGB:<\/strong> \u04e8\u0442\u0435 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430, 16 \u0431\u0438\u0442\u0442\u0456\u043a \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u043a\u0442\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456, \u0441\u0443\u0440\u0435\u0442\u043a\u0435 \u0442\u04af\u0441\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u04b0\u0441\u044b\u043d\u044b\u0441 2020:<\/strong> 4K\/8K \u0431\u0435\u0439\u043d\u0435\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0443\u043b\u044c\u0442\u0440\u0430 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430, \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u049b\u0430 \u0431\u0430\u0493\u044b\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <h3 class=\"feature-title\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u044b<\/h3>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>CMYK:<\/strong> \u0421\u0443\u0431\u0442\u0440\u0430\u043a\u0442\u0438\u0432\u0442\u0456, \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0493\u0430 \u0431\u0430\u0493\u044b\u0442\u0442\u0430\u043b\u0493\u0430\u043d, RGB-\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u043a\u0456\u0448\u0456\u0440\u0435\u043a \u0433\u0430\u043c\u043c\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0417\u0435\u0440\u0442\u0445\u0430\u043d\u0430:<\/strong> \u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437, \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u0434\u0430 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456, \u0435\u04a3 \u04af\u043b\u043a\u0435\u043d \u0433\u0430\u043c\u043c\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>HSL\/HSV:<\/strong> \u0422\u04af\u0441\u0442\u0456 \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443, \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u0435\u043c\u0435\u0441<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>YCbCr:<\/strong> \u0416\u0430\u0440\u044b\u049b\u0442\u044b\u043b\u044b\u049b\u0442\u044b \u0442\u04af\u0441\u0442\u0435\u043d \u0430\u0436\u044b\u0440\u0430\u0442\u0430\u0434\u044b, \u049b\u044b\u0441\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0442\u0430\u0439\u043b\u0430\u043d\u0434\u044b\u0440\u044b\u043b\u0493\u0430\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>XYZ:<\/strong> \u0422\u04af\u0441 \u0442\u0443\u0440\u0430\u043b\u044b \u0493\u044b\u043b\u044b\u043c\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u043b\u044b\u049b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a, \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440 \u04af\u0448\u0456\u043d \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u043c\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <h3 class=\"feature-title\">\u0416\u0430\u0493\u0434\u0430\u0439 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u04b1\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437<\/h3>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0412\u0435\u0431 \u0436\u04d9\u043d\u0435 \u0441\u0430\u043d\u0434\u044b\u049b \u043c\u0430\u0437\u043c\u04b1\u043d:<\/strong> sRGB \u043d\u0435\u043c\u0435\u0441\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439 P3 (sRGB \u0440\u0435\u0437\u0435\u0440\u0432\u0456 \u0431\u0430\u0440)<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u041a\u04d9\u0441\u0456\u0431\u0438 \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442:<\/strong> 16 \u0431\u0438\u0442\u0442\u0456\u043a Adobe RGB \u043d\u0435\u043c\u0435\u0441\u0435 ProPhoto RGB<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0411\u0430\u0441\u043f\u0430 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456:<\/strong> \u0416\u04b1\u043c\u044b\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u04af\u0448\u0456\u043d Adobe RGB, \u0448\u044b\u0493\u044b\u0441 \u04af\u0448\u0456\u043d CMYK \u043f\u0440\u043e\u0444\u0438\u043b\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0411\u0435\u0439\u043d\u0435 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456:<\/strong> HD \u04af\u0448\u0456\u043d 709 \u04b1\u0441\u044b\u043d\u044b\u0441, UHD\/HDR \u04af\u0448\u0456\u043d 2020 \u04b1\u0441\u044b\u043d\u044b\u0441<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0421\u0430\u043d\u0434\u044b\u049b \u04e9\u043d\u0435\u0440 \u0436\u04d9\u043d\u0435 \u0434\u0438\u0437\u0430\u0439\u043d:<\/strong> Adobe RGB \u043d\u0435\u043c\u0435\u0441\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439 P3<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0422\u04af\u0441\u0442\u0456 \u0442\u04af\u0437\u0435\u0442\u0443:<\/strong> \u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437 \u0440\u0435\u0442\u0442\u0435\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0437\u0435\u0440\u0442\u0445\u0430\u043d\u0430<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>UI\/UX \u0434\u0438\u0437\u0430\u0439\u043d\u044b:<\/strong> \u0422\u04af\u0441\u0442\u0456 \u0438\u043d\u0442\u0443\u0438\u0442\u0438\u0432\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443 \u04af\u0448\u0456\u043d HSL\/HSV<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\"><strong>\u0411\u0435\u0439\u043d\u0435 \u049b\u044b\u0441\u0443:<\/strong> YCbCr \u0441\u04d9\u0439\u043a\u0435\u0441 \u0445\u0440\u043e\u043c\u0430 \u0441\u044b\u043d\u0430\u043c\u0430\u0441\u044b \u0431\u0430\u0440<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- Practical Applications Section -->\n        <section id=\"practical-guides\" class=\"practical-section\">\n            <h2 class=\"section-title\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u043f\u0440\u0430\u043a\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u0431\u0430\u0441\u049b\u0430\u0440\u0443<\/h2>\n            \n            <div class=\"features-grid\">\n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-cogs\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456<\/h3>\n                        <p class=\"feature-text\">\u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 (CMS) \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456 \u043c\u0435\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u043b\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0448\u044b\u0493\u0443\u044b\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. \u041e\u043b\u0430\u0440 \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442, \u0434\u0438\u0437\u0430\u0439\u043d \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u0430\u0493\u044b \u043a\u04d9\u0441\u0456\u0431\u0438 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">\u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0437\u0430\u043c\u0430\u043d\u0493\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456 ICC (International Color Consortium) \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u0436\u04af\u0439\u0435\u0441\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0411\u04b1\u043b \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440 \u043d\u0430\u049b\u0442\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b\u04a3 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u044b\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043f, \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0434\u04d9\u043b \u0430\u0443\u0434\u0430\u0440\u043c\u0430 \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u04b1\u0440\u044b\u0441 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0441\u044b\u0437 \u0431\u0456\u0440\u0434\u0435\u0439 RGB \u043c\u04d9\u043d\u0434\u0435\u0440\u0456 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u043a\u04af\u0440\u0442 \u0431\u0430\u0441\u049b\u0430\u0448\u0430 \u043a\u04e9\u0440\u0456\u043d\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u04b1\u0440\u044b\u043b\u0493\u044b \u0442\u04af\u0441\u0456\u043d\u0456\u04a3 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439\u0442\u044b\u043d ICC \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u043b\u043c\u0430\u0441\u0443 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0442\u04d9\u0443\u0435\u043b\u0441\u0456\u0437 \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0434\u0456 (\u043c\u044b\u0441\u0430\u043b\u044b, \u0437\u0435\u0440\u0442\u0445\u0430\u043d\u0430) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u04d8\u0440\u0442\u04af\u0440\u043b\u0456 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0493\u0430\u043d \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0433\u0430\u043c\u043c\u0430\u043b\u044b\u049b \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u04e9\u04a3\u0434\u0435\u0439\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456\u04a3 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043c\u0430\u049b\u0441\u0430\u0442\u0442\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u043d\u0438\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u04b1\u0440\u044b\u043b\u0493\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435\u0441\u0456\u043d \u0434\u0435, \u043a\u04e9\u043f \u0441\u0430\u0442\u044b\u043b\u044b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u043b\u0435\u0440\u0434\u0456 \u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-desktop\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u041a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443<\/h3>\n                        <p class=\"feature-text\">\u041c\u043e\u043d\u0438\u0442\u043e\u0440\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u2013 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456, \u0431\u04b1\u043b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u0434\u0456\u04a3 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u04d9\u043b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. \u041a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u043d\u0433\u0435\u043d \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0441\u044b\u0437 \u0431\u0430\u0440\u043b\u044b\u049b \u0431\u0430\u0441\u049b\u0430 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440\u0456\u043d\u0435 \u043d\u04b1\u049b\u0441\u0430\u043d \u043a\u0435\u043b\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.<\/p>\n                        <p class=\"feature-text\">\u041a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u043c\u043e\u043d\u0438\u0442\u043e\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u0440\u0435\u0442\u0442\u0435\u0443\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u0442\u04af\u0441 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456\u043d\u0435\u043d \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0430\u0443\u044b\u0442\u049b\u0443\u043b\u0430\u0440\u0434\u044b \u0442\u04af\u0437\u0435\u0442\u0435\u0442\u0456\u043d ICC \u043f\u0440\u043e\u0444\u0438\u043b\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0434\u044b \u049b\u0430\u043c\u0442\u0438\u0434\u044b. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0434\u04d9\u043b \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u043a\u043e\u043b\u043e\u0440\u0438\u043c\u0435\u0442\u0440\u0434\u0456 \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u043f\u0435\u043a\u0442\u0440\u043e\u0444\u043e\u0442\u043e\u043c\u0435\u0442\u0440\u0434\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u049b\u04b1\u0440\u0430\u043b\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u043c\u04af\u043b\u0434\u0435 \u0436\u043e\u049b\u049b\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u049b\u0441\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u0435\u04a3 \u0434\u04d9\u043b \u043d\u04d9\u0442\u0438\u0436\u0435 \u0431\u0435\u0440\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0410\u049b \u043d\u04af\u043a\u0442\u0435, \u0433\u0430\u043c\u043c\u0430 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441 \u0440\u0435\u0430\u043a\u0446\u0438\u044f\u0441\u044b\u043d \u0440\u0435\u0442\u0442\u0435\u0439\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d ICC \u043f\u0440\u043e\u0444\u0438\u043b\u0456\u043d \u0436\u0430\u0441\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0423\u0430\u049b\u044b\u0442 \u04e9\u0442\u0435 \u043a\u0435\u043b\u0435 \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440 \u04e9\u0437\u0433\u0435\u0440\u0435\u0442\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u043d, \u0436\u04af\u0439\u0435\u043b\u0456 \u0442\u04af\u0440\u0434\u0435 \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0443\u044b \u043a\u0435\u0440\u0435\u043a<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04d9\u0441\u0456\u0431\u0438 \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0434\u0435 \u0436\u0438\u0456 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456 \u0431\u043e\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-camera\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u041a\u0430\u043c\u0435\u0440\u0430\u043d\u044b\u04a3 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0443<\/h3>\n                        <p class=\"feature-text\">\u0421\u0430\u043d\u0434\u044b\u049b \u043a\u0430\u043c\u0435\u0440\u0430\u043b\u0430\u0440 \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0456 \u04e9\u0437\u0434\u0435\u0440\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441\u0442\u0456 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0434\u0435 \u0442\u04af\u0441\u0456\u0440\u0435\u0434\u0456, \u0441\u043e\u0434\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u043e\u043b\u0430\u0440 sRGB \u043d\u0435\u043c\u0435\u0441\u0435 Adobe RGB \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0433\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0456 \u0442\u04af\u0441\u0456\u043d\u0443 \u0434\u04d9\u043b \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0440\u0434\u0456\u0441\u0456 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">\u04d8\u0440\u0431\u0456\u0440 \u043a\u0430\u043c\u0435\u0440\u0430\u043d\u044b\u04a3 \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u04af\u0441\u043a\u0435 \u0436\u0430\u0443\u0430\u043f \u0431\u0435\u0440\u0443 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u044b \u0431\u0430\u0440 \u0431\u0456\u0440\u0435\u0433\u0435\u0439 \u0441\u0435\u043d\u0441\u043e\u0440\u044b \u0431\u0430\u0440. \u041a\u0430\u043c\u0435\u0440\u0430 \u04e9\u043d\u0434\u0456\u0440\u0443\u0448\u0456\u043b\u0435\u0440\u0456 \u04e9\u04a3\u0434\u0435\u043b\u043c\u0435\u0433\u0435\u043d \u0441\u0435\u043d\u0441\u043e\u0440 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0435 \u04e9\u04a3\u0434\u0435\u0443 \u04af\u0448\u0456\u043d \u043c\u0435\u043d\u0448\u0456\u043a\u0442\u0456 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0434\u0435\u0440\u0434\u0456 \u04d9\u0437\u0456\u0440\u043b\u0435\u0439\u0434\u0456. RAW \u043f\u0456\u0448\u0456\u043c\u0456\u043d\u0434\u0435 \u0441\u0443\u0440\u0435\u0442\u043a\u0435 \u0442\u04af\u0441\u0456\u0440\u0433\u0435\u043d\u0434\u0435, \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u04d9\u043b\u0456\u0440\u0435\u043a \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0442\u0456\u043d \u043e\u0441\u044b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456\u043d \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0430\u0441\u049b\u0430\u0440\u0430 \u0430\u043b\u0430\u0441\u044b\u0437.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">RAW \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u0434\u0430 \u0441\u0435\u043d\u0441\u043e\u0440 \u0442\u04af\u0441\u0456\u0440\u0433\u0435\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0442\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0431\u0430\u0440<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">JPEG \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b sRGB \u043d\u0435\u043c\u0435\u0441\u0435 Adobe RGB \u043a\u0430\u043c\u0435\u0440\u0430\u0441\u044b\u043d\u0430 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0430\u043c\u0435\u0440\u0430 \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456 \u0430\u0440\u043d\u0430\u0439\u044b \u043a\u0430\u043c\u0435\u0440\u0430 \u0442\u04af\u0441 \u0436\u0430\u0443\u0430\u043f\u0442\u0430\u0440\u044b\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439 \u0430\u043b\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0436\u04b1\u043c\u044b\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043a\u0430\u043c\u0435\u0440\u0430 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0431\u0430\u0440\u044b\u043d\u0448\u0430 \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">DNG \u0442\u04af\u0441 \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456 (DCP) \u043d\u0430\u049b\u0442\u044b \u043a\u0430\u043c\u0435\u0440\u0430 \u0442\u04af\u0441 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-globe-americas\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0412\u0435\u0431-\u049b\u0430\u0443\u0456\u043f\u0441\u0456\u0437 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0441\u0442\u044b\u0440\u0443<\/h3>\n                        <p class=\"feature-text\">\u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0432\u0435\u0431-\u0448\u043e\u043b\u0493\u044b\u0448\u0442\u0430\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u0493\u0430\u043d\u044b\u043c\u0435\u043d, \u043a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440 \u043c\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u049b\u043e\u043b\u0434\u0430\u043c\u0430\u0439\u0434\u044b. \u0411\u0430\u0440\u043b\u044b\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0432\u0435\u0431-\u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u0430\u0441\u0430\u0443 \u043e\u0441\u044b \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0442\u04af\u0441\u0456\u043d\u0443\u0434\u0456 \u0442\u0430\u043b\u0430\u043f \u0435\u0442\u0435\u0434\u0456.<\/p>\n                        <p class=\"feature-text\">\u0412\u0435\u0431-\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0430\u0442\u044b\u043d CSS Color Module Level 4 \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u0431\u0435\u0442 \u0431\u04b1\u0440\u0443\u0434\u0430. \u0414\u0435\u0433\u0435\u043d\u043c\u0435\u043d, \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a \u04af\u0448\u0456\u043d sRGB \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0456\u043d \u0435\u0441\u043a\u0435\u0440\u0443 \u0436\u04d9\u043d\u0435 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u0441\u04d9\u0439\u043a\u0435\u0441 \u0440\u0435\u0437\u0435\u0440\u0432\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04d9\u043b\u0456 \u0434\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">sRGB \u04d9\u043c\u0431\u0435\u0431\u0430\u043f \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a \u04af\u0448\u0456\u043d \u0435\u04a3 \u049b\u0430\u0443\u0456\u043f\u0441\u0456\u0437 \u0442\u0430\u04a3\u0434\u0430\u0443 \u0431\u043e\u043b\u044b\u043f \u049b\u0430\u043b\u0430 \u0431\u0435\u0440\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041e\u043d\u044b \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d \u0448\u043e\u043b\u0493\u044b\u0448\u0442\u0430\u0440 \u04af\u0448\u0456\u043d \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0433\u0435 \u0442\u04af\u0441\u0442\u0456 \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0434\u0456 \u0435\u043d\u0434\u0456\u0440\u0443<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">CSS \u0442\u04af\u0441\u0442\u0456 \u043c\u043e\u0434\u0443\u043b\u0456\u043d\u0456\u04a3 4 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u044b\u043d \u049b\u043e\u0441\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440 \u04af\u0448\u0456\u043d \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u0442\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u043c\u04af\u043c\u043a\u0456\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0434\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d @media \u0441\u04b1\u0440\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u044b \u049b\u0430\u0440\u0430\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-print\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0411\u0430\u0441\u043f\u0430 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456\u043d\u0456\u04a3 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0456<\/h3>\n                        <p class=\"feature-text\">\u041a\u04d9\u0441\u0456\u0431\u0438 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456 \u0442\u04af\u0441\u0456\u0440\u0443\u0434\u0435\u043d \u0441\u043e\u04a3\u0493\u044b \u043d\u04d9\u0442\u0438\u0436\u0435\u0433\u0435 \u0434\u0435\u0439\u0456\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u043c\u04b1\u049b\u0438\u044f\u0442 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456. RGB-\u0434\u0435\u043d CMYK-\u0433\u0435 \u043a\u04e9\u0448\u0443 \u0434\u04b1\u0440\u044b\u0441 \u04e9\u04a3\u0434\u0435\u043b\u0443\u0456 \u043a\u0435\u0440\u0435\u043a \u043c\u0430\u04a3\u044b\u0437\u0434\u044b \u049b\u0430\u0434\u0430\u043c \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">\u041a\u043e\u043c\u043c\u0435\u0440\u0446\u0438\u044f\u043b\u044b\u049b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0430\u0440\u043d\u0430\u0439\u044b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d CMYK \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. \u0411\u04b1\u043b \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440 \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u043f\u0440\u043e\u0432\u0430\u0439\u0434\u0435\u0440\u043b\u0435\u0440\u0456 \u043c\u0435\u043d \u0431\u0430\u0441\u043f\u0430 \u043c\u0430\u0448\u0438\u043d\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430 \u0434\u04d9\u0439\u0435\u043a\u0442\u0456 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. \u0414\u0438\u0437\u0430\u0439\u043d\u0435\u0440\u043b\u0435\u0440 \u043f\u0440\u0438\u043d\u0442\u0435\u0440\u0456 \u049b\u0430\u043d\u0434\u0430\u0439 CMYK \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d\u044b\u043d \u0442\u04af\u0441\u0456\u043d\u0443\u0456 \u0436\u04d9\u043d\u0435 \u0431\u04b1\u043b \u0431\u0456\u043b\u0456\u043c\u0434\u0456 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0456\u043d\u0435 \u0435\u043d\u0433\u0456\u0437\u0443\u0456 \u043a\u0435\u0440\u0435\u043a.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u04b1\u043c\u0441\u0430\u049b \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0493\u044b \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0493\u0430\u043d \u043d\u04d9\u0442\u0438\u0436\u0435\u043d\u0456 \u04b1\u049b\u0441\u0430\u0442\u0430\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041f\u0440\u0438\u043d\u0442\u0435\u0440 \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456 \u0430\u0440\u043d\u0430\u0439\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u043c\u0435\u043d \u049b\u0430\u0493\u0430\u0437 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u041a\u04e9\u0440\u0441\u0435\u0442\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u0442\u0430\u0440\u044b \u0433\u0430\u043c\u043c\u0430\u043b\u044b\u049b \u043a\u0430\u0440\u0442\u0430 \u0436\u0430\u0441\u0430\u0443 \u0442\u04d9\u0441\u0456\u043b\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u049a\u0430\u0440\u0430 \u043d\u04af\u043a\u0442\u0435 \u043a\u043e\u043c\u043f\u0435\u043d\u0441\u0430\u0446\u0438\u044f\u0441\u044b \u043a\u04e9\u043b\u0435\u04a3\u043a\u0435 \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0422\u0435\u043a\u0441\u0435\u0440\u0443 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0442\u04af\u043f\u043a\u0456\u043b\u0456\u043a\u0442\u0456 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441 \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u0442\u04af\u0441 \u0434\u04d9\u043b\u0434\u0456\u0433\u0456\u043d \u0440\u0430\u0441\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"feature-card\">\n                    <div class=\"feature-content\">\n                        <div class=\"feature-icon\">\n                            <i class=\"fas fa-video\"><\/i>\n                        <\/div>\n                        <h3 class=\"feature-title\">\u0411\u0435\u0439\u043d\u0435\u043d\u0456\u04a3 \u0442\u04af\u0441\u0456\u043d \u0431\u0430\u0493\u0430\u043b\u0430\u0443<\/h3>\n                        <p class=\"feature-text\">\u0411\u0435\u0439\u043d\u0435 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456, \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 HDR \u0436\u04d9\u043d\u0435 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456\u043d\u0456\u04a3 \u04e9\u0441\u0443\u0456\u043d\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u043a\u04af\u0440\u0434\u0435\u043b\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u043c\u04d9\u0441\u0435\u043b\u0435\u043b\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b. \u0422\u04af\u0441\u0456\u0440\u0443\u0434\u0435\u043d \u0431\u0430\u0441\u0442\u0430\u043f \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0433\u0435 \u0434\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u043e\u043b\u044b\u049b \u049b\u04b1\u0431\u044b\u0440\u0434\u044b \u0442\u04af\u0441\u0456\u043d\u0443 \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b.<\/p>\n                        <p class=\"feature-text\">\u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0431\u0435\u0439\u043d\u0435 \u04e9\u043d\u0434\u0456\u0440\u0456\u0441\u0456 \u0436\u0438\u0456 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b\u04a3 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u049b\u04b1\u0440\u044b\u043b\u044b\u043c\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0410\u043a\u0430\u0434\u0435\u043c\u0438\u044f\u043d\u044b\u04a3 \u0422\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043a\u043e\u0434\u0442\u0430\u0443 \u0436\u04af\u0439\u0435\u0441\u0456\u043d (ACES) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. ACES \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d \u043a\u0430\u043c\u0435\u0440\u0430\u0493\u0430 \u049b\u0430\u0440\u0430\u043c\u0430\u0441\u0442\u0430\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0456\u043c\u0434\u0435\u0440 \u04af\u0448\u0456\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u04b1\u043c\u044b\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456, \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u043a\u04e9\u0437\u0434\u0435\u0440\u0434\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u043a\u0430\u0434\u0440\u043b\u0430\u0440\u0434\u044b \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456\u043d \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0434\u0430\u0439\u044b\u043d\u0434\u0430\u0439\u0434\u044b.<\/p>\n                        <ul class=\"feature-list\">\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u0443\u0440\u043d\u0430\u043b \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 \u043a\u0430\u043c\u0435\u0440\u0430\u043b\u0430\u0440\u0434\u0430\u043d \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u0434\u0438\u043d\u0430\u043c\u0438\u043a\u0430\u043b\u044b\u049b \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">ACES \u0441\u0438\u044f\u049b\u0442\u044b \u0436\u04b1\u043c\u044b\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0441\u0442\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">HDR \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0440\u044b PQ \u0436\u04d9\u043d\u0435 HLG \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">\u0416\u0435\u0442\u043a\u0456\u0437\u0443 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u044b\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d<\/span>\n                            <\/li>\n                            <li class=\"feature-item\">\n                                <span class=\"feature-check\"><i class=\"fas fa-check-circle\"><\/i><\/span>\n                                <span class=\"feature-item-text\">LUT (\u0406\u0437\u0434\u0435\u0443 \u043a\u0435\u0441\u0442\u0435\u043b\u0435\u0440\u0456) \u0442\u04af\u0441 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u043b\u0435\u0440\u0456\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u0430\u0443\u0493\u0430 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0435\u0434\u0456<\/span>\n                            <\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- FAQ Section -->\n        <section class=\"faq-section\">\n            <h2 class=\"section-title\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0442\u0443\u0440\u0430\u043b\u044b \u0436\u0438\u0456 \u049b\u043e\u0439\u044b\u043b\u0430\u0442\u044b\u043d \u0441\u04b1\u0440\u0430\u049b\u0442\u0430\u0440<\/h2>\n            \n            <div class=\"faq-container\">\n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456 \u043c\u0435\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u0493\u044b \u043d\u0435\u0434\u0435?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u0422\u04af\u0441 \u043c\u043e\u0434\u0435\u043b\u0456 \u0441\u0430\u043d\u0434\u044b\u049b \u043c\u04d9\u043d\u0434\u0435\u0440\u0434\u0456 (\u043c\u044b\u0441\u0430\u043b\u044b, RGB \u043d\u0435\u043c\u0435\u0441\u0435 CMYK) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043e\u0440\u0438\u044f\u043b\u044b\u049b \u043d\u0435\u0433\u0456\u0437 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b, \u0430\u043b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 &#8212; \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0493\u0430\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u0431\u0430\u0440 \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456\u043d\u0456\u04a3 \u0430\u0440\u043d\u0430\u0439\u044b \u0456\u0441\u043a\u0435 \u0430\u0441\u044b\u0440\u044b\u043b\u0443\u044b. \u041c\u044b\u0441\u0430\u043b\u044b, RGB \u0442\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456, \u0430\u043b sRGB \u0436\u04d9\u043d\u0435 Adobe RGB RGB \u04af\u043b\u0433\u0456\u0441\u0456\u043d\u0435 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u0430\u0440\u043d\u0430\u0439\u044b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b, \u043e\u043b\u0430\u0440\u0434\u044b\u04a3 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b\u0441\u044b \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0433\u0430\u043c\u043c\u0430\u043b\u0430\u0440 \u043c\u0435\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u043c\u0430\u043b\u0430\u0440\u0493\u0430 \u0438\u0435. \u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u0441\u0456\u043d \u0436\u0430\u043b\u043f\u044b \u0436\u04af\u0439\u0435 (\u043c\u044b\u0441\u0430\u043b\u044b, \u0435\u043d\u0434\u0456\u043a\/\u0431\u043e\u0439\u043b\u044b\u049b\u0442\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u043e\u0440\u044b\u043d\u0434\u0430\u0440\u0434\u044b \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0443) \u0436\u04d9\u043d\u0435 \u0441\u043e\u043b \u0436\u04af\u0439\u0435\u043d\u0456\u04a3 \u043d\u0430\u049b\u0442\u044b \u043a\u0430\u0440\u0442\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 (\u043d\u0430\u049b\u0442\u044b \u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0442\u0430\u0440\u044b \u0431\u0430\u0440 \u0431\u0435\u043b\u0433\u0456\u043b\u0456 \u0431\u0456\u0440 \u0430\u0439\u043c\u0430\u049b\u0442\u044b\u04a3 \u0435\u0433\u0436\u0435\u0439-\u0442\u0435\u0433\u0436\u0435\u0439\u043b\u0456 \u043a\u0430\u0440\u0442\u0430\u0441\u044b \u0441\u0438\u044f\u049b\u0442\u044b) \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u049b\u0430\u0440\u0430\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u041d\u0435\u043b\u0456\u043a\u0442\u0435\u043d \u043c\u0435\u043d\u0456\u04a3 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0493\u0430\u043d \u04e9\u043d\u0456\u043c\u0456\u043c \u044d\u043a\u0440\u0430\u043d\u0434\u0430 \u043a\u04e9\u0440\u0435\u0442\u0456\u043d\u0456\u043c\u043d\u0435\u043d \u0431\u0430\u0441\u049b\u0430\u0448\u0430 \u043a\u04e9\u0440\u0456\u043d\u0435\u0434\u0456?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u0411\u04b1\u043b \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u044b \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0444\u0430\u043a\u0442\u043e\u0440\u043b\u0430\u0440 \u0442\u0443\u0434\u044b\u0440\u0430\u0434\u044b: \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u043b\u0430\u0440 RGB (\u049b\u043e\u0441\u044b\u043c\u0448\u0430) \u0442\u04af\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b, \u0430\u043b \u043f\u0440\u0438\u043d\u0442\u0435\u0440\u043b\u0435\u0440 CMYK (\u0430\u043b\u0443) \u0442\u04af\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b; \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0493\u0430\u043d \u04e9\u043d\u0456\u043c\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u044b \u0431\u043e\u043b\u0430\u0434\u044b; \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440 \u0436\u0430\u0440\u044b\u049b \u0448\u044b\u0493\u0430\u0440\u0430\u0434\u044b, \u0430\u043b \u0431\u0430\u0441\u043f\u0430\u043b\u0430\u0440 \u043e\u043d\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456; \u0436\u04d9\u043d\u0435 \u0434\u04b1\u0440\u044b\u0441 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0431\u043e\u043b\u043c\u0430\u0441\u0430, \u0431\u04b1\u043b \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0430\u0443\u0434\u0430\u0440\u043c\u0430 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u0493\u0430\u043d \u049b\u043e\u0441\u0430, \u049b\u0430\u0493\u0430\u0437 \u0442\u04af\u0440\u0456 \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443\u0434\u0430\u0493\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u049b\u0430\u043b\u0430\u0439 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d\u0456\u043d\u0435 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456, \u049b\u0430\u043f\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u049b\u0430\u0493\u0430\u0437\u0434\u0430\u0440 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u044b\u043b\u0442\u044b\u0440 \u049b\u0430\u0493\u0430\u0437\u0434\u0430\u0440\u0493\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u049b\u0430\u043d\u044b\u049b\u049b\u0430\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0430\u0437 \u0448\u044b\u0493\u0430\u0440\u0430\u0434\u044b. \u041c\u043e\u043d\u0438\u0442\u043e\u0440\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0440\u043d\u0430\u0439\u044b \u043f\u0440\u0438\u043d\u0442\u0435\u0440 \u043c\u0435\u043d \u049b\u0430\u0493\u0430\u0437 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u044f\u0441\u044b \u04af\u0448\u0456\u043d ICC \u043f\u0440\u043e\u0444\u0438\u043b\u044c\u0434\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0431\u04b1\u043b \u0441\u04d9\u0439\u043a\u0435\u0441\u0441\u0456\u0437\u0434\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u0430\u0437\u0430\u0439\u0442\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d, \u0434\u0435\u0433\u0435\u043d\u043c\u0435\u043d \u043a\u0435\u0439\u0431\u0456\u0440 \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440 \u0436\u0430\u0440\u044b\u049b \u0448\u044b\u0493\u0430\u0440\u0430\u0442\u044b\u043d \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440 \u043c\u0435\u043d \u0436\u0430\u0440\u044b\u049b \u0448\u0430\u0493\u044b\u043b\u044b\u0441\u0442\u044b\u0440\u0430\u0442\u044b\u043d \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u0437\u0438\u043a\u0430\u043b\u044b\u049b \u0430\u0439\u044b\u0440\u043c\u0430\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0493\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u04d9\u0440\u049b\u0430\u0448\u0430\u043d \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0421\u0443\u0440\u0435\u0442\u043a\u0435 \u0442\u04af\u0441\u0456\u0440\u0443 \u04af\u0448\u0456\u043d sRGB, Adobe RGB \u043d\u0435\u043c\u0435\u0441\u0435 ProPhoto RGB \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043c \u043a\u0435\u0440\u0435\u043a \u043f\u0435?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u0411\u04b1\u043b \u0441\u0456\u0437\u0434\u0456\u04a3 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0440\u0434\u0456\u0441\u0456\u04a3\u0456\u0437\u0433\u0435 \u0436\u04d9\u043d\u0435 \u0448\u044b\u0493\u044b\u0441 \u049b\u0430\u0436\u0435\u0442\u0442\u0456\u043b\u0456\u043a\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b. sRGB \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u043a\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440 \u043d\u0435\u043c\u0435\u0441\u0435 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440\u0434\u0430 \u0436\u0430\u043b\u043f\u044b \u049b\u0430\u0440\u0430\u0443 \u04af\u0448\u0456\u043d \u0435\u04a3 \u049b\u043e\u043b\u0430\u0439\u043b\u044b. Adobe RGB \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d\u0435 \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0442\u0456\u043d \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u04b1\u0441\u044b\u043d\u0430\u0442\u044b\u043d \u0431\u0430\u0441\u044b\u043f \u0448\u044b\u0493\u0430\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0442\u0430\u043c\u0430\u0448\u0430. ProPhoto RGB \u04d9\u0441\u0456\u0440\u0435\u0441\u0435 16 \u0431\u0438\u0442\u0442\u0456\u043a \u0440\u0435\u0436\u0438\u043c\u0434\u0435 RAW \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0433\u0435\u043d\u0434\u0435, \u0442\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u044b\u04a3 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u0441\u0430\u049b\u0442\u0430\u043b\u0443\u044b \u043c\u0430\u04a3\u044b\u0437\u0434\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0442\u044b\u043d \u043a\u04d9\u0441\u0456\u0431\u0438 \u0436\u04b1\u043c\u044b\u0441 \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u04e9\u0442\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b. \u041a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0442\u0430\u0440 \u0433\u0438\u0431\u0440\u0438\u0434\u0442\u0456 \u0442\u04d9\u0441\u0456\u043b\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b: ProPhoto RGB \u043d\u0435\u043c\u0435\u0441\u0435 Adobe RGB \u0444\u043e\u0440\u043c\u0430\u0442\u044b\u043d\u0434\u0430 \u04e9\u04a3\u0434\u0435\u0443, \u0441\u043e\u0434\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u0432\u0435\u0431-\u0431\u04e9\u043b\u0456\u0441\u0443 \u04af\u0448\u0456\u043d sRGB \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443. \u0415\u0433\u0435\u0440 \u043a\u0430\u043c\u0435\u0440\u0430\u0434\u0430 JPEG \u043f\u0456\u0448\u0456\u043c\u0456\u043d\u0434\u0435 \u0442\u04af\u0441\u0456\u0440\u0456\u043f \u0436\u0430\u0442\u0441\u0430\u04a3\u044b\u0437, Adobe RGB \u04d9\u0434\u0435\u0442\u0442\u0435 sRGB-\u0433\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u049b\u0441\u044b \u0442\u0430\u04a3\u0434\u0430\u0443, \u0435\u0433\u0435\u0440 \u043a\u0430\u043c\u0435\u0440\u0430 \u043e\u043d\u044b \u049b\u043e\u043b\u0434\u0430\u0441\u0430, \u043e\u043b \u043a\u0435\u0439\u0456\u043d\u0456\u0440\u0435\u043a \u04e9\u04a3\u0434\u0435\u0443 \u04af\u0448\u0456\u043d \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0442\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b. \u0414\u0435\u0433\u0435\u043d\u043c\u0435\u043d, RAW (\u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0441\u0430\u043f\u0430 \u04af\u0448\u0456\u043d \u04b1\u0441\u044b\u043d\u044b\u043b\u0430\u0434\u044b) \u0442\u04af\u0441\u0456\u0440\u0441\u0435\u04a3\u0456\u0437, \u043a\u0430\u043c\u0435\u0440\u0430\u043d\u044b\u04a3 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0456 \u043d\u0430\u049b\u0442\u044b RAW \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d\u0435 \u0435\u043c\u0435\u0441, \u0442\u0435\u043a JPEG \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u049b\u0430\u0440\u0430\u0443\u044b\u043d\u0430 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0422\u04af\u0441\u0442\u0435\u0440 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d\u0430\u043d \u0442\u044b\u0441 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u043d\u0435 \u0431\u043e\u043b\u0430\u0434\u044b?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0493\u0430\u043d \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0456\u04a3 \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d\u0430\u043d \u0442\u044b\u0441 \u0442\u04af\u0441\u0435\u0442\u0456\u043d \u0442\u04af\u0441\u0442\u0435\u0440 \u0433\u0430\u043c\u043c\u0430\u043b\u044b\u049b \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443 \u0434\u0435\u043f \u0430\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u043f\u0440\u043e\u0446\u0435\u0441\u0442\u0456\u04a3 \u043a\u04e9\u043c\u0435\u0433\u0456\u043c\u0435\u043d \u049b\u0430\u0439\u0442\u0430 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u044b \u043a\u0435\u0440\u0435\u043a. \u0411\u04b1\u043b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043d\u0438\u0435\u0442\u0442\u0435\u0440\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u043b\u0430\u0434\u044b: \u041f\u0435\u0440\u0446\u0435\u043f\u0442\u0438\u0432\u0442\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0431\u04af\u043a\u0456\u043b \u0433\u0430\u043c\u043c\u0434\u044b \u049b\u044b\u0441\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u04af\u0441\u0442\u0435\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u049b\u0430\u0440\u044b\u043c-\u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0442\u0430\u0440\u0434\u044b \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b; \u0421\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b \u043a\u043e\u043b\u043e\u0440\u0438\u043c\u0435\u0442\u0440\u0438\u044f\u043b\u044b\u049b \u0433\u0430\u043c\u043c\u0430\u0434\u0430\u0493\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u0435, \u0433\u0430\u043c\u043c\u0430\u0434\u0430\u043d \u0442\u044b\u0441 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u0435 \u0435\u04a3 \u0436\u0430\u049b\u044b\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d \u0442\u04af\u0441\u043a\u0435 \u0434\u0435\u0439\u0456\u043d \u0441\u0430\u049b\u0442\u0430\u0439\u0434\u044b; Absolute Colorimetric \u04b1\u049b\u0441\u0430\u0441, \u0431\u0456\u0440\u0430\u049b \u0430\u049b \u049b\u0430\u0493\u0430\u0437 \u04af\u0448\u0456\u043d \u0434\u0435 \u0440\u0435\u0442\u0442\u0435\u043b\u0435\u0434\u0456; \u0436\u04d9\u043d\u0435 \u049a\u0430\u043d\u044b\u049b\u0442\u044b\u043b\u044b\u049b \u0434\u04d9\u043b\u0434\u0456\u043a\u0442\u0435\u043d \u0433\u04e9\u0440\u0456 \u0436\u0430\u0440\u049b\u044b\u043d \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0430\u049b\u0442\u0430\u0443\u0493\u0430 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u049b \u0431\u0435\u0440\u0435\u0434\u0456. \u041a\u04e9\u0440\u0441\u0435\u0442\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443 \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u049b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0493\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b. \u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d Perceptual \u043a\u04e9\u0431\u0456\u043d\u0435\u0441\u0435 \u0442\u0430\u0431\u0438\u0493\u0438 \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0434\u0456 \u0431\u0435\u0440\u0435\u0434\u0456. \u0411\u0435\u043b\u0433\u0456\u043b\u0456 \u0431\u0456\u0440 \u0431\u0440\u0435\u043d\u0434 \u0442\u04af\u0441\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u04af\u0448\u0456\u043d Relative Colorimetric \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0448\u0435 \u043d\u0430\u049b\u0442\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u0430\u049b\u0441\u044b\u0440\u0430\u049b \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u04af\u0441\u0442\u0435\u0440 \u0433\u0430\u043c\u043c\u0430\u0441\u044b\u043d\u0430\u043d \u0442\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435 \u0430\u043b\u0430\u0434\u044b, \u0431\u04b1\u043b \u043c\u0430\u04a3\u044b\u0437\u0434\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0433\u0435 \u0442\u04af\u0437\u0435\u0442\u0443\u043b\u0435\u0440 \u0435\u043d\u0433\u0456\u0437\u0443\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0422\u04af\u0441\u0442\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u049b\u0430\u043d\u0448\u0430\u043b\u044b\u049b\u0442\u044b \u043c\u0430\u04a3\u044b\u0437\u0434\u044b?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u041c\u043e\u043d\u0438\u0442\u043e\u0440\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0442\u04af\u0441\u0442\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u041a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u043d\u0433\u0435\u043d \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u0441\u0456\u0437 \u0441\u0456\u0437 \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441 \u0442\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u04e9\u04a3\u0434\u0435\u0443 \u0448\u0435\u0448\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0439\u0441\u044b\u0437. \u041a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u0430\u049b \u043d\u04af\u043a\u0442\u0435\u043d\u0456 (\u04d9\u0434\u0435\u0442\u0442\u0435 D65\/6500K), \u0433\u0430\u043c\u043c\u0430\u043d\u044b (\u04d9\u0434\u0435\u0442\u0442\u0435 2,2) \u0436\u04d9\u043d\u0435 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b\u0442\u044b (\u043a\u04e9\u0431\u0456\u043d\u0435\u0441\u0435 80-120 \u043a\u0434\/\u043c\u00b2) \u043e\u0440\u043d\u0430\u0442\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0434\u044b \u0431\u0435\u043b\u0433\u0456\u043b\u0456, \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b \u043a\u04af\u0439\u0433\u0435 \u0440\u0435\u0442\u0442\u0435\u0439\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u04af\u0441\u0442\u0435\u0440\u043c\u0435\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u043b\u0430\u0442\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0434\u04d9\u043b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d ICC \u043f\u0440\u043e\u0444\u0438\u043b\u0456\u043d \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u041a\u04d9\u0441\u0456\u0431\u0438 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0448\u0456\u043d \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u049b\u04b1\u0440\u0430\u043b\u0434\u0430\u0440\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b \u049b\u0430\u0436\u0435\u0442 \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u0430\u0439 \u0441\u0430\u0439\u044b\u043d \u0436\u04af\u0440\u0433\u0456\u0437\u0456\u043b\u0443\u0456 \u043a\u0435\u0440\u0435\u043a. \u0422\u0456\u043f\u0442\u0456 \u0442\u04b1\u0442\u044b\u043d\u0443\u0448\u044b\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043a\u043e\u043b\u043e\u0440\u0438\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u043d\u0431\u0435\u0433\u0435\u043d \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u043c\u0435\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0493\u0430\u043d\u0434\u0430 \u0442\u04af\u0441 \u0434\u04d9\u043b\u0434\u0456\u0433\u0456\u043d \u043a\u04af\u0440\u0442 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0430 \u0430\u043b\u0430\u0434\u044b. \u041a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443\u0434\u0435\u043d \u0431\u0430\u0441\u049b\u0430, \u0441\u0456\u0437\u0434\u0456\u04a3 \u0436\u04b1\u043c\u044b\u0441 \u043e\u0440\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b: \u0431\u0435\u0439\u0442\u0430\u0440\u0430\u043f \u0441\u04b1\u0440 \u049b\u0430\u0431\u044b\u0440\u0493\u0430\u043b\u0430\u0440, \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d\u0434\u044b\u0440\u0443 \u0436\u04d9\u043d\u0435 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0493\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0436\u0430\u0440\u044b\u049b\u0442\u0430\u043d \u0430\u0443\u043b\u0430\u049b \u0431\u043e\u043b\u0443\u0434\u044b\u04a3 \u0431\u04d9\u0440\u0456 \u0442\u04af\u0441\u0442\u0456 \u0434\u04d9\u043b\u0456\u0440\u0435\u043a \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u0493\u0430 \u044b\u049b\u043f\u0430\u043b \u0435\u0442\u0435\u0434\u0456. \u0422\u04af\u0441\u0442\u0456 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b \u0436\u04b1\u043c\u044b\u0441 \u04af\u0448\u0456\u043d \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u049b\u0430\u043c\u0442\u0443\u044b, \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u049b\u04b1\u0440\u0430\u043b\u0434\u0430\u0440\u0434\u044b \u043a\u0430\u043b\u0438\u0431\u0440\u043b\u0435\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456 \u0436\u04d9\u043d\u0435 \u0441\u044b\u0440\u0442\u049b\u044b \u0436\u0430\u0440\u044b\u049b\u0442\u044b \u0431\u043b\u043e\u043a\u0442\u0430\u0439\u0442\u044b\u043d \u0441\u043e\u0440\u0493\u044b\u0448\u044b \u0431\u0430\u0440 \u043a\u04d9\u0441\u0456\u0431\u0438 \u0434\u0435\u04a3\u0433\u0435\u0439\u0434\u0435\u0433\u0456 \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0434\u044b \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u044f\u043b\u0430\u0443\u0434\u044b \u049b\u0430\u0440\u0430\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0412\u0435\u0431-\u0434\u0438\u0437\u0430\u0439\u043d \u0436\u04d9\u043d\u0435 \u04d9\u0437\u0456\u0440\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043c \u043a\u0435\u0440\u0435\u043a?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>sRGB \u0432\u0435\u0431-\u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u0431\u043e\u043b\u044b\u043f \u049b\u0430\u043b\u0430 \u0431\u0435\u0440\u0435\u0434\u0456, \u0441\u0435\u0431\u0435\u0431\u0456 \u043e\u043b \u04d9\u0440\u0442\u04af\u0440\u043b\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0448\u043e\u043b\u0493\u044b\u0448\u0442\u0430\u0440\u0434\u0430 \u0435\u04a3 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u043d\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. \u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043b\u0435\u0440 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u043a\u0435\u04a3 \u0433\u0430\u043c\u043c\u0430\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u049b\u043e\u043b\u0434\u0430\u0441\u0430 \u0434\u0430, \u043a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043b\u0435\u0440 \u04d9\u043b\u0456 \u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043c\u0430\u0439\u0434\u044b. \u0411\u043e\u043b\u0430\u0448\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0436\u0430\u0439\u0442\u044b\u043d \u0436\u043e\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u043e\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0430\u043a\u0442\u0438\u0432\u0442\u0435\u0440\u0434\u0456 (CSS \u0442\u04af\u0441 \u043c\u043e\u0434\u0443\u043b\u0456\u043d\u0456\u04a3 4-\u0434\u0435\u04a3\u0433\u0435\u0439 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u0435\u0433\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443) \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u044b\u0437\u044b\u049b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 sRGB \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0438\u0432\u0442\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u0434\u044b \u0436\u04af\u0437\u0435\u0433\u0435 \u0430\u0441\u044b\u0440\u0443\u0493\u0430 \u0431\u043e\u043b\u0430\u0434\u044b. CSS \u0442\u04af\u0441\u0442\u0456 \u043c\u043e\u0434\u0443\u043b\u0456\u043d\u0456\u04a3 4-\u0434\u0435\u04a3\u0433\u0435\u0439\u0456 \u0442\u04af\u0441 (\u0434\u0438\u0441\u043f\u043b\u0435\u0439-p3 1 0,5 0) \u0441\u0438\u044f\u049b\u0442\u044b \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439-p3, prophoto-rgb \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u044b \u04b1\u0441\u044b\u043d\u0430\u0434\u044b, \u0431\u04b1\u043b \u0432\u0435\u0431-\u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440\u043b\u0435\u0440\u0433\u0435 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u043e\u0493\u0430\u043b\u0442\u043f\u0430\u0439 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0434\u0438\u0441\u043f\u043b\u0435\u0439\u043b\u0435\u0440\u0434\u0456 \u0431\u0430\u0493\u044b\u0442\u0442\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0415\u0441\u043a\u0456 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043b\u0435\u0440\u043c\u0435\u043d \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456\u043b\u0456\u043a \u04af\u0448\u0456\u043d \u0431\u0430\u0440\u043b\u044b\u049b \u0430\u043a\u0442\u0438\u0432\u0442\u0435\u0440\u0434\u0456\u04a3 sRGB \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0441\u0430\u049b\u0442\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0442\u0435\u043a \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0493\u0430 \u049b\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u0443\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437. \u0411\u0430\u0440\u043b\u044b\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0430\u0439\u043b\u044b \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0442\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0434\u0438\u0437\u0430\u0439\u043d\u0434\u044b \u04d9\u0440\u049b\u0430\u0448\u0430\u043d \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043b\u0435\u0440\u0434\u0435 \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0456 \u049b\u044b\u0441\u0443\u0493\u0430 \u0436\u04d9\u043d\u0435 \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d\u0435 \u049b\u0430\u043b\u0430\u0439 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u043a\u0435\u0441\u043a\u0456\u043d\u043d\u0456\u04a3 \u049b\u044b\u0441\u044b\u043b\u0443\u044b\u043d\u0430 \u0436\u04d9\u043d\u0435 \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d\u0435 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456. RGB-\u0434\u0435\u043d YCbCr-\u0433\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 (JPEG \u049b\u044b\u0441\u0443\u044b\u043d\u0434\u0430) \u0442\u04af\u0441 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u0442\u04e9\u043c\u0435\u043d \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u049b\u0442\u0430 \u0441\u0430\u049b\u0442\u0430\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d \u043a\u0456\u0448\u0456\u0440\u0435\u0439\u0442\u0435\u0442\u0456\u043d \u0445\u0440\u043e\u043c\u0430\u043d\u044b\u04a3 \u0456\u0448\u043a\u0456 \u04af\u043b\u0433\u0456\u0441\u0456\u043d \u0430\u043b\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456, \u0431\u04b1\u043b \u0430\u0434\u0430\u043c \u043a\u04e9\u0437\u0456\u043d\u0456\u04a3 \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0431\u04e9\u043b\u0448\u0435\u043a\u0442\u0435\u0440\u0456\u043d\u0435 \u04af\u043b\u043a\u0435\u043d \u0441\u0435\u0437\u0456\u043c\u0442\u0430\u043b\u0434\u044b\u0493\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. ProPhoto RGB \u0441\u0438\u044f\u049b\u0442\u044b \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440 \u0436\u043e\u043b\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u0493\u0430\u0440\u044b\u0440\u0430\u049b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d (16 \u0431\u0438\u0442\u043a\u0435 \u049b\u0430\u0440\u0441\u044b 8 \u0431\u0438\u0442) \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456, \u043d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456\u043d\u0434\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u043b\u043a\u0435\u043d \u0431\u043e\u043b\u0430\u0434\u044b. \u0425\u0440\u043e\u043c\u0430\u043d\u044b\u04a3 \u0456\u0448\u043a\u0456 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0431\u0430\u0439\u0442\u044b\u043d PNG \u0441\u0438\u044f\u049b\u0442\u044b \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d\u0456\u04a3 \u04e9\u0437\u0456 \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d\u0435 \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04d9\u0441\u0435\u0440 \u0435\u0442\u043f\u0435\u0439\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0436\u043e\u0493\u0430\u0440\u044b\u0440\u0430\u049b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u043a\u0442\u0435\u0440\u0456 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456. Adobe RGB \u043d\u0435\u043c\u0435\u0441\u0435 ProPhoto RGB \u0456\u0448\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0493\u0430\u043d JPEG \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0431\u0456\u0440\u0434\u0435\u0439 \u0441\u0430\u043f\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0456\u043d\u0434\u0435 sRGB \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0436\u0430\u0434\u0442\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b, \u0431\u0456\u0440\u0430\u049b \u043e\u043b\u0430\u0440 \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d \u0430\u0437\u0434\u0430\u043f \u049b\u043e\u0441\u044b\u043f, \u0434\u04b1\u0440\u044b\u0441 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0443 \u04af\u0448\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u0442\u04af\u0441 \u043f\u0440\u043e\u0444\u0438\u043b\u0456\u043d \u049b\u0430\u043c\u0442\u0443\u044b \u043a\u0435\u0440\u0435\u043a. \u0416\u0435\u0442\u043a\u0456\u0437\u0443 \u043f\u0456\u0448\u0456\u043c\u0456\u043d\u0434\u0435\u0433\u0456 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0434\u044b \u049b\u044b\u0441\u0443 \u0442\u0438\u0456\u043c\u0434\u0456\u043b\u0456\u0433\u0456 \u04af\u0448\u0456\u043d \u0441\u04d9\u0439\u043a\u0435\u0441 \u0456\u0448\u043a\u0456 \u04af\u043b\u0433\u0456\u043c\u0435\u043d 8 \u0431\u0438\u0442\u0442\u0456\u043a sRGB \u043d\u0435\u043c\u0435\u0441\u0435 YCbCr \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0444\u0430\u0439\u043b \u04e9\u043b\u0448\u0435\u043c\u0456 \u043c\u0435\u043d \u043a\u04e9\u0440\u0456\u043d\u0435\u0442\u0456\u043d \u0441\u0430\u043f\u0430\u043d\u044b\u04a3 \u0435\u04a3 \u0436\u0430\u049b\u0441\u044b \u0442\u0435\u04a3\u0433\u0435\u0440\u0456\u043c\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456.<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"faq-item\">\n                    <h3 class=\"faq-question\">\n                        <span class=\"faq-icon\"><i class=\"fas fa-question-circle\"><\/i><\/span>\n                        \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043c\u0435\u043d \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u043d\u0434\u0430\u0439 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441 \u0431\u0430\u0440?\n                    <\/h3>\n                    <div class=\"faq-answer\">\n                        <p>\u0411\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u043c\u0435\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043a\u0435\u0441\u043a\u0456\u043d \u0441\u0430\u043f\u0430\u0441\u044b\u043d\u0430 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0442\u0456\u043d \u04e9\u0437\u0430\u0440\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u04b1\u0493\u044b\u043c\u0434\u0430\u0440. \u0411\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u049b\u0430\u043d\u0448\u0430 \u0442\u04af\u0441 \u043c\u04d9\u043d\u0434\u0435\u0440\u0456\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0433\u0435 \u0431\u043e\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439 \u043e\u0442\u044b\u0440\u044b\u043f, \u04d9\u0440 \u0442\u04af\u0441 \u0430\u0440\u043d\u0430\u0441\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u0431\u0438\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u0441\u0430\u043d\u044b\u043d \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456. \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u0442\u04af\u0441\u0442\u0435\u0440 \u0430\u0443\u049b\u044b\u043c\u044b\u043d (\u0433\u0430\u043c\u043c\u0430) \u0430\u043d\u044b\u049b\u0442\u0430\u0441\u0430, \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456 \u0431\u04b1\u043b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u043d\u044b\u04a3 \u049b\u0430\u043d\u0448\u0430\u043b\u044b\u049b\u0442\u044b \u0434\u04d9\u043b \u0431\u04e9\u043b\u0456\u043d\u0433\u0435\u043d\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. ProPhoto RGB \u0441\u0438\u044f\u049b\u0442\u044b \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456 \u0436\u043e\u043b\u0430\u049b \u043f\u0435\u043d \u043f\u043e\u0441\u0442\u0435\u0440\u0438\u0437\u0430\u0446\u0438\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u04af\u0448\u0456\u043d \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u043e\u0493\u0430\u0440\u044b\u0440\u0430\u049b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456. \u04e8\u0439\u0442\u043a\u0435\u043d\u0456, \u0431\u0456\u0440\u0434\u0435\u0439 \u043c\u04d9\u043d\u0434\u0435\u0440 \u0441\u0430\u043d\u044b \u04af\u043b\u043a\u0435\u043d\u0456\u0440\u0435\u043a \u0442\u04af\u0441 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u044b\u043d\u0434\u0430 \u0441\u043e\u0437\u044b\u043b\u0443\u044b \u043a\u0435\u0440\u0435\u043a, \u0431\u04b1\u043b \u043a\u04e9\u0440\u0448\u0456 \u0442\u04af\u0441\u0442\u0435\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u04af\u043b\u043a\u0435\u043d\u0456\u0440\u0435\u043a \u00ab\u049b\u0430\u0434\u0430\u043c\u0434\u0430\u0440\u00bb \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u041c\u044b\u0441\u0430\u043b\u044b, 8-\u0431\u0438\u0442\u0442\u0456\u043a \u043a\u043e\u0434\u0442\u0430\u0443 \u04d9\u0440 \u0430\u0440\u043d\u0430\u0493\u0430 256 \u0434\u0435\u04a3\u0433\u0435\u0439\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456, \u0431\u04b1\u043b \u04d9\u0434\u0435\u0442\u0442\u0435 sRGB \u04af\u0448\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u043b\u0456\u043a\u0442\u0456, \u0431\u0456\u0440\u0430\u049b ProPhoto RGB \u04af\u0448\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u043b\u0456\u043a\u0441\u0456\u0437. \u0421\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u043a\u0435\u04a3 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0433\u0435\u043d\u0434\u0435 \u043a\u04d9\u0441\u0456\u0431\u0438 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0440\u0434\u0456\u0441\u0442\u0435\u0440\u0456 \u0436\u0438\u0456 \u04d9\u0440 \u0430\u0440\u043d\u0430\u0493\u0430 16 \u0431\u0438\u0442 (65 536 \u0434\u0435\u04a3\u0433\u0435\u0439) \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. \u0421\u043e\u043b \u0441\u0438\u044f\u049b\u0442\u044b, HDR \u043c\u0430\u0437\u043c\u04b1\u043d\u044b \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0436\u0430\u0440\u044b\u049b\u0442\u044b\u049b \u0430\u0443\u049b\u044b\u043c\u044b\u043d \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u0493\u0430\u0440\u044b \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d (10-\u0431\u0438\u0442 \u043d\u0435\u043c\u0435\u0441\u0435 12-\u0431\u0438\u0442) \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456. \u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456 \u043c\u0435\u043d \u0431\u0438\u0442 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456\u043d\u0456\u04a3 \u0442\u0456\u0440\u043a\u0435\u0441\u0456\u043c\u0456 \u0431\u0456\u0440\u0433\u0435 \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435 \u04b1\u0441\u044b\u043d\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u0440\u0435\u043a\u0448\u0435 \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456\u04a3 \u0436\u0430\u043b\u043f\u044b \u0441\u0430\u043d\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b.<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <!-- CTA Section -->\n        <section class=\"cta-section\">\n            <div class=\"cta-pattern\"><\/div>\n            <div class=\"cta-content\">\n                <h2 class=\"cta-title\">\u0416\u043e\u0431\u0430\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430\u0493\u044b \u0442\u04af\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u043c\u0435\u04a3\u0433\u0435\u0440\u0456\u04a3\u0456\u0437<\/h2>\n                <p class=\"cta-text\">\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444, \u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440 \u043d\u0435\u043c\u0435\u0441\u0435 \u04d9\u0437\u0456\u0440\u043b\u0435\u0443\u0448\u0456 \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437 \u0434\u0430, \u043a\u04d9\u0441\u0456\u0431\u0438 \u0441\u0430\u043f\u0430\u043b\u044b \u0436\u04b1\u043c\u044b\u0441 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u0433\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443 \u04e9\u0442\u0435 \u043c\u0430\u04a3\u044b\u0437\u0434\u044b. \u0422\u04af\u0441\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0431\u0430\u0440\u043b\u044b\u049b \u043c\u0435\u0434\u0438\u0430\u0434\u0430 \u0431\u0456\u0440\u043a\u0435\u043b\u043a\u0456 \u0431\u043e\u043b\u0443\u044b\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u0442\u04b1\u0436\u044b\u0440\u044b\u043c\u0434\u0430\u043c\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u04a3\u044b\u0437.<\/p>\n                <div class=\"hero-buttons\">\n                    <a href=\"#color-comparison\" class=\"btn btn-primary\">\u0422\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u0443<\/a>\n                    <a href=\"#practical-guides\" class=\"btn btn-secondary\">\u041f\u0440\u0430\u043a\u0442\u0438\u043a\u0430\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u049b\u0430\u0440\u0430\u04a3\u044b\u0437<\/a>\n                <\/div>\n            <\/div>\n        <\/section>\n    <\/div>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443: RGB, CMYK, LAB, HSL \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0442\u043e\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b \u0421\u0430\u043d\u0434\u044b\u049b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443 \u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456, \u0442\u04af\u0441 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"pagelayer_contact_templates":[],"_pagelayer_content":"","_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-3597","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"woocommerce_thumbnail":false,"woocommerce_single":false,"woocommerce_gallery_thumbnail":false},"uagb_author_info":{"display_name":"convertify","author_link":"https:\/\/convertifypro.com\/author\/convertifypro\/"},"uagb_comment_info":0,"uagb_excerpt":"\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443: RGB, CMYK, LAB, HSL \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0442\u043e\u043b\u044b\u049b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b \u0421\u0430\u043d\u0434\u044b\u049b \u043a\u0435\u0441\u043a\u0456\u043d\u0434\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u04af\u0441 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u04af\u0441\u0456\u043d\u0443 \u0422\u04af\u0441 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456, \u0442\u04af\u0441 [&hellip;]","_links":{"self":[{"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/pages\/3597","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/comments?post=3597"}],"version-history":[{"count":0,"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/pages\/3597\/revisions"}],"wp:attachment":[{"href":"https:\/\/convertifypro.com\/wp-json\/wp\/v2\/media?parent=3597"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}