/* =========================================================
   Balloon Decoration Mumbai — Custom Stylesheet
   ========================================================= */

:root{
  --pink: #ff2e93;
  --pink-light: #ff8fc2;
  --purple: #7b2cbf;
  --purple-light: #c9a3ff;
  --orange: #ffa41b;
  --gold: #ffd166;
  --teal: #06b6a4;
  --ink: #2b1b3d;
  --ink-soft: #5a4a70;
  --cream: #fff9f3;
  --cream-deep: #fff3e9;
  --white: #ffffff;

  --gradient-brand: linear-gradient(120deg, var(--pink) 0%, var(--purple) 100%);
  --gradient-warm: linear-gradient(120deg, var(--orange) 0%, var(--pink) 100%);

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 45px -20px rgba(123, 44, 191, 0.35);
  --shadow-card: 0 12px 30px -12px rgba(43, 27, 61, 0.18);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; scroll-padding-top: 90px; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-text, .footer-brand span{
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
}

a{ text-decoration: none; }

img{ max-width: 100%; height: auto; display: block; }

::selection{ background: var(--pink-light); color: var(--ink); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}

.section-padding{ padding-top: 90px; padding-bottom: 90px; }

@media (max-width: 767.98px){
  .section-padding{ padding-top: 56px; padding-bottom: 56px;        overflow-x: hidden; }
}

.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pink);
  margin-bottom: 10px;
}
.section-eyebrow::before{
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient-warm);
  display: inline-block;
}
.section-eyebrow-light{ color: var(--gold); }
.section-eyebrow-light::before{ background: var(--gold); }

.section-title{
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  margin-bottom: 18px;
}

.section-text{
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading-wrap{ max-width: 680px; margin-bottom: 50px; }

/* Buttons */
.btn-cta-primary{
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px -8px rgba(255, 46, 147, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-primary:hover, .btn-cta-primary:focus-visible{
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(255, 46, 147, 0.65);
  color: var(--white);
}

.btn-cta-outline{
  border: 2px solid var(--white);
  color: var(--white);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
  transition: all 0.25s ease;
}
.btn-cta-outline:hover, .btn-cta-outline:focus-visible{
  background: var(--white);
  color: var(--pink);
}

.btn-cta-header{
  background: var(--gradient-brand);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px -6px rgba(255, 46, 147, 0.5);
}
.btn-cta-header:hover{ transform: translateY(-2px); color: var(--white) !important; }

.btn-cta-white{
  background: var(--white);
  color: var(--pink);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.btn-cta-white:hover{ transform: translateY(-3px); color: var(--pink); }

.btn-cta-dark{
  background: var(--ink);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  padding: 11px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.btn-cta-dark:hover{ transform: translateY(-3px); color: var(--white); background: #1c1130; }

.btn-service-cta{
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.btn-service-cta:hover{
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar{
  background: var(--ink);
  font-size: 0.85rem;
}
.top-bar a{ transition: opacity 0.2s ease; }
.top-bar a:hover{ opacity: 0.75; color: var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  background: rgba(255, 249, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 44, 191, 0.08);
  z-index: 1050;
}

.brand-text{ font-size: 1.35rem; line-height: 1.1; }
.brand-accent{ color: var(--pink); }

.nav-link{
  font-weight: 500;
  color: var(--ink) !important;
  position: relative;
  padding: 8px 4px !important;
  margin: 0 6px;
}
.nav-link::after{
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after{ transform: scaleX(1); }
.nav-link:hover{ color: var(--pink) !important; }

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero-section{ position: relative; margin-top: -1px; }

.hero-section .carousel-item img{
  height: 88vh;
  min-height: 520px;
  max-height: 780px;
  object-fit: cover;
  width: 100%;
}

.hero-section .carousel-item::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(43,27,61,0.82) 0%, rgba(43,27,61,0.55) 45%, rgba(43,27,61,0.15) 80%);
  z-index: 1;
}

.carousel-caption-custom{
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
  max-width: 640px;
  text-align: left;
  color: var(--white);
}

.carousel-caption-custom .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: var(--gold);
}

.carousel-caption-custom h1{
  color: var(--white);
  font-size: clamp(1.9rem, 1.3rem + 3vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeUp 0.9s ease both;
}

.lead-text{
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-btns{ display: flex; gap: 16px; flex-wrap: wrap; }

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(24px); }
  to{ opacity: 1; transform: translateY(0); }
}

.carousel-indicators [data-bs-target]{
  width: 10px; height: 10px; border-radius: 50%; margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
}
.carousel-indicators .active{ background-color: var(--pink); }

.carousel-control-prev, .carousel-control-next{ width: 6%; z-index: 3; }

@media (max-width: 767.98px){
  .hero-section .carousel-item img{ height: 78vh; min-height: 460px; }
  .carousel-caption-custom{ left: 5%; right: 5%; max-width: none; }
}

/* =========================================================
   HIGHLIGHT / SPECIAL CREATIVITY STRIP
   ========================================================= */
.highlight-strip{
  background: var(--white);
  padding: 44px 0;
  position: relative;
  /* margin-top: -46px; */
  z-index: 4;
}

.highlight-item{
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  height: 100%;
  border: 1px solid rgba(123,44,191,0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-item:hover{ transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.highlight-item i{
  font-size: 1.9rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}
.highlight-item h3{ font-size: 1.05rem; margin-bottom: 4px; }
.highlight-item p{ font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   MARQUEE / RUNNING STRIP
   ========================================================= */
.marquee-strip{
  background: var(--gradient-brand);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.marquee-track span{
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.marquee-track span i{ color: var(--gold); font-size: 1rem; }

@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; }
}

/* =========================================================
   ABOUT US
   ========================================================= */
.about-img-wrap{ position: relative; }

.about-badge{
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.about-badge .badge-number{ font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.about-badge .badge-label{ font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 991.98px){
  .about-badge{ left: 14px; bottom: -16px; padding: 14px 18px; }
}

.about-checklist li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}
.about-checklist i{ color: var(--teal); font-size: 1.15rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.service-card{
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(123,44,191,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.service-img{ overflow: hidden; }
.service-img img{
  width: 100%;
  /*aspect-ratio: 5/4;
  object-fit: cover;*/
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img{ transform: scale(1.08); }

.service-body{ padding: 26px 24px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.service-body h3{ font-size: 1.28rem; margin-bottom: 10px; }
.service-body p{ color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; flex-grow: 1; margin-bottom: 20px; }
.service-body .btn-service-cta{ align-self: flex-start; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-us-section{ background: var(--cream-deep); }

.why-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.why-card:hover{ transform: translateY(-6px); }
.why-card i{ font-size: 1.7rem; color: var(--pink); margin-bottom: 12px; display: inline-block; }
.why-card h3{ font-size: 1.08rem; margin-bottom: 6px; }
.why-card p{ font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   COUNTER SECTION
   ========================================================= */
.counter-section{
  background: var(--gradient-brand);
  padding: 60px 0;
}
.counter-item{ color: var(--white); }
.counter-number{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3.2rem);
  font-weight: 800;
}
.counter-plus{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
}
.counter-item p{
  margin: 6px 0 0;
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.step-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 24px 26px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  border-top: 4px solid var(--pink);
  transition: transform 0.3s ease;
}
.step-card:nth-child(4n+2){ border-top-color: var(--purple); }
.step-card:nth-child(4n+3){ border-top-color: var(--orange); }
.step-card:nth-child(4n+4){ border-top-color: var(--teal); }
.step-card:hover{ transform: translateY(-8px); }

.step-number{
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pink-light);
  display: block;
  margin-bottom: 6px;
}
.step-card h3{ font-size: 1.1rem; margin-bottom: 8px; }
.step-card p{ font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item{
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.gallery-item img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img{ transform: scale(1.1); }
.gallery-item::after{
  content: "\f259";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  background: rgba(123,44,191,0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after{ opacity: 1; }

/* =========================================================
   BOOKING SECTION
   ========================================================= */
.booking-section{ padding: 20px 0 90px; }

.booking-box{
  background: linear-gradient(120deg, var(--ink) 0%, #3a2154 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.booking-box::before{
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,46,147,0.35), transparent 70%);
  top: -100px; right: -60px;
}
.booking-title{ color: var(--white); font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); margin-bottom: 10px; }
.booking-text{ color: rgba(255,255,255,0.78); margin: 0; max-width: 520px; }

@media (max-width: 767.98px){
  .booking-box{ padding: 36px 22px; text-align: center; }
  .booking-text{ margin: 0 auto; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 46px 40px;
  max-width: 700px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(123,44,191,0.07);
}
.testimonial-card i.bi-quote{
  font-size: 2.4rem;
  color: var(--pink-light);
  margin-bottom: 14px;
  display: inline-block;
}
.testimonial-card p{ font-size: 1.08rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.testimonial-card h4{ margin-bottom: 2px; font-size: 1.1rem; }
.testimonial-card span{ color: var(--pink); font-size: 0.88rem; font-weight: 500; }

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next{ width: 5%; }
.testimonial-arrow{ filter: invert(20%) sepia(70%) saturate(3000%) hue-rotate(300deg); }

/* =========================================================
   FAQ
   ========================================================= */
.accordion-item{
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.accordion-button{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  background: var(--white);
  padding: 20px 24px;
}
.accordion-button:not(.collapsed){
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after{
  filter: invert(1) brightness(2);
}
.accordion-button:focus{ box-shadow: none; outline: 3px solid var(--purple); outline-offset: -3px; }
.accordion-body{ padding: 20px 24px; color: var(--ink-soft); background: var(--white); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  height: 100%;
}
.contact-info-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-info-item i{
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4{ font-size: 1rem; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span{ color: var(--ink-soft); font-size: 0.94rem; }
.contact-info-item a:hover{ color: var(--pink); }

.contact-map-wrap{
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 6px;
  box-shadow: var(--shadow-card);
}
.contact-map-wrap iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.contact-form{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.contact-form .form-label{ font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.contact-form .form-control, .contact-form .form-select{
  border-radius: var(--radius-sm);
  border: 1.5px solid #ece3f5;
  padding: 11px 16px;
  font-size: 0.95rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus{
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,46,147,0.15);
}
.form-success-msg{
  color: var(--teal);
  font-weight: 600;
  margin-left: 16px;
  display: inline-block;
  font-size: 0.92rem;
}

@media (max-width: 767.98px){
  .contact-form button[type="submit"]{ width: 100%; }
  .form-success-msg{ display: block; margin: 12px 0 0; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 24px;
}
.footer-brand span{ color: var(--white); font-size: 1.2rem; }
.site-footer p{ font-size: 0.92rem; line-height: 1.7; }
.site-footer h5{
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 18px;
      background: var(--gradient-brand);
    border-top-right-radius: 20px;
    padding: 4px;
}
.footer-links li{ margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a{ color: rgba(255,255,255,0.75); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover{ color: var(--gold); padding-left: 4px; }
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover{ background: var(--gradient-brand); transform: translateY(-3px); }
.site-footer hr{ border-color: rgba(255,255,255,0.12); margin: 40px 0 20px; }
.footer-bottom p{ font-size: 0.85rem; margin: 0; color: rgba(255,255,255,0.55); }

/* =========================================================
   FLOATING ICONS
   ========================================================= */
.floating-call, .floating-whatsapp{
  position: fixed;
  bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 1200;
  box-shadow: 0 10px 26px -6px rgba(0,0,0,0.4);
  transition: transform 0.25s ease;
}
.floating-call{
  right: 24px;
  background: var(--gradient-brand);
  animation: pulseCall 2.2s infinite;
}
.floating-whatsapp{
  left: 24px;
  background: #25D366;
}
.floating-call:hover, .floating-whatsapp:hover{ transform: scale(1.1); color: var(--white); }

@keyframes pulseCall{
  0%{ box-shadow: 0 0 0 0 rgba(255,46,147,0.55), 0 10px 26px -6px rgba(0,0,0,0.4); }
  70%{ box-shadow: 0 0 0 14px rgba(255,46,147,0), 0 10px 26px -6px rgba(0,0,0,0.4); }
  100%{ box-shadow: 0 0 0 0 rgba(255,46,147,0), 0 10px 26px -6px rgba(0,0,0,0.4); }
}
.cu-lg-wdtd{
	width:250px
}
@media (max-width: 575.98px){
  .floating-call, .floating-whatsapp{ width: 50px; height: 50px; font-size: 1.3rem; bottom: 16px; }
  .floating-call{ right: 16px; }
  .floating-whatsapp{ left: 16px; }
}

/* =========================================================
   SCROLL REVEAL ANIMATION
   ========================================================= */
.reveal-up{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.is-visible{ opacity: 1; transform: translateY(0); }
#enu-st{
	display:block;
	width:100%;
	background: var(--gradient-brand);
    color: var(--white);
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px -8px rgba(255, 46, 147, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-vn{
		justify-content: center !important;
	}
}
@media(max-width:374px)
{
	.cu-fnt{
		font-size:12px!important
	}
	.cu-lg-wdtd {
    width: 220px;
}
}
