{"id":477,"date":"2025-10-11T00:08:04","date_gmt":"2025-10-10T22:08:04","guid":{"rendered":"http:\/\/www.hanpeptide.com\/?page_id=477"},"modified":"2026-04-18T00:37:54","modified_gmt":"2026-04-17T22:37:54","slug":"tb-500-10-mg","status":"publish","type":"page","link":"https:\/\/www.hanpeptide.com\/?page_id=477","title":{"rendered":"TB-500 10 Mg"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"477\" class=\"elementor elementor-477\">\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\">TB 500  <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-1ddc177 e-flex e-con-boxed e-con e-parent\" data-id=\"1ddc177\" 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-c2fbff6 elementor-widget elementor-widget-html\" data-id=\"c2fbff6\" 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\/TB_500_G.png\" class=\"attachment-full size-full wp-image-717\" alt=\"\" srcset=\"https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/TB_500_G.png 768w, https:\/\/www.hanpeptide.com\/wp-content\/uploads\/2026\/04\/TB_500_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=\"370\" data-end=\"1153\">TB-500 is a synthetic peptide derived from thymosin beta-4, a naturally occurring protein in the human body known for its regenerative and healing properties. This peptide is highly regarded for promoting cellular repair, tissue regeneration, and reducing inflammation. It works by enhancing actin filament formation, which supports cell migration, wound healing, and tissue recovery in muscles, tendons, ligaments, and organs.<br data-start=\"613\" data-end=\"616\" \/>Athletes, fitness enthusiasts, and those recovering from injuries rely on TB-500 to accelerate healing, improve flexibility, and maintain peak physical performance. Regular use can help reduce recovery time, prevent injury recurrence, and promote overall tissue health safely and effectively.<\/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>Heal Faster<\/span><\/span> \u2014 Move 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\">TB-500 is your choice for accelerated recovery, enhanced flexibility, and improved tissue resilience. Ideal for anyone looking to support their body\u2019s natural repair mechanisms and maintain optimal performance without relying on hormones or stimulants.<\/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-6a9a7e1fcf85a\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-6cf65867\">\n                        <a href=\"#collapse-97e05e36a9a7e1fcf85a\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a9a7e1fcf85a\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a9a7e1fcf85a\">\n                            \n                            <span class=\"ekit-accordion-title\">Accelerates Tissue Healing<\/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-97e05e36a9a7e1fcf85a\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-6cf65867\" data-parent=\"#accordion-6a9a7e1fcf85a\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Promotes rapid recovery 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-6a9a7e1fd1398\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-7087f6dd\">\n                        <a href=\"#collapse-97e05e36a9a7e1fd1398\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a9a7e1fd1398\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a9a7e1fd1398\">\n                            \n                            <span class=\"ekit-accordion-title\">Reduces Inflammation<\/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-97e05e36a9a7e1fd1398\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-7087f6dd\" data-parent=\"#accordion-6a9a7e1fd1398\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Helps manage swelling and discomfort in injured or strained 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-6a9a7e1fd27aa\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-508b1bc8\">\n                        <a href=\"#collapse-97e05e36a9a7e1fd27aa\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a9a7e1fd27aa\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a9a7e1fd27aa\">\n                            \n                            <span class=\"ekit-accordion-title\">Improves Flexibility and Mobility<\/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-97e05e36a9a7e1fd27aa\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-508b1bc8\" data-parent=\"#accordion-6a9a7e1fd27aa\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Supports cellular processes that enhance joint and muscle function.<\/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-6a9a7e1fd3b51\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-5e9b57d6\">\n                        <a href=\"#collapse-97e05e36a9a7e1fd3b51\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a9a7e1fd3b51\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a9a7e1fd3b51\">\n                            \n                            <span class=\"ekit-accordion-title\">Supports Cellular Regeneration<\/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-97e05e36a9a7e1fd3b51\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-5e9b57d6\" data-parent=\"#accordion-6a9a7e1fd3b51\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Encourages cell migration and tissue repair for long-term 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-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-6a9a7e1fd4f0c\">\n\n            \n                <div class=\"elementskit-card \">\n                    <div class=\"elementskit-card-header\" id=\"primaryHeading-0-476e71d6\">\n                        <a href=\"#collapse-97e05e36a9a7e1fd4f0c\" class=\"ekit-accordion--toggler elementskit-btn-link collapsed\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-97e05e36a9a7e1fd4f0c\" aria-expanded=\"false\" aria-controls=\"Collapse-97e05e36a9a7e1fd4f0c\">\n                            \n                            <span class=\"ekit-accordion-title\">Safe and Non-Hormonal<\/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-97e05e36a9a7e1fd4f0c\" class=\" collapse\" aria-labelledby=\"primaryHeading-0-476e71d6\" data-parent=\"#accordion-6a9a7e1fd4f0c\">\n\n                        <div class=\"elementskit-card-body ekit-accordion--content\">\n                            <p>Suitable for both men and women seeking natural recovery support without stimulants or hormones.<\/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>TB 500 10 Mg Scroll-controlled DNA Animation TB-500 is a synthetic peptide derived from thymosin beta-4, a naturally occurring protein in the human body known for its regenerative and healing properties. This peptide is highly regarded for promoting cellular repair, tissue regeneration, and reducing inflammation. It works by enhancing actin filament formation, which supports cell [&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-477","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/477","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=477"}],"version-history":[{"count":13,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/477\/revisions"}],"predecessor-version":[{"id":748,"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=\/wp\/v2\/pages\/477\/revisions\/748"}],"wp:attachment":[{"href":"https:\/\/www.hanpeptide.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=477"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}