{"id":997,"date":"2024-02-14T14:15:40","date_gmt":"2024-02-14T14:15:40","guid":{"rendered":"https:\/\/healthdesire.online\/?page_id=997"},"modified":"2024-09-04T13:05:46","modified_gmt":"2024-09-04T13:05:46","slug":"el-toro-usa-test-2","status":"publish","type":"page","link":"https:\/\/healthdesire.online\/?page_id=997","title":{"rendered":"El Toro USA AL"},"content":{"rendered":"<style>\n    \/* Styles CSS pour la popup *\/\n    #popup-container {\n        display: none; \/* La popup est cach\u00e9e par d\u00e9faut *\/\n        position: fixed;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        background-color: rgba(240, 240, 240, 0.8);\n        border-radius: 10px;\n        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);\n        z-index: 9999;\n        padding: 20px;\n        width: 80%; \/* Largeur de la popup ajust\u00e9e pour l'\u00e9cran *\/\n        max-width: 600px; \/* Largeur maximale de la popup *\/\n    }\n\n    #popup {\n        background-color: white;\n        padding: 20px;\n        border: 1px solid #ccc;\n        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);\n        max-width: 100%;\n        overflow: auto;\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n    }\n\n    \/* Style pour les champs de formulaire *\/\n    #popup input[type=\"text\"],\n    #popup input[type=\"tel\"],\n    #popup textarea,\n    #popup select {\n        font-family: \"Cairo\", sans-serif;\n        font-size: 16px;\n        border: 2px solid #000;\n        border-radius: 5px;\n        padding: 10px;\n        margin-bottom: 15px;\n        width: calc(100% - 24px);\n        box-sizing: border-box;\n    }\n\n    \/* Style pour les labels *\/\n    #popup label {\n        font-family: \"Cairo\", sans-serif;\n        font-size: 18px;\n        font-weight: bold;\n        display: block;\n        margin-bottom: 10px;\n        text-align: right;\n    }\n\n    \/* Style pour le bouton d'envoi *\/\n    #popup input[type=\"submit\"] {\n        font-family: \"Cairo\", sans-serif;\n        font-size: 18px;\n        font-weight: bold;\n        background-color: #007bff;\n        color: #fff;\n        border: none;\n        border-radius: 5px;\n        padding: 15px 20px;\n        cursor: pointer;\n        width: calc(100% - 24px);\n        box-sizing: border-box;\n        margin-top: 20px;\n    }\n\n    \/* Style pour le bouton de fermeture *\/\n    .close-btn {\n        font-size: 24px;\n        color: red;\n        position: absolute;\n        top: 10px;\n        right: 10px;\n        cursor: pointer;\n    }\n\n    \/* Style pour le titre en arabe *\/\n    .arabic-title {\n        font-size: 22px;\n        color: red;\n        font-weight: bold;\n        margin-bottom: 10px;\n        text-align: right;\n    }\n\n    \/* Style pour le texte de l'avertissement en arabe *\/\n    .arabic-warning {\n        font-size: 20px;\n        color: red;\n        font-weight: bold;\n        text-align: right;\n    }\n<\/style>\n\n<!-- Contenu de la popup -->\n<div id=\"popup-container\">\n    <div id=\"popup\">\n        <span class=\"close-btn\" onclick=\"closePopup()\">X<\/span>\n        <!-- Titre en arabe -->\n        <label class=\"arabic-title\">\u0639\u0646\u0648\u0627\u0646 \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629<\/label>\n\n        <!-- Formulaire de Contact -->\n        <form id=\"popupForm\" class=\"custom-contact-form\" action=\"https:\/\/map.hvserver.site\/webhook\/9ea72442-b3a3-45ce-b789-d5016726b448\" method=\"POST\">\n            <label for=\"name\">\u0627\u0644\u0627\u0633\u0645:<\/label>\n            <input id=\"name\" name=\"name\" required=\"\" type=\"text\" \/>\n\n            <label for=\"phone\">\u0631\u0642\u0645 \u0627\u0644\u0647\u0627\u062a\u0641:<\/label>\n            <input id=\"phone\" name=\"phone\" required=\"\" type=\"tel\" \/>\n\n            <!-- Champs cach\u00e9s pour l'IP, la campagne, l'URL de la page et l'URL r\u00e9f\u00e9rente -->\n            <input id=\"ip\" name=\"ip\" type=\"hidden\" \/>\n            <input id=\"campaign\" name=\"campaign\" type=\"hidden\" \/>\n            <input id=\"landingPageUrl\" name=\"landingPageUrl\" type=\"hidden\" \/>\n            <input id=\"refererUrl\" name=\"refererUrl\" type=\"hidden\" \/>\n            <input id=\"popup-uniqueId\" name=\"uniqueId\" type=\"hidden\" \/>\n\n            <input type=\"submit\" value=\"\u0625\u0631\u0633\u0627\u0644\" \/>\n        <\/form>\n\n        <!-- Avertissement en arabe et compte \u00e0 rebours -->\n        <label class=\"arabic-warning\">\u0627\u0644\u0643\u0645\u064a\u0629 \u0627\u0644\u0645\u062a\u0628\u0642\u064a\u0629: <span id=\"countdown\">356<\/span><\/label>\n    <\/div>\n<\/div>\n\n<script>\n    \/\/ Fonction pour g\u00e9n\u00e9rer un identifiant unique\n    function generateUniqueId() {\n        return 'xxxxxx'.replace(\/[x]\/g, function(c) {\n            var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);\n            return v.toString(16);\n        });\n    }\n\n    \/\/ Fonction pour ouvrir la popup apr\u00e8s 10 secondes\n    setTimeout(function() {\n        document.getElementById('popup-container').style.display = 'flex';\n\n        \/\/ Assigner une cl\u00e9 unique au formulaire\n        document.getElementById('popup-uniqueId').value = generateUniqueId();\n    }, 10000);\n\n    \/\/ Fonction pour fermer la popup\n    function closePopup() {\n        document.getElementById('popup-container').style.display = 'none';\n    }\n\n    \/\/ Fonction de compte \u00e0 rebours\n    function countdown() {\n        var count = 356;\n        var countdownElement = document.getElementById('countdown');\n        \n        setInterval(function() {\n            if (count > 0) {\n                count--;\n                countdownElement.innerHTML = count;\n            }\n        }, 1000); \/\/ D\u00e9cr\u00e9menter toutes les secondes\n    }\n\n    \/\/ D\u00e9marrer le compte \u00e0 rebours apr\u00e8s l'affichage de la popup\n    setTimeout(function() {\n        countdown();\n    }, 10000); \/\/ D\u00e9lai de 10 secondes pour l'ouverture de la popup\n\n    \/\/ Fonction pour g\u00e9rer l'envoi du formulaire de la popup\n    document.getElementById('popupForm').addEventListener('submit', function(event) {\n        event.preventDefault(); \/\/ Emp\u00eache l'envoi par d\u00e9faut du formulaire\n\n        \/\/ Obtenir les donn\u00e9es du formulaire\n        var name = document.getElementById('name').value;\n        var phone = document.getElementById('phone').value;\n        var ip = document.getElementById('ip').value;\n        var campaign = document.getElementById('campaign').value;\n        var uniqueId = document.getElementById('popup-uniqueId').value;\n        var landingPageUrl = window.location.href;\n        var refererUrl = document.referrer;\n\n        \/\/ Cr\u00e9ation d'un objet contenant les donn\u00e9es du formulaire\n        var formObject = {\n            name: name,\n            phone: phone,\n            ip: ip,\n            campaign: campaign,\n            uniqueId: uniqueId,\n            landingPageUrl: landingPageUrl,\n            refererUrl: refererUrl\n        };\n\n        \/\/ Envoi des donn\u00e9es via XMLHttpRequest\n        var xhr = new XMLHttpRequest();\n        xhr.open('POST', 'https:\/\/map.hvserver.site\/webhook\/9ea72442-b3a3-45ce-b789-d5016726b448', true);\n        xhr.setRequestHeader('Content-Type', 'application\/json');\n        xhr.send(JSON.stringify(formObject));\n\n        \/\/ Redirection apr\u00e8s l'envoi\n        xhr.onload = function() {\n            if (xhr.status === 200) {\n                window.location.href = 'https:\/\/biomaxroom.online\/?page_id=2055';\n            } else {\n                console.error('Une erreur est survenue lors de l\\'envoi des donn\u00e9es.');\n            }\n        };\n    });\n<\/script>\n\n\n\n\n\n\n\n\n\n\n\n\n\n<!-- START Traffic Factory Goal Tag | YM10 -->\n<script type=\"application\/javascript\" src=\"https:\/\/a.tf4srv.com\/tag_gen.js\" data-goal=\"f9b902fc3289af4dd08de5d1de54f68f\" data-value=\"{conversion_value}\"><\/script>\n<!-- END Traffic Factory Goal Tag | YM10 -->\n\n\n\n\n\n<div data-colibri-id=\"997-c1\" class=\"style-708 style-local-997-c1 position-relative\">\n  <!---->\n  <div data-colibri-component=\"section\" data-colibri-id=\"997-c2\" id=\"contact\" class=\"h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-709 style-local-997-c2 position-relative\">\n    <!---->\n    <!---->\n    <div class=\"h-section-grid-container h-section-boxed-container\">\n      <!---->\n      <div data-colibri-id=\"997-c3\" class=\"h-row-container gutters-row-lg-0 gutters-row-md-0 gutters-row-0 gutters-row-v-lg-0 gutters-row-v-md-0 gutters-row-v-0 style-710 style-local-997-c3 position-relative\">\n        <!---->\n        <div class=\"h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-0 gutters-col-md-0 gutters-col-0 gutters-col-v-lg-0 gutters-col-v-md-0 gutters-col-v-0\">\n          <!---->\n          <div class=\"h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-711-outer style-local-997-c4-outer\">\n            <div data-colibri-id=\"997-c4\" class=\"d-flex h-flex-basis h-column__inner h-px-lg-0 h-px-md-0 h-px-0 v-inner-lg-0 v-inner-md-0 v-inner-0 style-711 style-local-997-c4 position-relative\">\n              <!---->\n              <!---->\n              <div class=\"w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start\">\n                <!---->\n                <div data-colibri-id=\"997-c5\" class=\"h-text h-text-component style-712 style-local-997-c5 position-relative h-element\">\n                  <!---->\n                  <!---->\n                  <div class=\"\">\n                    <p>\u0623\u0631\u0633\u0644 \u0637\u0644\u0628 \u0627\u0644\u0622\u0646 \u0648 \u062a\u0645\u062a\u0639 <span style=\"color: rgb(197, 27, 136); font-weight: 700;\">\u0628\u062a\u062e\u0641\u064a\u0636 \u0631\u0623\u0633 \u0627\u0644\u0633\u0646\u0629<\/span><\/p>\n                  <\/div>\n                <\/div>\n                <div data-colibri-id=\"997-c6\" class=\"style-713 style-local-997-c6 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-global-transition-all h-global-transition h-global-transition-all h-contact-form-shortcode\">\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f805-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"805\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/index.php?rest_route=%2Fwp%2Fv2%2Fpages%2F997#wpcf7-f805-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"805\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.4\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f805-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<p><label> \u0627\u0644\u0625\u0633\u0645<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"text-821\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"text-821\" \/><\/span><br \/>\n<\/label><label> \u0627\u0644\u0647\u0627\u062a\u0641<br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"tel-562\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"tel-562\" \/><\/span><br \/>\n<input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"\u0627\u0644\u0627\u0631\u0633\u0627\u0644\" \/><\/label>\n<\/p><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n\n<\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n  <div data-colibri-component=\"section\" data-colibri-id=\"997-c11\" id=\"custom\" class=\"h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-718 style-local-997-c11 position-relative\">\n    <!---->\n    <!---->\n    <div class=\"h-section-grid-container h-section-boxed-container\">\n      <!---->\n      <div data-colibri-id=\"997-c12\" class=\"h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-719 style-local-997-c12 position-relative\">\n        <!---->\n        <div class=\"h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2\">\n          <!---->\n          <div class=\"h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-720-outer style-local-997-c13-outer\">\n            <div data-colibri-id=\"997-c13\" class=\"d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-720 style-local-997-c13 position-relative\">\n              <!---->\n              <!---->\n              <div class=\"w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start\">\n                <!---->\n                <div data-colibri-id=\"997-c14\" class=\"h-global-transition-all h-heading style-721 style-local-997-c14 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-heading__outer style-721 style-local-997-c14\">\n                    <!---->\n                    <!---->\n                    <h1 class=\"\"><strong style=\"font-weight: 700; font-family: Cairo;\">\u0645\u0646\u062a\u0648\u062c <\/strong><strong style=\"font-weight: 700; font-family: Cairo; color: rgb(197, 27, 136);\">\u0637\u0628\u064a\u0639\u064a 100% \u0645\u062c\u0631\u0651\u0628<\/strong><strong style=\"font-weight: 700; font-family: Cairo;\"> \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u062e\u0628\u0631\u0627\u0621 \u0648 <\/strong>\n                      <strong\n                        style=\"font-weight: 700; font-family: Cairo; color: rgb(197, 27, 136);\">\u0645\u0635\u0627\u062f\u0642 <\/strong><strong style=\"font-weight: 700; font-family: Cairo;\">\u0639\u0644\u064a\u0647<\/strong><\/h1>\n                  <\/div>\n                <\/div>\n                <div data-colibri-id=\"997-c15\" class=\"d-block style-722 style-local-997-c15 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-image__frame-container-outer\">\n                    <div class=\"h-image__frame-container\">\n                      <!---->\n                      <!---->\n                      <img loading=\"lazy\" decoding=\"async\" width=\"1414\" height=\"2000\" src=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2024\/01\/Design-sans-titre-5.jpg\" class=\"wp-image-472 style-722-image style-local-997-c15-image\" alt=\"\" srcset=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2024\/01\/Design-sans-titre-5.jpg 1414w, https:\/\/healthdesire.online\/wp-content\/uploads\/2024\/01\/Design-sans-titre-5-212x300.jpg 212w, https:\/\/healthdesire.online\/wp-content\/uploads\/2024\/01\/Design-sans-titre-5-724x1024.jpg 724w, https:\/\/healthdesire.online\/wp-content\/uploads\/2024\/01\/Design-sans-titre-5-768x1086.jpg 768w, https:\/\/healthdesire.online\/wp-content\/uploads\/2024\/01\/Design-sans-titre-5-1086x1536.jpg 1086w\" sizes=\"auto, (max-width: 1414px) 100vw, 1414px\" \/>\n                      <div class=\"h-image__frame h-hide-lg h-hide-md h-hide-sm style-722-frameImage style-local-997-c15-frameImage\"><\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                <div data-colibri-id=\"997-c16\" class=\"h-text h-text-component style-723 style-local-997-c16 position-relative h-element\">\n                  <!---->\n                  <!---->\n                  <div class=\"\">\n                    <p><span style=\"font-weight: 400; font-size: 30px; font-family: Cairo; color: rgb(9, 9, 9);\">\u0639\u0646\u062f \u0627\u0644\u062a\u0648\u0635\u064a\u0644 \u0633\u062a\u062a\u0633\u0644\u0651\u0645 \u0634\u0647\u0627\u062f\u0629 \u0627\u0644\u062a\u062d\u0627\u0644\u064a\u0644 \u0627\u0644\u0645\u062e\u0628\u0631\u064a\u0629&nbsp;<\/span><\/p>\n                  <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n  <div data-colibri-component=\"section\" data-colibri-id=\"997-c17\" id=\"contact\" class=\"h-section h-section-global-spacing d-flex align-items-lg-center align-items-md-center align-items-center style-709 style-local-997-c17 position-relative\">\n    <!---->\n    <!---->\n    <div class=\"h-section-grid-container h-section-boxed-container\">\n      <!---->\n      <div data-colibri-id=\"997-c18\" class=\"h-row-container gutters-row-lg-2 gutters-row-md-2 gutters-row-0 gutters-row-v-lg-2 gutters-row-v-md-2 gutters-row-v-2 style-724 style-local-997-c18 position-relative\">\n        <!---->\n        <div class=\"h-row justify-content-lg-center justify-content-md-center justify-content-center align-items-lg-stretch align-items-md-stretch align-items-stretch gutters-col-lg-2 gutters-col-md-2 gutters-col-0 gutters-col-v-lg-2 gutters-col-v-md-2 gutters-col-v-2\">\n          <!---->\n          <div class=\"h-column h-column-container d-flex h-col-lg-auto h-col-md-auto h-col-auto style-725-outer style-local-997-c19-outer\">\n            <div data-colibri-id=\"997-c19\" class=\"d-flex h-flex-basis h-column__inner h-px-lg-2 h-px-md-2 h-px-2 v-inner-lg-2 v-inner-md-2 v-inner-2 style-725 style-local-997-c19 position-relative\">\n              <!---->\n              <!---->\n              <div class=\"w-100 h-y-container h-column__content h-column__v-align flex-basis-100 align-self-lg-start align-self-md-start align-self-start\">\n                <!---->\n                <div data-colibri-id=\"997-c20\" class=\"h-global-transition-all h-heading style-726 style-local-997-c20 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-heading__outer style-726 style-local-997-c20\">\n                    <!---->\n                    <!---->\n                    <h1 class=\"\"><span style=\"font-family: Cairo; font-weight: 700;\">\u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a<\/span><\/h1>\n                  <\/div>\n                <\/div>\n                <div data-colibri-id=\"997-c21\" class=\"d-block style-727 style-local-997-c21 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-image__frame-container-outer\">\n                    <div class=\"h-image__frame-container\">\n                      <!---->\n                      <!---->\n                      <img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1920\" src=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/3.jpg\" class=\"wp-image-164 style-727-image style-local-997-c21-image\" alt=\"\" srcset=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/3.jpg 1080w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/3-169x300.jpg 169w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/3-576x1024.jpg 576w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/3-768x1365.jpg 768w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/3-864x1536.jpg 864w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n                      <div class=\"h-image__frame h-hide-lg h-hide-md h-hide-sm style-727-frameImage style-local-997-c21-frameImage\"><\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                <div data-colibri-id=\"997-c22\" class=\"d-block style-728 style-local-997-c22 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-image__frame-container-outer\">\n                    <div class=\"h-image__frame-container\">\n                      <!---->\n                      <!---->\n                      <img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1920\" src=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/2.jpg\" class=\"wp-image-163 style-728-image style-local-997-c22-image\" alt=\"\" srcset=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/2.jpg 1080w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/2-169x300.jpg 169w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/2-576x1024.jpg 576w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/2-768x1365.jpg 768w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/2-864x1536.jpg 864w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n                      <div class=\"h-image__frame h-hide-lg h-hide-md h-hide-sm style-728-frameImage style-local-997-c22-frameImage\"><\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n                <div data-colibri-id=\"997-c23\" class=\"d-block style-729 style-local-997-c23 position-relative h-element\">\n                  <!---->\n                  <div class=\"h-image__frame-container-outer\">\n                    <div class=\"h-image__frame-container\">\n                      <!---->\n                      <!---->\n                      <img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1920\" src=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/1.jpg\" class=\"wp-image-165 style-729-image style-local-997-c23-image\" alt=\"\" srcset=\"https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/1.jpg 1080w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/1-169x300.jpg 169w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/1-576x1024.jpg 576w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/1-768x1365.jpg 768w, https:\/\/healthdesire.online\/wp-content\/uploads\/2023\/12\/1-864x1536.jpg 864w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n                      <div class=\"h-image__frame h-hide-lg h-hide-md h-hide-sm style-729-frameImage style-local-997-c23-frameImage\"><\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>X \u0639\u0646\u0648\u0627\u0646 \u0628\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0627\u0633\u0645: \u0631\u0642\u0645 \u0627\u0644\u0647\u0627\u062a\u0641: \u0627\u0644\u0643\u0645\u064a\u0629 \u0627\u0644\u0645\u062a\u0628\u0642\u064a\u0629: 356 \u0623\u0631\u0633\u0644 \u0637\u0644\u0628 \u0627\u0644\u0622\u0646 \u0648 \u062a\u0645\u062a\u0639 \u0628\u062a\u062e\u0641\u064a\u0636 \u0631\u0623\u0633 \u0627\u0644\u0633\u0646\u0629 \u0645\u0646\u062a\u0648\u062c \u0637\u0628\u064a\u0639\u064a 100% \u0645\u062c\u0631\u0651\u0628 \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u062e\u0628\u0631\u0627\u0621 \u0648 \u0645\u0635\u0627\u062f\u0642 \u0639\u0644\u064a\u0647 \u0639\u0646\u062f \u0627\u0644\u062a\u0648\u0635\u064a\u0644 \u0633\u062a\u062a\u0633\u0644\u0651\u0645 \u0634\u0647\u0627\u062f\u0629 \u0627\u0644\u062a\u062d\u0627\u0644\u064a\u0644 \u0627\u0644\u0645\u062e\u0628\u0631\u064a\u0629&nbsp; \u0627\u0644\u062a\u0639\u0644\u064a\u0642\u0627\u062a<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-templates\/full-width-page.php","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-997","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/healthdesire.online\/index.php?rest_route=\/wp\/v2\/pages\/997","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/healthdesire.online\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/healthdesire.online\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/healthdesire.online\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/healthdesire.online\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=997"}],"version-history":[{"count":20,"href":"https:\/\/healthdesire.online\/index.php?rest_route=\/wp\/v2\/pages\/997\/revisions"}],"predecessor-version":[{"id":1721,"href":"https:\/\/healthdesire.online\/index.php?rest_route=\/wp\/v2\/pages\/997\/revisions\/1721"}],"wp:attachment":[{"href":"https:\/\/healthdesire.online\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}