{"id":465,"date":"2025-10-10T23:53:36","date_gmt":"2025-10-10T21:53:36","guid":{"rendered":"http:\/\/www.hanpeptide.com\/?page_id=465"},"modified":"2026-04-18T00:35:59","modified_gmt":"2026-04-17T22:35:59","slug":"ghrp-6-10-mg","status":"publish","type":"page","link":"https:\/\/www.hanpeptide.com\/?page_id=465","title":{"rendered":"Ghrp 6 10 Mg"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"465\" class=\"elementor elementor-465\">\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\">Ghrp 6 <span><span>10 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-b2ca780 e-flex e-con-boxed e-con e-parent\" data-id=\"b2ca780\" 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-47a488a elementor-widget elementor-widget-html\" data-id=\"47a488a\" 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\/GHRP6_10MG_G.png\" class=\"attachment-full size-full wp-image-714\" alt=\"\" srcset=\"https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/GHRP6_10MG_G.png 768w, https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/GHRP6_10MG_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 data-start=\"445\" data-end=\"820\">GHRP-6 (Growth Hormone Releasing Peptide-6) is a powerful peptide designed to stimulate the natural release of growth hormone from the pituitary gland. It works by mimicking the natural ghrelin signal \u2014 the \u201chunger hormone\u201d \u2014 which triggers the body to produce more growth hormone.<br data-start=\"651\" data-end=\"654\" \/>This process enhances muscle growth, promotes fat reduction, and accelerates recovery. GHRP-6 also improves sleep quality, boosts collagen production, and supports healthy skin and joint function.<br data-start=\"850\" data-end=\"853\" \/>Used by athletes, bodybuilders, and individuals seeking anti-aging benefits, GHRP-6 offers a natural yet potent solution to rejuvenation, performance, and overall vitality.<\/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>Awaken Your Growth<\/span><\/span> \u2014 Naturally.<\/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 GHRP-6 10 mg for its ability to elevate natural growth hormone levels safely and effectively.<br data-start=\"1249\" data-end=\"1252\" \/>It\u2019s perfect for individuals looking to improve muscle tone, recovery speed, and energy while supporting youthful metabolism and cellular repair.<\/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-6a20577b140a8\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-6cf65867\">\n                        <a href=\"#collapse-97e05e36a20577b140a8\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a20577b140a8\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a20577b140a8\">\n                            \n                            <span class=\"ekit-accordion-title\">Stimulates Natural Growth Hormone Release<\/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-97e05e36a20577b140a8\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-6cf65867\" data-parent=\"#accordion-6a20577b140a8\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>GHRP-6 activates the pituitary gland to release growth hormone naturally, supporting muscle growth and tissue regeneration.<\/p><h4>\u00a0<\/h4>                        <\/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-6a20577b150c4\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-7087f6dd\">\n                        <a href=\"#collapse-97e05e36a20577b150c4\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a20577b150c4\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a20577b150c4\">\n                            \n                            <span class=\"ekit-accordion-title\">Enhances Recovery and Sleep<\/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-97e05e36a20577b150c4\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-7087f6dd\" data-parent=\"#accordion-6a20577b150c4\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Promotes deeper, more restorative sleep and faster recovery after intense workouts or physical strain.<\/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-6a20577b15b4b\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-508b1bc8\">\n                        <a href=\"#collapse-97e05e36a20577b15b4b\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a20577b15b4b\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a20577b15b4b\">\n                            \n                            <span class=\"ekit-accordion-title\">Supports Fat Metabolism<\/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-97e05e36a20577b15b4b\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-508b1bc8\" data-parent=\"#accordion-6a20577b15b4b\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Improves the body\u2019s ability to burn fat while preserving lean muscle mass, aiding in a more defined physique.<\/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-6a20577b16573\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-5e9b57d6\">\n                        <a href=\"#collapse-97e05e36a20577b16573\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a20577b16573\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a20577b16573\">\n                            \n                            <span class=\"ekit-accordion-title\">Improves Skin, Hair, and Joint 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-97e05e36a20577b16573\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-5e9b57d6\" data-parent=\"#accordion-6a20577b16573\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Stimulates collagen production, contributing to smoother skin, stronger joints, and healthier connective tissue.<\/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-6a20577b17006\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-476e71d6\">\n                        <a href=\"#collapse-97e05e36a20577b17006\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a20577b17006\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a20577b17006\">\n                            \n                            <span class=\"ekit-accordion-title\">Boosts Energy and Vitality<\/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-97e05e36a20577b17006\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-476e71d6\" data-parent=\"#accordion-6a20577b17006\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Enhances overall sense of well-being, stamina, and endurance \u2014 making you feel revitalized inside and out.<\/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>Ghrp 6 10 mg Scroll-controlled DNA Animation GHRP-6 (Growth Hormone Releasing Peptide-6) is a powerful peptide designed to stimulate the natural release of growth hormone from the pituitary gland. It works by mimicking the natural ghrelin signal \u2014 the \u201chunger hormone\u201d \u2014 which triggers the body to produce more growth hormone.This process enhances muscle growth, [&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-465","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/465","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=465"}],"version-history":[{"count":16,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/465\/revisions"}],"predecessor-version":[{"id":739,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/465\/revisions\/739"}],"wp:attachment":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}