{"id":764,"date":"2026-04-18T00:41:08","date_gmt":"2026-04-17T22:41:08","guid":{"rendered":"https:\/\/www.hanpeptide.com\/?page_id=764"},"modified":"2026-04-18T00:43:05","modified_gmt":"2026-04-17T22:43:05","slug":"peg-mgf-5-mg","status":"publish","type":"page","link":"https:\/\/www.hanpeptide.com\/?page_id=764","title":{"rendered":"PEG MGF 5 MG"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"764\" class=\"elementor elementor-764\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ceb80fc e-con-full e-flex e-con e-parent\" data-id=\"ceb80fc\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-2b518fd3 e-flex e-con-boxed elementor-invisible e-con e-child\" data-id=\"2b518fd3\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;,&quot;animation_delay&quot;:150}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-328ccdf1 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-heading\" data-id=\"328ccdf1\" data-element_type=\"widget\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-\"><h2 class=\"ekit-heading--title elementskit-section-title text_fill\">PEG MGF  <span><span>5 mg<\/span><\/span><\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-09ac1c1 e-flex e-con-boxed e-con e-parent\" data-id=\"09ac1c1\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e2ce0df elementor-widget elementor-widget-html\" data-id=\"e2ce0df\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"tr\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>Scroll-controlled DNA Animation<\/title>\r\n    <style>\r\n        * {\r\n            margin: 0;\r\n            padding: 0;\r\n            box-sizing: border-box;\r\n        }\r\n        \r\n        body {\r\n            background-color: #010719;\r\n            overflow-x: hidden;\r\n            height: 400vh;\r\n        }\r\n        \r\n        #dna-container {\r\n            position: fixed;\r\n            top: 0;\r\n            left: 0;\r\n            width: 100%;\r\n            height: 100vh;\r\n            z-index: -1; \/* Di\u011fer i\u00e7eri\u011fin arkas\u0131nda kalacak *\/\r\n            pointer-events: none; \/* T\u0131klama olaylar\u0131n\u0131 engelle *\/\r\n        }\r\n    <\/style>\r\n<\/head>\r\n<body>\r\n    <!-- DNA Animasyonu -->\r\n    <div id=\"dna-container\"><\/div>\r\n\r\n    <script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/three.js\/r128\/three.min.js\"><\/script>\r\n    <script>\r\n        document.addEventListener('DOMContentLoaded', function() {\r\n            \/\/ Scene, Camera, Renderer\r\n            const scene = new THREE.Scene();\r\n            scene.background = new THREE.Color(0x010719);\r\n            \r\n            const camera = new THREE.PerspectiveCamera(75, window.innerWidth \/ window.innerHeight, 0.1, 1000);\r\n            camera.position.z = 15;\r\n            \r\n            const renderer = new THREE.WebGLRenderer({ \r\n                antialias: true,\r\n                alpha: true \/\/ \u015eeffaf arka plan\r\n            });\r\n            renderer.setSize(window.innerWidth, window.innerHeight);\r\n            document.getElementById('dna-container').appendChild(renderer.domElement);\r\n            \r\n            \/\/ DNA sarmal\u0131 i\u00e7in malzeme\r\n            const dnaMaterial = new THREE.MeshPhongMaterial({ \r\n                color: 0x0F70B7,\r\n                shininess: 100,\r\n                transparent: true,\r\n                opacity: 0.8\r\n            });\r\n            \r\n            \/\/ DNA sarmal\u0131 olu\u015fturma\r\n            const dnaGroup = new THREE.Group();\r\n            scene.add(dnaGroup);\r\n            \r\n            \/\/ DNA sarmal\u0131 parametreleri\r\n            const radius = 2;\r\n            const segments = 100;\r\n            const height = 20;\r\n            const turns = 5;\r\n            \r\n            \/\/ DNA sarmal\u0131 olu\u015ftur\r\n            function createDNA() {\r\n                \/\/ DNA sarmal\u0131 i\u00e7in iki zincir olu\u015ftur\r\n                for (let i = 0; i < 2; i++) {\r\n                    const offset = i * Math.PI;\r\n                    \r\n                    for (let j = 0; j <= segments; j++) {\r\n                        const t = j \/ segments;\r\n                        const angle = t * Math.PI * 2 * turns + offset;\r\n                        const y = (t - 0.5) * height;\r\n                        \r\n                        \/\/ D\u00fc\u011f\u00fcmler\r\n                        const nodeGeometry = new THREE.SphereGeometry(0.1, 8, 8);\r\n                        const node = new THREE.Mesh(nodeGeometry, dnaMaterial);\r\n                        node.position.x = radius * Math.cos(angle);\r\n                        node.position.y = y;\r\n                        node.position.z = radius * Math.sin(angle);\r\n                        dnaGroup.add(node);\r\n                        \r\n                        \/\/ Ba\u011flar\r\n                        if (j < segments) {\r\n                            const nextT = (j + 1) \/ segments;\r\n                            const nextAngle = nextT * Math.PI * 2 * turns + offset;\r\n                            const nextY = (nextT - 0.5) * height;\r\n                            \r\n                            const bondGeometry = new THREE.CylinderGeometry(0.03, 0.03, \r\n                                Math.sqrt(\r\n                                    Math.pow(radius * Math.cos(nextAngle) - radius * Math.cos(angle), 2) +\r\n                                    Math.pow(nextY - y, 2) +\r\n                                    Math.pow(radius * Math.sin(nextAngle) - radius * Math.sin(angle), 2)\r\n                                ), 8);\r\n                            const bond = new THREE.Mesh(bondGeometry, dnaMaterial);\r\n                            \r\n                            bond.position.x = (radius * Math.cos(angle) + radius * Math.cos(nextAngle)) \/ 2;\r\n                            bond.position.y = (y + nextY) \/ 2;\r\n                            bond.position.z = (radius * Math.sin(angle) + radius * Math.sin(nextAngle)) \/ 2;\r\n                            \r\n                            bond.lookAt(\r\n                                radius * Math.cos(nextAngle),\r\n                                nextY,\r\n                                radius * Math.sin(nextAngle)\r\n                            );\r\n                            \r\n                            dnaGroup.add(bond);\r\n                        }\r\n                        \r\n                        \/\/ \u00c7apraz ba\u011flar\r\n                        if (j % 5 === 0 && j < segments - 5) {\r\n                            const crossGeometry = new THREE.CylinderGeometry(0.02, 0.02, \r\n                                Math.sqrt(\r\n                                    Math.pow(radius * Math.cos(angle + Math.PI) - radius * Math.cos(angle), 2) +\r\n                                    Math.pow(y - y, 2) +\r\n                                    Math.pow(radius * Math.sin(angle + Math.PI) - radius * Math.sin(angle), 2)\r\n                                ), 8);\r\n                            const cross = new THREE.Mesh(crossGeometry, dnaMaterial);\r\n                            \r\n                            cross.position.x = (radius * Math.cos(angle) + radius * Math.cos(angle + Math.PI)) \/ 2;\r\n                            cross.position.y = y;\r\n                            cross.position.z = (radius * Math.sin(angle) + radius * Math.sin(angle + Math.PI)) \/ 2;\r\n                            \r\n                            cross.lookAt(\r\n                                radius * Math.cos(angle + Math.PI),\r\n                                y,\r\n                                radius * Math.sin(angle + Math.PI)\r\n                            );\r\n                            \r\n                            dnaGroup.add(cross);\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n            \r\n            createDNA();\r\n            \r\n            \/\/ I\u015f\u0131kland\u0131rma\r\n            const ambientLight = new THREE.AmbientLight(0xffffff, 0.5);\r\n            scene.add(ambientLight);\r\n            \r\n            const directionalLight = new THREE.DirectionalLight(0xffffff, 0.8);\r\n            directionalLight.position.set(5, 10, 7);\r\n            scene.add(directionalLight);\r\n            \r\n            \/\/ Scroll animasyonu\r\n            let scrollProgress = 0;\r\n            let targetScrollProgress = 0;\r\n            \r\n            window.addEventListener('scroll', function() {\r\n                const scrollY = window.scrollY;\r\n                const windowHeight = window.innerHeight;\r\n                const documentHeight = document.documentElement.scrollHeight - windowHeight;\r\n                \r\n                targetScrollProgress = scrollY \/ documentHeight;\r\n            });\r\n            \r\n            \/\/ Animasyon d\u00f6ng\u00fcs\u00fc\r\n            function animate() {\r\n                requestAnimationFrame(animate);\r\n                \r\n                scrollProgress += (targetScrollProgress - scrollProgress) * 0.05;\r\n                \r\n                \/\/ DNA sarmal\u0131n\u0131 scroll'a g\u00f6re d\u00f6nd\u00fcr\r\n                dnaGroup.rotation.y = scrollProgress * Math.PI * 4;\r\n                \r\n                \/\/ DNA sarmal\u0131n\u0131 scroll'a g\u00f6re hareket ettir\r\n                dnaGroup.position.y = -scrollProgress * 10;\r\n                \r\n                \/\/ Kameray\u0131 scroll'a g\u00f6re hareket ettir\r\n                camera.position.z = 15 - scrollProgress * 5;\r\n                camera.position.x = Math.sin(scrollProgress * Math.PI * 2) * 3;\r\n                \r\n                camera.lookAt(dnaGroup.position);\r\n                \r\n                renderer.render(scene, camera);\r\n            }\r\n            \r\n            animate();\r\n            \r\n            window.addEventListener('resize', function() {\r\n                camera.aspect = window.innerWidth \/ window.innerHeight;\r\n                camera.updateProjectionMatrix();\r\n                renderer.setSize(window.innerWidth, window.innerHeight);\r\n            });\r\n        });\r\n    <\/script>\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4207b3f4 e-con-full e-flex elementor-invisible e-con e-parent\" data-id=\"4207b3f4\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;slideInUp&quot;,&quot;animation_delay&quot;:200}\">\n\t\t<div class=\"elementor-element elementor-element-1a84938d e-con-full e-flex e-con e-child\" data-id=\"1a84938d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/www.hanpeptide.com\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Adsiz-tasarim-4.mp4&quot;,&quot;background_video_start&quot;:1,&quot;background_video_end&quot;:15,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div>\t\t<div class=\"elementor-element elementor-element-183a99fb elementor-widget elementor-widget-image\" data-id=\"183a99fb\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"768\" height=\"553\" src=\"https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/PEGMGF_G.png\" class=\"attachment-full size-full wp-image-726\" alt=\"\" srcset=\"https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/PEGMGF_G.png 768w, https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/PEGMGF_G-300x216.png 300w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-62259b1 e-con-full e-flex e-con e-child\" data-id=\"62259b1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b33f4e0 elementor-widget elementor-widget-text-editor\" data-id=\"b33f4e0\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>PEG MGF (Pegylated Mechano Growth Factor) is an advanced peptide designed to support muscle growth and recovery processes. It is particularly beneficial after intense workouts, helping accelerate muscle repair and promote regeneration of muscle fibers.<\/p><p>Thanks to its PEG (polyethylene glycol) modification, it remains active in the body for a longer period compared to standard MGF. This extended activity enhances its effectiveness and contributes to improved results.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-769d683b e-flex e-con-boxed e-con e-parent\" data-id=\"769d683b\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-dd3f000 e-con-full e-flex e-con e-child\" data-id=\"dd3f000\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-38ae7efa e-con-full e-flex e-con e-child\" data-id=\"38ae7efa\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-53d84bc6 elementor-widget elementor-widget-elementskit-heading\" data-id=\"53d84bc6\" data-element_type=\"widget\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_left   ekit_heading_tablet-   ekit_heading_mobile-text_left\"><h2 class=\"ekit-heading--title elementskit-section-title text_fill\"><span><span>Recover Faster<\/span><\/span> \u2014 Perform Stronger.<\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6ba815f4 e-con-full e-flex e-con e-child\" data-id=\"6ba815f4\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d4948f2 elementor-widget elementor-widget-text-editor\" data-id=\"2d4948f2\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p data-start=\"1149\" data-end=\"1397\">Choose PEG MGF 5 MG to support rapid post-workout recovery, enhance muscle repair, and maintain peak physical performance. This peptide helps promote muscle fiber regeneration, allowing you to train more efficiently with reduced downtime.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-102f9c90 e-con-full e-flex e-con e-child\" data-id=\"102f9c90\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2d52ca3f e-con-full e-flex e-con e-child\" data-id=\"2d52ca3f\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2bad2dac elementor-widget elementor-widget-heading\" data-id=\"2bad2dac\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">\ud83d\udca1<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2061a3a8 elementor-widget elementor-widget-heading\" data-id=\"2061a3a8\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Product Details<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2a99c139 e-con-full e-flex e-con e-child\" data-id=\"2a99c139\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1b479d16 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"1b479d16\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:150}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6ad3710e elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"6ad3710e\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">01<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6cf65867 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-accordion\" data-id=\"6cf65867\" data-element_type=\"widget\" data-widget_type=\"elementskit-accordion.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\n        <div class=\"elementskit-accordion accoedion-primary\" id=\"accordion-69ef1e794e802\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-6cf65867\">\n                        <a href=\"#collapse-97e05e369ef1e794e802\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e369ef1e794e802\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e369ef1e794e802\">\n                            \n                            <span class=\"ekit-accordion-title\">Rapid Tissue Repair<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-97e05e369ef1e794e802\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-6cf65867\" data-parent=\"#accordion-69ef1e794e802\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Accelerates healing in muscles, tendons, ligaments, and internal organs.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                                        <\/div>\n    <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2a00c0ee e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"2a00c0ee\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b50dba2 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"6b50dba2\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">02<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7087f6dd elementor-widget__width-initial elementor-widget elementor-widget-elementskit-accordion\" data-id=\"7087f6dd\" data-element_type=\"widget\" data-widget_type=\"elementskit-accordion.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\n        <div class=\"elementskit-accordion accoedion-primary\" id=\"accordion-69ef1e795017d\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-7087f6dd\">\n                        <a href=\"#collapse-97e05e369ef1e795017d\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e369ef1e795017d\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e369ef1e795017d\">\n                            \n                            <span class=\"ekit-accordion-title\">Anti-Inflammatory Support<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-97e05e369ef1e795017d\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-7087f6dd\" data-parent=\"#accordion-69ef1e795017d\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Reduces inflammation, swelling, and discomfort in injured areas.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                                        <\/div>\n    <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-69920363 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"69920363\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:250}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-71a022c2 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"71a022c2\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">03<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-508b1bc8 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-accordion\" data-id=\"508b1bc8\" data-element_type=\"widget\" data-widget_type=\"elementskit-accordion.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\n        <div class=\"elementskit-accordion accoedion-primary\" id=\"accordion-69ef1e7951b42\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-508b1bc8\">\n                        <a href=\"#collapse-97e05e369ef1e7951b42\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e369ef1e7951b42\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e369ef1e7951b42\">\n                            \n                            <span class=\"ekit-accordion-title\">Enhanced Collagen Production<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-97e05e369ef1e7951b42\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-508b1bc8\" data-parent=\"#accordion-69ef1e7951b42\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Supports stronger connective tissue for improved joint and muscle resilience.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                                        <\/div>\n    <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7da0249 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"7da0249\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:300}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-60005ec6 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"60005ec6\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">04<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5e9b57d6 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-accordion\" data-id=\"5e9b57d6\" data-element_type=\"widget\" data-widget_type=\"elementskit-accordion.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\n        <div class=\"elementskit-accordion accoedion-primary\" id=\"accordion-69ef1e7952d98\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-5e9b57d6\">\n                        <a href=\"#collapse-97e05e369ef1e7952d98\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e369ef1e7952d98\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e369ef1e7952d98\">\n                            \n                            <span class=\"ekit-accordion-title\">Protects Vascular Health<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-97e05e369ef1e7952d98\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-5e9b57d6\" data-parent=\"#accordion-69ef1e7952d98\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Promotes angiogenesis and protects blood vessels, aiding tissue regeneration.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                                        <\/div>\n    <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4ce0caf4 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"4ce0caf4\" data-element_type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:350}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2c72acfe elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2c72acfe\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">05<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-476e71d6 elementor-widget__width-initial elementor-widget elementor-widget-elementskit-accordion\" data-id=\"476e71d6\" data-element_type=\"widget\" data-widget_type=\"elementskit-accordion.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\n        <div class=\"elementskit-accordion accoedion-primary\" id=\"accordion-69ef1e7953fdf\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-476e71d6\">\n                        <a href=\"#collapse-97e05e369ef1e7953fdf\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e369ef1e7953fdf\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e369ef1e7953fdf\">\n                            \n                            <span class=\"ekit-accordion-title\">Safe and Well-Tolerated<\/span>\n\n                            \n                                <div class=\"ekit_accordion_icon_group\">\n                                    <div class=\"ekit_accordion_normal_icon\">\n                                        <!-- Normal Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-down-arrow1\"><\/i>                                    <\/div>\n\n                                    <div class=\"ekit_accordion_active_icon\">\n                                        <!-- Active Icon -->\n\t\t\t\t\t\t\t\t\t\t<i class=\"icon icon-cancel\"><\/i>                                    <\/div>\n                                <\/div>\n\n                            \n                                                    <\/a>\n                    <\/div>\n\n                    <div id=\"Collapse-97e05e369ef1e7953fdf\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-476e71d6\" data-parent=\"#accordion-69ef1e7953fdf\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Non-stimulant, non-hormonal, and suitable for both men and women seeking optimized recovery.<\/p>                        <\/div>\n\n                    <\/div>\n\n                <\/div><!-- .elementskit-card END -->\n\n                                        <\/div>\n    <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-be233d8 e-flex e-con-boxed e-con e-parent\" data-id=\"be233d8\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-104bb2df e-con-full e-flex e-con e-child\" data-id=\"104bb2df\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-712aa1f elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-elementskit-heading\" data-id=\"712aa1f\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-\"><h2 class=\"ekit-heading--title elementskit-section-title text_fill\">\"Advancing health, through science purity, and <span><span>innovation.<\/span><\/span>\"<\/h2><\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>PEG MGF 5 mg Scroll-controlled DNA Animation PEG MGF (Pegylated Mechano Growth Factor) is an advanced peptide designed to support muscle growth and recovery processes. It is particularly beneficial after intense workouts, helping accelerate muscle repair and promote regeneration of muscle fibers. Thanks to its PEG (polyethylene glycol) modification, it remains active in the body [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"footnotes":""},"class_list":["post-764","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/764","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=764"}],"version-history":[{"count":4,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/764\/revisions"}],"predecessor-version":[{"id":768,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/764\/revisions\/768"}],"wp:attachment":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=764"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}