<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Healing Gym</title>
	<atom:link href="https://thehealinggym.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://thehealinggym.com</link>
	<description>Expand your capacity for well-being</description>
	<lastBuildDate>Wed, 24 Sep 2025 20:03:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://thehealinggym.com/wp-content/uploads/2023/02/2-removebg-preview-e1675919319176.png</url>
	<title>The Healing Gym</title>
	<link>https://thehealinggym.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Breathing Timer to Calm your Nervous System</title>
		<link>https://thehealinggym.com/breathing-timer/</link>
					<comments>https://thehealinggym.com/breathing-timer/#respond</comments>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Wed, 24 Sep 2025 18:21:19 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10496</guid>

					<description><![CDATA[A short 2 minute breathing timer to calm your nervous system quickly.]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element"><h3 data-end="180" data-start="132">Calm Your Nervous System in Just 2 Minutes</h3><p data-end="502" data-start="182">Take a quick pause. In <strong data-end="225" data-start="205">just two minutes</strong>, this simple breathing exercise—inhale, hold, exhale—can calm your mind, lower stress, and reset your nervous system. Science shows that <strong data-end="435" data-start="363">slow, mindful breathing activates the parasympathetic nervous system</strong>, helping reduce cortisol, slow your heart rate, and boost focus.</p><p data-end="711" data-start="504"><strong data-end="527" data-start="504">Consistency is key:</strong> Bookmark this page and return to this practice a few times a day. Even short, daily pauses train your nervous system to stay calm under pressure and carry peace throughout your day.</p><p data-end="803" data-start="713">Press start, follow the gentle circle, and let calm wash over you—two minutes at a time.</p></div><div class="thrv_wrapper thrv_custom_html_shortcode">


  <title>2-Minute Breathing Timer for Quickly Calming Your Nervous System</title>
  <style>
    body { text-align: center; font-family: sans-serif; margin-top: 30px; background: #f0f4f8; transition: background 4s ease-in-out; }
    h1 { color: #7D5BA6; } 
    #circle {
      width: 150px; height: 150px;
      background-color: #a299c9; 
      border-radius: 50%;
      margin: 40px auto;
      transform: scale(1);
      transition: transform 1s ease-in-out, background-color 1s ease-in-out;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    #instruction { font-size: 24px; margin-top: 20px; color: #555; }
    #count { font-size: 48px; margin-top: 10px; color: #555; }
    #session-time { font-size: 20px; margin-top: 10px; color: #555; }
    #affirmation { font-size: 20px; margin-top: 20px; color: #555; font-style: italic; min-height: 28px; }
    button { padding: 10px 20px; font-size: 18px; margin-top: 20px; cursor: pointer; background: #c1e1c1; border: none; border-radius: 8px; }
    button:hover { background: #b0d6b0; }
  </style>



<h1>2-Minute Breathing Timer for Quickly Calming Your Nervous System</h1>
<div id="circle"></div>
<div id="instruction">Click Start</div>
<div id="count"></div>
<div id="session-time"></div>
<div id="affirmation"></div>
<button id="startBtn">Start 2-Min Session</button>

<audio id="chime-sound" src="https://www.soundjay.com/misc/sounds/bell-ringing-05.mp3" preload="auto"></audio>

<code class="tve_js_placeholder"><script>
document.getElementById("startBtn").addEventListener("click", startSession);

function startSession() {
    const circle = document.getElementById('circle');
    const instruction = document.getElementById('instruction');
    const countDisplay = document.getElementById('count');
    const sessionDisplay = document.getElementById('session-time');
    const affirmationDisplay = document.getElementById('affirmation');
    const chime = document.getElementById('chime-sound');
    const startBtn = document.getElementById('startBtn');

    startBtn.innerText = "2-Min Breathing in Progress";
    startBtn.disabled = true;

    const inhale = 4;
    const hold = 2;
    const exhale = 6;
    const postExhaleHold = 2;
    const sessionDuration = 2 * 60; // seconds

    const encouragingAffirmations = [
        "You are calm and centered.",
        "Breathe in peace, breathe out tension.",
        "Your body is relaxing.",
        "Let go of stress with every breath.",
        "You are safe and supported."
    ];
    const celebrationAffirmations = [
        "Wonderful! You’ve calmed your nervous system!",
        "Excellent! You did a great job!",
        "Feeling relaxed and peaceful, well done!",
        "You are calm, centered, and strong!",
        "Amazing! Your nervous system thanks you!"
    ];

    let elapsedTime = 0;
    let cycleStep = 0;
    let sessionCompleted = false;
    let lastAffirmationTime = 0;

    function playChime() {
        chime.currentTime = 0;
        chime.play().catch(() => {});
    }

    function displayRandomAffirmation() {
        const aff = encouragingAffirmations[Math.floor(Math.random() * encouragingAffirmations.length)];
        affirmationDisplay.innerText = aff;
    }

    function step() {
        if(sessionCompleted) return;

        let stepDuration = 0;
        if(cycleStep === 0) { // inhale
            instruction.innerText = "Inhale";
            circle.style.transition = `transform ${inhale}s ease-in-out, background-color ${inhale}s ease-in-out`;
            circle.style.transform = "scale(1.3)";
            circle.style.backgroundColor = "#c1c1e0";
            document.body.style.transition = `background ${inhale}s ease-in-out`;
            document.body.style.background = "#e0e8f5"; // lighten on inhale
            stepDuration = inhale;
            countBreaths(stepDuration);
        } else if(cycleStep === 1) { // hold
            instruction.innerText = "Hold";
            circle.style.transform = "scale(1.3)";
            stepDuration = hold;
            countBreaths(stepDuration);
        } else if(cycleStep === 2) { // exhale
            instruction.innerText = "Exhale";
            circle.style.transition = `transform ${exhale}s ease-in-out, background-color ${exhale}s ease-in-out`;
            circle.style.transform = "scale(0.7)";
            circle.style.backgroundColor = "#a6a6c9";
            document.body.style.transition = `background ${exhale}s ease-in-out`;
            document.body.style.background = "#d0d4e0"; // slightly darker on exhale
            stepDuration = exhale;
            countBreaths(stepDuration);
        } else if(cycleStep === 3) { // post-exhale hold
            instruction.innerText = "Hold";
            circle.style.transform = "scale(0.7)";
            stepDuration = postExhaleHold;
            countBreaths(stepDuration);
        }
    }

    function countBreaths(duration) {
        let startTime = performance.now();
        let localCounter = 1;

        function update() {
            let now = performance.now();
            let secondsPassed = (now - startTime) / 1000;
            countDisplay.innerText = Math.floor(localCounter + secondsPassed);

            // smooth session timer
            let remainingTime = Math.max(0, sessionDuration - elapsedTime - secondsPassed);
            sessionDisplay.innerText = `Time left: ${Math.ceil(remainingTime)}s`;

            // update affirmations every 20s
            if(Math.floor((elapsedTime + secondsPassed) / 20) > lastAffirmationTime) {
                lastAffirmationTime = Math.floor((elapsedTime + secondsPassed) / 20);
                displayRandomAffirmation();
            }

            if(secondsPassed < duration) {
                requestAnimationFrame(update);
            } else {
                elapsedTime += duration;
                nextStep();
            }
        }
        requestAnimationFrame(update);
    }

    function nextStep() {
        cycleStep = (cycleStep + 1) % 4;

        // Allow the last cycle to complete
        if(elapsedTime >= sessionDuration && cycleStep === 0 && !sessionCompleted) {
            sessionCompleted = true;
            instruction.innerText = "Well done!";
            countDisplay.innerText = "";
            circle.style.transform = "scale(1)";
            circle.style.backgroundColor = "#a299c9";
            document.body.style.background = "#f0f4f8"; // reset background
            affirmationDisplay.innerText = celebrationAffirmations[Math.floor(Math.random()*celebrationAffirmations.length)];
            playChime();
            startBtn.innerText = "Start 2-Min Session";
            startBtn.disabled = false;
            return;
        }

        step();
    }

    step();
}
</script></code>


</div><div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
					<wfw:commentRss>https://thehealinggym.com/breathing-timer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>A Parenting Success story- Annie&#8217;s Journey Through Challenges</title>
		<link>https://thehealinggym.com/a-parenting-success-story/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Thu, 16 Jan 2025 01:38:41 +0000</pubDate>
				<category><![CDATA[Parenting]]></category>
		<category><![CDATA[Release Anxiety]]></category>
		<category><![CDATA[parent coaching helps]]></category>
		<category><![CDATA[parental anxiety]]></category>
		<category><![CDATA[parenting success]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10292</guid>

					<description><![CDATA[Read the story of Annie and how she found parenting success by overcoming her own anxieties with coaching and hypnotherapy. This helped pave the way for a successful, healthier family dynamic.]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h1 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">A Parenting Success story</h1><h3 dir="ltr" style="text-align: center; color: var(--tcb-skin-color-4) !important; --tcb-applied-color: var$(--tcb-skin-color-4) !important;" class=""><em>How Annie found Peace in Parenting</em></h3></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1946caaa618"><p dir="ltr">Do you struggle with parenting challenges? Do you experience parental anxieties often and keep worrying about your child?</p><p dir="ltr">Here is the story of one of my clients, Annie (name is changed to maintain confidentiality) and how she found peace in her parenting journey.</p><p dir="ltr" data-css="tve-u-1946ca3b5e8" style="">Parenting can be really hard and especially for young moms, it can be frustrating and tiring.</p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1946caabcf7"><h3 class="" dir="ltr" style="text-align: center; color: var(--tcb-skin-color-24) !important; --tcb-applied-color: var$(--tcb-skin-color-24) !important;"><em>Read Annie's story</em></h3><h2 dir="ltr" style="text-align: center; color: var(--tcb-color-2) !important; --tcb-applied-color: var$(--tcb-color-2) !important;" class="">Am I a good parent?...</h2><p dir="ltr">Imagine this:</p><p dir="ltr">It’s 8 AM, and chaos has already taken over. The baby is crying, the toddler is refusing breakfast, and you’re trying to juggle a growing to-do list.&nbsp;</p><p dir="ltr">In the back of your mind, that familiar voice whispers, Am I doing enough? Am I a good parent?</p><p dir="ltr">That was Annie's story. A mother of two, she constantly felt overwhelmed by the pressures of parenting.&nbsp;</p><p dir="ltr">Every decision seemed monumental, and every tantrum left her questioning herself. The unending questions, thoughts and decisions was creating endless anxiety:</p><ul class=""><li dir="ltr"><p dir="ltr">Am I doing the right thing?</p></li><li dir="ltr"><p dir="ltr">If I am doing it right, why are the kids throwing a tantrum?</p></li><li dir="ltr"><p dir="ltr">Why am I so tired always?</p></li><li dir="ltr"><p dir="ltr">Why am I so irritable?</p></li><li dir="ltr"><p dir="ltr">I am such a bad mom, yelling and&nbsp; hardly able to even cook for my kids.</p></li></ul></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-1946ca5960b" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1456" alt="Annie's story" data-id="1456" width="364" data-init-width="1728" height="485" data-init-height="2304" title="exhausted" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/exhausted.jpeg" data-width="364" data-height="485" data-css="tve-u-1946ca5aba3" style="aspect-ratio: auto 1728 / 2304;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/exhausted.jpeg 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/exhausted.jpeg 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/exhausted.jpeg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/exhausted.jpeg 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/exhausted.jpeg 1536w" sizes="auto, (max-width: 364px) 100vw, 364px" /></span></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1946cab3e24">	<h2 dir="ltr" style="text-align: center;" class="">How can I be a perfect parent?.....</h2><p dir="ltr">The anxiety began to take a toll, leaving her emotionally drained and doubting her ability to provide the calm and nurturing environment she wanted for her children.</p><p dir="ltr">After months of struggling, Annie decided to try coaching and hypnotherapy.&nbsp;</p><p dir="ltr">She came with the goal of&nbsp; wanting to be the perfect parent.</p><p dir="ltr">However, as we began working together, she discovered that much of her anxiety stemmed from that deep-seated perfectionism and fears of inadequacy rooted in her own childhood and upbringing.</p></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h5 dir="ltr" style="text-align: center;" class="">Subconscious patterns shape our reality</h5><h2 dir="ltr" style="text-align: center;" class="">The Science behind Parental Anxiety</h2><p dir="ltr">All parents deal with anxiety and they explain their anxiety with statements like, 'The world is so unsafe now', 'Children are mean to my child', &amp; 'Can my child handle all these challenges?'</p><p dir="ltr">What they fail to realize is that, the above statements feel like they are completely true but they are actually reflections of their own beliefs and subconscious patterns.</p><p dir="ltr">In my experience working with parents, I believe that parenting anxiety often arises from subconscious patterns:</p><ul class=""><li dir="ltr">patterns of unrealistic expectations,&nbsp;</li><li dir="ltr">patterns of the different fears we have, especially the fear of judgment, (What will they think of me?)</li><li dir="ltr">patterns of unresolved emotions and trauma from our own childhood.&nbsp;</li></ul><p dir="ltr">These patterns shape how we react to stress, even when we consciously know we’re doing our best.</p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1946ca7f119"><h3 dir="ltr" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Through coaching and hypnotherapy, you can identify and rewrite these patterns, helping you let go of guilt and perfectionism while building a foundation of self-trust and resilience.</h3></div><div class="thrv_wrapper thrv_text_element"><h5 dir="ltr" style="text-align: center;" class="">How hypnosis and coaching helped her..</h5><h2 dir="ltr" style="text-align: center;" class="">Annie's Story of Transformation</h2><p dir="ltr">Through coaching and hypnotherapy, Annie learnt tools of mindfulness and bringing more calm to her body.</p><p dir="ltr">By addressing her subconscious patterns, Annie began letting go of guilt and unrealistic expectations. Acknowledging and working on her limiting subconscious beliefs, helped her be more patient, confident, and present with her children.</p><p dir="ltr">She shifted from being overwhelmed, frustrated and tired to being more calm, strategic and resourceful while dealing with her children. She began looking at the present situation without being colored by the baggage of the past.</p>She also learnt concepts of parenting with values and some communication strategies that helped her address behavioral issues in a calm and methodical way.<p>This transformation helped Annie to embrace a more patient, confident and compassionate approach to parenting, finding joy in everyday moments.</p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1946ca7f119"><h3 dir="ltr" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Annie's story shows that peace and confidence in parenting is possible.</h3></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-1946cb50728" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1446" alt="parenting success" data-id="1446" width="351" data-init-width="1728" height="468" data-init-height="2304" title="good kid" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/good-kid.png" data-width="351" data-height="468" data-css="tve-u-1946cb5305e" style="aspect-ratio: auto 1728 / 2304;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/good-kid.png 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/good-kid.png 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/good-kid.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/good-kid.png 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/good-kid.png 1536w" sizes="auto, (max-width: 351px) 100vw, 351px" /></span></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1946ca87c07"><h5 dir="ltr" style="text-align: center;" class="">What's your story?</h5><h2 dir="ltr" style="text-align: center;" class="">Are you feeling frustrated and overwhelmed?</h2><p dir="ltr">What's your story?</p><p dir="ltr">Are you feeling overwhelmed and feeling emotionally dysregulated?</p><p dir="ltr">Let us help. Try this practical tip to get you started.</p><h2 dir="ltr" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Practical Tip: Grounding Exercise for Parents</h2><p dir="ltr">When parenting feels overwhelming, try this simple grounding exercise:</p><ol class=""><li dir="ltr"><p dir="ltr">Take three deep breaths, focusing on the sensation of the air entering and leaving your body.</p></li><li dir="ltr"><p dir="ltr">Remind yourself: I am doing my best, and that is enough.</p></li><li dir="ltr"><p dir="ltr">Visualize yourself responding calmly to a challenging situation with your child, reinforcing your ability to handle it.</p></li></ol></div><div class="thrv_wrapper thrv_text_element">	<h2 dir="ltr" class="">If you are needing support, try some coaching.</h2><p dir="ltr">If you feel like you need some&nbsp;</p><ul class=""><li dir="ltr">gentle hand holding,&nbsp;</li><li dir="ltr">some compassionate listening,</li><li dir="ltr">tools for emotional regulation,</li><li dir="ltr">some clarity on how to navigate parenting challenges and&nbsp;</li><li dir="ltr">make sense of what your anxiety is trying to communicate with you....</li></ul><p dir="ltr">Reach out to me by:</p><p dir="ltr">Text or WhatsApp me @ +1-408-508-9419</p><p dir="ltr">or schedule a <a href="https://thehealinggym.com/free-consultation/" target="_blank">free complimentary consult here</a>!</p></div></div>
</div><div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>From Ugh to Wow: 10 Tips to Transform Your Holiday Challenges</title>
		<link>https://thehealinggym.com/10-tips-to-transform-your-holiday-challenges/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 24 Dec 2024 20:29:55 +0000</pubDate>
				<category><![CDATA[Self-Empowerment]]></category>
		<category><![CDATA[Happiness]]></category>
		<category><![CDATA[10 tips for the holidays]]></category>
		<category><![CDATA[holiday challenges]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[tips for holidays]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10249</guid>

					<description><![CDATA[Holidays are meant as a season for rest, rejuvenation, fun and bonding. A time for joy and laughter.

But you know how challenging every holiday can get.

So, here are some easy to follow, 10 tips to navigate those holiday challenges and transform all your 'Ughs' to 'Wows';

To help you come back after your holidays really happy and rejuvenated!

Not tired, angry and needing another holiday........]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element"><h2 class="" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;">From 'Ugh' to 'Wow':</h2><h2 class="" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;">&nbsp;10 Tips to transform Holiday challenges</h2><p><em>Holidays are meant as a season for rest, rejuvenation, fun and bonding. </em></p><p><em>A time for joy and laughter.</em></p><p><em>But you know how challenging every holiday can get.</em></p><h5 class="" style="text-align: center;"><span data-css="tve-u-193fa2014f0" style="--tcb-applied-color: rgb(25, 89, 54) !important; color: rgb(25, 89, 54) !important;">So, here are some easy to follow, 10 tips to navigate those holiday challenges and transform all your 'Ughs' to 'Wows';</span></h5><p><span data-css="tve-u-193fa2014f0" style="--tcb-applied-color: rgb(25, 89, 54) !important; color: rgb(25, 89, 54) !important;"></span></p><h4 class="" style="text-align: center;"><em>To help you come back after your holidays really happy and rejuvenated!</em></h4><div class="tcb-plain-text" style="text-align: center;"><em>Not tired, angry and needing another holiday........</em></div></div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h6 class="" style="color: var(--tcb-skin-color-24) !important; --tcb-applied-color: var$(--tcb-skin-color-24) !important; text-align: center;">Let's begin by</h6><h2 class="" style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;">&nbsp;Noticing the 'Ugh' and the 'Wow'!</h2><p></p><p><em>Holidays are here and with holidays come plenty of '<strong>Wow' </strong>moments:</em></p><ul class=""><li><em>New activities to try,&nbsp;</em></li><li><em>Lot of&nbsp;fun moments,&nbsp;</em></li><li><em>Time with family, friends and loved ones,</em></li><li><em>Exclusive time for yourself,</em></li><li><em>Loads of food&nbsp;</em></li></ul><p><em>and many more awesome happenings.</em></p><p><em>Unfortunately, with holidays also come lot of <strong>'Ugh'</strong> moments.</em></p><ul class=""><li><em>Family tension and relationship politics,</em></li><li><em>Unhealthy food and drinking habits,</em></li><li><em>Emotional rollercoasters,</em></li><li><em>Financial strain,</em></li><li><em>Catering too much to others' needs,</em></li></ul><p>and countless other 'Ugh' triggers.</p><p>In India we use the expression, <strong>'Ayyo'</strong> to express situations which feels <strong>Ugh</strong>!</p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa30a6a9" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1479 tcb-moved-image" alt="10 Tips to Transform Your Holiday Challenges" data-id="1479" width="227" data-init-width="1728" height="303" data-init-height="2304" title="anxious man" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/anxious-man.jpeg" data-width="227" data-height="303" style="aspect-ratio: auto 1728 / 2304;" data-css="tve-u-193fa30dd76" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/anxious-man.jpeg 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/anxious-man.jpeg 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/anxious-man.jpeg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/anxious-man.jpeg 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/anxious-man.jpeg 1536w" sizes="auto, (max-width: 227px) 100vw, 227px" /></span></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h5 style="text-align: center; color: var(--tcb-skin-color-23) !important; --tcb-applied-color: var$(--tcb-skin-color-23) !important;" class="">Are you ready?</h5><h2 class="" style="text-align: center;"><span style="text-decoration: underline;">10 Tips to transform Holiday challenges</span></h2><h2 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class=""><br></h2><h2 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class=""><em><strong>Tip # 1: Set Realistic Expectations:</strong></em></h2><p data-css="tve-u-193fa302ccc" style=""><em>I know you want to do it all this holiday.</em></p><p><em>You want to visit all those fantastic places. You want to buy your entire family those awesome gifts. You want to do all those thrilling activities.</em></p><p><em>The picture-perfect holiday portrayed in media can create unrealistic expectations.</em></p><p><em>But.....</em></p><p><em><strong>Instead of striving for perfection, focus on creating meaningful moments.</strong></em></p><p><em><strong>Focus on those small memories that bring you warmth and joy.</strong></em></p><p><em>And.... it's ok if things don't go exactly as you planned!</em></p><h6 class=""><em>Be realistic, not perfectionistic!</em></h6></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193fa491e0a"><h5 class=""></h5><h2 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class=""><em><strong>Tip # 2: Prioritize Self-Care</strong></em></h2><p><em>You might think that self-care is a chore and you may feel like avoiding it this holiday.</em></p><p><em>You may feel like catering to others' needs, watching for others' comforts.</em></p><p><em>But remember you can't pour from an empty cup.</em></p><p><em>So, make time for activities that help you recharge:</em></p><ul class=""><li><strong><em>Walk in nature,</em></strong></li><li><strong><em>Read a book,</em></strong></li><li><strong><em>Practice a relaxation technique,</em></strong></li><li><strong><em>Do some deep breathing,</em></strong></li><li><strong><em>Meditate........</em></strong></li></ul></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa335b0a"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-963" alt="10 Tips to Transform Your Holiday Challenges" data-id="963" width="632" data-init-width="2560" height="421" data-init-height="1707" title="Namaskar" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar-scaled.jpg" data-width="632" data-height="421" style="aspect-ratio: auto 2560 / 1707;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar-scaled.jpg 2560w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:200/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:683/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:512/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1536/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar.jpg 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1620/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Namaskar.jpg 2048w" sizes="auto, (max-width: 632px) 100vw, 632px" /></span></div><div class="thrv_wrapper thrv_text_element"><h4 class="" style="text-align: center;"><em>Yay! You are getting there... </em></h4><h4 class="" style="text-align: center;"><em>Slowly moving towards creating the 'Wow' holiday!</em></h4></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h2 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class=""><em><strong>Tip # 3: Manage Financial Stress</strong></em></h2><p><em>Gift-giving and holiday expenses can strain your budget.</em></p><p><em>This is where a lot of sweating happens.</em></p><p><em>So, be watchful.</em></p><p><em>Here are some simple ways you can reduce your financial strain:</em></p><ul class=""><li><em>Create a&nbsp;<strong>realistic spending plan</strong>&nbsp;and stick to it.</em></li><li><em>Think of&nbsp;<strong>handcrafted or heartfelt gifts</strong>; these carry more meaning than expensive items.</em></li><li><em>How about&nbsp;<strong>gift exchanges</strong>? Talk to your friends if they might consider it.</em></li><li><em><strong>Set expectations and lay down boundaries</strong>&nbsp;with family and friends beforehand. This helps a lot in taking off your strain in finances.</em></li></ul></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa4aceb0" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-847" alt="" data-id="847" width="404" data-init-width="2560" height="270" data-init-height="1707" title="About" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402-scaled.jpg" data-width="404" data-height="270" data-css="tve-u-193fa4b00b3" style="aspect-ratio: auto 2560 / 1707;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402-scaled.jpg 2560w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:200/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:683/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:512/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1536/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402.jpg 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1620/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-rodnae-productions-6724402.jpg 2048w" sizes="auto, (max-width: 404px) 100vw, 404px" /></span></div><div class="thrv_wrapper thrv_text_element"><p><em>My bulk of&nbsp;gift giving this holiday has been making a three ingredient home made Indian sweet (Coconut Barfi) which took about an hour to make and another 20 minutes to pack and gift wrap. But that was it. And everyone has been loving it!</em></p></div><div class="thrv_wrapper thrv_text_element"><p></p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193fa4ba84b"><div class="tcb-plain-text"><em></em></div><h2 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class=""><em><strong>Tip # 4: Navigate Family Dynamics</strong></em></h2><p><em>This is where most of the nightmares happen.</em></p><p><em>FAMILY DRAMAS..........</em></p><p><em>Yikes!</em></p><p><em>While families generally mean well and have so much love for you, family gatherings can sometimes bring up tension and all past baggage seems to be floating towards you.</em></p><p><em>So, then, you may ask, Lata, what do I do?</em></p><p><em>Here are my super tools for more success with family holidays:</em></p><ul class=""><li><em><strong>Be clear about the boundaries</strong>&nbsp;you want to set and SET IT!</em></li><li><em>Decide&nbsp;<strong>how much you will engage</strong>&nbsp;with them.&nbsp;</em></li><li><em><strong>Give yourself permission to withdraw</strong>&nbsp;into your own space whenever needed.</em></li><li><em>Focus on&nbsp;<strong>shared positive experiences and happy memories</strong>.</em></li><li><em>If conversations become stressful....... and OMG..... there can be so much stress there.......</em><ul><li><em>Take a moment to&nbsp;<strong>step away and get back into your calm</strong>&nbsp;space within.</em></li><li><em><strong>Agree to disagree</strong>&nbsp;respectfully.</em></li><li><em>Be unafraid to say, '<strong>Let's talk about this another time</strong>', and change the subject.</em></li></ul></li></ul></div><div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 631.906;"><div class="tcb-flex-row v-2 tcb--cols--1"><div class="tcb-flex-col"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa39394b" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-531" alt="" data-id="531" width="308" data-init-width="2560" height="206" data-init-height="1707" title="pexels-shvets-production-7176186" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1-scaled.jpg" data-width="308" data-height="206" style="aspect-ratio: auto 2560 / 1707;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1-scaled.jpg 2560w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:200/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:683/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:512/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1536/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1.jpg 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1620/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/pexels-shvets-production-7176186-1.jpg 2048w" sizes="auto, (max-width: 308px) 100vw, 308px" /></span></div></div></div></div></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h2 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class=""><em><strong>Tip # 5: Practice Mindful Eating and Drinking</strong></em></h2><p><em>Holiday feasts are super fun and literally the highlight of the holidays.</em></p><p><em>The cakes, the cookies, the delicious multi-course dinners, the ultra tempting deserts......&nbsp;</em></p><p><em>Ooh...La..La..My mouth is already watering!</em></p><p><em>And of course for those&nbsp; who drink, the unending choices that are available in drinks.</em></p><p><em><strong>Generally, many of us end up overindulging in both food and drink and that leaves us with sluggishness, feeling sick, low energy, hangovers and can also get us super cranky and in a low mood.</strong></em></p><p><em>My motto is: Approach meals with mindfulness, moderation and balance.</em></p><em class=""><strong><span style="--tcb-applied-color: var$(--tcb-skin-color-3) !important; color: var(--tcb-skin-color-3) !important;" data-css="tve-u-193fa2603fd">Change your MANTRA folks. &nbsp;Make it MMB: Mindfulness, Moderation &amp; Balance.</span></strong></em></div><div class="thrv_wrapper thrv_text_element"><div class="tcb-plain-text"><em></em></div></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa3a7d13" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7707" alt="" data-id="7707" width="449" data-init-width="4032" height="336" data-init-height="3024" title="Jindal 2" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png" data-width="449" data-height="336" data-css="tve-u-193fa3c081f" style="aspect-ratio: auto 4032 / 3024;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png 4032w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:225/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:576/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1440/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1440/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/07/Jindal-2.png 2048w" sizes="auto, (max-width: 449px) 100vw, 449px" /></span></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193fa3b15e1"><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong>Tip # 6: Acknowledge and </strong></em></h2><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong>Honor Your Emotions</strong></em></h2><p><em>Joy, laughter, excitement, happiness are all part of the uplifting emotions that are the gifts of the holiday season.</em></p><p><em>But we also have irritation, annoyance, resentment, anger, anxiety, sadness and many more that tag along.</em></p><p><em>So, take time to acknowledge the emotions which come up.</em></p><p><em>Honor them!</em></p><p><em><strong>If you're missing someone or feeling lonely, give yourself permission to grieve or feel the way you do.</strong></em></p><p><em><strong>If you are feeling anger, annoyance, sadness, move away and allow yourself to feel the emotion.....</strong></em></p><p><em>And choose to&nbsp; express these emotions in ways that promote healing within you and&nbsp; hopefully&nbsp;bonding with others.</em></p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa3cf5ca" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7282" alt="" data-id="7282" width="308" data-init-width="864" height="411" data-init-height="1152" title="sadness" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/02/sadness.jpeg" data-width="308" data-height="411" data-css="tve-u-193fa3d207b" style="aspect-ratio: auto 864 / 1152;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/02/sadness.jpeg 864w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/02/sadness.jpeg 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/02/sadness.jpeg 768w" sizes="auto, (max-width: 308px) 100vw, 308px" /></span></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong>Tip # 7: Focus on Gratitude</strong></em></h2><p><em>Gratitude has a powerful effect on mental well-being.&nbsp;</em></p><p><em>Every day during the holiday season, remind yourself of the many things to be grateful about.</em></p><p><strong><em>Create an end of the day ritual and journal for only 3 minutes.</em></strong></p><p><strong><em>Complete the sentence, 'Today, I am grateful for.........'</em></strong></p><p><strong><em>and list at least 5 things that fill you with gratitude.</em></strong></p><p><em>I have a powerful </em><a href="https://thehealinggym.com/restlessnesstogratitude/" target="_blank" class="" style="outline: none;"><em>Gratitude Meditation on my website</em></a><em>. Go ahead and download it and listen to this during the holidays.</em></p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa3e0fd4" style=""><span class="tve_image_frame" style=""><img decoding="async" class="tve_image wp-image-9310" alt="" data-id="9310" width="379" data-init-width="1080" height="379" data-init-height="1080" title="2" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg" data-width="379" data-height="379" data-css="tve-u-193fa4e5f70" style="aspect-ratio: auto 1080 / 1080;" mt-d="-1" ml-d="0" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 1080w" sizes="auto, (max-width: 379px) 100vw, 379px" /></span></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193fa4f2698"><div class="tcb-plain-text"><em></em></div><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><br></h2><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong>Tip # 8: Reach out for Support</strong></em></h2><p><em>If the holiday season seems overwhelming, don't hesitate to reach out for help.</em></p><p><em><strong>Talk to a trusted friend</strong></em></p><p><em><strong>or a loving family member</strong></em></p><p><em><strong>or a counselor or therapist.</strong></em></p><p><em>Know that&nbsp;<strong>you are not alone</strong>. There is always help around you and for you.</em></p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa3f5f87" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-251 tcb-moved-image" alt="" data-id="251" width="329" data-init-width="2304" height="246" data-init-height="1728" title="understanding" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png" data-width="329" data-height="246" style="aspect-ratio: auto 2304 / 1728;" data-css="tve-u-193fa3f70f7" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png 2304w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:225/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:576/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1440/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1440/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/understanding.png 2048w" sizes="auto, (max-width: 329px) 100vw, 329px" /></span></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong>Tip # 9: Embrace the Spirit of Giving</strong></em></h2><p><em>Sometimes,&nbsp;<strong>shifting the focus from, 'What am I getting?' to 'What can I do for someone?'...</strong></em></p><p><em>can transform your holiday experience.</em></p><p><em><strong>Volunteer</strong>&nbsp;your time,</em></p><p><em><strong>Donate</strong>&nbsp;to a cause you care about, or&nbsp;</em></p><p><em>simply&nbsp;<strong>extend kindness</strong>&nbsp;to those around you.</em></p><p><em>Acts of generosity can warm your heart like nothing else.</em></p><p><em><strong>Gift yourself more happiness and joy by being in the energy of 'giving'.</strong></em></p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193fa5000c6"><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong></strong></em></h2><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class=""><em><strong>Tip # 10: Take THE Decision</strong></em></h2><p><em>Many many years back, when we were embarking on a family holiday, my husband gave a little pep talk, more like a speech actually.</em></p><p><em>He told our two middle-school daughters that:</em></p><p><em>' We have spent a lot of money for this holiday trip and so....</em></p><p><em><strong>We are going to take a decision...</strong></em></p><p><em>a decision to be HAPPY, no matter what.</em></p><p><em><strong>Be HAPPY when we get what we want and ....</strong></em></p><p><em><strong>Be HAPPY when we don't get what we want.</strong></em></p><p><em>&nbsp;Every morning when we get out of bed, we decide...</em></p><p><em><strong>I will be HAPPY today.</strong></em></p><p><em>It is not enough that we spend all this money.....</em></p><p><em>Our holiday will be truly successful, when we <strong>ENJOY it</strong>.</em></p><p style="text-align: center;"><strong><span style="--tcb-applied-color: rgb(120, 20, 168) !important; color: rgb(120, 20, 168) !important;"><em>And ENJOYING the holiday is not a consequence...</em></span></strong></p><p style="text-align: center;"><strong><span style="--tcb-applied-color: rgb(120, 20, 168) !important; color: rgb(120, 20, 168) !important;"><em>but <span style="text-decoration: underline;">a decision we take every moment</span>.'</em></span></strong></p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa41a793" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1416" alt="" data-id="1416" width="476" data-init-width="864" height="635" data-init-height="1152" title="selflove copy" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/selflove-copy.jpeg" data-width="476" data-height="635" data-css="tve-u-193fa41d7ce" style="aspect-ratio: auto 864 / 1152;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/selflove-copy.jpeg 864w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/selflove-copy.jpeg 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/selflove-copy.jpeg 768w" sizes="auto, (max-width: 476px) 100vw, 476px" /></span></div><div class="thrv_wrapper thrv_text_element"><p></p><p><em>This speech was power packed and filled with bustling, motivating energy....</em></p><p><em>much like the speech in the movie 'Miracle'... (If you haven't watched it, do watch).</em></p><p><em>and the movie 'Chakde' (Hindi Bollywood movie) Look it up. It's one of our favorites.</em></p><p><em>But, hey, the speech worked. We had a fabulous, memorable holiday. The best ever.</em></p><strong class=""><em>So, please, please, take THE decision to BE HAPPY and do it even before your holiday starts.</em></strong></div></div>
</div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb"><div class="thrv_wrapper thrv_text_element"><h5 style="text-align: center;" class="">Moving to the 'Wow'.</h5><h2 style="text-align: center;" class="">From Ugh to Wow!</h2><p>As we practice these simple, but powerful tips, we slowly transform our holiday experience&nbsp;</p><p style="text-align: center;"><strong>From Ugh to Wow!</strong></p><p style="text-align: center;"><strong>And you can then tell yourself, Yay! What an amazing holiday!</strong></p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-193fa4277c4"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1442" alt="10 Tips to Transform Your Holiday Challenges" data-id="1442" width="632" data-init-width="1728" height="843" data-init-height="2304" title="Happiness pic3" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/Happiness-pic3.png" data-width="632" data-height="843" style="aspect-ratio: auto 1728 / 2304;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/Happiness-pic3.png 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/Happiness-pic3.png 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/Happiness-pic3.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/Happiness-pic3.png 1152w" sizes="auto, (max-width: 632px) 100vw, 632px" /></span></div><div class="thrv_wrapper thrv_text_element"><h4 style="text-align: center;" class=""><span style="--tcb-applied-color: rgb(120, 20, 168) !important; color: rgb(120, 20, 168) !important;">Don't forget to practice it.</span></h4><h4 style="text-align: center;" class=""><b style="background-color: rgba(0, 0, 0, 0); color: rgba(0, 0, 0, 0.85); font-size: 17px;"><span style="--tcb-applied-color: rgb(120, 20, 168) !important; color: rgb(120, 20, 168) !important;">These tips work best when practiced.</span></b></h4><p>So, go ahead and try them out and let me know, which ones were the most useful for you.</p><h2 data-css="tve-u-193fa43e82b" style="" class="">What was your favorite tip?</h2><p>Also, leave a comment below and tell me, which was your favorite tip?</p></div><div class="thrv_wrapper thrv_text_element"><h2 class="">If you are needing support, try some coaching.</h2><p>Maneuvering through holidays can be hard.</p><p>If you feel like you need some gentle hand holding, some compassionate listening and&nbsp; some clarity on how to navigate challenges,</p><p><em>Reach out to me by:<br></em></p><p><em>Text or WhatsApp me @ +1-408-508-9419<br></em></p><p><em>or schedule a free complimentary consult at the link below!</em></p></div><div class="thrv_wrapper thrv-button thrv-button-v2 tcb-local-vars-root" data-css="tve-u-193fa43e7e6">
	<div class="thrive-colors-palette-config" style="display: none !important"></div>
	<a href="https://thehealinggym.com/free-consultation/" class="tcb-button-link tcb-plain-text" target="_blank">
		<span class="tcb-button-texts"><span class="tcb-button-text thrv-inline-text">Schedule a complimentary consultation with me</span></span>
	</a>
</div><div class="thrv_wrapper thrv_text_element"><h5 class=""><span style="font-weight: normal;">Did you find this article useful?</span></h5><h4 class="">If so, please do share it with someone who needs it!</h4></div></div>
</div><div class="thrv_wrapper thrv_social_custom thrv_social tve_social_updated" data-counts="" data-min_shares="0" data-device-config="{&quot;desktop&quot;:{},&quot;tablet&quot;:{},&quot;mobile&quot;:{&quot;button_type&quot;:&quot;tve_social_ib&quot;,&quot;showCount&quot;:&quot;0&quot;}}">
<div class="tve_social_items tve_social_custom tve-prevent-content-edit tve_style_6 tve_social_itb">
	
		
		<div class="thrv_wrapper tve_s_item tve_s_fb_share tve_share_item" data-s="fb_share" data-href="https://thehealinggym.com/10-tips-to-transform-your-holiday-challenges/" data-label="Share">
			<a href="javascript:void(0)" class="tve_s_link">
				<span class="thrv_wrapper tve_s_icon">
					<svg class="tcb-icon" viewBox="0 0 264 512" data-id="icon-fb" data-name="">
            <path d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path>
        </svg>
				</span>
				<span class="tve_s_text tve-froala">Share</span>
				<span class="tve_s_count">0</span>
			</a>
		</div>
		
		<div class="thrv_wrapper tve_s_item tve_s_x_share tve_share_item" data-s="x_share" data-href="https://thehealinggym.com/10-tips-to-transform-your-holiday-challenges/" data-label="Post">
			<a href="javascript:void(0)" class="tve_s_link">
				<span class="thrv_wrapper tve_s_icon">
					<svg class="tcb-icon" viewBox="0 0 512 512" data-id="icon-x" data-name="">
            <path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path>
        </svg>
				</span>
				<span class="tve_s_text tve-froala">Post</span>
				<span class="tve_s_count">0</span>
			</a>
		</div>
		
	
</div>
</div><div class="thrv_wrapper tve_wp_shortcode"><div class="tve_shortcode_raw" style="display: none"></div><div class="tve_shortcode_rendered"><p></p>
<p></p>
<p></p>
<p></p>
</div></div><div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Child throwing Tantrums? Some Dos and Donts for Parents.</title>
		<link>https://thehealinggym.com/tantrums-parenting-tips/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 03 Dec 2024 00:59:54 +0000</pubDate>
				<category><![CDATA[Parenting]]></category>
		<category><![CDATA[Parenting Series]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Children]]></category>
		<category><![CDATA[tantrums in children]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10233</guid>

					<description><![CDATA[Is your child throwing a lot of tantrums? Are you confused about what to do and what not to do? Here are some tips for parents that might help! December is the season of holidays and for most parents it's also the time to sigh because they are expecting many tantrums from their child. &#160; [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-19389fdcefc">
<h3 class="" style="text-align: center;" data-css="tve-u-19389fe5994">Is your child throwing a lot of tantrums?</h3>
<h3 class="" style="text-align: center;" data-css="tve-u-19389fe5997">Are you confused about what to do and what not to do?</h3>
<h3 class="" style="text-align: center;" data-css="tve-u-19389fe5998">Here are some tips for parents that might help!</h3>
</div>
<div class="thrv_wrapper thrv_text_element">
<p><em>December is the season of holidays and for most parents it's also the time to sigh because they are expecting many tantrums from their child.<br /></em></p>
<p><em>And tantrum challenges can be triggered by almost &nbsp;anything!&nbsp;</em></p>
<p><em>Here are some common reasons for your child throwing tantrums:<br /></em></p>
<p><em>1) When parents deny them what they want:<br /></em></p>
<ul class="">
<li><em>When parents deny them screen time</em></li>
<li><em>When dad refuses to buy yet another chocolate</em></li>
<li><em>When mom asks them to get ready to go to sleep</em></li>
<li><em>When parents suddenly change plans about going out to the park.</em></li>
</ul>
<p><em>2) When they are hungry or tired</em></p>
<ul class="">
<li><em>They are acting out because they are too tired or hungry to self regulate themselves</em></li>
<li><em>They are starting to get sick and that makes them too tired</em></li>
<li><em>They haven't slept well</em></li>
<li><em>They are in crowded or noisy places</em></li>
<li><em>They are given too much sugar and the effect of it is slightly wearing off</em></li>
<li><em>They are having other issues like teething,&nbsp; wearing uncomfortable clothing</em></li>
</ul>
<p><em>3) When there are other reasons:</em></p>
<ul class="">
<li><em>The child is testing limits when told 'no' or given rules they dislike</em></li>
<li><em>They do not know how to articulate their feelings and are feeling frustrated</em></li>
<li><em>They want to be more independent and are struggling with doing those tasks</em></li>
<li><em>They just don't want to share their toys or wait their turn in a game</em></li>
<li><em>They are not being given enough attention</em></li>
</ul>
<p>Can you think of any other reasons?</p>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1938a0d7532">
<h3 class="" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;">What should parents do when the child is throwing tantrums?</h3>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1938a0d9ec6">
<p><i>In such a situation what should parents do? and what could parents do? Do they have any options at all? Yes they definitely do.</i></p>
<p><em>I believe that:&nbsp;</em></p>
<h4 style="text-align: center; color: rgb(85, 81, 211) !important; --tcb-applied-color: rgb(85, 81, 211) !important;" class=""><strong>The sign of great parenting is not the child’s behavior. The sign of truly great parenting is the parent’s behavior.</strong></h4>
<p><em>Parents everywhere get so worked up about how their child behaves in public, about how the child does not listen, how the child doesn’t tidy up after a play, or about the child being naughty.</em></p>
<p><em>Parents feel embarrassed when the child throws a tantrum and very often tend to get frustrated or angry as well.</em></p>
<p><em>Most parents forget they did the same things in their childhood.&nbsp;</em></p>
<h5 class=""><em>Parents forget.........</em></h5>
<ul class="">
<li><em>They forget that throwing tantrums and having these emotional reactions is part of childhood.</em></li>
<li><em>Parents forget that children learn by how parents react to their tantrums. Children learn emotional self-regulation from watching their parents deal with their emotional tantrums.</em></li>
</ul>
<p><em>In fact, every tantrum that your child throws is a great teaching opportunity for emotion management.</em></p>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-19389f05a13">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Tips for parents to handle tantrums</h2>
</div>
<div class="thrv_wrapper thrv_text_element">
<h4 style="text-align: center;" class="">Here are some tips for parents, some dos and donts that might be useful when children throw tantrums.</h4>
<ul class="">
<li><em>Most importantly, you, the parent, need to stay absolutely calm.</em>
<ul>
<li><em>Work on your own emotional regulation. Practice breathing exercises and clear your inner mind space.</em></li>
</ul>
</li>
<li><em>Avoid escalating the situation</em>
<ul>
<li><em>If you can't solve the situation, at least do not escalate it.</em></li>
<li><em>For example: If the child is throwing a tantrum in a supermarket,&nbsp; screaming at them will definitely escalate the situation.</em></li>
</ul>
</li>
<li><em><em>Avoid giving in to their demands because if you do that, you are giving them a message that throwing a tantrum works.</em></em></li>
<li><em><em>Instead, try and understand the possible reason why they are throwing the tantrum and address that.</em></em>
<ul>
<li><em><em>If they are hungry, feed them. If they are sick, take care of them.</em></em></li>
<li><em><em>If they are unhappy because they are not getting what they want, be firm and kind and reinforce the boundaries.</em></em></li>
</ul>
<ul>
<li><em>For example, when your child is throwing tantrums in a supermarket:&nbsp;try diverting their attention to something else, or talk to them as if they are older, and explain to them what’s reasonable and unreasonable and why.&nbsp;</em></li>
</ul>
</li>
</ul>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1938a026ee8">
<h2 data-css="tve-u-19389f1b54f" style="text-align: center;" class="">Parents, here are more tips for you!</h2>
<p><strong>More tips for parents:</strong></p>
<ul class="">
<li>Acknowledge their feelings with empathy ('I see you are upset because you wanted to continue watching your show...)</li>
<li>Offer choices when appropriate so they feel in control.</li>
<li>Distract or redirect their attention to a different activity or object.</li>
<li>Set consistent boundaries so they know what to expect.</li>
<li>Teach them words to express emotions (do it when they feel more calm).</li>
</ul>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-19389f1f6f6">
<h2 data-css="tve-u-19389f1e319" style="" class="">You have the ability to influence them positively</h2>
<p><em>Dear parents,&nbsp;</em></p>
<p><em>You have the ability to influence them positively by training yourself in the right way of disciplining them and handling their tantrums with a calm approach.</em></p>
<p><em>As parents, when we behave as responsible adults, our children will behave as responsible children.&nbsp;</em></p>
<p><em><strong>Giving our children choices, being firm and kind with them,&nbsp; educating them lovingly and enabling them to make right choices are all signs of great parenting.</strong></em></p>
<p><em>When we are conscious and aware parents, we raise conscious and aware children.</em></p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-19389f418b2"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-6355" alt="The sign of great parenting" data-id="6355" width="672" data-init-width="940" height="563" data-init-height="788" title="The sign of great parenting" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png" data-width="672" data-height="563" loading="lazy" style="aspect-ratio: auto 940 / 788;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png 940w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:251/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:644/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png 768w" sizes="auto, (max-width: 672px) 100vw, 672px" /></span></div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="" data-css="tve-u-19389f4bde4" class="">If you are needing clarity and help, try parent coaching with me!</h2>
<p>Parenting is a hard job and we did not have manuals come with every child. (I wish we did though:)</p>
<p>Having raised two daughters, life experience and the many trainings I took&nbsp;has given me a clarity about how to handle many of these parenting challenges.</p>
<p>If you find parenting hard and would like to try out some parent coaching, do&nbsp;<a data-saferedirecturl="https://www.google.com/url?q=https://thehealinggym.com/parent-coaching/&amp;source=gmail&amp;ust=1733271633995000&amp;usg=AOvVaw3Mv6oJgC76R8ZvJ9c54lmW" href="https://thehealinggym.com/parent-coaching/" target="_blank" class="" style="outline: none;">check out this link</a> and reach out to me.</p>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center;" data-css="tve-u-19389fb16da" class="">Reach out if you want support</h2>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tcb-local-vars-root" style="" data-css="tve-u-19389f6dc79" data-ct-name="Call To Action 24" data-ct="callaction-57292" data-element-name="Call to Action">
<div class="thrive-colors-palette-config" style="display: none !important"></div>
<div class="tve-content-box-background" data-css="tve-u-19389f6dc7a" style=""></div>
<div class="tve-cb tve_empty_dropzone" data-css="tve-u-19389f6dc7b" style="">
<div class="thrv_wrapper thrv_text_element tcb-local-vars-root" style="" data-css="tve-u-19389f6dc7c" data-tag="h3">
<h3 class="" style="text-align: center;"><strong>Schedule a complimentary consultation&nbsp;</strong></h3>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad tcb-local-vars-root" data-css="tve-u-19389f6dc7e" style="">
<div class="tve-content-box-background" style="" data-css="tve-u-19389f6dc7f"></div>
<div class="tve-cb"></div>
</div>
<div class="thrv_wrapper thrv_text_element tve_empty_dropzone tcb-local-vars-root" style="" data-css="tve-u-19389f6dc80">
<p><em>If you are needing help and support to parent your child well, do reach out and you can see if my methods and approach are aligned to your needs.</em></p>
<p><em>Reach out to me by:<br /></em></p>
<p><em>Text or WhatsApp&nbsp;me @ +1-408-508-9419<br /></em></p>
<p><em>or schedule a free complimentary consult at the link below!</em></p>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" style="" data-css="tve-u-19389f6dc82">
<div class="tve-content-box-background"></div>
<div class="tve-cb" data-css="tve-u-19389f6dc83">
<div class="thrv_wrapper thrv_icon tcb-icon-display tve_evt_manager_listen tve_et_tve-viewport tve_ea_thrive_animation tve_anim_slide_top tcb-local-vars-root" data-css="tve-u-19389f6dc84" style="" data-float-d="1" data-tcb-events="__TCB_EVENT_[{&quot;t&quot;:&quot;tve-viewport&quot;,&quot;config&quot;:{&quot;anim&quot;:&quot;slide_top&quot;,&quot;loop&quot;:0},&quot;a&quot;:&quot;thrive_animation&quot;}]_TNEVE_BCT__"><svg class="tcb-icon" viewBox="0 0 448 512" data-id="icon-arrow-down-light" data-name="" style="">
            <path d="M443.5 248.5l-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L241 419.9V44c0-6.6-5.4-12-12-12h-10c-6.6 0-12 5.4-12 12v375.9L28.5 241.4c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.8 4.8-12.3.1-17z"></path>
        </svg></div>
<div class="thrv_wrapper thrv-button tcb-local-vars-root" data-css="tve-u-19389f6dc85" data-button-style="full_rounded" style="" data-button-size="s" data-tcb_hover_state_parent="" data-button-size-d="l">
<a href="https://thehealinggym.com/free-consultation/" class="tcb-button-link" data-css="tve-u-19389f6dc86" style="" target="_blank"><br />
<span class="tcb-button-texts" style=""><span class="tcb-button-text thrv-inline-text" data-css="tve-u-19389f6dc87" data-tcb_hover_state_parent="" style=""><strong>book now</strong></span></span><br />
</a>
</div>
</div>
</div>
</div>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Are you having trouble sleeping? Here are 4 reasons why you should prioritize sleep.</title>
		<link>https://thehealinggym.com/sleep-well/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 26 Nov 2024 01:57:10 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10212</guid>

					<description><![CDATA[Are you having trouble sleeping? In the hustle and bustle of today’s fast-paced world, sleep often takes a backseat to&#160; busy schedules,&#160; screen time, and&#160; endless to-do lists.&#160; And all our to-do lists and busy schedules end up with us having trouble sleeping. Do you agree? Unfortunately, neglecting sleep can have profound effects on our [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element">
<h2 class="" style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;"><em>Are you having trouble sleeping?</em></h2>
<p><em>In the hustle and bustle of today’s fast-paced world, sleep often takes a backseat to&nbsp;</em></p>
<ul class="">
<li><em>busy schedules,&nbsp;</em></li>
<li><em>screen time, and&nbsp;</em></li>
<li><em>endless to-do lists.&nbsp;</em></li>
</ul>
<p>And all our to-do lists and busy schedules end up with us having trouble sleeping.</p>
<h5><em>Do you agree?</em></h5>
</div>
<div class="thrv_wrapper thrv-columns">
<div class="tcb-flex-row v-2 tcb--cols--2">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1936629b53b" style=""><span class="tve_image_frame" style=""><img decoding="async" class="tve_image wp-image-250 tcb-moved-image" alt="" data-id="250" width="344" data-init-width="1728" height="458" data-init-height="2304" title="sleepless" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg" data-width="344" data-height="458" data-css="tve-u-1936629cf64" style="aspect-ratio: auto 1728 / 2304;" ml-d="0" mt-d="-9.172000000000025" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 1536w" sizes="auto, (max-width: 344px) 100vw, 344px" /></span></div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193662b8d81">
<h5></h5>
<p><em>Unfortunately, neglecting sleep can have profound effects on our mental, emotional, and physical well-being.&nbsp;</em></p>
<p><em>This is why cultivating good sleep hygiene—a set of habits that promote quality sleep—is more crucial than ever.</em></p>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center;" data-css="tve-u-193661ce7b9" class="">4 reasons why you should prioritize sleep!</h2>
<p><em>Dear friend,&nbsp;</em></p>
<p><em>You are important and your health is very important.</em></p>
<p><em>Let me share 4 very powerful reasons why you should focus on developing a healthy sleep hygiene.</em></p>
<p><em>But&nbsp; firstly&nbsp;do you know what is sleep hygiene?</em></p>
</div>
<div class="thrv_wrapper thrv_text_element">
<h3 style="text-align: center;" data-css="tve-u-193661c6df3" class=""><span data-css="tve-u-193660c8886" style="">Watch the video to understand:</span></h3>
<h3 data-css="tve-u-193660c887d" style="text-align: center; color: var(--tcb-skin-color-23) !important; --tcb-applied-color: var$(--tcb-skin-color-23) !important;" class="">What is sleep hygiene? Why is it important?</h3>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px" data-float-visibility="mobile" data-url="https://www.youtube.com/watch?v=phoJiU2LSd4">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="video_overlay"></div>
<p>	<iframe title="Responsive Video" class="tcb-responsive-video" data-code="phoJiU2LSd4" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/phoJiU2LSd4?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 data-hide="true" style="" data-css="tve-u-193661d1216" class="">4 reasons why you should prioritize sleep!</h2>
<p data-hide="true"><em>Here are 4 super reasons why sleep hygiene matters and why you should prioritize sleep.</em></p>
<p data-hide="true"><em><strong>1. Mental clarity and focus:&nbsp;</strong></em></p>
<ul class="">
<li data-hide="true"><em>Poor sleep impacts cognitive function.&nbsp;</em></li>
</ul>
<ul class="">
<li data-hide="true"><em>And you would have noticed how after a poor night's sleep, your concentration and focus goes down drastically?<strong><br /></strong></em></li>
</ul>
<p data-hide="true"><em><strong>2. Emotional Resilience:&nbsp;</strong>&nbsp;</em></p>
<ul class="">
<li data-hide="true"><em>Yelling, screaming, frequent upsets and in general stress seems to be much higher without adequate sleep.&nbsp;</em></li>
</ul>
<ul class="">
<li data-hide="true"><em>We end up struggling with emotional regulation.</em></li>
</ul>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-19366143a2c"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-10218" alt="Let go and overcome your challenges in sleep" data-id="10218" width="702" data-init-width="940" height="588" data-init-height="788" title="Anxiety Qs (42)" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:6a16dd5f0b321d7acaea0124ea7bacec/https://thehealinggym.com/Anxiety-Qs-42.png" data-width="702" data-height="588" style="aspect-ratio: auto 940 / 788;" loading="lazy"></span></div>
<div class="thrv_wrapper thrv_text_element">
<p data-hide="true"><em><strong>3. Physical health:</strong>&nbsp;</em></p>
<ul class="">
<li data-hide="true"><em>Consistent restorative sleep supports immune function, heart health and hormonal balance.&nbsp;</em></li>
<li data-hide="true"><em>This means if you are sleeping well, there is more likelihood for your periods to be regular, thyroid levels to be normal and other chronic conditions to be minimal.</em></li>
</ul>
<p data-hide="true"><em><strong>4. Digital Overload and Sleep Disruption:&nbsp;</strong></em></p>
<ul class="">
<li data-hide="true"><em>Exposure to blue light from screens before bed is the biggest factor today that disrupts melatonin, a crucial hormone for our sleep.&nbsp;</em></li>
<li data-hide="true"><em>Which means, disconnecting is essential for restful sleep.</em></li>
</ul>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 class="">If you are having trouble sleeping......</h2>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193661b526c">
<h3 class="" style="text-align: center;" data-css="tve-u-193661ba7ab">Don't hesitate to seek support.&nbsp;</h3>
<h3 class="" style="text-align: center;" data-css="tve-u-193661ba7ad">Remember you are valuable, your wellbeing is important!</h3>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center;" data-css="tve-u-193661ece94" class="">How can I help you?</h2>
<h5 style="text-align: center;" class=""><i>As an Anxiety Life coach and an Hypnotherapist, I know how important it is to sleep well.</i></h5>
<p><i>I have a whole bunch of toolkits that will help you in getting back to better quality of sleep.</i></p>
<p><i>These are some of the my focus areas when I work with clients with sleep issues:</i>&nbsp;</p>
<ol class="">
<li><strong><i>Help you create a good sleep hygiene by ironing out unwanted distractions in and around sleep time;</i></strong></li>
<li><strong><i>Help you&nbsp;create&nbsp;a physical&nbsp;environment conducive to sleep around you;</i></strong></li>
<li><strong><i>Help you create a sleep mindset: moving from wanting to be in charge to letting go and relaxing;</i></strong></li>
<li><strong><i>Help you maneuver your mind from overthinking and worry state to the relaxed state of surrender.</i></strong></li>
</ol>
</div>
<div class="thrv_wrapper thrv_text_element">
<table align="center" border="0" cellpadding="0" cellspacing="0" width="640" class="">
<tbody>
<tr>
<td align="center">
<table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td align="left" class="">
<h2 style="text-align: center;" data-css="tve-u-19366207011">My methods</h2>
<p><i>Typically my sessions are&nbsp; anywhere&nbsp;from 3-6 sessions for&nbsp; supporting you in developing a consistent and restorative sleep routine.</i></p>
<h5 class=""><i>I use the following tools as part of my coaching:</i></h5>
<ul>
<li><i>Anxiety and sleep coaching practices;</i></li>
<li><i>Guided meditations designed to enable you drift into sleep easily;</i></li>
<li><i>Awareness exercises to help you notice the impact of irregular sleep in your life;</i></li>
<li><i>Short NLP (NeuroLinguistic Programming) exercises that empower you to consistently manage your overthinking mind.</i></li>
<li><i>Positive Affirmations that are embedded into the meditations and also given to you as an anchor;</i></li>
<li><i>Longer Hypnosis sessions to&nbsp; reprogram your subconscious mind and remove any deeper blocks that impede you in having a good sleep.</i></li>
</ul>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center;" data-css="tve-u-19366209564" class="">Reach out if you want support</h2>
<p><i>If you are needing help and support to have a good night's sleep, do reach out and you can see if my methods and approach are aligned to your needs.</i></p>
<p><i>Reach out to me by:</i></p>
<p><i>Text or WhatsApp&nbsp;me @ +1-408-508-9419</i></p>
<p><i>or schedule a free complimentary consult at the link below!</i></p>
</div>
<div class="thrv_wrapper thrv-button thrv-button-v2 tcb-local-vars-root" data-css="tve-u-193662c74e6">
<div class="thrive-colors-palette-config" style="display: none !important"></div>
<p>	<a href="#https://bit.ly/36ASmrT" class="tcb-button-link tcb-plain-text" target="_blank"><br />
		<span class="tcb-button-texts"><span class="tcb-button-text thrv-inline-text">Schedule a free consultation with me</span></span><br />
	</a>
</div>
<div class="thrv_wrapper thrv_text_element">
<p>If you know someone who has sleep related issues, <a href="https://thehealinggym.com/sleep-well/" target="_blank" class="" style="outline: none;">share this article with them</a>!</p>
</div>
<div class="thrv_wrapper thrv_social_custom thrv_social tve_social_updated" data-counts="" data-min_shares="0" data-device-config="{&quot;desktop&quot;:{},&quot;tablet&quot;:{},&quot;mobile&quot;:{&quot;button_type&quot;:&quot;tve_social_ib&quot;,&quot;showCount&quot;:&quot;0&quot;}}">
<div class="tve_social_items tve_social_custom tve-prevent-content-edit tve_style_6 tve_social_itb">
<div class="thrv_wrapper tve_s_item tve_s_fb_share tve_share_item" data-s="fb_share" data-href="https://thehealinggym.com/sleep-well/" data-label="Share">
			<a href="javascript:void(0)" class="tve_s_link"><br />
				<span class="thrv_wrapper tve_s_icon"><br />
					<svg class="tcb-icon" viewBox="0 0 264 512" data-id="icon-fb" data-name="">
            <path d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path>
        </svg><br />
				</span><br />
				<span class="tve_s_text tve-froala">Share</span><br />
				<span class="tve_s_count">0</span><br />
			</a>
		</div>
<div class="thrv_wrapper tve_s_item tve_s_in_share tve_share_item" data-s="in_share" data-href="https://thehealinggym.com/sleep-well/" data-label="Share">
			<a href="javascript:void(0)" class="tve_s_link"><br />
				<span class="thrv_wrapper tve_s_icon"><br />
					<svg class="tcb-icon" viewBox="0 0 448 512" data-id="icon-in" data-name="">
            <path d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path>
        </svg><br />
				</span><br />
				<span class="tve_s_text tve-froala">Share</span><br />
				<span class="tve_s_count">0</span><br />
			</a>
		</div>
<div class="thrv_wrapper tve_s_item tve_s_pin_share tve_share_item" data-s="pin_share" data-href="https://thehealinggym.com/sleep-well/" data-label="Pin">
			<a href="javascript:void(0)" class="tve_s_link"><br />
				<span class="thrv_wrapper tve_s_icon"><br />
					<svg class="tcb-icon" viewBox="0 0 384 512" data-id="icon-pin" data-name="">
            <path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"></path>
        </svg><br />
				</span><br />
				<span class="tve_s_text tve-froala">Pin</span><br />
				<span class="tve_s_count">0</span><br />
			</a>
		</div>
</div>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>5 Parenting tips to help your socially anxious child.</title>
		<link>https://thehealinggym.com/5-parenting-tips-to-help-your-socially-anxious-child/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 17 Sep 2024 18:41:14 +0000</pubDate>
				<category><![CDATA[Parenting]]></category>
		<category><![CDATA[Parenting Series]]></category>
		<category><![CDATA[Release Anxiety]]></category>
		<category><![CDATA[anxietycoaching]]></category>
		<category><![CDATA[Children]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10018</guid>

					<description><![CDATA[Dear Parents, Do you get worried constantly about your anxious child?&#160; Here are 5 Parenting tips that will be very useful to you to help you to reduce your child's anxiety levels. This will in turn reduce your worries too! Regardless of the age of the child, as parents we find ourselves thinking about about [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Dear Parents, Do you get worried constantly about your anxious child?&nbsp;</h2>
<p data-css="tve-u-191d7deee11">Here are 5 Parenting tips that will be very useful to you to help you to reduce your child's anxiety levels. This will in turn reduce your worries too!</p>
<p data-css="tve-u-191d7deee11">Regardless of the age of the child, as parents we find ourselves thinking about about how we can help our child. We notice small and big problems in the life of the child and we then start worrying constantly about that increasing our own anxiety.</p>
<p data-css="tve-u-191d7deee11">When we do not know what to do, we start worrying and in that worry mode might say things that frustrate our child even more.</p>
<p data-css="tve-u-191d7deee11">So, dear parents, instead of fretting and worrying, try these tips and see how much more calmer your child and you, both feel.</p>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Parenting Tip # 1: Help your child make friends</h2>
<p data-css="tve-u-191d7deee11" style="">We find many children who might have social anxiety and do not have many friends. As a result, the child is lonely, left out and feels alone. The problem is compounded when they check their social media and finds pictures and posts of other people their age who seem to having a lot of fun.</p>
<p data-css="tve-u-191d7deee11" style="">Once you notice that your child is lonely and sad, that troubles you too isn't it? You start asking yourself, what can I do to help? How can I help my child be more social and have more friends.</p>
<p data-css="tve-u-191d7deee11" style="">Research has proven that we do not need a whole bunch of friends to be happy and less lonely. All we need is 1 or 2 good friends. That is all we need to have quality conversations.&nbsp;</p>
<p data-css="tve-u-191d7deee11" style="">Talk to your child and encourage her to meet and talk to this one person. Once your child finds a good connection with this one person, she may then find herself going to new events, new places and choosing new experiences with this one person. Over time, this will go a long way in helping her overcome social anxiety.</p>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-visibility="mobile" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px" data-url="https://youtu.be/WDyE04WgWNw">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="video_overlay"></div>
<p>	<iframe title="Responsive Video" class="tcb-responsive-video" data-code="WDyE04WgWNw" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/WDyE04WgWNw?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Parenting Tip # 2: Help your child overcome fear of judgement from friends.</h2>
<p data-css="tve-u-191d7deee11" style="">Once your child has at least one or two friends, you are happy and give a sigh of relief. But, wait, then you may find your child anxious again, because she is worrying constantly what her friends think about her.</p>
<p data-css="tve-u-191d7deee11" style="">Your child is worried that her friend/s can see how awkward she is when she talks to people, or that her friends can sense how nervous she is when she is making the class presentation. She is worried that they are judging her for her looks, for her mannerisms, for her performances and so on.</p>
<p data-css="tve-u-191d7deee11" style="">Fear of judgement can go to any length and you may find that because of this fear, your child starts distancing herself once again and avoids people, events and gatherings.</p>
<p data-css="tve-u-191d7deee11" style="">What can you, as a parent, do in this situation?</p>
<p data-css="tve-u-191d7deee11" style="">Tell your child that you are not transparent, You are not a jelly fish.</p>
<p data-css="tve-u-191d7deee11" style="">Your feelings and thoughts cannot be seen and known by others, unless you share with them.</p>
<p data-css="tve-u-191d7deee11" style="">You can suggest to your child that she asks one of her friends to record her when she makes her presentation and double check with the recording if her awkwardness, her nervousness is visible to others.</p>
<p data-css="tve-u-191d7deee11" style="">Explain to your child that most of the time, we are over imagining it and in reality, others cannot see whats going on in her mind.</p>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-visibility="mobile" data-url="https://youtu.be/u1UjTMUL7Uc" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="tcb-video-float-container">
<div class="video_overlay"></div>
<p><iframe title="Responsive Video" class="tcb-responsive-video" data-code="u1UjTMUL7Uc" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/u1UjTMUL7Uc?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</p></div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Parenting Tip # 3: Help your child learn and practice <a href="https://thehealinggym.com/the-calming-process/" target="_blank" class="" style="outline: none;">coping skills</a> in times of anxiety</h2>
<p data-css="tve-u-191d7deee11" style="">Anxiety can seem like a terrible monster to children. They may feel like running away from the situation or hiding under the bed.</p>
<p data-css="tve-u-191d7deee11" style="">And these are all normal responses. These stress responses are wired into our nervous system.</p>
<p data-css="tve-u-191d7deee11" style="">However, once your child learns and practices healthy coping mechanisms, anxiety will not feel as much of a monster for her. She will realize that "it's only anxiety!" And develop a healthier and more powerful relationship with her anxious thoughts.</p>
<p data-css="tve-u-191d7deee11" style="">So, as a parent, teach her <a href="https://thehealinggym.com/the-calming-process/" target="_blank" class="" style="outline: none;">1-2 coping mechanisms</a> that your child can practice in anxious situations.</p>
<p data-css="tve-u-191d7deee11" style="">I recommend, starting with breathing techniques. Simple inhalation- exhalation at the 3-6 count or 4-8 count, when repeated for 18-20 rounds will calm the nervous system and reduce anxiety greatly. Check out <a href="https://thehealinggym.com/the-calming-process/" target="_blank" class="" style="outline: none;">this link for other methods to help us be more calm.</a></p>
<p data-css="tve-u-191d7deee11" style="">However, it's important to teach the &nbsp;breathing technique to them when they are relatively calmer and help them practice it well.</p>
<p data-css="tve-u-191d7deee11" style="">Then there is higher probability for them to do this when they are in the middle of anxiety.</p>
<p data-css="tve-u-191d7deee11" style="">One important note for parents is that don't nag them to do the coping skills. Rather encourage them to audio record their coping skill in their phone.</p>
<p data-css="tve-u-191d7deee11" style="">In moments of anxiety, all they need to do is simply play back the recording and listen to their own voice guiding them what to do. Believe me, they will be far more responsive to their own voice guidance for breathing slowly.</p>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-visibility="mobile" data-url="https://youtu.be/uzVIgdKJ6iw" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="tcb-video-float-container">
<div class="video_overlay"></div>
<p><iframe title="Responsive Video" class="tcb-responsive-video" data-code="uzVIgdKJ6iw" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/uzVIgdKJ6iw?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</p></div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Parenting Tip # 4: Role Model healthy coping skills for your child</h2>
<p data-css="tve-u-191d7deee11" style="">If you have a child prone to anxious thinking and behavior, simply telling him what to do is not helpful.</p>
<p data-css="tve-u-191d7deee11" style="">Research tells us that children learn mostly by what parents do rather than what the parents are telling them to do.</p>
<p data-css="tve-u-191d7deee11" style="">And while we all know it at some level, <strong>we do not pay enough attention to our own behavior and responses.</strong></p>
<p data-css="tve-u-191d7deee11" style="">Also, it is most likely that when your child is anxious, one or both parents are also prone to bouts of anxiety.</p>
<h4 class="" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;">So, work on yourself.</h4>
<p data-css="tve-u-191d7deee11" style="">Try different coping mechanisms and identify which one works better for you. Then practice that in front of your child.</p>
<p data-css="tve-u-191d7deee11" style="">Your child needs to see you breathing or using positive words and affirmations. The more she sees you using healthy coping mechanisms, the more she will be likely to use those mechanisms herself when she needs it.</p>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-visibility="mobile" data-url="https://youtu.be/tcUOVjpsFi8" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="tcb-video-float-container">
<div class="video_overlay"></div>
<p><iframe title="Responsive Video" class="tcb-responsive-video" data-code="tcUOVjpsFi8" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/tcUOVjpsFi8?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</p></div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Parenting Tip # 5: Help your child to remember to breathe during anxious situations</h2>
<p data-css="tve-u-191d7deee11" style="">Parents, you might have taught a few breathing techniques to your child to help them be more calm and relaxed. And maybe your child is also clear about the technique and how to practice it.</p>
<p data-css="tve-u-191d7deee11" style="">But.....</p>
<h4 class="" style="text-align: center;">Mere knowing is not enough to get results, one has to actually practice it to feel the changes in your nervous system and mind.</h4>
<p data-css="tve-u-191d7deee11" style="">(Just like, if you are hungry, it's not adequate to know how to cook a particular recipe. You need to actually cook and eat for the hunger to be satisfied.)</p>
<p data-css="tve-u-191d7deee11" style="">So, the million dollar question is, How can we help our child remember to practice their breathing techniques when they begin feeling anxious.</p>
<p data-css="tve-u-191d7deee11" style="">Airline pilots practice in a simulated environment.</p>
<h5 class="" style="text-align: center;"><em>Similarly get your child to practice these breathing techniques in a simulated environment.</em></h5>
<p data-css="tve-u-191d7deee11" style="">This could be after they have done a workout or climbed a tree or done anything that has made their heart beat faster and their breathing more rapid.</p>
<p data-css="tve-u-191d7deee11" style="">After a workout, when they practice their deep breathing for 2-3 minutes, they feel the difference immediately and this creates a nice routine for them to calm themselves.</p>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-visibility="mobile" data-url="https://youtu.be/D1XcTid6l1w" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="tcb-video-float-container">
<div class="video_overlay"></div>
<p><iframe title="Responsive Video" class="tcb-responsive-video" data-code="D1XcTid6l1w" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/D1XcTid6l1w?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</p></div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv_text_element">
<h4 class="" data-css="tve-u-1920134db20" style="text-align: center;">These were some tips to help you build more resilience for your child and help him/her cope better with life's challenging situations.</h4>
<p style="text-align: center;">If this has been useful for you, leave a comment below and let me know.</p>
</div>
</div>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Parents, Your Children Are Always Watching you</title>
		<link>https://thehealinggym.com/children-are-always-watching/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 04 Jun 2024 23:56:21 +0000</pubDate>
				<category><![CDATA[Parenting]]></category>
		<category><![CDATA[Parenting Series]]></category>
		<category><![CDATA[Behavior]]></category>
		<category><![CDATA[Children]]></category>
		<category><![CDATA[Listen]]></category>
		<category><![CDATA[Parenthood]]></category>
		<category><![CDATA[Parenting Journey]]></category>
		<category><![CDATA[Parenting Quotes]]></category>
		<category><![CDATA[Parenting Tips]]></category>
		<category><![CDATA[Parents]]></category>
		<category><![CDATA[Positive Parenting]]></category>
		<category><![CDATA[Robert Fulghum]]></category>
		<category><![CDATA[Sign of Great Parenting]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[Watch]]></category>
		<category><![CDATA[What you say]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6374</guid>

					<description><![CDATA[Are you worried that your children are not  listening to you?

Instead of that, please focus on the fact that....
YOUR CHILDREN ARE ALWAYS WATCHING YOU!

My belief is, what you do is much more important than what you say. 
]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18fe5730eeb"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1470" alt="" data-id="1470" width="702" data-init-width="2304" height="527" data-init-height="1728" title="calm observe" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png" data-width="702" data-height="527" loading="lazy" style="aspect-ratio: auto 2304 / 1728;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png 2304w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:225/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:576/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1440/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1440/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/calm-observe.png 2048w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv_text_element">
<h2 style="text-align: center; color: rgb(85, 81, 211) !important; --tcb-applied-color: rgb(85, 81, 211) !important;" class="">Are you worried that your children are not &nbsp;listening to you?</h2>
<h4 style="text-align: center;" class="">Instead of that, please focus on the fact that....</h4>
<h2 style="text-align: center;" data-css="tve-u-18fe57b5072" class="">YOUR CHILDREN ARE ALWAYS WATCHING YOU!</h2>
</div>
<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px" data-float-visibility="mobile" data-url="https://www.youtube.com/watch?v=ylgWdKPAux8">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="video_overlay"></div>
<p>	<iframe title="Responsive Video" class="tcb-responsive-video" data-code="ylgWdKPAux8" data-hash="undefined" data-provider="youtube" data-src="https://www.youtube.com/embed/ylgWdKPAux8?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1" frameborder="0" allowfullscreen="" loading="lazy"></iframe></div>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18fe57a64d8">
<h4 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">My belief is, what you do is much more important than what you say.&nbsp;</h4>
<p data-css="tve-u-18fe577da96" style="">Your children and teens are always watching what you do. They are constantly watching your behavior and learning from it. They see how you deal with&nbsp; stress. They watch how you treat other people and how you react to other’s behavior. They also keenly observe how you deal with your own feelings.&nbsp;&nbsp;</p>
<p><strong><em><span style="--tcb-applied-color: rgb(131, 55, 171) !important; color: rgb(131, 55, 171) !important;">Children are like little sponges and absorb whatever is spoken and whatever they witness.</span></em></strong> This often overlooked fact highlights the profound impact adult behavior has on their development!</p>
<p>When my daughter was very young, she would come back from school and start teaching her little doll exactly the way her teacher would teach in school. Her high pitched statements and sometimes not so good language revealed so much about her teacher.</p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18fe577200c"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-6375" alt="" data-id="6375" width="702" data-init-width="940" height="588" data-init-height="788" title="Parenting-5" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/09/Parenting-5.png" data-width="702" data-height="588" loading="lazy" style="aspect-ratio: auto 940 / 788;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/09/Parenting-5.png 940w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:251/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/09/Parenting-5.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:644/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/09/Parenting-5.png 768w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv_text_element">
<h4 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Kids are great mimics, they have an ability to mimic the way you speak, your words, your beliefs and behavior!</h4>
<p>Kids repeat what they hear, and they imitate what they see. This is exactly why, as parents, we need to be mindful of the things we are &nbsp;inadvertently teaching our children.</p>
<p style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;">&nbsp;<em>Even when we think our children aren't paying attention, it's essential to be a positive role model.</em></p>
<p>It’s not very easy&nbsp; to always model appropriate behavior for our kids all the time, and certainly no one&nbsp; expects us to be perfect. But, as parents, we should make a sincere attempt to model the rules we want our kids to follow.</p>
<p>No point in worrying that our kids are not listening. &nbsp;It's time we worried that they are always always watching us.</p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18fe57dffdd"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-6812" alt="" data-id="6812" width="702" data-init-width="1728" height="936" data-init-height="2304" title="good kid" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/05/good-kid.png" data-width="702" data-height="936" loading="lazy" style="aspect-ratio: auto 1728 / 2304;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/05/good-kid.png 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/05/good-kid.png 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/05/good-kid.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/05/good-kid.png 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/05/good-kid.png 1536w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18fe583232a">
<h2 class="" style="text-align: center;" data-css="tve-u-18fe593cbb8">What is the impact of adult behavior on children?</h2>
<p></p>
<h4 class="data-css=" style="text-align: center;" tve-u-18fe5850690""=""><strong>Emotional Regulation</strong>:&nbsp;</h4>
<p class="data-css=" tve-u-18fe5850690""="">Children watch how adults manage their emotions. If they observe adults handling stress with calmness and composure, they are more likely to adopt similar strategies. But if they see you get angry, anxious or having a negative perspective on life, that's what they subconsciously pick up!</p>
<h4 style="text-align: center;" class=""><strong>Social Interactions</strong>:&nbsp;</h4>
<p>Children are also observing how you deal with other adults, your relative, friends, colleagues, neighbors and the strangers you meet everyday. The way adults interact with others sets a standard for children.</p>
<p>Both my daughters learnt how to say, 'thank you' to the auto-driver in India while alighting at their destination. They learnt dignity of labor and respected people of all classes because that's what they saw in the adults around them.</p>
<p>Politeness, empathy, and active listening are learned through observation. Children who see respectful and kind interactions are more likely to replicate those behaviors.</p>
<h4 style="text-align: center;" class=""><strong>Work Ethic and Responsibility</strong>:&nbsp;</h4>
<p>Observing adults approach their responsibilities with diligence and a positive attitude teaches children the value of hard work and perseverance. If children see us making the bed, they will learn that soon (provided we do not keep doing it for them).</p>
<p>If they see us going on time to work, they learn that. If they see us displaying cleanliness around the home, they will pick that up as well.</p>
<h4 style="text-align: center;" class=""><strong>Healthy Habits</strong>:&nbsp;</h4>
<p>Lifestyle choices, such as eating habits, exercise, and leisure activities, are greatly influenced by adult behavior. Children are more inclined to follow healthy routines if they see their caregivers doing the same.</p>
<p>One of my friends and her husband were always particular about healthy eating and adequate exercise. She told me, the other day, how both her boys, who are now adults, &nbsp;are completely into fitness and are very mindful of what they eat!</p>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18fe58e41cf">
<h2 style="text-align: center;" data-css="tve-u-18fe58684b6" class="">So, then, a question you might have is:</h2>
<h2 style="text-align: center;" data-css="tve-u-18fe58684b9" class="">How can I be a positive role-model for my child?</h2>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18fe5870bf3">
<h4 class="" style="text-align: center;" data-css="tve-u-18fe59c2cee">Here are some practical Tips for Positive Role Modeling</h4>
<ul class="">
<li><strong>Be Mindful of Actions</strong>: Understand that everyday actions, even seemingly trivial ones, are being observed.</li>
</ul>
<h5 class="" style="text-align: center;" data-css="tve-u-18fe5998f55">Strive to demonstrate positive behaviors consistently.</h5>
<ul class="">
<li><strong>Communicate Effectively</strong>: Use positive language and active listening when communicating with children and others. Explain the reasons behind actions and decisions to help children understand and learn.</li>
</ul>
<h5 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Positive communication is key.</h5>
<ul class="">
<li><strong>Show Empathy and Kindness</strong>: Model empathy in interactions with others. Engage in acts of kindness and explain the importance of empathy to children.</li>
</ul>
<h5 center;""="" class="style=" style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" text-align:="">Practice random and not so random &nbsp;acts of kindness</h5>
<ul class="">
<li><strong>Manage Stress Positively</strong>: Demonstrate healthy ways to cope with stress, such as deep breathing, exercise, or discussing problems openly and calmly.</li>
</ul>
<h5 style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;" class="">Work on your stress</h5>
<ul class="">
<li><strong>Encourage Curiosity and Learning</strong>: Display a love for learning and curiosity. Engage in educational activities and hobbies, and encourage children to explore their interests.</li>
</ul>
<h5 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Be curious and encourage learning.</h5>
<ul class="">
<li><strong>Practice Self-Care</strong>: Show children the importance of self-care by taking time for activities that promote physical and mental well-being.</li>
</ul>
<p class="style=" text-align:="" center;""="">
<h5 style="text-align: center;" data-css="tve-u-18fe59d5023" class="">Practice self-care &amp; self-love</h5>
</p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18fe5893982"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-1609" alt="" data-id="1609" width="702" data-init-width="2560" height="468" data-init-height="1707" title="pexels-migs-reyes-4205505" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505-scaled.jpg" data-width="702" data-height="468" loading="lazy" style="aspect-ratio: auto 2560 / 1707;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505-scaled.jpg 2560w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:200/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:683/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:512/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1536/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505.jpg 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1620/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/03/pexels-migs-reyes-4205505.jpg 2048w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv_text_element">
<p>When we take efforts in positive role-modeling, children will automatically observe us and listen to our words.</p>
<p>How we are, what we do, how we behave, how we handle stress all of these add up to our parenting strategies. Honestly, in my opinion, parenting is all about self-transformation.</p>
<h3 data-css="tve-u-18fe58ce4de" style="text-align: center;" class="">If we want our children to be healthy and responsible adults, we simply focus on the small daily actions and positive behaviors of today.</h3>
<h3 data-css="tve-u-18fe58ce4de" style="text-align: center;" class="">What we do is far more powerful than what we say!</h3>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>5 reasons why you should have a practice of self-care!</title>
		<link>https://thehealinggym.com/are-you-practicing-enough-self-care/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 07 Nov 2023 01:43:27 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Happiness]]></category>
		<category><![CDATA[Self-Empowerment]]></category>
		<category><![CDATA[5 reasons to practice self-care]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[nurture your body]]></category>
		<category><![CDATA[nurture your mind]]></category>
		<category><![CDATA[self-care]]></category>
		<category><![CDATA[take care of yourself]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=9591</guid>

					<description><![CDATA[Are you practicing enough self-care? Here are 5 reasons why everyone should have a practice of self-care in their routine.]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18ba769c795"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-9595" alt="" data-id="9595" width="702" data-init-width="1080" height="702" data-init-height="1080" title="self-care" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:5ece46f13be41fc7771ac5aba6072c2b/https://thehealinggym.com/self-care.jpeg" data-width="702" data-height="702" loading="lazy" style="aspect-ratio: auto 1080 / 1080;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/id:5ece46f13be41fc7771ac5aba6072c2b/https://thehealinggym.com/self-care.jpeg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/id:5ece46f13be41fc7771ac5aba6072c2b/https://thehealinggym.com/self-care.jpeg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/id:5ece46f13be41fc7771ac5aba6072c2b/https://thehealinggym.com/self-care.jpeg 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/id:5ece46f13be41fc7771ac5aba6072c2b/https://thehealinggym.com/self-care.jpeg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:5ece46f13be41fc7771ac5aba6072c2b/https://thehealinggym.com/self-care.jpeg 1080w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></p>
<p class="thrv_wrapper thrv-inline-text wp-caption-text">Are you practicing enough self-care?</p>
</div>
<div class="thrv_wrapper thrv_text_element">
<h2 class="" style="text-align: center;" data-css="tve-u-18ba75c5a1d">5 reasons why everyone should have a practice of self-care!</h2>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18ba76b5ef6">
<h4 class=""><em>Are you practicing self-care?</em></h4>
<h4 class=""><em>And by self-care, I mean taking care of your entire self:</em></h4>
<ul>
<li>
<h4 class=""><em>Nurturing your body</em></h4>
</li>
<li>
<h4 class=""><em>Nurturing your mind</em></h4>
</li>
<li>
<h4 class=""><em>Nurturing your entire self!</em><em></em><br /></h4>
</li>
</ul>
</div>
<div class="thrv_wrapper thrv_text_element" style="">
<h5 class="" style="text-align: center; color: rgb(85, 81, 211) !important; --tcb-applied-color: rgb(85, 81, 211) !important;"><em>Most of us lead such busy lives that we are constantly moving from one task to another, from one event to another. But&nbsp;</em><em>this kind of 'busyness' frequently affects our self-care and our overall health!</em></h5>
<p><em>You may argue, that I do exercise thrice a week. Or, that I am eating my greens regularly. Or I am keeping my mind more calmer with a regular practice of meditation.</em></p>
<p><em>That's great and yes, all of the above are part of self-care.</em></p>
<p><em>However,&nbsp; my conversation about self-care is the holistic nurturing of the entire self and giving time, energy and attention to all aspects of you that need you!</em></p>
<p><em></em></p>
</div>
<div class="thrv_wrapper thrv_text_element" style="">
<p><em>Here is an example that will help explain this:<br /></em></p>
<p><em>Neena is a busy working mom also taking care of three young kids. She tries to feed her children nutritious meals and wants to expose them to different activities.&nbsp;</em></p>
<p><em>In the process of doing all of this, she finds herself sleeping late and getting up very early</em>.&nbsp;<em>She also is more stressed at work and ends up having an underlying anxiety because there is always so much to do.</p>
<p>When Neena attended a self-care class, she discovered the magic of mindfulness and learnt to pause between activities. She relaxed her tight schedules and found that when she was doing a little less, she was actually getting far more done in terms of quality and satisfaction. She slept better and was more available for her children.</p>
<p>In Neena's example, her self-care practice was not just about exercise or diet. It involved giving more space to herself and allowing herself to relax. In doing so, self-care incrementally increased the quality of her life.</p>
<p></em></p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18ba76e1497"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-962" alt="" data-id="962" width="702" data-init-width="2560" height="469" data-init-height="1709" title="Gratitude1" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1-scaled.jpg" data-width="702" data-height="469" loading="lazy" style="aspect-ratio: auto 2560 / 1709;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1-scaled.jpg 2560w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:200/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:683/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:513/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1536/h:1025/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1.jpg 1536w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1618/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/Gratitude1.jpg 2048w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv-columns">
<div class="tcb-flex-row v-2 tcb--cols--1">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element">
<p><em>Another example:<br /></em></p>
<p><em>Harsh is a diligent son and a super dad always making time for his son's baseball practice games and also making time to visit his parents. He does yoga every day and tries to cook and eat healthy.&nbsp;</em></p>
<p><em>Is Harsh practicing self-care? Well, let's look deeper!</em></p>
<p><em>Harsh tries to make himself available for his family and his parents. In the process, he doesn't have time to practice his piano which is his deep passion. He is unable to say 'No' to others and say 'Yes' to himself. His lack of boundary setting eats into his soul-space and makes him unhappy and resentful.</em></p>
<p><em>In this example, Harsh would benefit from practicing self-care in the form of setting loving boundaries and making time for his music which is actually nourishment for his soul.</em></p>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-18ba790942d"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7031" alt="" data-id="7031" width="702" data-init-width="940" height="588" data-init-height="788" title="Anxiety-Q-11" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/01/Anxiety-Q-11.png" data-width="702" data-height="588" data-css="tve-u-18ba790e08a" loading="lazy" style="aspect-ratio: auto 940 / 788;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/01/Anxiety-Q-11.png 940w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:251/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/01/Anxiety-Q-11.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:644/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/01/Anxiety-Q-11.png 768w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv_text_element" style="">
<p><em><br /></em></p>
</div>
<div class="thrv_wrapper thrv_text_element" style="">
<h4 class="" style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;"><em>Here are 5 reasons why you should be practicing more self-care:</em></h4>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18ba76f8c79">
<p><em>1) Self-care <strong>gifts you more energy</strong> to do all the things you love to do in a way that brings more satisfaction to your life.<br />2) Self-care moves you from a quantitative movement through life to a more <strong>qualitative acceptance and understanding of life.</strong> You move from 'I have to do more tasks, more activities, more exercise' <strong>to</strong> ' Doing these tasks were so fulfilling'.<br />3) With increased self-care you find the <strong>joy component in your life increasing</strong>. It might even feel odd that by doing 'less' you are getting 'more'. More joy, more time, more energy!<br />4) &nbsp;Your <strong>health and vitality increases enormously</strong>. You feel a sense of vibrant energy that you may not have felt for a long time.<br />5) &nbsp;With greater happiness because of self-care comes <strong>greater fulfillment in relationships</strong>. You are able to make deeper and stronger connections with people. As you learn to love yourself better through self-care, you are able to love others more deeply!</em></p>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18ba76f8c79">
<h5 class="" data-css="tve-u-18ba7727764" style="text-align: center;">&nbsp;<em>Are you liking this post? Do share with someone who might need to hear this today.</em></h5>
</div>
<div class="thrv_wrapper thrv_social_custom thrv_social" data-counts="" data-min_shares="0" data-device-config="{&quot;desktop&quot;:{},&quot;tablet&quot;:{},&quot;mobile&quot;:{&quot;button_type&quot;:&quot;tve_social_ib&quot;,&quot;showCount&quot;:&quot;0&quot;}}" style="">
<div class="tve_social_items tve_social_custom tve-prevent-content-edit tve_style_6 tve_social_itb">
<div class="thrv_wrapper tve_s_item tve_s_fb_share tve_share_item" data-s="fb_share" data-href="https://thehealinggym.com/are-you-practicing-enough-self-care/" data-label="Share">
			<a href="javascript:void(0)" class="tve_s_link"><br />
				<span class="thrv_wrapper tve_s_icon"><br />
					<svg class="tcb-icon" viewBox="0 0 264 512" data-id="icon-fb" data-name="">
            <path d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path>
        </svg><br />
				</span><br />
				<span class="tve_s_text">Share</span><br />
				<span class="tve_s_count">0</span><br />
			</a>
		</div>
<div class="thrv_wrapper tve_s_item tve_s_t_share tve_share_item" data-s="t_share" data-href="https://thehealinggym.com/are-you-practicing-enough-self-care/" data-label="Tweet">
			<a href="javascript:void(0)" class="tve_s_link"><br />
				<span class="thrv_wrapper tve_s_icon"><br />
					<svg class="tcb-icon" viewBox="0 0 512 512" data-id="icon-t" data-name="">
            <path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path>
        </svg><br />
				</span><br />
				<span class="tve_s_text">Tweet</span><br />
				<span class="tve_s_count">0</span><br />
			</a>
		</div>
</div>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-18ba76f8c79">
<h5 class="" data-css="tve-u-18ba7727764" style="text-align: center;">Do support me by following me on social media!</h5>
</div>
<div class="tcb-clear">
<div class="thrv_wrapper thrive_author_links thrv_social_custom thrv_social_follow tcb-local-vars-root tcb-custom-branding-social" data-custom-networks="{}" data-css="tve-u-18ba7715a58" style="">
<div class="thrive-colors-palette-config" style="display: none !important"></div>
<div class="tve_social_items tve_social_custom tcb-social-follow tve-prevent-content-edit tve_links_style_1 tve_social_itb">
<div class="tve_s_item tve_s_fb_share thrv_wrapper" data-network="fb" data-s="fb_share" data-href="" data-name="Facebook page">
<p>	<a href="https://www.facebook.com/thehealinggym/" class="tve-dynamic-link " target="_blank" rel="nofollow noopener" data-dynamic-link="thrive_global_fields_url" data-shortcode-id="fb" data-id="icon-facebook"><br />
	<span class="tve_s_icon"><br />
			 <svg class="tcb-icon" viewBox="0 0 264 512" data-id="facebook" data-name="facebook">
            <path d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path>
        </svg><br />
		</span><br />
	</a>
</div>
<div class="tve_s_item tve_s_yt_share thrv_wrapper" data-network="yt" data-s="yt_share" data-href="" data-name="YouTube">
<p>	<a href="https://www.youtube.com/channel/UCSAqOkVhUHIGDso1M7DZRXg" class="tve-dynamic-link " target="_blank" rel="nofollow noopener" data-dynamic-link="thrive_global_fields_url" data-shortcode-id="yt" data-id="icon-youtube"><br />
	<span class="tve_s_icon"><br />
			 <svg class="tcb-icon" viewBox="0 0 576 512" data-id="youtube" data-name="youtube">
            <path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path>
        </svg><br />
		</span><br />
	</a>
</div>
<div class="tve_s_item tve_s_in_share thrv_wrapper" data-network="in" data-s="in_share" data-href="" data-name="LinkedIn">
<p>	<a href="https://www.linkedin.com/company/the-healing-gym/" class="tve-dynamic-link " target="_blank" rel="nofollow noopener" data-dynamic-link="thrive_global_fields_url" data-shortcode-id="in" data-id="icon-linkedin"><br />
	<span class="tve_s_icon"><br />
			 <svg class="tcb-icon" viewBox="0 0 448 512" data-id="linkedin" data-name="linkedin">
            <path d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path>
        </svg><br />
		</span><br />
	</a>
</div>
<div class="tve_s_item tve_s_ig_share thrv_wrapper" data-network="ig" data-s="ig_share" data-href="" data-name="Instagram">
<p>	<a href="https://www.instagram.com/sacredhealinggym/" class="tve-dynamic-link " target="_blank" rel="nofollow noopener" data-dynamic-link="thrive_global_fields_url" data-shortcode-id="ig" data-id="icon-instagram"><br />
	<span class="tve_s_icon"><br />
			 <svg class="tcb-icon" viewBox="0 0 448 512" data-id="instagram" data-name="instagram">
            <path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path>
        </svg><br />
		</span><br />
	</a>
</div>
</div>
</div>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>6 Life-Changing Reasons to Practice Gratitude</title>
		<link>https://thehealinggym.com/6-life-changing-reasons-to-practice-gratitude/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Sun, 09 Jul 2023 16:43:09 +0000</pubDate>
				<category><![CDATA[Self-Empowerment]]></category>
		<category><![CDATA[Happiness]]></category>
		<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[6 reasons to practice gratitude]]></category>
		<category><![CDATA[attitude of gratitude]]></category>
		<category><![CDATA[better physical health]]></category>
		<category><![CDATA[gratitude]]></category>
		<category><![CDATA[gratitude journaling]]></category>
		<category><![CDATA[gratitude meditation]]></category>
		<category><![CDATA[improved mental health]]></category>
		<category><![CDATA[increase happiness and contentment]]></category>
		<category><![CDATA[increased self-esteem]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[positive mindset]]></category>
		<category><![CDATA[reduce stress]]></category>
		<category><![CDATA[self-care]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=9307</guid>

					<description><![CDATA[Here are 6 reasons why practicing gratitude and doing gratitude journaling is so good for you. Gratitude helps you to shift your focus towards the positive aspects of life.]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1893ba6d50a" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-9325" alt="" data-id="9325" width="702" data-init-width="1276" height="179" data-init-height="326" title="scroll down" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg" data-width="702" data-height="179" style="aspect-ratio: auto 1276 / 326;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:77/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:262/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:196/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 1276w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893baa0336" style="">
<p style="color: rgba(0, 0, 0, 0.85) !important; --tcb-applied-color: rgba(0, 0, 0, 0.85) !important; font-size: 17px !important;"><span style="font-size: 17px;" data-css="tve-u-1893baf790f">In my client sessions, I frequently <strong>recommend practicing gratitude journaling</strong>. Why do I do that? Because of its enormous benefits on both the physical and mental health for my client.</span></p>
<p style="font-size: 17px !important;"><span style="font-size: 17px;" data-css="tve-u-1893baf7911">In this fast-paced world filled with constant distractions and pressures, it's easy to lose sight of the little things that bring us joy and peace.</span></p>
<p style="color: rgba(0, 0, 0, 0.85) !important; --tcb-applied-color: rgba(0, 0, 0, 0.85) !important; font-size: 17px !important;"><span style="font-size: 17px;" data-css="tve-u-1893baf7913">However, practicing gratitude can be a powerful tool to help us reconnect with what truly matters and unlock a deep sense of happiness and well-being.</span></p>
</div>
<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1893b9cbd05">
<h1 class="" style="text-align: center; color: var(--tcb-skin-color-23) !important; --tcb-applied-color: var$(--tcb-skin-color-23) !important;"><strong>What is gratitude ?</strong></h1>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" data-css="tve-u-1893b9eeadb" style="">
<div class="tve-content-box-background" style="" data-css="tve-u-1893b9fb826"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893ba02fd7">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893ba0442d" style="">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1893b8e6929" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-9311" alt="" data-id="9311" width="331" data-init-width="1080" height="331" data-init-height="1080" title="1" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:e15adf9f9f786d462f7dcd11929af388/https://thehealinggym.com/1-3.jpg" data-width="331" data-height="331" style="aspect-ratio: auto 1080 / 1080;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/id:e15adf9f9f786d462f7dcd11929af388/https://thehealinggym.com/1-3.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/id:e15adf9f9f786d462f7dcd11929af388/https://thehealinggym.com/1-3.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/id:e15adf9f9f786d462f7dcd11929af388/https://thehealinggym.com/1-3.jpg 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/id:e15adf9f9f786d462f7dcd11929af388/https://thehealinggym.com/1-3.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:e15adf9f9f786d462f7dcd11929af388/https://thehealinggym.com/1-3.jpg 1080w" sizes="auto, (max-width: 331px) 100vw, 331px" /></span></div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1893b8e9cc0" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-9310" alt="" data-id="9310" width="331" data-init-width="1080" height="331" data-init-height="1080" title="2" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg" data-width="331" data-height="331" style="aspect-ratio: auto 1080 / 1080;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:8e45a8ae1d1ff8aa64229f81de367685/https://thehealinggym.com/2-.jpg 1080w" sizes="auto, (max-width: 331px) 100vw, 331px" /></span></div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893b9f535d">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893b9f627c" style="">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element">
<p style="color: var(--tcb-skin-color-23) !important; --tcb-applied-color: var$(--tcb-skin-color-23) !important;"><em><strong>Gratitude is the practice of acknowledging and appreciating the good things in our lives, both big and small, and it has the potential to transform our outlook on life.</strong></em></p>
</div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893ba28599" style="">
<p style="" data-css="tve-u-1893ba23665"><em><strong>Gratitude shifts our focus from what is lacking in our lives to what we already have. It brings back our attention to the present moment, allowing us to fully experience and appreciate the richness of our surroundings and relationships.</strong></em></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" data-css="tve-u-1893ba6ed45" style="">
<div class="tve-content-box-background" data-css="tve-u-1893ba745cb"></div>
<div class="tve-cb">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1893ba6d50a" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-9325" alt="" data-id="9325" width="702" data-init-width="1276" height="179" data-init-height="326" title="scroll down" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg" data-width="702" data-height="179" style="aspect-ratio: auto 1276 / 326;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:77/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:262/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:196/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:1a337d6405b13ecfed13b5f7859be718/https://thehealinggym.com/scroll-down.jpg 1276w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div>
</div>
</div>
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bac355f" style="">
<h2 data-css="tve-u-1893bacb6d9" style="text-align: center;" class="">6 Life-Changing Reasons to Practice Gratitude</h2>
</div>
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bac1279" style="">
<p data-css="tve-u-1893bae0557" style="text-align: center; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;">Six reasons why you should practice gratitude, life-changing reasons :</span></p>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" data-css="tve-u-1893be55a4c" style="">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb58886">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb5940b" style="">
<div class="tcb-flex-col" data-css="tve-u-1893be14c98" style="">
<div class="tcb-col" data-css="tve-u-1893bb450f4" style="">
<div class="tcb-clear" data-css="tve-u-1893bb51d5c">
<div class="thrv_wrapper thrv_icon tcb-icon-display tcb-local-vars-root" data-css="tve-u-1893bb23a14" style="--tve-border-width: 2px; z-index: 1 !important;"><svg class="tcb-icon" viewBox="0 0 512 512" data-id="icon-clock-outlined" data-name="" style=""><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg></div>
</div>
</div>
</div>
<div class="tcb-flex-col" data-css="tve-u-1893bb4c90f" style="">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bb852a8">
<div class="thrv_wrapper thrv_icon tcb-icon-display tcb-local-vars-root" data-css="tve-u-1893bb852a4" style=""><svg class="tcb-icon" viewBox="0 0 24 24" data-id="icon-emoticon-solid" data-name=""><path d="M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M15.5,8A1.5,1.5 0 0,1 17,9.5A1.5,1.5 0 0,1 15.5,11A1.5,1.5 0 0,1 14,9.5A1.5,1.5 0 0,1 15.5,8M8.5,8A1.5,1.5 0 0,1 10,9.5A1.5,1.5 0 0,1 8.5,11A1.5,1.5 0 0,1 7,9.5A1.5,1.5 0 0,1 8.5,8M12,17.5C9.67,17.5 7.69,16.04 6.89,14H17.11C16.3,16.04 14.33,17.5 12,17.5Z"></path></svg></div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb5bf5c">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb5c736" style="">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bc4f332">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893be1e04b" style="z-index: 2 !important;">
<p data-css="tve-u-1893bc4df89" style="text-align: center; font-size: 17px !important;"><strong><span data-css="tve-u-1893bc4df8e" style="font-size: 17px;">Positive mindset</span></strong></p>
</div>
</div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bc4f332">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893be3179b" style="">
<p data-css="tve-u-1893bc4df89" style="text-align: center; font-size: 17px !important;"><strong><span data-css="tve-u-1893bc4df8e" style="font-size: 17px;">Increase happiness &amp; contentment</span></strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb77ddd">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb78dcf" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bc6afd5" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893be3064c" style="">
<p data-css="tve-u-1893bae0557" style="text-align: left; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;"><em>Gratitude helps shift your focus towards the positive aspects of life. By acknowledging and appreciating what you have, you cultivate a positive mindset that can improve your overall outlook on life.</em></span></p>
</div>
</div>
</div>
<div class="tcb-flex-col" data-css="tve-u-1893bc65fd0" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893be4a38a" style="">
<p data-css="tve-u-1893bae0557" style="text-align: left; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;"><em><em>Research shows that practicing gratitude regularly can increase feelings of happiness and contentment. When you express gratitude, you activate neural pathways associated with pleasure and reward, leading to an overall sense of well-being.</em></em></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" data-css="tve-u-1893be5808a" style="">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb58886">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb5940b" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bb441a5" style="">
<div class="tcb-col" data-css="tve-u-1893bb450f4" style="">
<div class="tcb-clear" data-css="tve-u-1893bb51d5c">
<div class="thrv_wrapper thrv_icon tcb-icon-display tcb-local-vars-root" data-css="tve-u-1893bca2f85" style="--tve-border-width: 2px;"><svg class="tcb-icon" viewBox="0 0 24 24" data-id="icon-vpn-solid" data-name=""><path d="M9,5H15L12,8L9,5M10.5,14.66C10.2,15 10,15.5 10,16A2,2 0 0,0 12,18A2,2 0 0,0 14,16C14,15.45 13.78,14.95 13.41,14.59L14.83,13.17C15.55,13.9 16,14.9 16,16A4,4 0 0,1 12,20A4,4 0 0,1 8,16C8,14.93 8.42,13.96 9.1,13.25L9.09,13.24L16.17,6.17V6.17C16.89,5.45 17.89,5 19,5A4,4 0 0,1 23,9A4,4 0 0,1 19,13C17.9,13 16.9,12.55 16.17,11.83L17.59,10.41C17.95,10.78 18.45,11 19,11A2,2 0 0,0 21,9A2,2 0 0,0 19,7C18.45,7 17.95,7.22 17.59,7.59L10.5,14.66M6.41,7.59C6.05,7.22 5.55,7 5,7A2,2 0 0,0 3,9A2,2 0 0,0 5,11C5.55,11 6.05,10.78 6.41,10.41L7.83,11.83C7.1,12.55 6.1,13 5,13A4,4 0 0,1 1,9A4,4 0 0,1 5,5C6.11,5 7.11,5.45 7.83,6.17V6.17L10.59,8.93L9.17,10.35L6.41,7.59Z"></path></svg></div>
</div>
</div>
</div>
<div class="tcb-flex-col" data-css="tve-u-1893bb4c90f" style="">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bb852a8">
<div class="thrv_wrapper thrv_icon tcb-icon-display tcb-local-vars-root" data-css="tve-u-1893bcbdc99" style=""><svg class="tcb-icon" viewBox="0 0 24 24" data-id="icon-account-multiple-solid" data-name=""><path d="M16 17V19H2V17S2 13 9 13 16 17 16 17M12.5 7.5A3.5 3.5 0 1 0 9 11A3.5 3.5 0 0 0 12.5 7.5M15.94 13A5.32 5.32 0 0 1 18 17V19H22V17S22 13.37 15.94 13M15 4A3.39 3.39 0 0 0 13.07 4.59A5 5 0 0 1 13.07 10.41A3.39 3.39 0 0 0 15 11A3.5 3.5 0 0 0 15 4Z"></path></svg></div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb5bf5c">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb5c736" style="">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bc4f332">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc4f330" style="">
<p data-css="tve-u-1893bc4df89" style="text-align: center; font-size: 17px !important;"><strong><span data-css="tve-u-1893bc4df8e" style="font-size: 17px;">Reduced stress</span></strong></p>
</div>
</div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bc4f332">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc4f330" style="">
<p data-css="tve-u-1893bc4df89" style="text-align: center; font-size: 17px !important;"><strong><span data-css="tve-u-1893bc4df8e" style="font-size: 17px;">Better physical health</span></strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb77ddd">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb78dcf" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bc6afd5" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc61909" style="">
<p data-css="tve-u-1893bae0557" style="text-align: left; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;"><em><em>Gratitude has been shown to reduce stress levels. When you focus on what you're grateful for, you shift your attention away from worries and anxieties, leading to a calmer and more relaxed state of mind.</em></em></span></p>
</div>
</div>
</div>
<div class="tcb-flex-col" data-css="tve-u-1893bc65fd0" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc61909" style="">
<p data-css="tve-u-1893bae0557" style="text-align: left; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;"><em><em><em>Gratitude has been linked to improved physical health. People who practice gratitude regularly tend to have stronger immune systems, lower blood pressure, better sleep, and experience fewer aches and pains.</em></em></em></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" data-css="tve-u-1893be59bc0" style="">
<div class="tve-content-box-background"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb58886">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb5940b" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bb441a5" style="">
<div class="tcb-col" data-css="tve-u-1893bb450f4" style="">
<div class="tcb-clear" data-css="tve-u-1893bb51d5c">
<div class="thrv_wrapper thrv_icon tcb-icon-display tcb-local-vars-root" data-css="tve-u-1893bcd0461" style="--tve-border-width: 2px;"><svg class="tcb-icon" viewBox="0 0 24 24" data-id="icon-bottle-tonic-plus-outlined" data-name=""><path d="M13 4H11L10 2H14L13 4M19 13V22H5V13C5 10.24 7.24 8 10 8V6H9V5H15V6H14V8C16.76 8 19 10.24 19 13M17 13C17 11.35 15.65 10 14 10H10C8.35 10 7 11.35 7 13V20H17V13M15 16H13V18H11V16H9V14H11V12H13V14H15V16Z"></path></svg></div>
</div>
</div>
</div>
<div class="tcb-flex-col" data-css="tve-u-1893bb4c90f" style="">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bb852a8">
<div class="thrv_wrapper thrv_icon tcb-icon-display tcb-local-vars-root" data-css="tve-u-1893bce20ee" style=""><svg class="tcb-icon" viewBox="0 0 24 24" data-id="icon-head-sync-solid" data-name=""><path d="M13 3C9.23 3 6.19 5.95 6 9.66L4.08 12.19C3.84 12.5 4.08 13 4.5 13H6V16C6 17.11 6.89 18 8 18H9V21H16V16.31C18.37 15.19 20 12.8 20 10C20 6.14 16.88 3 13 3M13 15V13.5C10.79 13.5 9 11.71 9 9.5C9 8.68 9.25 7.92 9.67 7.29L10.76 8.38C10.59 8.72 10.5 9.1 10.5 9.5C10.5 10.88 11.62 12 13 12V10.5L15.25 12.75L13 15M16.33 11.71L15.24 10.62C15.41 10.28 15.5 9.9 15.5 9.5C15.5 8.12 14.38 7 13 7V8.5L10.75 6.25L13 4V5.5C15.21 5.5 17 7.29 17 9.5C17 10.32 16.75 11.08 16.33 11.71Z"></path></svg></div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb5bf5c">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb5c736" style="">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bc4f332">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc4f330" style="">
<p data-css="tve-u-1893bc4df89" style="text-align: center; font-size: 17px !important;"><strong><span data-css="tve-u-1893bc4df8e" style="font-size: 17px;">Improved mental health</span></strong></p>
</div>
</div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="tcb-clear" data-css="tve-u-1893bc4f332">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc4f330" style="">
<p data-css="tve-u-1893bc4df89" style="text-align: center; font-size: 17px !important;"><strong><span data-css="tve-u-1893bc4df8e" style="font-size: 17px;">Increased self-esteem</span></strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893bb77ddd">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893bb78dcf" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bc6afd5" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc61909" style="">
<p data-css="tve-u-1893bae0557" style="text-align: left; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;"><em><em><em>Gratitude has a positive impact on mental health. It can reduce symptoms of depression, anxiety, and stress. Regularly practicing gratitude can enhance your overall psychological well-being.</em></em></em></span></p>
</div>
</div>
</div>
<div class="tcb-flex-col" data-css="tve-u-1893bc65fd0" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bc61909" style="">
<p data-css="tve-u-1893bae0557" style="text-align: left; font-size: 17px !important;"><span data-css="tve-u-1893bae6945" style="font-size: 17px;"><em><em><em><em>Gratitude can boost your self-esteem and self-worth. When you recognize and appreciate your own strengths, accomplishments, and positive qualities, you develop a healthier self-image.</em></em></em></em></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_text_element" data-css="tve-u-1893bac355f" style="">
<h2 data-css="tve-u-1893bacb6d9" style="text-align: center;" class="">Aren’t these great reasons to start a gratitude practice today?</h2>
</div>
<div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" data-css="tve-u-1893b9eeadb" style="">
<div class="tve-content-box-background" style="" data-css="tve-u-1893bdcc6e2"></div>
<div class="tve-cb">
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893ba02fd7">
<div class="tcb-flex-row v-2 tcb--cols--2" data-css="tve-u-1893ba0442d" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bde3ea7" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element">
<p style="text-align: justify;">When we cultivate an attitude of gratitude, we become more aware of the abundance that surrounds us that includes loving relationships, the simple pleasures of life and opportunities for growth and learning.</p>
<p style="text-align: justify;">We begin to realize that happiness is not something to chase in the future but a state of being that can be found right here, right now.</p>
</div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1893b8e9cc0" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-9308" alt="" data-id="9308" width="309" data-init-width="1080" height="309" data-init-height="1080" title="4" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:66eb042c18d813bf38f28ff2dd5ae4f9/https://thehealinggym.com/4-2.jpg" data-width="309" data-height="309" style="aspect-ratio: auto 1080 / 1080;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/id:66eb042c18d813bf38f28ff2dd5ae4f9/https://thehealinggym.com/4-2.jpg 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/id:66eb042c18d813bf38f28ff2dd5ae4f9/https://thehealinggym.com/4-2.jpg 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/id:66eb042c18d813bf38f28ff2dd5ae4f9/https://thehealinggym.com/4-2.jpg 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/id:66eb042c18d813bf38f28ff2dd5ae4f9/https://thehealinggym.com/4-2.jpg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:66eb042c18d813bf38f28ff2dd5ae4f9/https://thehealinggym.com/4-2.jpg 1080w" sizes="auto, (max-width: 309px) 100vw, 309px" /></span></div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width: 662;" data-css="tve-u-1893b9f535d">
<div class="tcb-flex-row v-2 tcb--cols--1" data-css="tve-u-1893b9f627c" style="">
<div class="tcb-flex-col" data-css="tve-u-1893bf2a07a" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element">
<p data-css="tve-u-1893bf4324d" style=""><span style="--tcb-applied-color: rgb(85, 81, 214) !important; color: rgb(0, 0, 0);" data-css="tve-u-1893bf5a3c3">You can try inculcating this gratitude practice through listening to a gratitude meditation as well.</span><br />
<strong><span style="--tcb-applied-color: rgb(85, 81, 211) !important; color: rgb(85, 81, 211);" data-css="tve-u-1893bf5a3c5">If you are interested in my gratitude meditation, do click the button below to get your downloadable file.</span></strong></p>
<p>Have a wonderful day filled with joy, peace, and gratitude.</p>
<p>Warm regards,</p>
<p>Lata</p>
</div>
<div class="thrv_wrapper thrv-button thrv-button-v2 tcb-local-vars-root" data-css="tve-u-1893bf12da7" data-button-size="s">
<div class="thrive-colors-palette-config" style="display: none !important"></div>
<p>	<a href="#tve-jump-18fe44c7cb4" class="tcb-button-link tcb-plain-text"><br />
		<span class="tcb-button-texts"><span class="tcb-button-text thrv-inline-text">Download an audio of Gratitude Meditation</span></span><br />
	</a>
</div>
<div class="thrv_wrapper thrv_custom_html_shortcode">
<style type="text/css">@import url("https://assets.mlcdn.com/fonts.css?version=1717083");</style>
<style type="text/css">
    /* LOADER */
    .ml-form-embedSubmitLoad {
      display: inline-block;
      width: 20px;
      height: 20px;
    }</p>
<p>    .g-recaptcha {
    transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    height: ;
    }</p>
<p>    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
    }</p>
<p>    .ml-form-embedSubmitLoad:after {
      content: " ";
      display: block;
      width: 11px;
      height: 11px;
      margin: 1px;
      border-radius: 50%;
      border: 4px solid #fff;
    border-color: #ffffff #ffffff #ffffff transparent;
    animation: ml-form-embedSubmitLoad 1.2s linear infinite;
    }
    @keyframes ml-form-embedSubmitLoad {
      0% {
      transform: rotate(0deg);
      }
      100% {
      transform: rotate(360deg);
      }
    }
      #mlb2-5209130.ml-form-embedContainer {
        box-sizing: border-box;
        display: table;
        margin: 0 auto;
        position: static;
        width: 100% !important;
      }
      #mlb2-5209130.ml-form-embedContainer h4,
      #mlb2-5209130.ml-form-embedContainer p,
      #mlb2-5209130.ml-form-embedContainer span,
      #mlb2-5209130.ml-form-embedContainer button {
        text-transform: none !important;
        letter-spacing: normal !important;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper {
        background-color: #bc87ca;</p>
<p>        border-width: 0px;
        border-color: transparent;
        border-radius: 4px;
        border-style: solid;
        box-sizing: border-box;
        display: inline-block !important;
        margin: 0;
        padding: 0;
        position: relative;
              }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }
      #mlb2-5209130.ml-form-embedContainer .ml-form-align-left { text-align: left; }
      #mlb2-5209130.ml-form-embedContainer .ml-form-align-center { text-align: center; }
      #mlb2-5209130.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
      #mlb2-5209130.ml-form-embedContainer .ml-form-align-right { text-align: right; }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        height: auto;
        margin: 0 auto !important;
        max-width: 100%;
        width: undefinedpx;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
        padding: 20px 20px 0 20px;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {
        padding-bottom: 0;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
        text-align: left;
        margin: 0 0 20px 0;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
        color: #000000;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 30px;
        font-weight: 400;
        margin: 0 0 10px 0;
        text-align: left;
        word-break: break-word;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
        color: #000000;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin: 0 0 10px 0;
        text-align: left;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {
        color: #000000;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {
        list-style-type: lower-alpha;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {
        list-style-type: lower-roman;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {
        color: #000000;
        text-decoration: underline;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {
        text-align: left!important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {
        margin-bottom: 5px;
        color: #333333;
        font-size: 14px;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-weight: bold; font-style: normal; text-decoration: none;;
        display: inline-block;
        line-height: 20px;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {
        margin: 0;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
        margin: 0;
        width: 100%;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
        margin: 0 0 20px 0;
        width: 100%;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
        float: left;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {
        margin: 0;
        padding: 0 0 20px 0;
        width: 100%;
        height: auto;
        float: left;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
        margin: 0 0 10px 0;
        width: 100%;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {
        margin: 0;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {
        margin: 0;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        height: auto;
        line-height: 21px !important;
        margin-bottom: 0;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        height: auto;
        line-height: 21px !important;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
          border-color: #cccccc!important;
          background-color: #ffffff!important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type="checkbox"]{
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
        border-radius: 4px!important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {
          border-color: #000000!important;
          background-color: #000000!important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {
           top: 2px;
           box-sizing: border-box;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
           top: 0px!important;
           box-sizing: border-box!important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
        top: 0px!important;
           box-sizing: border-box!important;
      }</p>
<p>       #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {
            top: 0px!important;
            box-sizing: border-box!important;
            position: absolute;
            left: -1.5rem;
            display: block;
            width: 1rem;
            height: 1rem;
            content: "";
       }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {
        top: 0px!important;
        box-sizing: border-box!important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {
          position: absolute;
          top: 4px;
          left: -1.5rem;
          display: block;
          width: 16px;
          height: 16px;
          pointer-events: none;
          content: "";
          background-color: #ffffff;
          border: #adb5bd solid 1px;
          border-radius: 50%;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {
          position: absolute;
          top: 2px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {
          position: absolute;
          top: 4px;
          left: -1.5rem;
          display: block;
          width: 16px;
          height: 16px;
          pointer-events: none;
          content: "";
          background-color: #ffffff;
          border: #adb5bd solid 1px;
          border-radius: 50%;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {
          position: absolute;
          top: 0px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
          position: absolute;
          top: 0px!important;
          left: -1.5rem;
          display: block;
          width: 1rem;
          height: 1rem;
          content: "";
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {
          background: no-repeat 50%/50% 50%;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {
          background: no-repeat 50%/50% 50%;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {
        position: relative;
        display: block;
        min-height: 1.5rem;
        padding-left: 1.5rem;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {
          position: absolute;
          z-index: -1;
          opacity: 0;
          box-sizing: border-box;
          padding: 0;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {
          color: #000000;
          font-size: 12px!important;
          font-family: 'Open Sans', Arial, Helvetica, sans-serif;
          line-height: 22px;
          margin-bottom: 0;
          position: relative;
          vertical-align: top;
          font-style: normal;
          font-weight: 700;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {
        background-color: #ffffff !important;
        color: #333333 !important;
        border-color: #cccccc;
        border-radius: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 28px 10px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        background: url('https://assets.mlcdn.com/ml/images/default/dropdown.svg') no-repeat right .75rem center/8px 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {
        height: auto;
        width: 100%;
        float: left;
      }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }
      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
        background-color: #ffffff;
        color: #333333;
        border-color: #cccccc;
        border-radius: 4px;
        border-style: solid;
        border-width: 1px;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        margin-top: 0;
        padding: 10px 10px;
        width: 100%;
        box-sizing: border-box;
        overflow-y: initial;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
        background-color: #62bb8a !important;
        border-color: #62bb8a;
        border-style: solid;
        border-width: 1px;
        border-radius: 5px;
        box-shadow: none;
        color: #ffffff !important;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        font-size: 15px !important;
        font-weight: 700;
        line-height: 20px;
        margin: 0 !important;
        padding: 10px !important;
        width: 100%;
        height: auto;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {
        background-color: #3d67ff !important;
        border-color: #3d67ff !important;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] {
        box-sizing: border-box;
        padding: 0;
        position: absolute;
        z-index: -1;
        opacity: 0;
        margin-top: 5px;
        margin-left: -1.5rem;
        overflow: visible;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
        color: #ffff;
        display: block;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 12px;
        text-align: left;
        margin-bottom: 0;
        position: relative;
        vertical-align: top;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
        font-weight: normal;
        margin: 0;
        padding: 0;
        position: relative;
        display: block;
        min-height: 24px;
        padding-left: 24px;</p>
<p>      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {
        color: #ffff;
        text-decoration: underline;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {
        color: #ffff !important;
        font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
        font-size: 12px !important;
        font-weight: normal !important;
        line-height: 18px !important;
        padding: 0 !important;
        margin: 0 5px 0 0 !important;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {
        margin: 0;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
        margin: 0 0 20px 0;
        float: left;
        width: 100%;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
        background-color: #62bb8a !important;
        border: none !important;
        border-radius: 5px !important;
        box-shadow: none !important;
        color: #ffffff !important;
        cursor: pointer;
        font-family: 'Poppins', sans-serif !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        line-height: 21px !important;
        height: auto;
        padding: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {
        display: none;
      }
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
        background-color: #3d67ff !important;
      }
      .ml-subscribe-close {
        width: 30px;
        height: 30px;
        background: url('https://assets.mlcdn.com/ml/images/default/modal_close.png') no-repeat;
        background-size: 30px;
        cursor: pointer;
        margin-top: -10px;
        margin-right: -10px;
        position: absolute;
        top: 0;
        right: 0;
      }
      .ml-error input, .ml-error textarea, .ml-error select {
        border-color: red!important;
      }</p>
<p>      .ml-error .custom-checkbox-radio-list {
        border: 1px solid red !important;
        border-radius: 4px;
        padding: 10px;
      }</p>
<p>      .ml-error .label-description,
      .ml-error .label-description p,
      .ml-error .label-description p a,
      .ml-error label:first-child {
        color: #ff0000 !important;
      }</p>
<p>      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,
      #mlb2-5209130.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {
        color: #ff0000 !important;
      }
            @media only screen and (max-width: 400px){</p>
<p>        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }
        .ml-form-formContent.horozintalForm { float: left!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }
        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }
        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }
        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }</p>
<p>      }
    </style>
<div id="mlb2-5209130" class="ml-form-embedContainer ml-subscribe-form ml-subscribe-form-5209130">
<div class="ml-form-align-center ">
<div class="ml-form-embedWrapper embedForm">
<div class="ml-form-embedBody ml-form-embedBodyDefault row-form">
<div class="ml-form-embedContent" style="margin-bottom: 0px; "></div>
<form class="ml-block-form" action="https://assets.mailerlite.com/jsonp/331608/forms/88459469642532862/subscribe" data-code="" method="post" target="_blank" autocomplete="new-password">
<div class="ml-form-formContent">
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-name">
<p>                      <!-- input --></p>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iSWNvbnMtKy1sb2dvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHlsZT0ib3BhY2l0eTowLjU0Ij4KICAgICAgICA8ZyBpZD0iU1AtTG9nbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxLjAwMDAwMCwgLTYxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0ic3ltYm9sIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MS4wMDAwMDAsIDYxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjA4MTAyNzcsMjMuMjYyODk5MiBMMjUuMDYyMDU4NSwxNC4yNzg2ODY0IEMyNC42MDQyODYxLDEzLjgyNDMyMDMgMjMuODYzODg5LDEzLjgyNDMyMDMgMjMuNDA0NDEwNywxNC4yNzg2ODY0IEwxNC4zODc3MTYxLDIzLjI2Mjg5OTIgQzEzLjkyNzY2OSwyMy43MTc4MzE5IDEzLjkyNzY2OSwyNC40NTYwMzUzIDE0LjM4NzcxNjEsMjQuOTEyNjY3NiBMMjMuNDA0NDEwNywzMy44OTYzMTM5IEMyMy42MzE4NzUyLDM0LjEyNDA2MzUgMjMuOTMxNTU5NywzNC4yMzc5MzgzIDI0LjIzMjk1MDMsMzQuMjM3OTM4MyBDMjQuNTMyMDY2MSwzNC4yMzc5MzgzIDI0LjgzNTE2MjYsMzQuMTI0MDYzNSAyNS4wNjIwNTg1LDMzLjg5NjMxMzkgTDM0LjA4MTAyNzcsMjQuOTEyNjY3NiBDMzQuMjk5MzkzNywyNC42OTA1ODM0IDM0LjQyMjc5MzIsMjQuMzk4MjQ4MSAzNC40MjI3OTMyLDI0LjA4ODM1IEMzNC40MjI3OTMyLDIzLjc3NjE4NTcgMzQuMjk5MzkzNywyMy40ODA0NTExIDM0LjA4MTAyNzcsMjMuMjYyODk5MiBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTEuNTM4Nzc5NSwyNy43NDc4NjcyIEMxMS4wODEwMDcxLDI3LjI5NDYzNDEgMTAuMzQwNjEsMjcuMjk0NjM0MSA5Ljg4MjgzNzYzLDI3Ljc0Nzg2NzIgTDAuODY3ODQ5MDQ5LDM2LjczMjY0NjUgQzAuNDA4MzcwNjY4LDM3LjE4ODE0NTggMC40MDgzNzA2NjgsMzcuOTI1MjE2MSAwLjg2Nzg0OTA0OSwzOC4zODM1NDggTDkuODgyODM3NjMsNDcuMzY4MzI3MyBDMTAuMTEwODcwOCw0Ny41OTM4MTA4IDEwLjQxMTEyNCw0Ny43MDk5NTE4IDEwLjcxMjUxNDYsNDcuNzA5OTUxOCBDMTEuMDA3MDgxMSw0Ny43MDk5NTE4IDExLjMxMTg4MzYsNDcuNTkzODEwOCAxMS41Mzg3Nzk1LDQ3LjM2ODMyNzMgTDIwLjU2MTcyOTQsMzguMzgzNTQ4IEMyMC43Nzc4MjA3LDM4LjE2MDg5NzMgMjAuOTA1MjAwOCwzNy44NzA4MjgxIDIwLjkwNTIwMDgsMzcuNTU2Mzk3NiBDMjAuOTA1MjAwOCwzNy4yNDU5MzMgMjAuNzc3ODIwNywzNi45NTE4OTggMjAuNTYxNzI5NCwzNi43MzI2NDY1IEwxMS41Mzg3Nzk1LDI3Ljc0Nzg2NzIgWiIgaWQ9IkZpbGwtMyIgZmlsbD0iIzAwQTlFMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjU2NjE3MzYsMC44MjMzODU5NCBDMzguMTA4OTY5OSwwLjM2Nzg4NjY5MiAzNy4zNjQ1OTIyLDAuMzY1MDUzOTg1IDM2LjkwOTY2MzEsMC44MjMzODU5NCBMMjcuODkyOTY4NSw5LjgwOTI5ODM1IEMyNy40MzUxOTYxLDEwLjI2MTk2NDkgMjcuNDM1MTk2MSwxMS4wMDE4Njc5IDI3Ljg5Mjk2ODUsMTEuNDU4NTAwMiBMMzYuOTA5NjYzMSwyMC40NDMyNzk1IEMzNy4xMzU5OTAzLDIwLjY2OTg5NjEgMzcuNDM1MTA2MiwyMC43ODI2Mzc4IDM3LjczNjQ5NjcsMjAuNzgyNjM3OCBDMzguMDM1NjEyNiwyMC43ODI2Mzc4IDM4LjMzNTI5NzEsMjAuNjY5ODk2MSAzOC41NjYxNzM2LDIwLjQ0MzI3OTUgTDQ3LjU4Mjg2ODIsMTEuNDU4NTAwMiBDNDcuODAxODAyOCwxMS4yMzQ3MTY0IDQ3LjkyNTIwMjQsMTAuOTQ0NjQ3MiA0Ny45MjUyMDI0LDEwLjYzMTkxNjQgQzQ3LjkyNTIwMjQsMTAuMzE5NzUyMSA0Ny44MDE4MDI4LDEwLjAyOTExNjQgNDcuNTgyODY4Miw5LjgwNTMzMjU2IEwzOC41NjYxNzM2LDAuODIzMzg1OTQgWiIgaWQ9IkZpbGwtNSIgZmlsbD0iI0Q2MTgxOCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzMDA3OSwwLjc5NjgxNTE1IEMxMS4wNzQ1ODEzLDAuMzQzMDE1NTI2IDEwLjMyNjc5MTYsMC4zNDMwMTU1MjYgOS44NzU4NDMxLDAuNzk2ODE1MTUgTDAuODU3NDQyNTQ2LDkuNzgxMDI3OTMgQzAuMzk3Mzk1NTAzLDEwLjIzNjUyNzIgMC4zOTczOTU1MDMsMTAuOTc2NDMwMiAwLjg1NzQ0MjU0NiwxMS40MzMwNjI1IEw5Ljg3NTg0MzEsMjAuNDE2MTQyMiBDMTAuMTAyMTcwMywyMC42NDcyOTExIDEwLjQwMTI4NjIsMjAuNzU3MjAwMSAxMC43MDI2NzY3LDIwLjc1NzIwMDEgQzExLjAwNDA2NzIsMjAuNzU3MjAwMSAxMS4zMDMxODMxLDIwLjY0NzI5MTEgMTEuNTMwMDc5LDIwLjQxNjE0MjIgTDIwLjU0NjIwNDksMTEuNDMzMDYyNSBDMjAuNzY3NDE0MiwxMS4yMTI2Nzc5IDIwLjg5NDIyNTcsMTAuOTIxNDc1NyAyMC44OTQyMjU3LDEwLjYwNDc3OTEgQzIwLjg5NDIyNTcsMTAuMjk0MzE0NCAyMC43Njc0MTQyLDEwLjAwMjU0NTYgMjAuNTQ2MjA0OSw5Ljc4MTAyNzkzIEwxMS41MzAwNzksMC43OTY4MTUxNSBaIiBpZD0iRmlsbC03IiBmaWxsPSIjN0FCODAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguNjMxNjgzNCwyNy43OTg4NTU5IEMzOC4xNzQ0Nzk3LDI3LjM0MjIyMzYgMzcuNDI5NTMzMywyNy4zNDIyMjM2IDM2Ljk3MzQ2NjksMjcuNzk4ODU1OSBMMjcuOTU5NjE1NiwzNi43ODAyMzYgQzI3LjUwMTg0MzIsMzcuMjM4MDAxNCAyNy41MDE4NDMyLDM3Ljk3NTA3MTcgMjcuOTU5NjE1NiwzOC40MzExMzc1IEwzNi45NzM0NjY5LDQ3LjQxODE4MyBDMzcuMjAwMzYyOCw0Ny42NDQ3OTk1IDM3LjQ5ODkxLDQ3Ljc1OTgwNzQgMzcuODAwODY5Miw0Ny43NTk4MDc0IEMzOC4xMDIyNTk3LDQ3Ljc1OTgwNzQgMzguMzk4NTMyMyw0Ny42NDQ3OTk1IDM4LjYzMTY4MzQsNDcuNDE4MTgzIEw0Ny42NDgzNzgsMzguNDMxMTM3NSBDNDcuODY2NzQ0LDM4LjIxMTg4NiA0Ny45OTE4NDk1LDM3LjkxODk4NDEgNDcuOTkxODQ5NSwzNy42MDkwODYgQzQ3Ljk5MTg0OTUsMzcuMjk1Nzg4NiA0Ny44NjY3NDQsMzcuMDA0NTg2NCA0Ny42NDgzNzgsMzYuNzgwMjM2IEwzOC42MzE2ODM0LDI3Ljc5ODg1NTkgWiIgaWQ9IkZpbGwtOSIgZmlsbD0iIzAwNDZBRCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;" loading="lazy"></div>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iSWNvbnMtKy1sb2dvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHlsZT0ib3BhY2l0eTowLjU0Ij4KICAgICAgICA8ZyBpZD0iU1AtTG9nbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxLjAwMDAwMCwgLTYxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0ic3ltYm9sIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MS4wMDAwMDAsIDYxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjA4MTAyNzcsMjMuMjYyODk5MiBMMjUuMDYyMDU4NSwxNC4yNzg2ODY0IEMyNC42MDQyODYxLDEzLjgyNDMyMDMgMjMuODYzODg5LDEzLjgyNDMyMDMgMjMuNDA0NDEwNywxNC4yNzg2ODY0IEwxNC4zODc3MTYxLDIzLjI2Mjg5OTIgQzEzLjkyNzY2OSwyMy43MTc4MzE5IDEzLjkyNzY2OSwyNC40NTYwMzUzIDE0LjM4NzcxNjEsMjQuOTEyNjY3NiBMMjMuNDA0NDEwNywzMy44OTYzMTM5IEMyMy42MzE4NzUyLDM0LjEyNDA2MzUgMjMuOTMxNTU5NywzNC4yMzc5MzgzIDI0LjIzMjk1MDMsMzQuMjM3OTM4MyBDMjQuNTMyMDY2MSwzNC4yMzc5MzgzIDI0LjgzNTE2MjYsMzQuMTI0MDYzNSAyNS4wNjIwNTg1LDMzLjg5NjMxMzkgTDM0LjA4MTAyNzcsMjQuOTEyNjY3NiBDMzQuMjk5MzkzNywyNC42OTA1ODM0IDM0LjQyMjc5MzIsMjQuMzk4MjQ4MSAzNC40MjI3OTMyLDI0LjA4ODM1IEMzNC40MjI3OTMyLDIzLjc3NjE4NTcgMzQuMjk5MzkzNywyMy40ODA0NTExIDM0LjA4MTAyNzcsMjMuMjYyODk5MiBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTEuNTM4Nzc5NSwyNy43NDc4NjcyIEMxMS4wODEwMDcxLDI3LjI5NDYzNDEgMTAuMzQwNjEsMjcuMjk0NjM0MSA5Ljg4MjgzNzYzLDI3Ljc0Nzg2NzIgTDAuODY3ODQ5MDQ5LDM2LjczMjY0NjUgQzAuNDA4MzcwNjY4LDM3LjE4ODE0NTggMC40MDgzNzA2NjgsMzcuOTI1MjE2MSAwLjg2Nzg0OTA0OSwzOC4zODM1NDggTDkuODgyODM3NjMsNDcuMzY4MzI3MyBDMTAuMTEwODcwOCw0Ny41OTM4MTA4IDEwLjQxMTEyNCw0Ny43MDk5NTE4IDEwLjcxMjUxNDYsNDcuNzA5OTUxOCBDMTEuMDA3MDgxMSw0Ny43MDk5NTE4IDExLjMxMTg4MzYsNDcuNTkzODEwOCAxMS41Mzg3Nzk1LDQ3LjM2ODMyNzMgTDIwLjU2MTcyOTQsMzguMzgzNTQ4IEMyMC43Nzc4MjA3LDM4LjE2MDg5NzMgMjAuOTA1MjAwOCwzNy44NzA4MjgxIDIwLjkwNTIwMDgsMzcuNTU2Mzk3NiBDMjAuOTA1MjAwOCwzNy4yNDU5MzMgMjAuNzc3ODIwNywzNi45NTE4OTggMjAuNTYxNzI5NCwzNi43MzI2NDY1IEwxMS41Mzg3Nzk1LDI3Ljc0Nzg2NzIgWiIgaWQ9IkZpbGwtMyIgZmlsbD0iIzAwQTlFMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjU2NjE3MzYsMC44MjMzODU5NCBDMzguMTA4OTY5OSwwLjM2Nzg4NjY5MiAzNy4zNjQ1OTIyLDAuMzY1MDUzOTg1IDM2LjkwOTY2MzEsMC44MjMzODU5NCBMMjcuODkyOTY4NSw5LjgwOTI5ODM1IEMyNy40MzUxOTYxLDEwLjI2MTk2NDkgMjcuNDM1MTk2MSwxMS4wMDE4Njc5IDI3Ljg5Mjk2ODUsMTEuNDU4NTAwMiBMMzYuOTA5NjYzMSwyMC40NDMyNzk1IEMzNy4xMzU5OTAzLDIwLjY2OTg5NjEgMzcuNDM1MTA2MiwyMC43ODI2Mzc4IDM3LjczNjQ5NjcsMjAuNzgyNjM3OCBDMzguMDM1NjEyNiwyMC43ODI2Mzc4IDM4LjMzNTI5NzEsMjAuNjY5ODk2MSAzOC41NjYxNzM2LDIwLjQ0MzI3OTUgTDQ3LjU4Mjg2ODIsMTEuNDU4NTAwMiBDNDcuODAxODAyOCwxMS4yMzQ3MTY0IDQ3LjkyNTIwMjQsMTAuOTQ0NjQ3MiA0Ny45MjUyMDI0LDEwLjYzMTkxNjQgQzQ3LjkyNTIwMjQsMTAuMzE5NzUyMSA0Ny44MDE4MDI4LDEwLjAyOTExNjQgNDcuNTgyODY4Miw5LjgwNTMzMjU2IEwzOC41NjYxNzM2LDAuODIzMzg1OTQgWiIgaWQ9IkZpbGwtNSIgZmlsbD0iI0Q2MTgxOCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzMDA3OSwwLjc5NjgxNTE1IEMxMS4wNzQ1ODEzLDAuMzQzMDE1NTI2IDEwLjMyNjc5MTYsMC4zNDMwMTU1MjYgOS44NzU4NDMxLDAuNzk2ODE1MTUgTDAuODU3NDQyNTQ2LDkuNzgxMDI3OTMgQzAuMzk3Mzk1NTAzLDEwLjIzNjUyNzIgMC4zOTczOTU1MDMsMTAuOTc2NDMwMiAwLjg1NzQ0MjU0NiwxMS40MzMwNjI1IEw5Ljg3NTg0MzEsMjAuNDE2MTQyMiBDMTAuMTAyMTcwMywyMC42NDcyOTExIDEwLjQwMTI4NjIsMjAuNzU3MjAwMSAxMC43MDI2NzY3LDIwLjc1NzIwMDEgQzExLjAwNDA2NzIsMjAuNzU3MjAwMSAxMS4zMDMxODMxLDIwLjY0NzI5MTEgMTEuNTMwMDc5LDIwLjQxNjE0MjIgTDIwLjU0NjIwNDksMTEuNDMzMDYyNSBDMjAuNzY3NDE0MiwxMS4yMTI2Nzc5IDIwLjg5NDIyNTcsMTAuOTIxNDc1NyAyMC44OTQyMjU3LDEwLjYwNDc3OTEgQzIwLjg5NDIyNTcsMTAuMjk0MzE0NCAyMC43Njc0MTQyLDEwLjAwMjU0NTYgMjAuNTQ2MjA0OSw5Ljc4MTAyNzkzIEwxMS41MzAwNzksMC43OTY4MTUxNSBaIiBpZD0iRmlsbC03IiBmaWxsPSIjN0FCODAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguNjMxNjgzNCwyNy43OTg4NTU5IEMzOC4xNzQ0Nzk3LDI3LjM0MjIyMzYgMzcuNDI5NTMzMywyNy4zNDIyMjM2IDM2Ljk3MzQ2NjksMjcuNzk4ODU1OSBMMjcuOTU5NjE1NiwzNi43ODAyMzYgQzI3LjUwMTg0MzIsMzcuMjM4MDAxNCAyNy41MDE4NDMyLDM3Ljk3NTA3MTcgMjcuOTU5NjE1NiwzOC40MzExMzc1IEwzNi45NzM0NjY5LDQ3LjQxODE4MyBDMzcuMjAwMzYyOCw0Ny42NDQ3OTk1IDM3LjQ5ODkxLDQ3Ljc1OTgwNzQgMzcuODAwODY5Miw0Ny43NTk4MDc0IEMzOC4xMDIyNTk3LDQ3Ljc1OTgwNzQgMzguMzk4NTMyMyw0Ny42NDQ3OTk1IDM4LjYzMTY4MzQsNDcuNDE4MTgzIEw0Ny42NDgzNzgsMzguNDMxMTM3NSBDNDcuODY2NzQ0LDM4LjIxMTg4NiA0Ny45OTE4NDk1LDM3LjkxODk4NDEgNDcuOTkxODQ5NSwzNy42MDkwODYgQzQ3Ljk5MTg0OTUsMzcuMjk1Nzg4NiA0Ny44NjY3NDQsMzcuMDA0NTg2NCA0Ny42NDgzNzgsMzYuNzgwMjM2IEwzOC42MzE2ODM0LDI3Ljc5ODg1NTkgWiIgaWQ9IkZpbGwtOSIgZmlsbD0iIzAwNDZBRCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;"></div>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz4KICAgICAgPGZpbHRlciBpZD0iRGVzYXR1cmF0ZSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgICA8ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgaW49IlNvdXJjZUdyYXBoaWMiIHZhbHVlcz0iMCIvPgogICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJJY29ucy0rLWxvZ28iIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0eWxlPSJvcGFjaXR5OjAuNTQiIGZpbHRlcj0idXJsKCNEZXNhdHVyYXRlKSI+CiAgICAgICAgPGcgaWQ9IlNQLUxvZ28iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02MS4wMDAwMDAsIC02MS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9InN5bWJvbCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjEuMDAwMDAwLCA2MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNC4wODEwMjc3LDIzLjI2Mjg5OTIgTDI1LjA2MjA1ODUsMTQuMjc4Njg2NCBDMjQuNjA0Mjg2MSwxMy44MjQzMjAzIDIzLjg2Mzg4OSwxMy44MjQzMjAzIDIzLjQwNDQxMDcsMTQuMjc4Njg2NCBMMTQuMzg3NzE2MSwyMy4yNjI4OTkyIEMxMy45Mjc2NjksMjMuNzE3ODMxOSAxMy45Mjc2NjksMjQuNDU2MDM1MyAxNC4zODc3MTYxLDI0LjkxMjY2NzYgTDIzLjQwNDQxMDcsMzMuODk2MzEzOSBDMjMuNjMxODc1MiwzNC4xMjQwNjM1IDIzLjkzMTU1OTcsMzQuMjM3OTM4MyAyNC4yMzI5NTAzLDM0LjIzNzkzODMgQzI0LjUzMjA2NjEsMzQuMjM3OTM4MyAyNC44MzUxNjI2LDM0LjEyNDA2MzUgMjUuMDYyMDU4NSwzMy44OTYzMTM5IEwzNC4wODEwMjc3LDI0LjkxMjY2NzYgQzM0LjI5OTM5MzcsMjQuNjkwNTgzNCAzNC40MjI3OTMyLDI0LjM5ODI0ODEgMzQuNDIyNzkzMiwyNC4wODgzNSBDMzQuNDIyNzkzMiwyMy43NzYxODU3IDM0LjI5OTM5MzcsMjMuNDgwNDUxMSAzNC4wODEwMjc3LDIzLjI2Mjg5OTIgWiIgaWQ9IkZpbGwtMSIgZmlsbD0iIzAwMDAwMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzODc3OTUsMjcuNzQ3ODY3MiBDMTEuMDgxMDA3MSwyNy4yOTQ2MzQxIDEwLjM0MDYxLDI3LjI5NDYzNDEgOS44ODI4Mzc2MywyNy43NDc4NjcyIEwwLjg2Nzg0OTA0OSwzNi43MzI2NDY1IEMwLjQwODM3MDY2OCwzNy4xODgxNDU4IDAuNDA4MzcwNjY4LDM3LjkyNTIxNjEgMC44Njc4NDkwNDksMzguMzgzNTQ4IEw5Ljg4MjgzNzYzLDQ3LjM2ODMyNzMgQzEwLjExMDg3MDgsNDcuNTkzODEwOCAxMC40MTExMjQsNDcuNzA5OTUxOCAxMC43MTI1MTQ2LDQ3LjcwOTk1MTggQzExLjAwNzA4MTEsNDcuNzA5OTUxOCAxMS4zMTE4ODM2LDQ3LjU5MzgxMDggMTEuNTM4Nzc5NSw0Ny4zNjgzMjczIEwyMC41NjE3Mjk0LDM4LjM4MzU0OCBDMjAuNzc3ODIwNywzOC4xNjA4OTczIDIwLjkwNTIwMDgsMzcuODcwODI4MSAyMC45MDUyMDA4LDM3LjU1NjM5NzYgQzIwLjkwNTIwMDgsMzcuMjQ1OTMzIDIwLjc3NzgyMDcsMzYuOTUxODk4IDIwLjU2MTcyOTQsMzYuNzMyNjQ2NSBMMTEuNTM4Nzc5NSwyNy43NDc4NjcyIFoiIGlkPSJGaWxsLTMiIGZpbGw9IiMwMEE5RTAiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOC41NjYxNzM2LDAuODIzMzg1OTQgQzM4LjEwODk2OTksMC4zNjc4ODY2OTIgMzcuMzY0NTkyMiwwLjM2NTA1Mzk4NSAzNi45MDk2NjMxLDAuODIzMzg1OTQgTDI3Ljg5Mjk2ODUsOS44MDkyOTgzNSBDMjcuNDM1MTk2MSwxMC4yNjE5NjQ5IDI3LjQzNTE5NjEsMTEuMDAxODY3OSAyNy44OTI5Njg1LDExLjQ1ODUwMDIgTDM2LjkwOTY2MzEsMjAuNDQzMjc5NSBDMzcuMTM1OTkwMywyMC42Njk4OTYxIDM3LjQzNTEwNjIsMjAuNzgyNjM3OCAzNy43MzY0OTY3LDIwLjc4MjYzNzggQzM4LjAzNTYxMjYsMjAuNzgyNjM3OCAzOC4zMzUyOTcxLDIwLjY2OTg5NjEgMzguNTY2MTczNiwyMC40NDMyNzk1IEw0Ny41ODI4NjgyLDExLjQ1ODUwMDIgQzQ3LjgwMTgwMjgsMTEuMjM0NzE2NCA0Ny45MjUyMDI0LDEwLjk0NDY0NzIgNDcuOTI1MjAyNCwxMC42MzE5MTY0IEM0Ny45MjUyMDI0LDEwLjMxOTc1MjEgNDcuODAxODAyOCwxMC4wMjkxMTY0IDQ3LjU4Mjg2ODIsOS44MDUzMzI1NiBMMzguNTY2MTczNiwwLjgyMzM4NTk0IFoiIGlkPSJGaWxsLTUiIGZpbGw9IiNENjE4MTgiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMS41MzAwNzksMC43OTY4MTUxNSBDMTEuMDc0NTgxMywwLjM0MzAxNTUyNiAxMC4zMjY3OTE2LDAuMzQzMDE1NTI2IDkuODc1ODQzMSwwLjc5NjgxNTE1IEwwLjg1NzQ0MjU0Niw5Ljc4MTAyNzkzIEMwLjM5NzM5NTUwMywxMC4yMzY1MjcyIDAuMzk3Mzk1NTAzLDEwLjk3NjQzMDIgMC44NTc0NDI1NDYsMTEuNDMzMDYyNSBMOS44NzU4NDMxLDIwLjQxNjE0MjIgQzEwLjEwMjE3MDMsMjAuNjQ3MjkxMSAxMC40MDEyODYyLDIwLjc1NzIwMDEgMTAuNzAyNjc2NywyMC43NTcyMDAxIEMxMS4wMDQwNjcyLDIwLjc1NzIwMDEgMTEuMzAzMTgzMSwyMC42NDcyOTExIDExLjUzMDA3OSwyMC40MTYxNDIyIEwyMC41NDYyMDQ5LDExLjQzMzA2MjUgQzIwLjc2NzQxNDIsMTEuMjEyNjc3OSAyMC44OTQyMjU3LDEwLjkyMTQ3NTcgMjAuODk0MjI1NywxMC42MDQ3NzkxIEMyMC44OTQyMjU3LDEwLjI5NDMxNDQgMjAuNzY3NDE0MiwxMC4wMDI1NDU2IDIwLjU0NjIwNDksOS43ODEwMjc5MyBMMTEuNTMwMDc5LDAuNzk2ODE1MTUgWiIgaWQ9IkZpbGwtNyIgZmlsbD0iIzdBQjgwMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjYzMTY4MzQsMjcuNzk4ODU1OSBDMzguMTc0NDc5NywyNy4zNDIyMjM2IDM3LjQyOTUzMzMsMjcuMzQyMjIzNiAzNi45NzM0NjY5LDI3Ljc5ODg1NTkgTDI3Ljk1OTYxNTYsMzYuNzgwMjM2IEMyNy41MDE4NDMyLDM3LjIzODAwMTQgMjcuNTAxODQzMiwzNy45NzUwNzE3IDI3Ljk1OTYxNTYsMzguNDMxMTM3NSBMMzYuOTczNDY2OSw0Ny40MTgxODMgQzM3LjIwMDM2MjgsNDcuNjQ0Nzk5NSAzNy40OTg5MSw0Ny43NTk4MDc0IDM3LjgwMDg2OTIsNDcuNzU5ODA3NCBDMzguMTAyMjU5Nyw0Ny43NTk4MDc0IDM4LjM5ODUzMjMsNDcuNjQ0Nzk5NSAzOC42MzE2ODM0LDQ3LjQxODE4MyBMNDcuNjQ4Mzc4LDM4LjQzMTEzNzUgQzQ3Ljg2Njc0NCwzOC4yMTE4ODYgNDcuOTkxODQ5NSwzNy45MTg5ODQxIDQ3Ljk5MTg0OTUsMzcuNjA5MDg2IEM0Ny45OTE4NDk1LDM3LjI5NTc4ODYgNDcuODY2NzQ0LDM3LjAwNDU4NjQgNDcuNjQ4Mzc4LDM2Ljc4MDIzNiBMMzguNjMxNjgzNCwyNy43OTg4NTU5IFoiIGlkPSJGaWxsLTkiIGZpbGw9IiMwMDQ2QUQiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;"></div>
<p><input aria-label="name" type="text" class="form-control" data-inputmask="" name="fields[name]" placeholder="First Name" autocomplete="given-name"><br />
                      <!-- /input --></p>
<p>                      <!-- textarea --></p>
<p>                      <!-- /textarea --></p>
<p>                      <!-- select --></p>
<p>                      <!-- /select --></p>
<p>                      <!-- checkboxes --></p>
<p>            <!-- /checkboxes --></p>
<p>                      <!-- radio --></p>
<p>                      <!-- /radio --></p>
<p>                      <!-- countries --></p>
<p>                      <!-- /countries --></p></div>
</p></div>
<div class="ml-form-fieldRow ">
<div class="ml-field-group ml-field-last_name">
<p>                      <!-- input --></p>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iSWNvbnMtKy1sb2dvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHlsZT0ib3BhY2l0eTowLjU0Ij4KICAgICAgICA8ZyBpZD0iU1AtTG9nbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxLjAwMDAwMCwgLTYxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0ic3ltYm9sIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MS4wMDAwMDAsIDYxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjA4MTAyNzcsMjMuMjYyODk5MiBMMjUuMDYyMDU4NSwxNC4yNzg2ODY0IEMyNC42MDQyODYxLDEzLjgyNDMyMDMgMjMuODYzODg5LDEzLjgyNDMyMDMgMjMuNDA0NDEwNywxNC4yNzg2ODY0IEwxNC4zODc3MTYxLDIzLjI2Mjg5OTIgQzEzLjkyNzY2OSwyMy43MTc4MzE5IDEzLjkyNzY2OSwyNC40NTYwMzUzIDE0LjM4NzcxNjEsMjQuOTEyNjY3NiBMMjMuNDA0NDEwNywzMy44OTYzMTM5IEMyMy42MzE4NzUyLDM0LjEyNDA2MzUgMjMuOTMxNTU5NywzNC4yMzc5MzgzIDI0LjIzMjk1MDMsMzQuMjM3OTM4MyBDMjQuNTMyMDY2MSwzNC4yMzc5MzgzIDI0LjgzNTE2MjYsMzQuMTI0MDYzNSAyNS4wNjIwNTg1LDMzLjg5NjMxMzkgTDM0LjA4MTAyNzcsMjQuOTEyNjY3NiBDMzQuMjk5MzkzNywyNC42OTA1ODM0IDM0LjQyMjc5MzIsMjQuMzk4MjQ4MSAzNC40MjI3OTMyLDI0LjA4ODM1IEMzNC40MjI3OTMyLDIzLjc3NjE4NTcgMzQuMjk5MzkzNywyMy40ODA0NTExIDM0LjA4MTAyNzcsMjMuMjYyODk5MiBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTEuNTM4Nzc5NSwyNy43NDc4NjcyIEMxMS4wODEwMDcxLDI3LjI5NDYzNDEgMTAuMzQwNjEsMjcuMjk0NjM0MSA5Ljg4MjgzNzYzLDI3Ljc0Nzg2NzIgTDAuODY3ODQ5MDQ5LDM2LjczMjY0NjUgQzAuNDA4MzcwNjY4LDM3LjE4ODE0NTggMC40MDgzNzA2NjgsMzcuOTI1MjE2MSAwLjg2Nzg0OTA0OSwzOC4zODM1NDggTDkuODgyODM3NjMsNDcuMzY4MzI3MyBDMTAuMTEwODcwOCw0Ny41OTM4MTA4IDEwLjQxMTEyNCw0Ny43MDk5NTE4IDEwLjcxMjUxNDYsNDcuNzA5OTUxOCBDMTEuMDA3MDgxMSw0Ny43MDk5NTE4IDExLjMxMTg4MzYsNDcuNTkzODEwOCAxMS41Mzg3Nzk1LDQ3LjM2ODMyNzMgTDIwLjU2MTcyOTQsMzguMzgzNTQ4IEMyMC43Nzc4MjA3LDM4LjE2MDg5NzMgMjAuOTA1MjAwOCwzNy44NzA4MjgxIDIwLjkwNTIwMDgsMzcuNTU2Mzk3NiBDMjAuOTA1MjAwOCwzNy4yNDU5MzMgMjAuNzc3ODIwNywzNi45NTE4OTggMjAuNTYxNzI5NCwzNi43MzI2NDY1IEwxMS41Mzg3Nzk1LDI3Ljc0Nzg2NzIgWiIgaWQ9IkZpbGwtMyIgZmlsbD0iIzAwQTlFMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjU2NjE3MzYsMC44MjMzODU5NCBDMzguMTA4OTY5OSwwLjM2Nzg4NjY5MiAzNy4zNjQ1OTIyLDAuMzY1MDUzOTg1IDM2LjkwOTY2MzEsMC44MjMzODU5NCBMMjcuODkyOTY4NSw5LjgwOTI5ODM1IEMyNy40MzUxOTYxLDEwLjI2MTk2NDkgMjcuNDM1MTk2MSwxMS4wMDE4Njc5IDI3Ljg5Mjk2ODUsMTEuNDU4NTAwMiBMMzYuOTA5NjYzMSwyMC40NDMyNzk1IEMzNy4xMzU5OTAzLDIwLjY2OTg5NjEgMzcuNDM1MTA2MiwyMC43ODI2Mzc4IDM3LjczNjQ5NjcsMjAuNzgyNjM3OCBDMzguMDM1NjEyNiwyMC43ODI2Mzc4IDM4LjMzNTI5NzEsMjAuNjY5ODk2MSAzOC41NjYxNzM2LDIwLjQ0MzI3OTUgTDQ3LjU4Mjg2ODIsMTEuNDU4NTAwMiBDNDcuODAxODAyOCwxMS4yMzQ3MTY0IDQ3LjkyNTIwMjQsMTAuOTQ0NjQ3MiA0Ny45MjUyMDI0LDEwLjYzMTkxNjQgQzQ3LjkyNTIwMjQsMTAuMzE5NzUyMSA0Ny44MDE4MDI4LDEwLjAyOTExNjQgNDcuNTgyODY4Miw5LjgwNTMzMjU2IEwzOC41NjYxNzM2LDAuODIzMzg1OTQgWiIgaWQ9IkZpbGwtNSIgZmlsbD0iI0Q2MTgxOCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzMDA3OSwwLjc5NjgxNTE1IEMxMS4wNzQ1ODEzLDAuMzQzMDE1NTI2IDEwLjMyNjc5MTYsMC4zNDMwMTU1MjYgOS44NzU4NDMxLDAuNzk2ODE1MTUgTDAuODU3NDQyNTQ2LDkuNzgxMDI3OTMgQzAuMzk3Mzk1NTAzLDEwLjIzNjUyNzIgMC4zOTczOTU1MDMsMTAuOTc2NDMwMiAwLjg1NzQ0MjU0NiwxMS40MzMwNjI1IEw5Ljg3NTg0MzEsMjAuNDE2MTQyMiBDMTAuMTAyMTcwMywyMC42NDcyOTExIDEwLjQwMTI4NjIsMjAuNzU3MjAwMSAxMC43MDI2NzY3LDIwLjc1NzIwMDEgQzExLjAwNDA2NzIsMjAuNzU3MjAwMSAxMS4zMDMxODMxLDIwLjY0NzI5MTEgMTEuNTMwMDc5LDIwLjQxNjE0MjIgTDIwLjU0NjIwNDksMTEuNDMzMDYyNSBDMjAuNzY3NDE0MiwxMS4yMTI2Nzc5IDIwLjg5NDIyNTcsMTAuOTIxNDc1NyAyMC44OTQyMjU3LDEwLjYwNDc3OTEgQzIwLjg5NDIyNTcsMTAuMjk0MzE0NCAyMC43Njc0MTQyLDEwLjAwMjU0NTYgMjAuNTQ2MjA0OSw5Ljc4MTAyNzkzIEwxMS41MzAwNzksMC43OTY4MTUxNSBaIiBpZD0iRmlsbC03IiBmaWxsPSIjN0FCODAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguNjMxNjgzNCwyNy43OTg4NTU5IEMzOC4xNzQ0Nzk3LDI3LjM0MjIyMzYgMzcuNDI5NTMzMywyNy4zNDIyMjM2IDM2Ljk3MzQ2NjksMjcuNzk4ODU1OSBMMjcuOTU5NjE1NiwzNi43ODAyMzYgQzI3LjUwMTg0MzIsMzcuMjM4MDAxNCAyNy41MDE4NDMyLDM3Ljk3NTA3MTcgMjcuOTU5NjE1NiwzOC40MzExMzc1IEwzNi45NzM0NjY5LDQ3LjQxODE4MyBDMzcuMjAwMzYyOCw0Ny42NDQ3OTk1IDM3LjQ5ODkxLDQ3Ljc1OTgwNzQgMzcuODAwODY5Miw0Ny43NTk4MDc0IEMzOC4xMDIyNTk3LDQ3Ljc1OTgwNzQgMzguMzk4NTMyMyw0Ny42NDQ3OTk1IDM4LjYzMTY4MzQsNDcuNDE4MTgzIEw0Ny42NDgzNzgsMzguNDMxMTM3NSBDNDcuODY2NzQ0LDM4LjIxMTg4NiA0Ny45OTE4NDk1LDM3LjkxODk4NDEgNDcuOTkxODQ5NSwzNy42MDkwODYgQzQ3Ljk5MTg0OTUsMzcuMjk1Nzg4NiA0Ny44NjY3NDQsMzcuMDA0NTg2NCA0Ny42NDgzNzgsMzYuNzgwMjM2IEwzOC42MzE2ODM0LDI3Ljc5ODg1NTkgWiIgaWQ9IkZpbGwtOSIgZmlsbD0iIzAwNDZBRCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;" loading="lazy"></div>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iSWNvbnMtKy1sb2dvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHlsZT0ib3BhY2l0eTowLjU0Ij4KICAgICAgICA8ZyBpZD0iU1AtTG9nbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxLjAwMDAwMCwgLTYxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0ic3ltYm9sIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MS4wMDAwMDAsIDYxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjA4MTAyNzcsMjMuMjYyODk5MiBMMjUuMDYyMDU4NSwxNC4yNzg2ODY0IEMyNC42MDQyODYxLDEzLjgyNDMyMDMgMjMuODYzODg5LDEzLjgyNDMyMDMgMjMuNDA0NDEwNywxNC4yNzg2ODY0IEwxNC4zODc3MTYxLDIzLjI2Mjg5OTIgQzEzLjkyNzY2OSwyMy43MTc4MzE5IDEzLjkyNzY2OSwyNC40NTYwMzUzIDE0LjM4NzcxNjEsMjQuOTEyNjY3NiBMMjMuNDA0NDEwNywzMy44OTYzMTM5IEMyMy42MzE4NzUyLDM0LjEyNDA2MzUgMjMuOTMxNTU5NywzNC4yMzc5MzgzIDI0LjIzMjk1MDMsMzQuMjM3OTM4MyBDMjQuNTMyMDY2MSwzNC4yMzc5MzgzIDI0LjgzNTE2MjYsMzQuMTI0MDYzNSAyNS4wNjIwNTg1LDMzLjg5NjMxMzkgTDM0LjA4MTAyNzcsMjQuOTEyNjY3NiBDMzQuMjk5MzkzNywyNC42OTA1ODM0IDM0LjQyMjc5MzIsMjQuMzk4MjQ4MSAzNC40MjI3OTMyLDI0LjA4ODM1IEMzNC40MjI3OTMyLDIzLjc3NjE4NTcgMzQuMjk5MzkzNywyMy40ODA0NTExIDM0LjA4MTAyNzcsMjMuMjYyODk5MiBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTEuNTM4Nzc5NSwyNy43NDc4NjcyIEMxMS4wODEwMDcxLDI3LjI5NDYzNDEgMTAuMzQwNjEsMjcuMjk0NjM0MSA5Ljg4MjgzNzYzLDI3Ljc0Nzg2NzIgTDAuODY3ODQ5MDQ5LDM2LjczMjY0NjUgQzAuNDA4MzcwNjY4LDM3LjE4ODE0NTggMC40MDgzNzA2NjgsMzcuOTI1MjE2MSAwLjg2Nzg0OTA0OSwzOC4zODM1NDggTDkuODgyODM3NjMsNDcuMzY4MzI3MyBDMTAuMTEwODcwOCw0Ny41OTM4MTA4IDEwLjQxMTEyNCw0Ny43MDk5NTE4IDEwLjcxMjUxNDYsNDcuNzA5OTUxOCBDMTEuMDA3MDgxMSw0Ny43MDk5NTE4IDExLjMxMTg4MzYsNDcuNTkzODEwOCAxMS41Mzg3Nzk1LDQ3LjM2ODMyNzMgTDIwLjU2MTcyOTQsMzguMzgzNTQ4IEMyMC43Nzc4MjA3LDM4LjE2MDg5NzMgMjAuOTA1MjAwOCwzNy44NzA4MjgxIDIwLjkwNTIwMDgsMzcuNTU2Mzk3NiBDMjAuOTA1MjAwOCwzNy4yNDU5MzMgMjAuNzc3ODIwNywzNi45NTE4OTggMjAuNTYxNzI5NCwzNi43MzI2NDY1IEwxMS41Mzg3Nzk1LDI3Ljc0Nzg2NzIgWiIgaWQ9IkZpbGwtMyIgZmlsbD0iIzAwQTlFMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjU2NjE3MzYsMC44MjMzODU5NCBDMzguMTA4OTY5OSwwLjM2Nzg4NjY5MiAzNy4zNjQ1OTIyLDAuMzY1MDUzOTg1IDM2LjkwOTY2MzEsMC44MjMzODU5NCBMMjcuODkyOTY4NSw5LjgwOTI5ODM1IEMyNy40MzUxOTYxLDEwLjI2MTk2NDkgMjcuNDM1MTk2MSwxMS4wMDE4Njc5IDI3Ljg5Mjk2ODUsMTEuNDU4NTAwMiBMMzYuOTA5NjYzMSwyMC40NDMyNzk1IEMzNy4xMzU5OTAzLDIwLjY2OTg5NjEgMzcuNDM1MTA2MiwyMC43ODI2Mzc4IDM3LjczNjQ5NjcsMjAuNzgyNjM3OCBDMzguMDM1NjEyNiwyMC43ODI2Mzc4IDM4LjMzNTI5NzEsMjAuNjY5ODk2MSAzOC41NjYxNzM2LDIwLjQ0MzI3OTUgTDQ3LjU4Mjg2ODIsMTEuNDU4NTAwMiBDNDcuODAxODAyOCwxMS4yMzQ3MTY0IDQ3LjkyNTIwMjQsMTAuOTQ0NjQ3MiA0Ny45MjUyMDI0LDEwLjYzMTkxNjQgQzQ3LjkyNTIwMjQsMTAuMzE5NzUyMSA0Ny44MDE4MDI4LDEwLjAyOTExNjQgNDcuNTgyODY4Miw5LjgwNTMzMjU2IEwzOC41NjYxNzM2LDAuODIzMzg1OTQgWiIgaWQ9IkZpbGwtNSIgZmlsbD0iI0Q2MTgxOCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzMDA3OSwwLjc5NjgxNTE1IEMxMS4wNzQ1ODEzLDAuMzQzMDE1NTI2IDEwLjMyNjc5MTYsMC4zNDMwMTU1MjYgOS44NzU4NDMxLDAuNzk2ODE1MTUgTDAuODU3NDQyNTQ2LDkuNzgxMDI3OTMgQzAuMzk3Mzk1NTAzLDEwLjIzNjUyNzIgMC4zOTczOTU1MDMsMTAuOTc2NDMwMiAwLjg1NzQ0MjU0NiwxMS40MzMwNjI1IEw5Ljg3NTg0MzEsMjAuNDE2MTQyMiBDMTAuMTAyMTcwMywyMC42NDcyOTExIDEwLjQwMTI4NjIsMjAuNzU3MjAwMSAxMC43MDI2NzY3LDIwLjc1NzIwMDEgQzExLjAwNDA2NzIsMjAuNzU3MjAwMSAxMS4zMDMxODMxLDIwLjY0NzI5MTEgMTEuNTMwMDc5LDIwLjQxNjE0MjIgTDIwLjU0NjIwNDksMTEuNDMzMDYyNSBDMjAuNzY3NDE0MiwxMS4yMTI2Nzc5IDIwLjg5NDIyNTcsMTAuOTIxNDc1NyAyMC44OTQyMjU3LDEwLjYwNDc3OTEgQzIwLjg5NDIyNTcsMTAuMjk0MzE0NCAyMC43Njc0MTQyLDEwLjAwMjU0NTYgMjAuNTQ2MjA0OSw5Ljc4MTAyNzkzIEwxMS41MzAwNzksMC43OTY4MTUxNSBaIiBpZD0iRmlsbC03IiBmaWxsPSIjN0FCODAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguNjMxNjgzNCwyNy43OTg4NTU5IEMzOC4xNzQ0Nzk3LDI3LjM0MjIyMzYgMzcuNDI5NTMzMywyNy4zNDIyMjM2IDM2Ljk3MzQ2NjksMjcuNzk4ODU1OSBMMjcuOTU5NjE1NiwzNi43ODAyMzYgQzI3LjUwMTg0MzIsMzcuMjM4MDAxNCAyNy41MDE4NDMyLDM3Ljk3NTA3MTcgMjcuOTU5NjE1NiwzOC40MzExMzc1IEwzNi45NzM0NjY5LDQ3LjQxODE4MyBDMzcuMjAwMzYyOCw0Ny42NDQ3OTk1IDM3LjQ5ODkxLDQ3Ljc1OTgwNzQgMzcuODAwODY5Miw0Ny43NTk4MDc0IEMzOC4xMDIyNTk3LDQ3Ljc1OTgwNzQgMzguMzk4NTMyMyw0Ny42NDQ3OTk1IDM4LjYzMTY4MzQsNDcuNDE4MTgzIEw0Ny42NDgzNzgsMzguNDMxMTM3NSBDNDcuODY2NzQ0LDM4LjIxMTg4NiA0Ny45OTE4NDk1LDM3LjkxODk4NDEgNDcuOTkxODQ5NSwzNy42MDkwODYgQzQ3Ljk5MTg0OTUsMzcuMjk1Nzg4NiA0Ny44NjY3NDQsMzcuMDA0NTg2NCA0Ny42NDgzNzgsMzYuNzgwMjM2IEwzOC42MzE2ODM0LDI3Ljc5ODg1NTkgWiIgaWQ9IkZpbGwtOSIgZmlsbD0iIzAwNDZBRCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;"></div>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz4KICAgICAgPGZpbHRlciBpZD0iRGVzYXR1cmF0ZSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgICA8ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgaW49IlNvdXJjZUdyYXBoaWMiIHZhbHVlcz0iMCIvPgogICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJJY29ucy0rLWxvZ28iIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0eWxlPSJvcGFjaXR5OjAuNTQiIGZpbHRlcj0idXJsKCNEZXNhdHVyYXRlKSI+CiAgICAgICAgPGcgaWQ9IlNQLUxvZ28iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02MS4wMDAwMDAsIC02MS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9InN5bWJvbCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjEuMDAwMDAwLCA2MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNC4wODEwMjc3LDIzLjI2Mjg5OTIgTDI1LjA2MjA1ODUsMTQuMjc4Njg2NCBDMjQuNjA0Mjg2MSwxMy44MjQzMjAzIDIzLjg2Mzg4OSwxMy44MjQzMjAzIDIzLjQwNDQxMDcsMTQuMjc4Njg2NCBMMTQuMzg3NzE2MSwyMy4yNjI4OTkyIEMxMy45Mjc2NjksMjMuNzE3ODMxOSAxMy45Mjc2NjksMjQuNDU2MDM1MyAxNC4zODc3MTYxLDI0LjkxMjY2NzYgTDIzLjQwNDQxMDcsMzMuODk2MzEzOSBDMjMuNjMxODc1MiwzNC4xMjQwNjM1IDIzLjkzMTU1OTcsMzQuMjM3OTM4MyAyNC4yMzI5NTAzLDM0LjIzNzkzODMgQzI0LjUzMjA2NjEsMzQuMjM3OTM4MyAyNC44MzUxNjI2LDM0LjEyNDA2MzUgMjUuMDYyMDU4NSwzMy44OTYzMTM5IEwzNC4wODEwMjc3LDI0LjkxMjY2NzYgQzM0LjI5OTM5MzcsMjQuNjkwNTgzNCAzNC40MjI3OTMyLDI0LjM5ODI0ODEgMzQuNDIyNzkzMiwyNC4wODgzNSBDMzQuNDIyNzkzMiwyMy43NzYxODU3IDM0LjI5OTM5MzcsMjMuNDgwNDUxMSAzNC4wODEwMjc3LDIzLjI2Mjg5OTIgWiIgaWQ9IkZpbGwtMSIgZmlsbD0iIzAwMDAwMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzODc3OTUsMjcuNzQ3ODY3MiBDMTEuMDgxMDA3MSwyNy4yOTQ2MzQxIDEwLjM0MDYxLDI3LjI5NDYzNDEgOS44ODI4Mzc2MywyNy43NDc4NjcyIEwwLjg2Nzg0OTA0OSwzNi43MzI2NDY1IEMwLjQwODM3MDY2OCwzNy4xODgxNDU4IDAuNDA4MzcwNjY4LDM3LjkyNTIxNjEgMC44Njc4NDkwNDksMzguMzgzNTQ4IEw5Ljg4MjgzNzYzLDQ3LjM2ODMyNzMgQzEwLjExMDg3MDgsNDcuNTkzODEwOCAxMC40MTExMjQsNDcuNzA5OTUxOCAxMC43MTI1MTQ2LDQ3LjcwOTk1MTggQzExLjAwNzA4MTEsNDcuNzA5OTUxOCAxMS4zMTE4ODM2LDQ3LjU5MzgxMDggMTEuNTM4Nzc5NSw0Ny4zNjgzMjczIEwyMC41NjE3Mjk0LDM4LjM4MzU0OCBDMjAuNzc3ODIwNywzOC4xNjA4OTczIDIwLjkwNTIwMDgsMzcuODcwODI4MSAyMC45MDUyMDA4LDM3LjU1NjM5NzYgQzIwLjkwNTIwMDgsMzcuMjQ1OTMzIDIwLjc3NzgyMDcsMzYuOTUxODk4IDIwLjU2MTcyOTQsMzYuNzMyNjQ2NSBMMTEuNTM4Nzc5NSwyNy43NDc4NjcyIFoiIGlkPSJGaWxsLTMiIGZpbGw9IiMwMEE5RTAiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOC41NjYxNzM2LDAuODIzMzg1OTQgQzM4LjEwODk2OTksMC4zNjc4ODY2OTIgMzcuMzY0NTkyMiwwLjM2NTA1Mzk4NSAzNi45MDk2NjMxLDAuODIzMzg1OTQgTDI3Ljg5Mjk2ODUsOS44MDkyOTgzNSBDMjcuNDM1MTk2MSwxMC4yNjE5NjQ5IDI3LjQzNTE5NjEsMTEuMDAxODY3OSAyNy44OTI5Njg1LDExLjQ1ODUwMDIgTDM2LjkwOTY2MzEsMjAuNDQzMjc5NSBDMzcuMTM1OTkwMywyMC42Njk4OTYxIDM3LjQzNTEwNjIsMjAuNzgyNjM3OCAzNy43MzY0OTY3LDIwLjc4MjYzNzggQzM4LjAzNTYxMjYsMjAuNzgyNjM3OCAzOC4zMzUyOTcxLDIwLjY2OTg5NjEgMzguNTY2MTczNiwyMC40NDMyNzk1IEw0Ny41ODI4NjgyLDExLjQ1ODUwMDIgQzQ3LjgwMTgwMjgsMTEuMjM0NzE2NCA0Ny45MjUyMDI0LDEwLjk0NDY0NzIgNDcuOTI1MjAyNCwxMC42MzE5MTY0IEM0Ny45MjUyMDI0LDEwLjMxOTc1MjEgNDcuODAxODAyOCwxMC4wMjkxMTY0IDQ3LjU4Mjg2ODIsOS44MDUzMzI1NiBMMzguNTY2MTczNiwwLjgyMzM4NTk0IFoiIGlkPSJGaWxsLTUiIGZpbGw9IiNENjE4MTgiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMS41MzAwNzksMC43OTY4MTUxNSBDMTEuMDc0NTgxMywwLjM0MzAxNTUyNiAxMC4zMjY3OTE2LDAuMzQzMDE1NTI2IDkuODc1ODQzMSwwLjc5NjgxNTE1IEwwLjg1NzQ0MjU0Niw5Ljc4MTAyNzkzIEMwLjM5NzM5NTUwMywxMC4yMzY1MjcyIDAuMzk3Mzk1NTAzLDEwLjk3NjQzMDIgMC44NTc0NDI1NDYsMTEuNDMzMDYyNSBMOS44NzU4NDMxLDIwLjQxNjE0MjIgQzEwLjEwMjE3MDMsMjAuNjQ3MjkxMSAxMC40MDEyODYyLDIwLjc1NzIwMDEgMTAuNzAyNjc2NywyMC43NTcyMDAxIEMxMS4wMDQwNjcyLDIwLjc1NzIwMDEgMTEuMzAzMTgzMSwyMC42NDcyOTExIDExLjUzMDA3OSwyMC40MTYxNDIyIEwyMC41NDYyMDQ5LDExLjQzMzA2MjUgQzIwLjc2NzQxNDIsMTEuMjEyNjc3OSAyMC44OTQyMjU3LDEwLjkyMTQ3NTcgMjAuODk0MjI1NywxMC42MDQ3NzkxIEMyMC44OTQyMjU3LDEwLjI5NDMxNDQgMjAuNzY3NDE0MiwxMC4wMDI1NDU2IDIwLjU0NjIwNDksOS43ODEwMjc5MyBMMTEuNTMwMDc5LDAuNzk2ODE1MTUgWiIgaWQ9IkZpbGwtNyIgZmlsbD0iIzdBQjgwMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjYzMTY4MzQsMjcuNzk4ODU1OSBDMzguMTc0NDc5NywyNy4zNDIyMjM2IDM3LjQyOTUzMzMsMjcuMzQyMjIzNiAzNi45NzM0NjY5LDI3Ljc5ODg1NTkgTDI3Ljk1OTYxNTYsMzYuNzgwMjM2IEMyNy41MDE4NDMyLDM3LjIzODAwMTQgMjcuNTAxODQzMiwzNy45NzUwNzE3IDI3Ljk1OTYxNTYsMzguNDMxMTM3NSBMMzYuOTczNDY2OSw0Ny40MTgxODMgQzM3LjIwMDM2MjgsNDcuNjQ0Nzk5NSAzNy40OTg5MSw0Ny43NTk4MDc0IDM3LjgwMDg2OTIsNDcuNzU5ODA3NCBDMzguMTAyMjU5Nyw0Ny43NTk4MDc0IDM4LjM5ODUzMjMsNDcuNjQ0Nzk5NSAzOC42MzE2ODM0LDQ3LjQxODE4MyBMNDcuNjQ4Mzc4LDM4LjQzMTEzNzUgQzQ3Ljg2Njc0NCwzOC4yMTE4ODYgNDcuOTkxODQ5NSwzNy45MTg5ODQxIDQ3Ljk5MTg0OTUsMzcuNjA5MDg2IEM0Ny45OTE4NDk1LDM3LjI5NTc4ODYgNDcuODY2NzQ0LDM3LjAwNDU4NjQgNDcuNjQ4Mzc4LDM2Ljc4MDIzNiBMMzguNjMxNjgzNCwyNy43OTg4NTU5IFoiIGlkPSJGaWxsLTkiIGZpbGw9IiMwMDQ2QUQiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;"></div>
<p><input aria-label="last_name" type="text" class="form-control" data-inputmask="" name="fields[last_name]" placeholder="Last name" autocomplete="family-name"><br />
                      <!-- /input --></p>
<p>                      <!-- textarea --></p>
<p>                      <!-- /textarea --></p>
<p>                      <!-- select --></p>
<p>                      <!-- /select --></p>
<p>                      <!-- checkboxes --></p>
<p>            <!-- /checkboxes --></p>
<p>                      <!-- radio --></p>
<p>                      <!-- /radio --></p>
<p>                      <!-- countries --></p>
<p>                      <!-- /countries --></p></div>
</p></div>
<div class="ml-form-fieldRow ml-last-item">
<div class="ml-field-group ml-field-email ml-validate-email ml-validate-required">
<p>                      <!-- input --></p>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iSWNvbnMtKy1sb2dvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHlsZT0ib3BhY2l0eTowLjU0Ij4KICAgICAgICA8ZyBpZD0iU1AtTG9nbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxLjAwMDAwMCwgLTYxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0ic3ltYm9sIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MS4wMDAwMDAsIDYxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjA4MTAyNzcsMjMuMjYyODk5MiBMMjUuMDYyMDU4NSwxNC4yNzg2ODY0IEMyNC42MDQyODYxLDEzLjgyNDMyMDMgMjMuODYzODg5LDEzLjgyNDMyMDMgMjMuNDA0NDEwNywxNC4yNzg2ODY0IEwxNC4zODc3MTYxLDIzLjI2Mjg5OTIgQzEzLjkyNzY2OSwyMy43MTc4MzE5IDEzLjkyNzY2OSwyNC40NTYwMzUzIDE0LjM4NzcxNjEsMjQuOTEyNjY3NiBMMjMuNDA0NDEwNywzMy44OTYzMTM5IEMyMy42MzE4NzUyLDM0LjEyNDA2MzUgMjMuOTMxNTU5NywzNC4yMzc5MzgzIDI0LjIzMjk1MDMsMzQuMjM3OTM4MyBDMjQuNTMyMDY2MSwzNC4yMzc5MzgzIDI0LjgzNTE2MjYsMzQuMTI0MDYzNSAyNS4wNjIwNTg1LDMzLjg5NjMxMzkgTDM0LjA4MTAyNzcsMjQuOTEyNjY3NiBDMzQuMjk5MzkzNywyNC42OTA1ODM0IDM0LjQyMjc5MzIsMjQuMzk4MjQ4MSAzNC40MjI3OTMyLDI0LjA4ODM1IEMzNC40MjI3OTMyLDIzLjc3NjE4NTcgMzQuMjk5MzkzNywyMy40ODA0NTExIDM0LjA4MTAyNzcsMjMuMjYyODk5MiBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTEuNTM4Nzc5NSwyNy43NDc4NjcyIEMxMS4wODEwMDcxLDI3LjI5NDYzNDEgMTAuMzQwNjEsMjcuMjk0NjM0MSA5Ljg4MjgzNzYzLDI3Ljc0Nzg2NzIgTDAuODY3ODQ5MDQ5LDM2LjczMjY0NjUgQzAuNDA4MzcwNjY4LDM3LjE4ODE0NTggMC40MDgzNzA2NjgsMzcuOTI1MjE2MSAwLjg2Nzg0OTA0OSwzOC4zODM1NDggTDkuODgyODM3NjMsNDcuMzY4MzI3MyBDMTAuMTEwODcwOCw0Ny41OTM4MTA4IDEwLjQxMTEyNCw0Ny43MDk5NTE4IDEwLjcxMjUxNDYsNDcuNzA5OTUxOCBDMTEuMDA3MDgxMSw0Ny43MDk5NTE4IDExLjMxMTg4MzYsNDcuNTkzODEwOCAxMS41Mzg3Nzk1LDQ3LjM2ODMyNzMgTDIwLjU2MTcyOTQsMzguMzgzNTQ4IEMyMC43Nzc4MjA3LDM4LjE2MDg5NzMgMjAuOTA1MjAwOCwzNy44NzA4MjgxIDIwLjkwNTIwMDgsMzcuNTU2Mzk3NiBDMjAuOTA1MjAwOCwzNy4yNDU5MzMgMjAuNzc3ODIwNywzNi45NTE4OTggMjAuNTYxNzI5NCwzNi43MzI2NDY1IEwxMS41Mzg3Nzk1LDI3Ljc0Nzg2NzIgWiIgaWQ9IkZpbGwtMyIgZmlsbD0iIzAwQTlFMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjU2NjE3MzYsMC44MjMzODU5NCBDMzguMTA4OTY5OSwwLjM2Nzg4NjY5MiAzNy4zNjQ1OTIyLDAuMzY1MDUzOTg1IDM2LjkwOTY2MzEsMC44MjMzODU5NCBMMjcuODkyOTY4NSw5LjgwOTI5ODM1IEMyNy40MzUxOTYxLDEwLjI2MTk2NDkgMjcuNDM1MTk2MSwxMS4wMDE4Njc5IDI3Ljg5Mjk2ODUsMTEuNDU4NTAwMiBMMzYuOTA5NjYzMSwyMC40NDMyNzk1IEMzNy4xMzU5OTAzLDIwLjY2OTg5NjEgMzcuNDM1MTA2MiwyMC43ODI2Mzc4IDM3LjczNjQ5NjcsMjAuNzgyNjM3OCBDMzguMDM1NjEyNiwyMC43ODI2Mzc4IDM4LjMzNTI5NzEsMjAuNjY5ODk2MSAzOC41NjYxNzM2LDIwLjQ0MzI3OTUgTDQ3LjU4Mjg2ODIsMTEuNDU4NTAwMiBDNDcuODAxODAyOCwxMS4yMzQ3MTY0IDQ3LjkyNTIwMjQsMTAuOTQ0NjQ3MiA0Ny45MjUyMDI0LDEwLjYzMTkxNjQgQzQ3LjkyNTIwMjQsMTAuMzE5NzUyMSA0Ny44MDE4MDI4LDEwLjAyOTExNjQgNDcuNTgyODY4Miw5LjgwNTMzMjU2IEwzOC41NjYxNzM2LDAuODIzMzg1OTQgWiIgaWQ9IkZpbGwtNSIgZmlsbD0iI0Q2MTgxOCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzMDA3OSwwLjc5NjgxNTE1IEMxMS4wNzQ1ODEzLDAuMzQzMDE1NTI2IDEwLjMyNjc5MTYsMC4zNDMwMTU1MjYgOS44NzU4NDMxLDAuNzk2ODE1MTUgTDAuODU3NDQyNTQ2LDkuNzgxMDI3OTMgQzAuMzk3Mzk1NTAzLDEwLjIzNjUyNzIgMC4zOTczOTU1MDMsMTAuOTc2NDMwMiAwLjg1NzQ0MjU0NiwxMS40MzMwNjI1IEw5Ljg3NTg0MzEsMjAuNDE2MTQyMiBDMTAuMTAyMTcwMywyMC42NDcyOTExIDEwLjQwMTI4NjIsMjAuNzU3MjAwMSAxMC43MDI2NzY3LDIwLjc1NzIwMDEgQzExLjAwNDA2NzIsMjAuNzU3MjAwMSAxMS4zMDMxODMxLDIwLjY0NzI5MTEgMTEuNTMwMDc5LDIwLjQxNjE0MjIgTDIwLjU0NjIwNDksMTEuNDMzMDYyNSBDMjAuNzY3NDE0MiwxMS4yMTI2Nzc5IDIwLjg5NDIyNTcsMTAuOTIxNDc1NyAyMC44OTQyMjU3LDEwLjYwNDc3OTEgQzIwLjg5NDIyNTcsMTAuMjk0MzE0NCAyMC43Njc0MTQyLDEwLjAwMjU0NTYgMjAuNTQ2MjA0OSw5Ljc4MTAyNzkzIEwxMS41MzAwNzksMC43OTY4MTUxNSBaIiBpZD0iRmlsbC03IiBmaWxsPSIjN0FCODAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguNjMxNjgzNCwyNy43OTg4NTU5IEMzOC4xNzQ0Nzk3LDI3LjM0MjIyMzYgMzcuNDI5NTMzMywyNy4zNDIyMjM2IDM2Ljk3MzQ2NjksMjcuNzk4ODU1OSBMMjcuOTU5NjE1NiwzNi43ODAyMzYgQzI3LjUwMTg0MzIsMzcuMjM4MDAxNCAyNy41MDE4NDMyLDM3Ljk3NTA3MTcgMjcuOTU5NjE1NiwzOC40MzExMzc1IEwzNi45NzM0NjY5LDQ3LjQxODE4MyBDMzcuMjAwMzYyOCw0Ny42NDQ3OTk1IDM3LjQ5ODkxLDQ3Ljc1OTgwNzQgMzcuODAwODY5Miw0Ny43NTk4MDc0IEMzOC4xMDIyNTk3LDQ3Ljc1OTgwNzQgMzguMzk4NTMyMyw0Ny42NDQ3OTk1IDM4LjYzMTY4MzQsNDcuNDE4MTgzIEw0Ny42NDgzNzgsMzguNDMxMTM3NSBDNDcuODY2NzQ0LDM4LjIxMTg4NiA0Ny45OTE4NDk1LDM3LjkxODk4NDEgNDcuOTkxODQ5NSwzNy42MDkwODYgQzQ3Ljk5MTg0OTUsMzcuMjk1Nzg4NiA0Ny44NjY3NDQsMzcuMDA0NTg2NCA0Ny42NDgzNzgsMzYuNzgwMjM2IEwzOC42MzE2ODM0LDI3Ljc5ODg1NTkgWiIgaWQ9IkZpbGwtOSIgZmlsbD0iIzAwNDZBRCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;" loading="lazy"></div>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iSWNvbnMtKy1sb2dvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHlsZT0ib3BhY2l0eTowLjU0Ij4KICAgICAgICA8ZyBpZD0iU1AtTG9nbyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxLjAwMDAwMCwgLTYxLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0ic3ltYm9sIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MS4wMDAwMDAsIDYxLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM0LjA4MTAyNzcsMjMuMjYyODk5MiBMMjUuMDYyMDU4NSwxNC4yNzg2ODY0IEMyNC42MDQyODYxLDEzLjgyNDMyMDMgMjMuODYzODg5LDEzLjgyNDMyMDMgMjMuNDA0NDEwNywxNC4yNzg2ODY0IEwxNC4zODc3MTYxLDIzLjI2Mjg5OTIgQzEzLjkyNzY2OSwyMy43MTc4MzE5IDEzLjkyNzY2OSwyNC40NTYwMzUzIDE0LjM4NzcxNjEsMjQuOTEyNjY3NiBMMjMuNDA0NDEwNywzMy44OTYzMTM5IEMyMy42MzE4NzUyLDM0LjEyNDA2MzUgMjMuOTMxNTU5NywzNC4yMzc5MzgzIDI0LjIzMjk1MDMsMzQuMjM3OTM4MyBDMjQuNTMyMDY2MSwzNC4yMzc5MzgzIDI0LjgzNTE2MjYsMzQuMTI0MDYzNSAyNS4wNjIwNTg1LDMzLjg5NjMxMzkgTDM0LjA4MTAyNzcsMjQuOTEyNjY3NiBDMzQuMjk5MzkzNywyNC42OTA1ODM0IDM0LjQyMjc5MzIsMjQuMzk4MjQ4MSAzNC40MjI3OTMyLDI0LjA4ODM1IEMzNC40MjI3OTMyLDIzLjc3NjE4NTcgMzQuMjk5MzkzNywyMy40ODA0NTExIDM0LjA4MTAyNzcsMjMuMjYyODk5MiBaIiBpZD0iRmlsbC0xIiBmaWxsPSIjMDAwMDAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTEuNTM4Nzc5NSwyNy43NDc4NjcyIEMxMS4wODEwMDcxLDI3LjI5NDYzNDEgMTAuMzQwNjEsMjcuMjk0NjM0MSA5Ljg4MjgzNzYzLDI3Ljc0Nzg2NzIgTDAuODY3ODQ5MDQ5LDM2LjczMjY0NjUgQzAuNDA4MzcwNjY4LDM3LjE4ODE0NTggMC40MDgzNzA2NjgsMzcuOTI1MjE2MSAwLjg2Nzg0OTA0OSwzOC4zODM1NDggTDkuODgyODM3NjMsNDcuMzY4MzI3MyBDMTAuMTEwODcwOCw0Ny41OTM4MTA4IDEwLjQxMTEyNCw0Ny43MDk5NTE4IDEwLjcxMjUxNDYsNDcuNzA5OTUxOCBDMTEuMDA3MDgxMSw0Ny43MDk5NTE4IDExLjMxMTg4MzYsNDcuNTkzODEwOCAxMS41Mzg3Nzk1LDQ3LjM2ODMyNzMgTDIwLjU2MTcyOTQsMzguMzgzNTQ4IEMyMC43Nzc4MjA3LDM4LjE2MDg5NzMgMjAuOTA1MjAwOCwzNy44NzA4MjgxIDIwLjkwNTIwMDgsMzcuNTU2Mzk3NiBDMjAuOTA1MjAwOCwzNy4yNDU5MzMgMjAuNzc3ODIwNywzNi45NTE4OTggMjAuNTYxNzI5NCwzNi43MzI2NDY1IEwxMS41Mzg3Nzk1LDI3Ljc0Nzg2NzIgWiIgaWQ9IkZpbGwtMyIgZmlsbD0iIzAwQTlFMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjU2NjE3MzYsMC44MjMzODU5NCBDMzguMTA4OTY5OSwwLjM2Nzg4NjY5MiAzNy4zNjQ1OTIyLDAuMzY1MDUzOTg1IDM2LjkwOTY2MzEsMC44MjMzODU5NCBMMjcuODkyOTY4NSw5LjgwOTI5ODM1IEMyNy40MzUxOTYxLDEwLjI2MTk2NDkgMjcuNDM1MTk2MSwxMS4wMDE4Njc5IDI3Ljg5Mjk2ODUsMTEuNDU4NTAwMiBMMzYuOTA5NjYzMSwyMC40NDMyNzk1IEMzNy4xMzU5OTAzLDIwLjY2OTg5NjEgMzcuNDM1MTA2MiwyMC43ODI2Mzc4IDM3LjczNjQ5NjcsMjAuNzgyNjM3OCBDMzguMDM1NjEyNiwyMC43ODI2Mzc4IDM4LjMzNTI5NzEsMjAuNjY5ODk2MSAzOC41NjYxNzM2LDIwLjQ0MzI3OTUgTDQ3LjU4Mjg2ODIsMTEuNDU4NTAwMiBDNDcuODAxODAyOCwxMS4yMzQ3MTY0IDQ3LjkyNTIwMjQsMTAuOTQ0NjQ3MiA0Ny45MjUyMDI0LDEwLjYzMTkxNjQgQzQ3LjkyNTIwMjQsMTAuMzE5NzUyMSA0Ny44MDE4MDI4LDEwLjAyOTExNjQgNDcuNTgyODY4Miw5LjgwNTMzMjU2IEwzOC41NjYxNzM2LDAuODIzMzg1OTQgWiIgaWQ9IkZpbGwtNSIgZmlsbD0iI0Q2MTgxOCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzMDA3OSwwLjc5NjgxNTE1IEMxMS4wNzQ1ODEzLDAuMzQzMDE1NTI2IDEwLjMyNjc5MTYsMC4zNDMwMTU1MjYgOS44NzU4NDMxLDAuNzk2ODE1MTUgTDAuODU3NDQyNTQ2LDkuNzgxMDI3OTMgQzAuMzk3Mzk1NTAzLDEwLjIzNjUyNzIgMC4zOTczOTU1MDMsMTAuOTc2NDMwMiAwLjg1NzQ0MjU0NiwxMS40MzMwNjI1IEw5Ljg3NTg0MzEsMjAuNDE2MTQyMiBDMTAuMTAyMTcwMywyMC42NDcyOTExIDEwLjQwMTI4NjIsMjAuNzU3MjAwMSAxMC43MDI2NzY3LDIwLjc1NzIwMDEgQzExLjAwNDA2NzIsMjAuNzU3MjAwMSAxMS4zMDMxODMxLDIwLjY0NzI5MTEgMTEuNTMwMDc5LDIwLjQxNjE0MjIgTDIwLjU0NjIwNDksMTEuNDMzMDYyNSBDMjAuNzY3NDE0MiwxMS4yMTI2Nzc5IDIwLjg5NDIyNTcsMTAuOTIxNDc1NyAyMC44OTQyMjU3LDEwLjYwNDc3OTEgQzIwLjg5NDIyNTcsMTAuMjk0MzE0NCAyMC43Njc0MTQyLDEwLjAwMjU0NTYgMjAuNTQ2MjA0OSw5Ljc4MTAyNzkzIEwxMS41MzAwNzksMC43OTY4MTUxNSBaIiBpZD0iRmlsbC03IiBmaWxsPSIjN0FCODAwIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMzguNjMxNjgzNCwyNy43OTg4NTU5IEMzOC4xNzQ0Nzk3LDI3LjM0MjIyMzYgMzcuNDI5NTMzMywyNy4zNDIyMjM2IDM2Ljk3MzQ2NjksMjcuNzk4ODU1OSBMMjcuOTU5NjE1NiwzNi43ODAyMzYgQzI3LjUwMTg0MzIsMzcuMjM4MDAxNCAyNy41MDE4NDMyLDM3Ljk3NTA3MTcgMjcuOTU5NjE1NiwzOC40MzExMzc1IEwzNi45NzM0NjY5LDQ3LjQxODE4MyBDMzcuMjAwMzYyOCw0Ny42NDQ3OTk1IDM3LjQ5ODkxLDQ3Ljc1OTgwNzQgMzcuODAwODY5Miw0Ny43NTk4MDc0IEMzOC4xMDIyNTk3LDQ3Ljc1OTgwNzQgMzguMzk4NTMyMyw0Ny42NDQ3OTk1IDM4LjYzMTY4MzQsNDcuNDE4MTgzIEw0Ny42NDgzNzgsMzguNDMxMTM3NSBDNDcuODY2NzQ0LDM4LjIxMTg4NiA0Ny45OTE4NDk1LDM3LjkxODk4NDEgNDcuOTkxODQ5NSwzNy42MDkwODYgQzQ3Ljk5MTg0OTUsMzcuMjk1Nzg4NiA0Ny44NjY3NDQsMzcuMDA0NTg2NCA0Ny42NDgzNzgsMzYuNzgwMjM2IEwzOC42MzE2ODM0LDI3Ljc5ODg1NTkgWiIgaWQ9IkZpbGwtOSIgZmlsbD0iIzAwNDZBRCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;"></div>
<div style="position: absolute; display: flex; width: 0px; height: 0px; border: none; padding: 0px; margin: 0px; background: no-repeat; visibility: visible; user-select: none; pointer-events: none; z-index: auto; opacity: 1;"><img decoding="async" title="Sticky Password" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDhweCIgaGVpZ2h0PSI0OHB4IiB2aWV3Qm94PSIwIDAgNDggNDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZGVmcz4KICAgICAgPGZpbHRlciBpZD0iRGVzYXR1cmF0ZSIgZmlsdGVyVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgICA8ZmVDb2xvck1hdHJpeCB0eXBlPSJzYXR1cmF0ZSIgaW49IlNvdXJjZUdyYXBoaWMiIHZhbHVlcz0iMCIvPgogICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJJY29ucy0rLWxvZ28iIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0eWxlPSJvcGFjaXR5OjAuNTQiIGZpbHRlcj0idXJsKCNEZXNhdHVyYXRlKSI+CiAgICAgICAgPGcgaWQ9IlNQLUxvZ28iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02MS4wMDAwMDAsIC02MS4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9InN5bWJvbCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjEuMDAwMDAwLCA2MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zNC4wODEwMjc3LDIzLjI2Mjg5OTIgTDI1LjA2MjA1ODUsMTQuMjc4Njg2NCBDMjQuNjA0Mjg2MSwxMy44MjQzMjAzIDIzLjg2Mzg4OSwxMy44MjQzMjAzIDIzLjQwNDQxMDcsMTQuMjc4Njg2NCBMMTQuMzg3NzE2MSwyMy4yNjI4OTkyIEMxMy45Mjc2NjksMjMuNzE3ODMxOSAxMy45Mjc2NjksMjQuNDU2MDM1MyAxNC4zODc3MTYxLDI0LjkxMjY2NzYgTDIzLjQwNDQxMDcsMzMuODk2MzEzOSBDMjMuNjMxODc1MiwzNC4xMjQwNjM1IDIzLjkzMTU1OTcsMzQuMjM3OTM4MyAyNC4yMzI5NTAzLDM0LjIzNzkzODMgQzI0LjUzMjA2NjEsMzQuMjM3OTM4MyAyNC44MzUxNjI2LDM0LjEyNDA2MzUgMjUuMDYyMDU4NSwzMy44OTYzMTM5IEwzNC4wODEwMjc3LDI0LjkxMjY2NzYgQzM0LjI5OTM5MzcsMjQuNjkwNTgzNCAzNC40MjI3OTMyLDI0LjM5ODI0ODEgMzQuNDIyNzkzMiwyNC4wODgzNSBDMzQuNDIyNzkzMiwyMy43NzYxODU3IDM0LjI5OTM5MzcsMjMuNDgwNDUxMSAzNC4wODEwMjc3LDIzLjI2Mjg5OTIgWiIgaWQ9IkZpbGwtMSIgZmlsbD0iIzAwMDAwMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjUzODc3OTUsMjcuNzQ3ODY3MiBDMTEuMDgxMDA3MSwyNy4yOTQ2MzQxIDEwLjM0MDYxLDI3LjI5NDYzNDEgOS44ODI4Mzc2MywyNy43NDc4NjcyIEwwLjg2Nzg0OTA0OSwzNi43MzI2NDY1IEMwLjQwODM3MDY2OCwzNy4xODgxNDU4IDAuNDA4MzcwNjY4LDM3LjkyNTIxNjEgMC44Njc4NDkwNDksMzguMzgzNTQ4IEw5Ljg4MjgzNzYzLDQ3LjM2ODMyNzMgQzEwLjExMDg3MDgsNDcuNTkzODEwOCAxMC40MTExMjQsNDcuNzA5OTUxOCAxMC43MTI1MTQ2LDQ3LjcwOTk1MTggQzExLjAwNzA4MTEsNDcuNzA5OTUxOCAxMS4zMTE4ODM2LDQ3LjU5MzgxMDggMTEuNTM4Nzc5NSw0Ny4zNjgzMjczIEwyMC41NjE3Mjk0LDM4LjM4MzU0OCBDMjAuNzc3ODIwNywzOC4xNjA4OTczIDIwLjkwNTIwMDgsMzcuODcwODI4MSAyMC45MDUyMDA4LDM3LjU1NjM5NzYgQzIwLjkwNTIwMDgsMzcuMjQ1OTMzIDIwLjc3NzgyMDcsMzYuOTUxODk4IDIwLjU2MTcyOTQsMzYuNzMyNjQ2NSBMMTEuNTM4Nzc5NSwyNy43NDc4NjcyIFoiIGlkPSJGaWxsLTMiIGZpbGw9IiMwMEE5RTAiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0zOC41NjYxNzM2LDAuODIzMzg1OTQgQzM4LjEwODk2OTksMC4zNjc4ODY2OTIgMzcuMzY0NTkyMiwwLjM2NTA1Mzk4NSAzNi45MDk2NjMxLDAuODIzMzg1OTQgTDI3Ljg5Mjk2ODUsOS44MDkyOTgzNSBDMjcuNDM1MTk2MSwxMC4yNjE5NjQ5IDI3LjQzNTE5NjEsMTEuMDAxODY3OSAyNy44OTI5Njg1LDExLjQ1ODUwMDIgTDM2LjkwOTY2MzEsMjAuNDQzMjc5NSBDMzcuMTM1OTkwMywyMC42Njk4OTYxIDM3LjQzNTEwNjIsMjAuNzgyNjM3OCAzNy43MzY0OTY3LDIwLjc4MjYzNzggQzM4LjAzNTYxMjYsMjAuNzgyNjM3OCAzOC4zMzUyOTcxLDIwLjY2OTg5NjEgMzguNTY2MTczNiwyMC40NDMyNzk1IEw0Ny41ODI4NjgyLDExLjQ1ODUwMDIgQzQ3LjgwMTgwMjgsMTEuMjM0NzE2NCA0Ny45MjUyMDI0LDEwLjk0NDY0NzIgNDcuOTI1MjAyNCwxMC42MzE5MTY0IEM0Ny45MjUyMDI0LDEwLjMxOTc1MjEgNDcuODAxODAyOCwxMC4wMjkxMTY0IDQ3LjU4Mjg2ODIsOS44MDUzMzI1NiBMMzguNTY2MTczNiwwLjgyMzM4NTk0IFoiIGlkPSJGaWxsLTUiIGZpbGw9IiNENjE4MTgiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMS41MzAwNzksMC43OTY4MTUxNSBDMTEuMDc0NTgxMywwLjM0MzAxNTUyNiAxMC4zMjY3OTE2LDAuMzQzMDE1NTI2IDkuODc1ODQzMSwwLjc5NjgxNTE1IEwwLjg1NzQ0MjU0Niw5Ljc4MTAyNzkzIEMwLjM5NzM5NTUwMywxMC4yMzY1MjcyIDAuMzk3Mzk1NTAzLDEwLjk3NjQzMDIgMC44NTc0NDI1NDYsMTEuNDMzMDYyNSBMOS44NzU4NDMxLDIwLjQxNjE0MjIgQzEwLjEwMjE3MDMsMjAuNjQ3MjkxMSAxMC40MDEyODYyLDIwLjc1NzIwMDEgMTAuNzAyNjc2NywyMC43NTcyMDAxIEMxMS4wMDQwNjcyLDIwLjc1NzIwMDEgMTEuMzAzMTgzMSwyMC42NDcyOTExIDExLjUzMDA3OSwyMC40MTYxNDIyIEwyMC41NDYyMDQ5LDExLjQzMzA2MjUgQzIwLjc2NzQxNDIsMTEuMjEyNjc3OSAyMC44OTQyMjU3LDEwLjkyMTQ3NTcgMjAuODk0MjI1NywxMC42MDQ3NzkxIEMyMC44OTQyMjU3LDEwLjI5NDMxNDQgMjAuNzY3NDE0MiwxMC4wMDI1NDU2IDIwLjU0NjIwNDksOS43ODEwMjc5MyBMMTEuNTMwMDc5LDAuNzk2ODE1MTUgWiIgaWQ9IkZpbGwtNyIgZmlsbD0iIzdBQjgwMCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTM4LjYzMTY4MzQsMjcuNzk4ODU1OSBDMzguMTc0NDc5NywyNy4zNDIyMjM2IDM3LjQyOTUzMzMsMjcuMzQyMjIzNiAzNi45NzM0NjY5LDI3Ljc5ODg1NTkgTDI3Ljk1OTYxNTYsMzYuNzgwMjM2IEMyNy41MDE4NDMyLDM3LjIzODAwMTQgMjcuNTAxODQzMiwzNy45NzUwNzE3IDI3Ljk1OTYxNTYsMzguNDMxMTM3NSBMMzYuOTczNDY2OSw0Ny40MTgxODMgQzM3LjIwMDM2MjgsNDcuNjQ0Nzk5NSAzNy40OTg5MSw0Ny43NTk4MDc0IDM3LjgwMDg2OTIsNDcuNzU5ODA3NCBDMzguMTAyMjU5Nyw0Ny43NTk4MDc0IDM4LjM5ODUzMjMsNDcuNjQ0Nzk5NSAzOC42MzE2ODM0LDQ3LjQxODE4MyBMNDcuNjQ4Mzc4LDM4LjQzMTEzNzUgQzQ3Ljg2Njc0NCwzOC4yMTE4ODYgNDcuOTkxODQ5NSwzNy45MTg5ODQxIDQ3Ljk5MTg0OTUsMzcuNjA5MDg2IEM0Ny45OTE4NDk1LDM3LjI5NTc4ODYgNDcuODY2NzQ0LDM3LjAwNDU4NjQgNDcuNjQ4Mzc4LDM2Ljc4MDIzNiBMMzguNjMxNjgzNCwyNy43OTg4NTU5IFoiIGlkPSJGaWxsLTkiIGZpbGw9IiMwMDQ2QUQiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+" style="position: relative; border: none; display: inline; cursor: default; padding: 0px; margin: 0px; pointer-events: auto; left: 330px; top: 14px; width: 16px; height: 16px; min-width: 16px; max-width: 16px; min-height: 16px; max-height: 16px;"></div>
<p><input aria-label="email" aria-required="true" type="email" class="form-control" data-inputmask="" name="fields[email]" placeholder="Email" autocomplete="email"><br />
                      <!-- /input --></p>
<p>                      <!-- textarea --></p>
<p>                      <!-- /textarea --></p>
<p>                      <!-- select --></p>
<p>                      <!-- /select --></p>
<p>                      <!-- checkboxes --></p>
<p>            <!-- /checkboxes --></p>
<p>                      <!-- radio --></p>
<p>                      <!-- /radio --></p>
<p>                      <!-- countries --></p>
<p>                      <!-- /countries --></p></div>
</p></div>
</p></div>
<p>              <!-- Privacy policy --></p>
<p>              <!-- /Privacy policy --></p>
<div class="ml-form-checkboxRow ml-validate-required">
<p>                  <label class="checkbox"><br />
                    <input type="checkbox"></p>
<div class="label-description">
<p><strong>By downloading this meditation, you will be automatically added to our newsletter list. You can unsubscribe from that anytime you want. </strong></p>
</p></div>
<p>                  </label></p></div>
<div class="ml-form-recaptcha ml-validate-required" style="float: left;">
<style type="text/css">
  .ml-form-recaptcha {
    margin-bottom: 20px;
  }</p>
<p>  .ml-form-recaptcha.ml-error iframe {
    border: solid 1px #ff0000;
  }</p>
<p>  @media screen and (max-width: 480px) {
    .ml-form-recaptcha {
      width: 220px!important
    }
    .g-recaptcha {
      transform: scale(0.78);
      -webkit-transform: scale(0.78);
      transform-origin: 0 0;
      -webkit-transform-origin: 0 0;
    }
  }
</style>
<p>  <code class="tve_js_placeholder"><script src="https://www.google.com/recaptcha/api.js"></script></code></p>
<div class="g-recaptcha" data-sitekey="6Lf1KHQUAAAAAFNKEX1hdSWCS3mRMv4FlFaNslaD"></div>
</div>
<p>              <input type="hidden" name="fields[tags]" value="Gratitude meditation subscribers"><br />
              <input type="hidden" name="ml-submit" value="1"></p>
<div class="ml-form-embedSubmit">
<p>                  <button type="submit" class="primary">Download</button></p>
<p>                <button disabled="disabled" style="display: none;" type="button" class="loading"></p>
<div class="ml-form-embedSubmitLoad"></div>
<p>                  <span class="sr-only">Loading...</span><br />
                </button>
              </div>
<p>              <input type="hidden" name="anticsrf" value="true"><br />
            </form>
</p></div>
<div class="ml-form-successBody row-success" style="display: none">
<div class="ml-form-successContent">
<h4>Thank you!</h4>
<p>You have successfully signed-up for the Gratitude Meditation, you will receive an email with the downloadable audio file.</p>
<p>Please add lata@thehealinggym.com to your contacts. If you do not see the email within a few minutes, please check the spam folder.</p>
</p></div>
</p></div>
</p></div>
</p></div>
</p></div>
<p>  <code class="tve_js_placeholder"><script>
    function ml_webform_success_5209130() {
      var $ = ml_jQuery || jQuery;
      $('.ml-subscribe-form-5209130 .row-success').show();
      $('.ml-subscribe-form-5209130 .row-form').hide();
    }
      </script></code></p>
<p>      <code class="tve_js_placeholder"><script src="https://groot.mailerlite.com/js/w/webforms.min.js?v2d8fb22bb5b3677f161552cd9e774127" type="text/javascript"></script></code><br />
        <code class="tve_js_placeholder"><script>
            fetch("https://assets.mailerlite.com/jsonp/331608/forms/88459469642532862/takel")
        </script></code></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What are Boundaries? Why are they needed? How can boundaries help us?</title>
		<link>https://thehealinggym.com/what-are-boundaries-why-are-they-needed-how-can-boundaries-help-us/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Mon, 07 Nov 2022 18:37:46 +0000</pubDate>
				<category><![CDATA[Release Anxiety]]></category>
		<category><![CDATA[Self-Empowerment]]></category>
		<category><![CDATA[anxietycoaching]]></category>
		<category><![CDATA[anxietyrelief]]></category>
		<category><![CDATA[anxietysupport]]></category>
		<category><![CDATA[boundarysetting]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[whyareboundariesneeded]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=7959</guid>

					<description><![CDATA[Boundary setting is a very essential part of anxiety management.

Do you know what boundaries are?

Do you know why they are needed?

Just like fences and doors are needed for our physical safety, boundaries are needed for physical and emotional safety.

When we set boundaries in life, it helps us develop better self-esteem, healthier relationships and more happiness in life. ]]></description>
										<content:encoded><![CDATA[<div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px" data-float-visibility="mobile" data-url="https://youtu.be/HGbsrRADDvk">
<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
<div class="video_overlay"></div>
<p>	<iframe title="Responsive Video" class="tcb-responsive-video" data-code="HGbsrRADDvk" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/HGbsrRADDvk?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent"></iframe></div>
</div>
<div class="thrv_wrapper thrv_text_element">
<p style="text-align: center;" data-css="tve-u-186bfaaf7b4"><strong>Boundary setting is a very essential part of anxiety management.</strong></p>
<h4 class="" style="text-align: center;"><strong><span data-css="tve-u-186bfaaf7ba" style="color: rgb(98, 187, 138);">Do you know what boundaries are?</span></strong></h4>
<h4 class="" style="text-align: center;"><strong><span data-css="tve-u-186bfaaf7bb" style="color: rgb(98, 187, 138);">Do you know why they are needed?</span></strong></h4>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width:651.805;">
<div class="tcb-flex-row v-2 tcb--cols--2">
<div class="tcb-flex-col" data-css="tve-u-184534d46f4" style="">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element">
<p>We can understand boundaries better by looking at the fences, walls and doors around and in our home. These fences protect our home from thieves, wild animals and unwanted visitors. They keep us safe and help us have a peaceful mind.</p>
<p>Fences and doors are boundaries that are needed for our safety.</p>
</div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-184534d22d3"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7964" alt="" data-id="7964" width="396" data-init-width="1080" height="396" data-init-height="1080" title="Fences" loading="lazy" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/11/Fences.png" data-width="396" data-height="396" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/11/Fences.png 1080w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/11/Fences.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/11/Fences.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://thehealinggym.com/wp-content/uploads/2022/11/Fences.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/11/Fences.png 768w" sizes="auto, (max-width: 396px) 100vw, 396px" /></span></div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_text_element">
<h5 class="" style="text-align: center; color: var(--tcb-skin-color-16)  !important; --tcb-applied-color:var$(--tcb-skin-color-16)  !important;"><strong>&nbsp;</strong><strong><span style="--tcb-applied-color: rgb(131, 55, 171)  !important; color: rgb(131, 55, 171);">When we set boundaries in life, it helps us develop better self-esteem, healthier relationships and more happiness in life.</span></strong></h5>
<h5 class="" style="text-align: center; color: var(--tcb-skin-color-16)  !important; --tcb-applied-color:var$(--tcb-skin-color-16)  !important;"><strong><span style="--tcb-applied-color: rgb(131, 55, 171)  !important; color: rgb(131, 55, 171);">&nbsp;Boundaries also help maintain our emotional safety.</span></strong></h5>
<p style="color: var(--tcb-skin-color-16)  !important; --tcb-applied-color:var$(--tcb-skin-color-16)  !important;">Boundaries are limits that we set that helps us differentiate who we are compared to who the other person is.</p>
</div>
<div class="thrv_wrapper thrv-columns" style="--tcb-col-el-width:651.805;">
<div class="tcb-flex-row v-2 tcb--cols--2">
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-184535aa27b" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7765" alt="" data-id="7765" width="318" data-init-width="1000" height="714" data-init-height="714" title="small steps" loading="lazy" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/small-steps.png" data-width="318" data-css="tve-u-184535ac4bb" style=""></span></div>
</div>
</div>
<div class="tcb-flex-col">
<div class="tcb-col">
<div class="thrv_wrapper thrv_text_element">
<p>For example: If my Dad keeps instructing me with what I should eat, how I should walk what I should wear, where I need to go, how I need to be, that may be appropriate if I was 5 years old.</p>
<p>&nbsp;But not appropriate if I am 17 or 19 or 25 years old. If he does this, he is invading my boundaries. And that is not appropriate and not good for me.</p>
</div>
</div>
</div>
</div>
</div>
<div class="thrv_wrapper thrv_text_element">
<p style="text-align: center;"><span style="text-decoration: underline;" data-css="tve-u-184535df29f">Watch the video where I share some more examples about boundaries.</span></p>
<h5 class="" style="color: var(--tcb-color-0)  !important; --tcb-applied-color:var$(--tcb-color-0)  !important; text-align: center;"><strong><span style="color: rgb(131, 55, 171); --tcb-applied-color: var$(--tcb-skin-color-16)  !important;">Learning to say NO is an important aspect of boundary setting.</span></strong></h5>
<p style="color: var(--tcb-skin-color-3)  !important; --tcb-applied-color:var$(--tcb-skin-color-3)  !important; text-align: left;"><span style="--tcb-applied-color: var$(--tcb-skin-color-16)  !important; color: var(--tcb-skin-color-16);">When we are unable to say NO to our loved ones, to our friends to our colleagues, we do not have boundaries with them. </span></p>
<p style="text-align: left; color: var(--tcb-skin-color-3)  !important; --tcb-applied-color:var$(--tcb-skin-color-3)  !important;"><span style="--tcb-applied-color: var$(--tcb-skin-color-16)  !important; color: var(--tcb-skin-color-16);">When we do not have boundaries, we allow others to intrude into our space and allow them to affect us physically, emotionally, we allow them to take up our time.</span></p>
<p style="text-align: left;">Boundaries are limits that we place in our lives, in our relationships. They could be physical or emotional boundaries.</p>
<p style="text-align: left; color: var(--tcb-skin-color-16)  !important; --tcb-applied-color:var$(--tcb-skin-color-16)  !important;"><span style="--tcb-applied-color:var$(--tcb-skin-color-16)  !important;">If someone abuses you in a discussion, that is a sign that boundaries have been crossed. If someone yells at you, uses harsh or uncouth language, those are transgression of boundaries. If someone touches you in an improper way, that is boundary transgress</span>ion.</p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1845357ae27" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7792" alt="" data-id="7792" width="446" data-init-width="1728" height="595" data-init-height="2304" title="Untitled design (3)" loading="lazy" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/Untitled-design-3.png" data-width="446" data-height="595" data-css="tve-u-1845357c6fb" style="" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/Untitled-design-3.png 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/Untitled-design-3.png 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/Untitled-design-3.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/Untitled-design-3.png 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/08/Untitled-design-3.png 1536w" sizes="auto, (max-width: 446px) 100vw, 446px" /></span></div>
<div class="thrv_wrapper thrv_text_element">
<h4 class="" style="text-align: center; color: var(--tcb-skin-color-3)  !important; --tcb-applied-color:var$(--tcb-skin-color-3)  !important;"><strong>People cross boundaries of time too.</strong></h4>
<p>Boundaries &nbsp;of time can also be crossed when well-meaning friends or relatives can take up our time and we are unable to say NO to them. When someone calls us announced and keeps talking without considering whether we were busy with something else, that is a transgression of our boundary.</p>
<h6 class="" style="text-align: center; color: var(--tcb-skin-color-0)  !important; --tcb-applied-color:var$(--tcb-skin-color-0)  !important;"><strong>Setting boundaries is important because that means we are standing up for ourselves, for our needs, for our opinions, for our feelings.&nbsp;</strong></h6>
<p style="text-align: center;">Boundary setting helps us live our lives at our own terms. That helps us value our needs, value our feelings and stand up for ourselves.</p>
</div>
<div class="thrv_wrapper tve_image_caption" data-css="tve-u-1845358786e" style=""><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-7696" alt="" data-id="7696" width="412" data-init-width="1728" height="549" data-init-height="2304" title="Happiness pic3" loading="lazy" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/06/Happiness-pic3-1.png" data-width="412" data-height="549" data-css="tve-u-18453589187" style="" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/06/Happiness-pic3-1.png 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/06/Happiness-pic3-1.png 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2022/06/Happiness-pic3-1.png 768w" sizes="auto, (max-width: 412px) 100vw, 412px" /></span></div>
<div class="thrv_wrapper thrv_text_element">
<p>I hope this was helpful to give you a perspective of what boundaries are and why they are needed.</p>
<p>We all struggle with different aspects of boundary setting. Some of us may struggle with an inability to say NO, some may struggle with not able to share their opinions or feelings.</p>
<p data-css="tve-u-1845356d5ee" style="">What do you struggle with? Do share where you struggle with laying down boundaries in the comments below.</p>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
