.elementor-kit-13{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-1eded2c1:#4054B2;--e-global-color-5ba5760e:#23A455;--e-global-color-74159673:#000;--e-global-color-4f9013a7:#FFF;--e-global-color-3843a94:#F2F8F6;--e-global-color-cf035f8:#0068A5;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-13 h2{font-family:"Montserrat", Sans-serif;}.elementor-kit-13 h3{font-family:"Montserrat", Sans-serif;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.site-header{padding-right:0px;padding-left:0px;}.site-header .site-navigation ul.menu li a{color:#000000;}.site-header .site-navigation .menu li{font-family:"Montserrat", Sans-serif;font-size:16px;font-weight:700;}footer .footer-inner .site-navigation a{color:#000000;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.button-submit {
    margin-left: 250px !important;
}

<script>
jQuery(document).ready(function() {
  if (document.body.classList.contains('elementor-editor-active')) return;
  var attempts = 0;
  var init = setInterval(function() {
    attempts++;
    if (attempts > 50) { clearInterval(init); return; }

    var currentEl = document.querySelector('#currentSlide');
    var totalEl = document.querySelector('.fraction-pagination-total');
    var navEl = document.querySelector('.premium-carousel-nav-fraction');
    if (!currentEl || !totalEl || !navEl) return;

    clearInterval(init);

    if (!document.querySelector('.pa-progress-track')) {
      navEl.insertAdjacentHTML('afterend',
        '<div class="pa-progress-track"><div class="pa-progress-fill"></div></div>'
      );
    }

    var total = parseInt(jQuery.trim(totalEl.textContent)) || 1;

    function update() {
      var current = parseInt(jQuery.trim(currentEl.textContent)) || 1;
      currentEl.textContent = String(current).padStart(2, '0');
      totalEl.textContent = String(total).padStart(2, '0');
      jQuery('.pa-progress-fill').css('width', (current / total * 100) + '%');
    }

    update();

    var observer = new MutationObserver(function() {
      observer.disconnect();
      update();
      observer.observe(currentEl, { childList: true, characterData: true, subtree: true });
    });
    observer.observe(currentEl, { childList: true, characterData: true, subtree: true });

  }, 400);
});
</script>/* End custom CSS */