/* ==========================================================================
   BuildMan Header — Fully Responsive Mega Menu + Off-Canvas Mobile Menu
   Optimized for CSS Custom Properties & Breakpoint: 1400px
   ========================================================================== */

:root {
  --blue: #0046BE;
  --white: #fff;
  --yellow: #FFCC00;
  --ink: #010716;
  --muted: #64748b;
  --rule: #e2e8f0;
  --bg-2: #f8fafc;
  --color-surface: rgba(255, 255, 255, 0.75);
  
  /* Layout Settings */
  --header-height: 90px;
}

/* Global / Utility Fixes for Header */
.site-header {
  width: 100%!important;
  max-width:100%!important;
  background: var(--white);
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header.site-header{
    padding: 0!important;
}
.site-header *, .site-header *::before, .site-header *::after {
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1440px!important;
  margin: 0 auto;
  padding: 0 24px;
}








.header-top {
  width:100%!important;
  max-width: 100%!important;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;

}
.header-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header-top-inner a {
  color: var(--white);
  text-decoration: none;
}
.header-top-inner span i, .header-top-inner a i {
  color: #FFCC00!important;
  margin-right: 6px;
}

/* ---------- Header Main Bar Lineup ---------- */
.header-main {
  background: var(--white);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.header-main-inner {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  padding-block: 10px;
}

/* Logo Resizing */
.site-branding.logo img {
  display: block;
  max-height: 55px;
  width: auto;
}
.site-branding.logo .site-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}


.nav-content{
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}



/* ---------- Desktop Navigation Mode (>= 1401px) ---------- */
.desktop-nav {
  display: block;
  height: 100%;
}
.primary-menu { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
  list-style: none; 
  margin: 0; 
  padding: 0;
  height: 100%;
}
.primary-menu .menu-item { 
  position: relative; 
  display: flex;
  align-items: center;
  height: 100%;
}
.primary-menu .menu-link {
  background: none; 
  border: none; 
  cursor: pointer;
  display: inline-flex; 
  align-items: center; 
  gap: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500; 
  color: var(--ink); 
  text-decoration: none;
  padding: 0;

  transition: color .2s ease;
}
.primary-menu .menu-link:hover {
  color: var(--blue);
   background: none; 
}
.primary-menu .menu-link i { 
  font-size: 11px; 
  transition: transform .2s ease; 
  color: var(--muted);
}
.primary-menu .has-mega-menu:hover .menu-link i { 
  transform: rotate(180deg); 
  color: var(--blue);
}

/* ---------- Desktop Mega Menu Layout ---------- */
.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 350px;
    transform: translateX(-50%) translateY(15px);
    width: 720px;
    background: var(--white, #fff);
    border: 1px solid var(--rule, #e2e8f0);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(1, 7, 22, 0.15);
    padding: 28px;
      margin-top:-15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 100;
}
.primary-menu .has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner { 
  display: grid; 
  grid-template-columns: 1fr 280px; 
  gap: 16px 32px; 
}
.mega-menu-eyebrow { 
  grid-column: 1 / 2; 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: .06em; 
  color: var(--blue); 
  text-transform: uppercase; 
}
.mega-menu-columns { 
  grid-column: 1 / 2; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 8px 24px; 
}
.mega-menu-item {
  display: flex; 
  align-items: center; 
  gap: 10px;
  padding: 8px 0; 
  color: var(--ink); 
  text-decoration: none; 
  font-size: 12px!important;
  font-weight: 400!important;
  transition: color .2s ease;
}
.mega-menu-item i { 
  color: var(--blue); 
  width: 18px; 
  text-align: center; 
  font-size: 14px;
}
.mega-menu-item:hover { 
  color: var(--blue); 
}

/* Promo Card Panel */
.mega-menu-promo { 
  grid-column: 2 / 3; 
  grid-row: 1 / 3; 
  background: var(--ink); 
  border-radius: 10px; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
}
.mega-menu-promo-image { 
  height: 130px; 
  background-size: cover; 
  background-position: center; 
  background-color: var(--bg-2);
}
.mega-menu-promo-body { 
  padding: 20px; 
  color: var(--white); 
}
.mega-menu-promo-body h4 { 
  margin: 0 0 6px; 
  font-size: 16px; 
  font-weight: 700;
}
.mega-menu-promo-body p { 
  margin: 0 0 16px; 
  font-size: 13px; 
  color: var(--muted); 
  line-height: 1.4; 
}
.mega-menu-promo-body .btn-outline {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: var(--white); 
  color: var(--ink); 
  font-size: 13px; 
  font-weight: 700;
  padding: 10px 16px; 
  border-radius: 6px; 
  text-decoration: none;
  transition: background .2s ease;
}
.mega-menu-promo-body .btn-outline:hover {
  background: var(--yellow);
}

/* ---------- Desktop Actions Block ---------- */
.header-actions.desktop-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-call {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-call .call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 14px;
}
.header-call .call-text {
  display: flex;
  flex-direction: column;
}
.header-call .call-text small {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .05em;
}
.header-call .call-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.btn.header-cta {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s ease;
}
/*.btn.header-cta:hover {*/
/*  background: var(--ink);*/
/*  color: var(--white);*/
/*}*/

/* ---------- Hide Mobile Controls on Large Screens ---------- */
.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu-panel {
  display: none;
}


/* ==========================================================================
   BREAKPOINT LOGIC: Trigger exactly at and below 1400px
   ========================================================================== */
@media (max-width: 1400px) {
  /* Hide Desktop Items cleanly */
  .desktop-nav,
  .header-call { 
    display: none !important; 
  }
  
        .site-header
 {
        max-width: 100%!important;
    }
    
    .header-main {
  padding: 10px;
}
  
  
  .container {
   padding: 0;
}

  /* Show responsive mobile trigger interface */
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; 
    height: 44px;
    background: var(--bg-2); 
    border: 1px solid var(--rule); 
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px; 
    color: var(--ink);
    transition: background .2s ease;
  }
  .mobile-menu-toggle:hover {
    background: var(--rule);
  }

  /* Off-Canvas Base Elements Drawer Panel */
  .mobile-menu-overlay {
    display: block;
    position: fixed; 
    inset: 0;
    background: rgba(1, 7, 22, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0; 
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 998;
  }
  
  .mobile-menu-panel {
    display: flex;
    position: fixed;
    top: 0; 
    right: 0;
    width: min(380px, 100%);
    height: 100%;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(1, 7, 22, 0.15);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
  }

  /* Handle open active structural body state hooks toggled by JS */
  body.mobile-menu-open { 
    overflow: hidden; 
  }
  body.mobile-menu-open .mobile-menu-overlay { 
    opacity: 1; 
    visibility: visible; 
  }
  body.mobile-menu-open .mobile-menu-panel { 
    transform: translateX(0); 
  }

  /* Mobile Close Element */
  .mobile-menu-close {
    align-self: flex-end;
    width: 40px; 
    height: 40px;
    border: none; 
    background: var(--bg-2); 
    border-radius: 8px;
    font-size: 16px; 
    color: var(--ink);
    cursor: pointer; 
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
  }
  .mobile-menu-close:hover {
    background: var(--rule);
  }

  /* Mobile Panel List Items Layout */
  .mobile-menu-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    flex: 1; 
  }
  .mobile-menu-list > li { 
    border-bottom: 1px solid var(--rule); 
  }
  .mobile-menu-list > li > a,
  .mobile-menu-list .submenu-toggle {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    width: 100%; 
    padding: 18px 4px;
    font-size: 16px; 
    font-weight: 700; 
    color: var(--ink);
    text-decoration: none; 
    background: none; 
    border: none; 
    cursor: pointer;
    font-family: inherit;
    text-align: left;
  }
  .mobile-menu-list > li > a:hover,
  .mobile-menu-list .submenu-toggle:hover {
    color: var(--blue);
    background: none; 

  }
  
  
  .mobile-menu-list > li > a:hover,
.mobile-menu-list > li > a:focus,
.mobile-menu-list > li > a:active,
.mobile-menu-list .submenu-toggle:hover,
.mobile-menu-list .submenu-toggle:focus,
.mobile-menu-list .submenu-toggle:active {
    color: var(--blue);
    background: none !important;
    background-color: transparent !important;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* Prevents gray flicker highlight on iOS/Android */
}
  
  
  
  
  .mobile-menu-list .submenu-toggle i { 
    font-size: 13px; 
    color: var(--muted);
    transition: transform .25s ease; 
  }
  .mobile-menu-list li.has-submenu.is-open .submenu-toggle i { 
    transform: rotate(180deg); 
    color: var(--blue);
  }

  /* Collapsible Accordion Drawer Mechanics */
  .mobile-submenu {
    list-style: none; 
    margin: 0; 
    padding: 0 0 0 16px;
    max-height: 0; 
    overflow: hidden; 
    transition: max-height .3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-menu-list li.has-submenu.is-open .mobile-submenu { 
    max-height: 600px; /* Safe upper constraint boundaries */
  }
  .mobile-submenu li a { 
    display: block; 
    padding: 12px 4px; 
    color: var(--muted); 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 500;
    transition: color .2s ease;
  }
  .mobile-submenu li a:hover {
    color: var(--blue);
  }

  /* Mobile Actions Core Panel buttons */
  .mobile-menu-actions { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    margin-top: auto;
  }
  .mobile-call-btn {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    background: var(--ink); 
    color: var(--white)!important; 
    text-decoration: none;
    padding: 16px; 
    border-radius: 8px; 
    font-weight: 700;
    font-size: 15px;
    transition: background .2s ease;
  }
  .mobile-call-btn i {
    color: var(--yellow);
  }
  .mobile-menu-actions .btn-primary.mobile-cta {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    background: var(--blue); 
    color: var(--white); 
    text-decoration: none;
    padding: 16px; 
    border-radius: 8px; 
    font-weight: 700;
    font-size: 15px;
    transition: background .2s ease;
  }
  /*.mobile-menu-actions .btn-primary.mobile-cta:hover {*/
  /*  background: var(--ink);*/
  /*}*/
}




@media (max-width: 1200px) {
  .site-header
 {
        max-width: 100%!important;
    }
    
    .header-rating{
        display: none;
    }
}






@media (max-width: 800px) {
   .header-cta{
         display: none !important; 
    }
    
      .site-header
 {
        max-width: 100%!important;
    }
    
    .header-top{
        padding-inline: 20px;
    }
    .header-top-inner{
        gap: 8px;
        justify-content: center;
    }

    /*.header-badge{*/
    /*    display: none;*/
    /*}*/
      .header-rating{
        display: none;
    }
    
    
    
   .mobile-menu-toggle menu-toggle {
    width: 34px!important; 
    height: 34px!important;

  }  
    
  }










/* ==========================================================================
   Premium Interface Footer Styles (With Glow Circles)
   ========================================================================== */
.main-footer {
  background-color: var(--blue, #0046BE);
  border-top: 1px solid #e2e8f0;
  padding: 5rem 2rem 2rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* CRITICAL FOR GLOW EFFECT: Keeps circles contained inside footer */
  position: relative;
  overflow: hidden;
}

/* Base styles shared by both background glow circles */
.main-footer::before,
.main-footer::after {
  content: '';
  position: absolute;
  width: 500px; /* Made slightly larger for a bigger glow radius */
  height: 500px;
  pointer-events: none;
  z-index: 0;
  
  /* The secret to a true light glow: hardware-accelerated blur filter */
  filter: blur(60px); 
  -webkit-filter: blur(60px);
}

/* Glow 1: Top Right */
.main-footer::before {
  top: -220px;
  right: -180px;
  /* Increased core opacity to 0.65 for a strong, clear light source */
  background: radial-gradient(circle, rgba(1, 42, 131, 0.65) 0%, rgba(1, 42, 131, 0.2) 50%, transparent 75%);
}

/* Glow 2: Bottom Left */
.main-footer::after {
  bottom: -220px;
  left: -180px;
  /* Increased core opacity to 0.65 for a strong, clear light source */
  background: radial-gradient(circle, rgba(1, 42, 131, 0.65) 0%, rgba(1, 42, 131, 0.2) 50%, transparent 75%);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  
  /* CRITICAL FOR GLOW EFFECT: Brings text elements safely over the backgrounds */
  position: relative;
  z-index: 1;
}

/* Dynamic Logo Styling wrapper */
.f-logo-container {
  display: block;
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.f-logo-container img {
  max-height: 55px;
  width: auto;
  display: block;
}

.f-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-background, #ffffff);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.f-logo span {
  color: #2563eb; /* Theme Accent Blue */
}

/* Main Layout Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 2rem;
  }
}

/* Brand Column Focus */
.f-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.f-desc {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

/* Social Media Badges */
.f-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.f-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--white);
  color: #2563eb;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-social:hover {
  background-color: #FFCC00;
  color: #01050F;
  transform: translateY(-3px);
}

/* Navigation Lists Layout */
.f-col h5 {
  color: var(--white, #fff);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Accent indicator lines below headers */
.f-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 4px;
}

.f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.f-col ul li a {
  color: var(--white, #fff);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

/* Navigation Interactive Tweaks */
.f-menu-icon {
  font-size: 0.9rem;
  width: 22px; /* Uniform width blocks alignment shift */
  color: #FFCC00;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.f-col ul li a:hover {
 
  transform: translateX(4px);
}

/*.f-col ul li a:hover .f-menu-icon {*/
 
/*}*/

/* Specialized styling for Contact List Row icons */
.f-contact-list .contact-accent {
  color: var(--yellow);
}

/* Footer Bottom Layout Split */
.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.f-copy{
    display:flex;
    align-items:center;
    justify-content: center;
    gap:8px;
    flex-wrap:wrap;
}

.f-powered img{
    height:28px; /* Adjust as needed */
    width:auto;
    display:block;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.f-copy {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0 auto;
}

.f-founder {
  font-weight: 500;
  color: var(--color-border, #94a3b8);
}

.f-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.f-legal-links a {
  color: var(--white)!important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.f-legal-links a:hover {
  color: #2563eb;
}

.f-separator {
  color: #cbd5e1;
  font-size: 0.85rem;
  user-select: none;
}

/* Mobile responsive down-scale for glows */
@media (max-width: 767px) {
  .main-footer::before,
  .main-footer::after {
    width: 260px;
    height: 260px;
  }
  .main-footer::before {
    top: -80px;
    right: -80px;
  }
  .main-footer::after {
    bottom: -80px;
    left: -80px;
  }
}







/* ==========================================================================
   Floating Action Widget Styles (Fixed Size & Yellow Lock)
   ========================================================================== */
.jm-floating-wrap {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    font-family: Arial, sans-serif;
}

/* SOCIAL BUTTONS */
.jm-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff !important;
    background:#FFCC00;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 25px;
    font-weight: 600;
    min-width: 58px;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(.9);

    transition: all .35s cubic-bezier(.68,-0.55,.265,1.55);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.15);
}

/* SHOW STATE */
.jm-floating-wrap.active .jm-float-btn {
    
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* DELAY EFFECT */
.jm-floating-wrap.active .telegram {
    transition-delay: .05s;
}

.jm-floating-wrap.active .whatsapp {
    transition-delay: .12s;
}

/* ICONS */
.jm-float-btn i {
    font-size: 22px;
}

/* WHATSAPP */
.whatsapp {
    background: linear-gradient(135deg,#25D366,#128C7E);
}

/* TELEGRAM/CALL */
.telegram {
    background: linear-gradient(135deg,#012A83,#010D28);
}

/* HOVER EFFECT */
.jm-float-btn:hover {
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow:
    0 16px 35px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.2);
}

/* MAIN BUTTON */
.jm-main-btn {
    width: 64px;       /* Increased from 68px to balance internal icon layout scaling */
    height: 64px;      /* Increased from 68px to balance internal icon layout scaling */
    border: none;
    border-radius: 24px;
    cursor: pointer;
    background: #ffcc00; /* Set default background to Yellow */
    color: #0f172a;    /* Dark ink color so the icon remains highly legible over yellow */
    font-size: 22px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.25);
}

/* GLOW */
.jm-main-btn::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(1, 42, 131, 0.4) 0%, transparent 70%);
    top: -20%;
    left: -20%;
    transition: .4s;
}

.jm-main-btn:hover::before {
    transform: scale(1.2);
}

/* BUTTON HOVER */
.jm-main-btn:hover {
    transform: translateY(-4px) rotate(6deg);
    background: #ffdb33; /* Slightly brighter yellow tint on hover */
    color: #0f172a;      /* Explicitly retains icon color contrast */
    box-shadow:
    0 20px 45px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* ACTIVE STATE ROTATION (LOCKS BACKGROUND COLOR TO YELLOW) */
.jm-floating-wrap.active .jm-main-btn {
    transform: rotate(135deg);
    background: #ffcc00 !important; /* Forces background to stay yellow on active panel toggle */
    color: #0f172a !important;      /* Keeps the closing 'X' visible and clean */
}

/* MOBILE */
@media(max-width:767px){
    .jm-floating-wrap {
        right: 18px;
        bottom: 18px;
    }

    .jm-main-btn {
        width: 66px;
        height: 66px;
        border-radius: 20px;
    }

    .jm-float-btn {
        padding: 13px 16px;
        font-size: 14px;
    }
}