.elementor-19 .elementor-element.elementor-element-ffc6698{--display:flex;--min-height:80px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-ffc6698:not(.elementor-motion-effects-element-type-background), .elementor-19 .elementor-element.elementor-element-ffc6698 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-afe7b33 );}.elementor-19 .elementor-element.elementor-element-705b8ec{--display:flex;--min-height:60px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19 .elementor-element.elementor-element-705b8ec:not(.elementor-motion-effects-element-type-background), .elementor-19 .elementor-element.elementor-element-705b8ec > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-afe7b33 );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-95d404c *//* ============ KALGI HEADER ============ */
.kalgi-header-wrapper {
  width: 100%;
  background: #FFFFFF;
  transition: box-shadow 0.3s ease;
}

.kalgi-header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.kalgi-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.kalgi-logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Desktop Nav */
.kalgi-nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kalgi-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #001464;
  text-decoration: none;
  letter-spacing: 0.2px;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.kalgi-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #AD0059;
  transition: width 0.3s ease;
}

.kalgi-nav-link:hover,
.kalgi-nav-link.active {
  color: #AD0059;
}

.kalgi-nav-link:hover::after,
.kalgi-nav-link.active::after {
  width: 100%;
}

/* Call CTA */
.kalgi-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #AD0059;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.kalgi-cta-call:hover {
  background: #7A003E;
  transform: translateY(-1px);
  color: #FFFFFF;
}

.kalgi-cta-icon {
  width: 16px;
  height: 16px;
}

/* Hamburger (hidden on desktop) */
.kalgi-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.kalgi-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #001464;
  transition: all 0.3s ease;
  transform-origin: center;
}

.kalgi-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #AD0059;
}

.kalgi-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.kalgi-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #AD0059;
}

/* Sticky scroll effect */
.elementor-sticky--effects .kalgi-header-wrapper {
  box-shadow: 0 2px 16px rgba(0, 20, 100, 0.08);
}

/* ============ MOBILE / TABLET ============ */
@media (max-width: 1024px) {
  .kalgi-header-container {
    padding: 0 20px;
    height: 70px;
  }

  .kalgi-logo img {
    height: 48px;
  }

  .kalgi-cta-call {
    padding: 10px 16px;
    font-size: 13px;
  }

  .kalgi-cta-call span {
    display: none;
  }

  .kalgi-cta-icon {
    width: 18px;
    height: 18px;
  }

  .kalgi-hamburger {
    display: flex;
  }

  .kalgi-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 20, 100, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .kalgi-nav.is-open {
    max-height: 500px;
    border-top: 1px solid #E5E5E5;
  }

  .kalgi-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .kalgi-nav-list li {
    border-bottom: 1px solid #F0F0F0;
  }

  .kalgi-nav-list li:last-child {
    border-bottom: none;
  }

  .kalgi-nav-link {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
  }

  .kalgi-nav-link::after {
    display: none;
  }

  .kalgi-nav-link:hover,
  .kalgi-nav-link.active {
    background: #F8F5F0;
  }
}

@media (max-width: 480px) {
  .kalgi-header-container {
    padding: 0 16px;
    gap: 12px;
  }

  .kalgi-logo img {
    height: 42px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cfc12cd *//* ============ KALGI MOBILE HEADER ============ */
/* All elements use 'kmob' prefix to avoid ALL conflicts */

.kmob {
  width: 100%;
  position: relative;
  z-index: 999;
}

/* Reduced padding to give the larger logo more space */
.kmob-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 5px 20px !important; 
  height: 64px !important;
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(0, 20, 100, 0.06) !important;
  box-sizing: border-box !important;
}

/* Logo */
.kmob-logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  background: transparent !important;
}

/* Increased Main Logo Size */
.kmob-logo img {
  height: 54px !important; 
  width: auto !important;
  display: block !important;
  max-width: none !important;
}

/* ============ HAMBURGER TOGGLE ============ */
.kmob-toggle {
  width: 44px !important;
  height: 44px !important;
  background: transparent !important;
  border: 1px solid rgba(0, 20, 100, 0.1) !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none !important;
}

.kmob-toggle:active {
  background: rgba(173, 0, 89, 0.08) !important;
  border-color: rgba(173, 0, 89, 0.3) !important;
}

/* The 3 hamburger lines */
.kmob-burger {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 20px !important;
  height: 14px !important;
  pointer-events: none !important;
  background: transparent !important;
}

.kmob-burger-line {
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  background: #001464 !important;
  background-color: #001464 !important;
  border-radius: 2px !important;
  transition: background-color 0.25s ease !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kmob-toggle:active .kmob-burger-line {
  background: #AD0059 !important;
  background-color: #AD0059 !important;
}

/* ============ OVERLAY MENU ============ */
.kmob-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  
  /* FIXED iOS SAFARI BUG: Swapped 100vh for 100% and strict bottom:0 binding */
  bottom: 0 !important; 
  height: 100% !important; 
  width: 100% !important;
  
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
  
  /* FIXED SCROLLING: Forced overflow commands */
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #0A1033 0%, #1A2050 50%, #0A1033 100%) !important;
}

.kmob-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
}

/* Hide the old broken background div completely */
.kmob-overlay-bg {
  display: none !important;
}

/* Top bar (logo + close) */
.kmob-overlay-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  position: relative !important;
  z-index: 2 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-sizing: border-box !important;
}

/* Increased Overlay Menu Logo Size to match */
.kmob-overlay-logo img {
  height: 54px !important; 
  width: auto !important;
  display: block !important;
  max-width: none !important;
}

/* ============ CLOSE BUTTON ============ */
.kmob-close {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  -webkit-tap-highlight-color: transparent !important;
  user-select: none !important;
}

.kmob-close:active {
  background: rgba(173, 0, 89, 0.25) !important;
  border-color: rgba(173, 0, 89, 0.5) !important;
  transform: rotate(90deg) !important;
}

/* CSS-drawn X */
.kmob-x {
  position: relative !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  pointer-events: none !important;
}

.kmob-x-line {
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  border-radius: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kmob-x-line:nth-child(1) {
  transform: translateY(-50%) rotate(45deg) !important;
}

.kmob-x-line:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg) !important;
}

/* ============ NAV LINKS ============ */
.kmob-nav {
  display: flex !important;
  flex-direction: column !important;
  padding: 24px 24px 16px !important;
  
  /* FIXED: Removed flex-grow: 1 to eliminate the giant spacing gap */
  position: relative !important;
  z-index: 2 !important;
  box-sizing: border-box !important;
}

.kmob-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  padding: 14px 0 !important;
  letter-spacing: 0.2px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease, padding-left 0.25s ease;
  background: transparent !important;
}

.kmob-overlay.is-open .kmob-link {
  opacity: 1;
  transform: translateX(0);
}

.kmob-overlay.is-open .kmob-link:nth-child(1) { transition-delay: 0.15s; }
.kmob-overlay.is-open .kmob-link:nth-child(2) { transition-delay: 0.2s; }
.kmob-overlay.is-open .kmob-link:nth-child(3) { transition-delay: 0.25s; }
.kmob-overlay.is-open .kmob-link:nth-child(4) { transition-delay: 0.3s; }
.kmob-overlay.is-open .kmob-link:nth-child(5) { transition-delay: 0.35s; }
.kmob-overlay.is-open .kmob-link:nth-child(6) { transition-delay: 0.4s; }
.kmob-overlay.is-open .kmob-link:nth-child(7) { transition-delay: 0.45s; }

.kmob-link::before {
  content: attr(data-num);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 77, 148, 0.6);
  letter-spacing: 1.5px;
  min-width: 20px;
}

.kmob-link:active {
  color: #FF4D94 !important;
  padding-left: 6px !important;
}

.kmob-link:last-child {
  border-bottom: none !important;
}

/* ============ BOTTOM: CTA + SOCIALS ============ */
.kmob-bottom {
  padding: 20px 24px 32px !important;
  position: relative !important;
  z-index: 2 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  box-sizing: border-box !important;
}

/* CTA button */
.kmob-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0px !important;
  background: #AD0059 !important;
  color: #FFFFFF !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  padding: 16px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(173, 0, 89, 0.35) !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-sizing: border-box !important;
}

.kmob-cta:active {
  background: #7A003E !important;
  transform: scale(0.98) !important;
  color: #FFFFFF !important;
}

.kmob-cta-text {
  font-weight: 600 !important;
}

/* Unfilled Outline Phone Icon */
.kmob-cta::before {
  content: '' !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 10px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  flex-shrink: 0 !important;
}

/* Hide the old HTML span that Elementor breaks */
.kmob-phone-ico, .kmob-phone-ico::before {
  display: none !important;
}

/* Social row */
.kmob-social-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

.kmob-social-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.kmob-socials {
  display: flex !important;
  gap: 10px !important;
}

/* Safely hide raw text labels */
.kmob-social-text {
  display: none !important; 
}

/* Base Social Icon Setup */
.kmob-social {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
  background-size: 20px 20px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* WhatsApp Logo Base64 */
.kmob-social-wa {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMzgwLjkgOTcuMUMzMzkgNTUuMSAyODMuMiAzMiAyMjMuOSAzMmMtMTIyLjQgMC0yMjIgOTkuNi0yMjIgMjIyIDAgMzkuMSAxMC4yIDc3LjMgMjkuNiAxMTFMMCA0ODBsMTE3LjctMzAuOWMzMi40IDE3LjcgNjguOSAyNyAxMDYuMSAyN2guMWMxMjIuMyAwIDIyNC4xLTk5LjYgMjI0LjEtMjIyIDAtNTkuMy0yNS4yLTExNS02Ny4xLTE1N3ptLTE1NyAzNDEuNmMtMzMuMiAwLTY1LjctOC45LTk0LTI1LjdsLTYuNy00LTY5LjggMTguM0w3MiAzNTkuMmwtNC40LTdjLTE4LjUtMjkuNC0yOC4yLTYzLjMtMjguMi05OC4yIDAtMTAxLjcgODIuOC0xODQuNSAxODQuNi0xODQuNSA0OS4zIDAgOTUuNiAxOS4yIDEzMC40IDU0LjEgMzQuOCAzNC45IDU2LjIgODEuMiA1Ni4xIDEzMC41IDAgMTAxLjgtODQuOSAxODQuNi0xODYuNiAxODQuNnptMTAxLjItMTM4LjJjLTUuNS0yLjgtMzIuOC0xNi4yLTM3LjktMTgtNS4xLTEuOS04LjgtMi44LTEyLjUgMi44LTMuNyA1LjYtMTQuMyAxOC0xNy42IDIxLjgtMy4yIDMuNy02LjUgNC4yLTEyIDEuNC0zMi42LTE2LjMtNTQtMjkuMS03NS41LTY2LTUuNy05LjggNS43LTkuMSAxNi4zLTMwLjMgMS44LTMuNyAuOS02LjktLjUtOS43LTEuNC0yLjgtMTIuNS0zMC4xLTE3LjEtNDEuMi00LjUtMTAuOC05LjEtOS4zLTEyLjUtOS41LTMuMi0uMi02LjktLjItMTAuNi0uMi0zLjcgMC05LjcgMS40LTE0LjggNi45LTUuMSA1LjYtMTkuNCAxOS0xOS40IDQ2LjNzMTkuOSA1My43IDIyLjYgNTcuNGMyLjggMy43IDM5LjEgNTkuNyA5NC44IDgzLjggMzUuMiAxNS4yIDQ5IDE2LjUgNjYuNiAxMy45IDEwLjctMS42IDMyLjgtMTMuNCAzNy40LTI2LjQgNC42LTEzIDQuNi0yNC4xIDMuMi0yNi40LTEuMy0yLjUtNS0zLjktMTAuNS02LjZ6Ii8+PC9zdmc+') !important;
}

/* Instagram Logo Base64 */
.kmob-social-ig {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMjI0LjEgMTQxYy02My42IDAtMTE0LjkgNTEuMy0xMTQuOSAxMTQuOXM1MS4zIDExNC45IDExNC45IDExNC45UzMzOSAzMTkuNSAzMzkgMjU1LjkgMjg3LjcgMTQxIDIyNC4xIDE0MXptMCAxODkuNmMtNDEuMSAwLTc0LjctMzMuNS03NC43LTc0LjdzMzMuNS03NC43IDc0LjctNzQuNyA3NC43IDMzLjUgNzQuNyA3NC43LTMzLjYgNzQuNy03NC43IDc0Ljd6bTE0Ni40LTE5NC4zYzAgMTQuOS0xMiAyNi44LTI2LjggMjYuOC0xNC45IDAtMjYuOC0xMi0yNi44LTI2LjhzMTItMjYuOCAyNi44LTI2LjggMjYuOCAxMiAyNi44IDI2Ljh6bTc2LjEgMjcuMmMtMS43LTM1LjktOS45LTY3LjctMzYuMi05My45LTI2LjItMjYuMi01OC0zNC40LTkzLjktMzYuMi0zNy0yLjEtMTQ3LjktMi4xLTE4NC45IDAtMzUuOCAxLjctNjcuNiA5LjktOTMuOSAzNi4xcy0zNC40IDU4LTM2LjIgOTMuOWMtMi4xIDM3LTIuMSAxNDcuOSAwIDE4NC45IDEuNyAzNS45IDkuOSA2Ny43IDM2LjIgOTMuOXM1OCAzNC40IDkzLjkgMzYuMmMzNyAyLjEgMTQ3LjkgMi4xIDE4NC45IDAgMzUuOS0xLjcgNjcuNy05LjkgOTMuOS0zNi4yIDI2LjItMjYuMiAzNC40LTU4IDM2LjItOTMuOSAyLjEtMzcgMi4xLTE0Ny44IDAtMTg0Ljh6TTM5OC44IDM4OGMtNy44IDE5LjYtMjIuOSAzNC43LTQyLjYgNDIuNi0yOS41IDExLjctOTkuNSA5LTEzMi4xIDlzLTEwMi43IDIuNi0xMzIuMS05Yy0xOS42LTcuOC0zNC43LTIyLjktNDIuNi00Mi42LTExLjctMjkuNS05LTk5LjUtOS0xMzIuMXMtMi42LTEwMi43IDktMTMyLjFjNy44LTE5LjYgMjIuOS0zNC43IDQyLjYtNDIuNiAyOS41LTExLjcgOTkuNS05IDEzMi4xLTlzMTAyLjctMi42IDEzMi4xIDljMTkuNiA3LjggMzQuNyAyMi45IDQyLjYgNDIuNiAxMS43IDI5LjUgOSA5OS41IDkgMTMyLjFzMi43IDEwMi43LTkgMTMyLjF6Ii8+PC9zdmc+') !important;
}

/* Hover/Active states */
.kmob-social-wa:active {
  background-color: #25D366 !important;
}

.kmob-social-ig:active {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNMjI0LjEgMTQxYy02My42IDAtMTE0LjkgNTEuMy0xMTQuOSAxMTQuOXM1MS4zIDExNC45IDExNC45IDExNC45UzMzOSAzMTkuNSAzMzkgMjU1LjkgMjg3LjcgMTQxIDIyNC4xIDE0MXptMCAxODkuNmMtNDEuMSAwLTc0LjctMzMuNS03NC43LTc0LjdzMzMuNS03NC43IDc0LjctNzQuNyA3NC43IDMzLjUgNzQuNyA3NC43LTMzLjYgNzQuNy03NC43IDc0Ljd6bTE0Ni40LTE5NC4zYzAgMTQuOS0xMiAyNi44LTI2LjggMjYuOC0xNC45IDAtMjYuOC0xMi0yNi44LTI2LjhzMTItMjYuOCAyNi44LTI2LjggMjYuOCAxMiAyNi44IDI2Ljh6bTc2LjEgMjcuMmMtMS43LTM1LjktOS45LTY3LjctMzYuMi05My45LTI2LjItMjYuMi01OC0zNC40LTkzLjktMzYuMi0zNy0yLjEtMTQ3LjktMi4xLTE4NC45IDAtMzUuOCAxLjctNjcuNiA5LjktOTMuOSAzNi4xcy0zNC40IDU4LTM2LjIgOTMuOWMtMi4xIDM3LTIuMSAxNDcuOSAwIDE4NC45IDEuNyAzNS45IDkuOSA2Ny43IDM2LjIgOTMuOXM1OCAzNC40IDkzLjkgMzYuMmMzNyAyLjEgMTQ3LjkgMi4xIDE4NC45IDAgMzUuOS0xLjcgNjcuNy05LjkgOTMuOS0zNi4yIDI2LjItMjYuMiAzNC40LTU4IDM2LjItOTMuOSAyLjEtMzcgMi4xLTE0Ny44IDAtMTg0Ljh6TTM5OC44IDM4OGMtNy44IDE5LjYtMjIuOSAzNC43LTQyLjYgNDIuNi0yOS41IDExLjctOTkuNSA5LTEzMi4xIDlzLTEwMi43IDIuNi0xMzIuMS05Yy0xOS42LTcuOC0zNC43LTIyLjktNDIuNi00Mi42LTExLjctMjkuNS05LTk5LjUtOS0xMzIuMXMtMi42LTEwMi43IDktMTMyLjFjNy44LTE5LjYgMjIuOS0zNC43IDQyLjYtNDIuNiAyOS41LTExLjcgOTkuNS05IDEzMi4xLTlzMTAyLjctMi42IDEzMi4xIDljMTkuNiA3LjggMzQuNyAyMi45IDQyLjYgNDIuNiAxMS43IDI5LjUgOSA5OS41IDkgMTMyLjFzMi43IDEwMi43LTkgMTMyLjF6Ii8+PC9zdmc+'), linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 60%, #8134AF 95%) !important;
}

/* Small screen tweaks (Updated Logo Heights & Padding) */
@media (max-width: 380px) {
  .kmob-bar { padding: 5px 16px !important; }
  .kmob-overlay-top { padding: 14px 16px !important; }
  .kmob-nav { padding: 20px 20px 16px !important; }
  .kmob-bottom { padding: 18px 20px 28px !important; }
  .kmob-link { font-size: 17px !important; padding: 13px 0 !important; }
  .kmob-cta { font-size: 14px !important; padding: 15px 20px !important; }
  
  .kmob-logo img,
  .kmob-overlay-logo img { height: 48px !important; } 
}/* End custom CSS */