            <?php
                // If Single or Archive (Category, Tag, Author or a Date based page).
                if ( is_single() || is_archive() ) :
            ?>
                    </div><!-- /.col -->

                    <?php
                        get_sidebar();
                    ?>

                </div><!-- /.row -->
            <?php
                endif;
            ?>
        </main><!-- /#main -->
        <footer id="footer">
            <div class="container">
            <?php echo do_shortcode('[elementor-template id="6305"]'); ?>   
            </div>
            

            
        </footer><!-- /#footer -->
    </div><!-- /#wrapper -->


<script>
    document.addEventListener("DOMContentLoaded", function() {
    var callButton = document.getElementById("btn-recevoir-appel");

    if (callButton) {
        callButton.addEventListener("click", function() {
            window.dataLayer = window.dataLayer || [];
            window.dataLayer.push({
                'event': 'call_request',
                'event_category': 'Engagement',
                'event_action': 'Click',
                'event_label': 'Recevoir un appel',
                'user_status': 'lead' // Optionnel : peut être 'client', 'prospect', etc.
            });
        });
    }
});
</script>



<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://load.ssdata.airagent.fr/ns.html?id=GTM-M38J9HCZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->


    <?php
        wp_footer();
    ?>



 <script>
(function () {
  const primaryDomain = 'airagent.fr';
  const appDomain = 'app.airagent.fr';
  const UTM_KEYS = ['utm_source','utm_medium','utm_campaign','utm_term','utm_content','gclid','utm_group','device','gad_campaignid'];
  const DATA_KEY = 'aa_tracking';
  const AFF_KEY = 'aff_ref';

  const qs = new URLSearchParams(window.location.search);
  const hashQs = new URLSearchParams((window.location.hash || '').replace(/^#/, ''));
  const mergedQs = new URLSearchParams();
  for (const [k,v] of qs) mergedQs.set(k,v);
  for (const [k,v] of hashQs) if (!mergedQs.has(k)) mergedQs.set(k,v);

  function readCookie(name){
    return document.cookie.split('; ').find(c=>c.startsWith(name+'='))?.split('=')[1];
  }
  function setCookie(name,value,days,domain){
    const d = new Date(); d.setTime(d.getTime()+days*24*60*60*1000);
    document.cookie = `${name}=${encodeURIComponent(value)}; expires=${d.toUTCString()}; path=/; domain=.${domain}; SameSite=Lax`;
  }

  // 1) Capture UTMs
  const data = JSON.parse(localStorage.getItem(DATA_KEY) || '{}');
  UTM_KEYS.forEach(k=>{
    if (mergedQs.has(k) && !(k==='utm_source' && mergedQs.get(k)==='direct')) data[k]=mergedQs.get(k);
  });

  // 2) Infer utm_source if missing
  if (!data.utm_source) {
    try{
      const ref = document.referrer;
      if (ref && !ref.includes(primaryDomain)) {
        const h = new URL(ref).hostname.toLowerCase();
        if (h.includes('google')) { const ads = mergedQs.has('gclid') || mergedQs.has('gad_campaignid'); data.utm_source = ads?'googleads':'google'; data.utm_medium = ads?'cpc':'organic'; }
        else if (h.includes('facebook')||h.includes('fb.com')) { data.utm_source='facebook'; data.utm_medium='social'; }
        else if (h.includes('bing')) { data.utm_source='bing'; data.utm_medium='organic'; }
        else if (h.includes('yahoo')) { data.utm_source='yahoo'; data.utm_medium='organic'; }
        else if (h.includes('duckduckgo')) { data.utm_source='duckduckgo'; data.utm_medium='organic'; }
        else if (h.includes('twitter')||h.includes('x.com')) { data.utm_source='twitter'; data.utm_medium='social'; }
        else if (h.includes('linkedin')) { data.utm_source='linkedin'; data.utm_medium='social'; }
        else if (h.includes('instagram')) { data.utm_source='instagram'; data.utm_medium='social'; }
        else if (h.includes('youtube')||h.includes('youtu.be')) { data.utm_source='youtube'; data.utm_medium='social'; }
        else { data.utm_source='other'; data.referrer=ref; }
      } else { data.utm_source='direct'; data.referrer='direct'; }
    } catch(e){ data.utm_source='direct'; data.referrer='direct'; }
  }

  // 3) Capture affiliate token robustly
  let affRef =
    mergedQs.get('ref') ||
    mergedQs.get('affiliate') ||
    mergedQs.get('tracking') ||
    mergedQs.get('trackingURL') ||
    localStorage.getItem(AFF_KEY) ||
    readCookie('aff_ref') || readCookie('affiliate_ref') || readCookie('aa_aff_ref') || '';

  // From old LS format "?ref=TOKEN&..."
  if (!affRef) {
    const old = localStorage.getItem('aff_tracking') || '';
    if (old.startsWith('?')) { const p = new URLSearchParams(old); affRef = p.get('ref') || p.get('tracking') || p.get('trackingURL') || ''; }
  }
  // From referrer path: https://aff.airagent.fr/ref/<TOKEN> (or affiliation.airagent.fr)
  if (!affRef && document.referrer) {
    try {
      const r = new URL(document.referrer);
      if (/(\.|^)aff(iliation)?\.airagent\.fr$/i.test(r.hostname)) {
        const m = r.pathname.match(/\/ref\/([^\/?#]+)/i);
        if (m) affRef = decodeURIComponent(m[1]);
      }
    } catch(e){}
  }

  if (affRef) {
    data.ref = affRef;                    // keep on-site as ?ref=
    localStorage.setItem(AFF_KEY, affRef);
    setCookie('aff_ref', affRef, 30, primaryDomain); // make it available across subdomains
  }
  localStorage.setItem(DATA_KEY, JSON.stringify(data));

  function applySiteParams(url){
    const stored = JSON.parse(localStorage.getItem(DATA_KEY) || '{}');
    UTM_KEYS.forEach(k=>{
      if (stored[k] && !(k==='utm_source' && stored[k]==='direct')) url.searchParams.set(k, stored[k]);
    });
    const token = localStorage.getItem(AFF_KEY);
    if (token) url.searchParams.set('ref', token);
  }

function rewriteLinks(){
  const token = localStorage.getItem(AFF_KEY);
  const stored = JSON.parse(localStorage.getItem(DATA_KEY) || '{}');

  document.querySelectorAll('a[href]').forEach(a=>{
    try{
      const url = new URL(a.getAttribute('href'), window.location.origin);

      // --- Internal links (airagent.fr) ---
      if (url.hostname === primaryDomain || url.hostname.endsWith(`.${primaryDomain}`)) {
        if (token) {
          // ✅ Affiliate traffic → keep ONLY ref
          url.search = ''; 
          url.searchParams.set('ref', token);
        } else {
          // ✅ Non-affiliate traffic → keep ONLY UTMs
          url.search = '';
          UTM_KEYS.forEach(k=>{
            if (stored[k] && !(k==='utm_source' && stored[k]==='direct')) {
              url.searchParams.set(k, stored[k]);
            }
          });
        }
        a.href = url.toString();
        return;
      }

      // --- App links (app.airagent.fr) ---
      if (url.hostname === appDomain) {
        if (token) {
          // ✅ Affiliate case: /signup/<token> only
          if (url.pathname === '/' || url.pathname === '/signup' || url.pathname === '/signup/') {
            url.pathname = `/signup/${encodeURIComponent(token)}`;
            url.search = ''; // remove UTMs
          } else if (!/\/signup\/[^/]+/i.test(url.pathname)) {
            url.search = '';
            url.searchParams.set('ref', token);
          }
        } else {
          // ✅ Non-affiliate case: UTMs only
          url.search = '';
          UTM_KEYS.forEach(k=>{
            if (stored[k] && !(k==='utm_source' && stored[k]==='direct')) {
              url.searchParams.set(k, stored[k]);
            }
          });
        }
        a.href = url.toString();
      }
    } catch(e){}
  });
}



  function persistInHistory(){
    const stored = JSON.parse(localStorage.getItem(DATA_KEY) || '{}');
    const cur = new URL(window.location.href);
    let changed = false;
    UTM_KEYS.forEach(k=>{
      if (stored[k] && !(k==='utm_source' && stored[k]==='direct') && !cur.searchParams.has(k)) { cur.searchParams.set(k, stored[k]); changed = true; }
    });
    const token = localStorage.getItem(AFF_KEY);
    if (token && !cur.searchParams.has('ref')) { cur.searchParams.set('ref', token); changed = true; }
    if (changed) window.history.replaceState({}, '', cur.toString());
  }

  document.addEventListener('DOMContentLoaded', () => {
    rewriteLinks();
    persistInHistory();
    if (qs.has('utm_source') && qs.get('utm_source')==='direct') {
      qs.delete('utm_source');
      const newUrl = qs.toString() ? `${window.location.pathname}?${qs.toString()}` : window.location.pathname;
      window.history.replaceState({}, '', newUrl);
    }
    if (window.console && localStorage.getItem(AFF_KEY)) {
      console.log('[AA Tracking] ref token:', localStorage.getItem(AFF_KEY));
    }
  });

  new MutationObserver(rewriteLinks).observe(document.body, { childList:true, subtree:true });
  window.addEventListener('popstate', persistInHistory);
})();
</script>



<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
    // Function to get URL parameter by name
    function getParameterByName(name, url = window.location.href) {
        name = name.replace(/[\[\]]/g, '\\$&');
        var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
            results = regex.exec(url);
        if (!results) return null;
        if (!results[2]) return '';
        return decodeURIComponent(results[2].replace(/\+/g, ' '));
    }

    // Get the 'campaign' parameter from the URL
    var campaignValue = getParameterByName('campaign');

    // If the campaign parameter exists, populate the hidden input field
    if (campaignValue) {
        var campaignInput = document.getElementById('campaign');
        if (campaignInput) {
            campaignInput.value = campaignValue; // Set the value of the hidden input
        }
    }
});
</script>




<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
    jQuery('.stickhead').hide();
    
    let lastScrollTop = 0;
    let isSticky = false;
    
    function handleScroll() {
        var scroll = jQuery(this).scrollTop();
        var $mainHeader = jQuery(".mainheader");
        var $stickHead = jQuery('.stickhead');
        var $header = jQuery('#header');
        
        if (scroll >= 150 && !isSticky) {
            isSticky = true;
            $mainHeader.addClass("stickyheader");
            $stickHead.stop(true, true).fadeIn(300);
            $header.stop(true, true).fadeOut(300);
        } else if (scroll < 150 && isSticky) {
            isSticky = false;
            $mainHeader.removeClass("stickyheader");
            $stickHead.stop(true, true).fadeOut(300);
            $header.stop(true, true).fadeIn(300);
        }
    }
    
    jQuery(window).on('scroll', function() {
        requestAnimationFrame(handleScroll);
    });
});
</script>

<style type="text/css">
  .stickhead, #header {
    transition: opacity 0.2s ease-in-out;
}
</style>


<script type="text/javascript">
        (function() {
  const pricingSliders = document.querySelectorAll(".pricing-slider");

  if (pricingSliders.length > 0) {
    for (let i = 0; i < pricingSliders.length; i++) {
      const pricingSlider = pricingSliders[i];

      // Build the input object
      const pricingInput = {
        el: pricingSlider.querySelector("input")
      };
      pricingInput.data = JSON.parse(
        pricingInput.el.getAttribute("data-price-input")
      );
      pricingInput.currentValEl = pricingSlider.querySelector(
        ".pricing-slider-value"
      );
      pricingInput.thumbSize = parseInt(
        window
          .getComputedStyle(pricingInput.currentValEl)
          .getPropertyValue("--thumb-size"),
        10
      );

      // Build the output array
      const pricingOutputEls = pricingSlider.parentNode.querySelectorAll(
        ".pricing-item-price"
      );
      const pricingOutput = [];
      for (let i = 0; i < pricingOutputEls.length; i++) {
        const pricingOutputEl = pricingOutputEls[i];
        const pricingOutputObj = {};
        pricingOutputObj.currency = pricingOutputEl.querySelector(
          ".pricing-item-price-currency"
        );
        pricingOutputObj.amount = pricingOutputEl.querySelector(
          ".pricing-item-price-amount"
        );
        pricingOutputObj.after = pricingOutputEl.querySelector(
          ".pricing-item-price-after"
        );
        pricingOutputObj.data = JSON.parse(
          pricingOutputEl.getAttribute("data-price-output")
        );
        pricingOutput.push(pricingOutputObj);
      }

      pricingInput.el.setAttribute("min", 1);
      pricingInput.el.setAttribute("max", 9);
      !pricingInput.el.getAttribute("value") &&
        pricingInput.el.setAttribute("value", 0);

      handlePricingSlider(pricingInput, pricingOutput);
      window.addEventListener("input", function() {
        handlePricingSlider(pricingInput, pricingOutput);


      });

        jQuery(".pricing-slider-value").click(function(){         
        const rangeValue = parseInt(jQuery(this).attr('data-value'));
        jQuery('#myRange').val(rangeValue).change();
        handlePricingSlider(pricingInput, pricingOutput);
        }); 

    }
  }

  function handlePricingSlider(input, output) {
    // output the current slider value
    if (input.currentValEl)
      input.currentValEl.innerHTML = input.data[input.el.value];
    // update prices
    for (let i = 0; i < output.length; i++) {
      const outputObj = output[i];
      if (outputObj.currency)
        outputObj.currency.innerHTML = outputObj.data[input.el.value][0];
      if (outputObj.amount)
        outputObj.amount.innerHTML = outputObj.data[input.el.value][1];
      if (outputObj.after)
        outputObj.after.innerHTML = outputObj.data[input.el.value][2];
    }
    handleSliderValuePosition(input);
  }

  function handleSliderValuePosition(input) {
    const multiplier = input.el.value / input.el.max;
    const thumbOffset = input.thumbSize * multiplier;
    const priceInputOffset =
      (input.thumbSize - input.currentValEl.clientWidth) / 2;
    input.currentValEl.style.left =
      input.el.clientWidth * multiplier - thumbOffset + priceInputOffset + "px";
  }
})();


     jQuery(document).ready(function(){
            jQuery(".12months").hide();
            jQuery(".24months").hide();
            jQuery(".months11").click(function(){
                 jQuery(".months_package").show();
                 jQuery(".24months").hide();
                 jQuery(".12months").hide();
                 jQuery(".months11").addClass("acitves");
                 jQuery(".months22").removeClass("acitves");
                 jQuery(".months33").removeClass("acitves");
                 });
                 jQuery(".months22").click(function(){
                 jQuery(".12months").show();
                 jQuery(".months_package").hide();
                  jQuery(".24months").hide();
                  jQuery(".months22").addClass("acitves");
                  jQuery(".months11").removeClass("acitves");
                  jQuery(".months33").removeClass("acitves");
                });
                 jQuery(".months33").click(function(){
                 jQuery(".24months").show();
                 jQuery(".months_package").hide();
                 jQuery(".12months").hide();
                 jQuery(".months33").addClass("acitves");
                 jQuery(".months22").removeClass("acitves");
                 jQuery(".months11").removeClass("acitves");
                });
        });

jQuery(window).scroll(function() {   
jQuery(".readingProgressbar").hide(); 
    var scroll = jQuery(window).scrollTop();

     if (scroll >= 500) {
        //clearHeader, not clearheader - caps H
        //jQuery("#block-14").addClass("sticky_sidebar");
        jQuery(".readingProgressbar").addClass('readingProgressbar2');
    }else{
        //jQuery("#block-14").removeClass("sticky_sidebar");
        jQuery(".readingProgressbar").removeClass('readingProgressbar2');
    }
}); //missing );
 
    </script>
<script type="text/javascript">
  jQuery(document).ready(function($){
  let index = 0;
  let delay = 9000;
  let $tabs = $('.tab_wrap > .elementor-widget-wrap');
  let $contents = $('.content_wrap > .elementor-widget-wrap');
  let interval = setInterval(rotate, delay);

  $('.tabFist').addClass('active');
  $('.tab_wrap .tab').each(function(i){
    $(this).click(function(){
      index = i;
      switchElement();
   } );
  });

  function rotate(){
    index++;
    if(index >= $tabs.children('.tab').length){
      index = 0;
    }
    switchElement();
  }

  function switchElement(){
    clearInterval(interval);
    $('.tab_wrap > .elementor-widget-wrap .tab').removeClass('active');
    $('.content_wrap > .elementor-widget-wrap .box').fadeOut(300);
    let $tab = $tabs.children('.tab').eq(index);
    $tab.addClass('active');
    $tabs.children('.tab').eq(index);
    $tab.addClass('active');
    $contents.children('.box').eq(index).delay(300).fadeIn(300);
    interval = setInterval(rotate, delay);
  }

 });
 

  jQuery(document).ready(function($){
  let index1 = 0;
  let delay1 = 9000;
  let $tabs1 = $('.tab_wrap1 > .elementor-widget-wrap');
  let $contentss = $('.content_wrap1 > .elementor-widget-wrap');
  let interval1 = setInterval(rotates, delay1);

  $('.tabFist').addClass('active');
  $('.tab_wrap1 .tab').each(function(i){
    $(this).click(function(){
      index1 = i;
      switchElement1();
   } );
  });

  function rotates(){
    index1++;
    if(index1 >= $tabs1.children('.tab').length){
      index1 = 0;
    }
    switchElement1();
  }

  function switchElement1(){
    clearInterval(interval1);
    $('.tab_wrap1 > .elementor-widget-wrap .tab').removeClass('active');
    $('.content_wrap1 > .elementor-widget-wrap .box').fadeOut(300);
    let $tab1 = $tabs1.children('.tab').eq(index1);
    $tab1.addClass('active');
    $tabs1.children('.tab').eq(index1);
    $tab1.addClass('active');
    $contentss.children('.box').eq(index1).delay(300).fadeIn(300);
    interval1 = setInterval(rotates, delay1);
  }

 });



  jQuery(document).ready(function($){
  let index2 = 0;
  let delay2 = 9000;
  let $tabs2 = $('.tab_wrap2 > .elementor-widget-wrap');
  let $contents2 = $('.content_wrap2 > .elementor-widget-wrap');
  let interval2 = setInterval(rotate2, delay2);

  $('.tabFist').addClass('active');
  $('.tab_wrap2 .tab').each(function(i){
    $(this).click(function(){
      index2 = i;
      switchElement2();
   } );
  });

  function rotate2(){
    index2++;
    if(index2 >= $tabs2.children('.tab').length){
      index2 = 0;
    }
    switchElement2();
  }

  function switchElement2(){
    clearInterval(interval2);
    $('.tab_wrap2 > .elementor-widget-wrap .tab').removeClass('active');
    $('.content_wrap2 > .elementor-widget-wrap .box').fadeOut(300);
    let $tab2 = $tabs2.children('.tab').eq(index2);
    $tab2.addClass('active');
    $tabs2.children('.tab').eq(index2);
    $tab2.addClass('active');
    $contents2.children('.box').eq(index2).delay(300).fadeIn(300);
    interval2 = setInterval(rotate2, delay2);
  }

 });

  jQuery(".betterdocs-search-category option").text(function () {
    return jQuery(this).text().replace("All Categories", "Toutes Catégories"); 
  });
   jQuery(".popular-search-title").text(function () {
    return jQuery(this).text().replace("Popular Search", "Recherche populaire"); 
  });
    
document.addEventListener('DOMContentLoaded', function() {
  // Get all elements
  var elements = document.querySelectorAll('a.elementor-button');

  // Remove the target attribute
  elements.forEach(function(element) {
    element.removeAttribute('target');
  });
});

</script>




     <style type="text/css">
.readingProgressbar{
    display: none !important;
}
.readingProgressbar2{
    display: block !important;
}
.range{
    z-index: 0;
}
@media(max-width: 990px){
    .readingProgressbar2{
    display: none !important;
}
}
#range_slide {
    width:66%;
    height: 20px;
    -webkit-appearance: none;
    background: #fff;
    outline: none;
    border-radius: 15px;
    overflow: hidden;
 }
 footer{
      position: relative;
    z-index: 1;
 }
 .pricing-item-header img{
  width: 90px;
 }
#range_slide::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height:20px;
  border-radius: 50%;
  background: #9585f4;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: -507px 0 0 500px #9585f4;
}

.form-slider span {
  display: block;
    text-align: center;
    margin-bottom: 16px;
    color: #b3bdc4;
    font-size: 22px;
        padding-bottom: 50px;
}

.pricing-slider {
  margin-bottom: 48px;
}

.pricing-slider {
 max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}
.pricing-slider label{
  width:70%;
    margin: auto;
    display: table;
}
.pricing-slider input {
  width: 100%;
}
.pricing-slider .pricing-slider-value {
  display: inline-block;
      padding: 0px 30px;
}
.remoclass{
  display: none !important;
}
.pricing-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -12px;
  margin-left: -12px;
  margin-top: -12px;
}
.pricing-item {
  flex-basis: 30%;
  max-width: 30%;
  box-sizing: content-box;
  padding: 12px;
}
.pricing-item-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  padding: 25px 50px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  border-top: 4px solid rgb(179, 189, 196);
  box-shadow: rgb(0 32 37 / 24%) 0px 8px 40px -24px;
}
.pricing .pricing-item:nth-child(1) .pricing-item-inner{
      border-top: 4px solid #c4b5f8;
}
.pricing .pricing-item:nth-child(1) .pricing-item-features-list li:before{
  color: #c4b5f8;
}
.pricing .pricing-item:nth-child(1) .pricing-item-features-list li:after{
  color: #c4b5f8;
}
.pricing .pricing-item:nth-child(2) .pricing-item-features-list li:before{
  color: #9585f4;
}
.pricing .pricing-item:nth-child(2) .pricing-item-features-list li:after{
  color: #9585f4;
}
.pricing .pricing-item:nth-child(2) .pricing-item-inner{
      border-top: 4px solid #9585f4;
}
.pricing-item-title {
      font-weight: 800;
    font-size: 28px;
    color: #000;
    padding-top: 10px;
}
.pricing-item-price {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
}
.pricing-item-price-amount {
  font-size: 21px;
  line-height: 48px;
  font-weight: 500;
  color: #191e2a;
}
.pricing-item-price-currency{
  color: #191e2a;
  padding: 0px 5px;
}
.pricing-item-price-after{
  color: #191e2a;
}
.pricing-item-features-list {
  list-style: none;
  padding: 0;
}
.pricing-item-features-list li {
  margin-bottom: 0;
  padding:2px 0;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-family: Quicksand,sans-serif;
  font-weight: 400;
}
.pricing-item-features-list .fas::before {
        content: "\f00c";
    position: relative;
    top: 4px;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 10px;

}
.range-labels li::before {
    position: absolute;
    top: 41px;
    right: 0;
    left: 0;
    content: "";
    margin: 0 auto;
    width: 3px;
    height: 8px;
    background: #21273b;
}
.pricing-item-features-list .fas:after{
  display: none !important;
}
.pricing-item-features-list li::after {
      content: "v";
    display: block;
    width: 14px;
    height: 24px;
    margin-right: 12px;
    background-repeat: no-repeat;
    -webkit-box-ordinal-group: 0;
    order: -1;
    font-size: 16px;
    top: -2px;
    position: relative;
    left: 4px;
 }
.selectpakcage{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    display: block;
    text-align: center;
    z-index: 999;
    background: #fff;
    box-shadow:rgb(0 32 37) 0px 8px 40px -24px;
    padding: 19px;
}
#tableform{
    display: none;
}
.selectpakcage li{
    display: inline-block;
}
.selectpakcage li a{
     padding: 8px 20px;
    margin: 0px -3px;
    border: 1px solid rgb(229, 229, 229);
    color: #63737e;
        font-weight: 600;
    font-size: 14px;
    width: 136px;
    height: 42px;
    display: block;
    line-height:25px;
}
.selectpakcage li:nth-child(1) a{
   border-radius:3px 0px 0px 3px;
}
.selectpakcage li:nth-child(3) a{
   border-radius: 0px 3px 3px 0px;
   position: relative;
    left: 2px;
}
.selectpakcage li a:hover{
  background: #e3e7e9;
  color: #131b20;
}
.selectpakcage .acitves{
background: #e3e7e9;
}
.pricing-item-cta a{
  background: #21293d;
    color: #fff;
    padding: 10px 30px;
    margin: 12px 0px;
    display: inline-block;
    border-radius: 4px;

}
.pricing-item-content p{
font-weight: 400;
    margin: 0px;
    font-size: 14px;
}
.mainpricing{
z-index: 1;
}
.newpriceper{
  font-size: 14px;
  color: #7A7A7A;
}
.newpriceper .pricing-item-price-amount{
  font-size: 14px;
  color: #7A7A7A;
}
@media(max-width: 768px){
  .pricing-slider label{
    width: 80%;
    margin: auto;
  }
}
    </style>
    <style type="text/css">
  .maintabss .tab .elementor-button-wrapper:after{
    content: '';
    width: 4px;
    height: 50px;
    background: #ccc;
    left:0px;
    position: absolute;
    top: 0;
    z-index: -1;
 
  }
  .maintabss .tab a:before{
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid #4f36e7;
    left: -6px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    top: -16px;
  }
  .tab.active a:before{
     background: #4f36e7 !important;
  }
  .maintabss .tab a{
   padding: 0px !important;
    width: auto !important;
    padding-left: 16px !important;
    padding-top: 5px !important;
    padding-bottom: 37px !important;
    position: relative;
    text-align: left;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
  }
  .tab.active a:after{
   /*transform: scalex(1);
   transform-origin:  0% 50%; 
   transition: transform 5000ms ease-in*/;
  content: "";
  width: 4px;
  height: 0;
  background: #4f36e7;
  left:0px;
  position: absolute;
  top: 0;
  animation: lineup 11s forwards;
  }
  .tab.active a:after{left: 0%; top: 0px; animation-delay: 0s}

@keyframes lineup {100% {top: 0px; height: 50px}}
@keyframes linedown {0% {height:50px}}

  .maintabss .tab a{
    background: none !important;
  }
  .tab.active a{
    color: #000;
  }
  .maintabss .box{
    display: none;
  }
  .box.first_box{
    display: block;
  }
  .maintabss lottie-player{
    width: 70% !important;
    margin: auto;
  }
  @media(max-width: 768px){
    .pricing-item {
    flex-basis: 100%;
    max-width: 100%;
    }
    .pricing-slider .pricing-slider-value {
         padding: 0px 6px;
    font-size: 10px;
  }
  #range_slide {
    width: 100%;
  }
  }
</style>
<div id="hmsas-script-loader"></div><script id="hmsas-22-domain-name" hmsas-22-data-name="5798001738564429-1" type="text/javascript" src="https://insights.airagent.fr/analytics/script-loader/5798001738564429-1"></script>
</body>
</html>
