/* =========================================================
   Serenity Massage — Custom Stylesheet
   ========================================================= */

:root {
  --maroon: #8a264c;
  --maroon-dark: #5e1834;
  --maroon-light: #a63a63;
  --green: #099202;
  --green-dark: #066a01;
  --gold: #d9a441;
  --cream: #faf3ee;
  --cream-dark: #f2e3ea;
  --ink: #2b1620;
  --muted: #6f5b63;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 40px rgba(138, 38, 76, 0.12);
  --shadow-card: 0 10px 30px rgba(43, 22, 32, 0.08);
  --transition: all 0.35s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  font-weight: 700;
}

a { text-decoration: none; }

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

::selection { background: var(--maroon); color: #fff; }

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

.section-pad { padding: 90px 0; }
.bg-cream { background: var(--cream); }

@media (max-width: 767px) {
  .section-pad { padding: 56px 0;overflow-x: hidden; }
}

/* ---------- Section headings ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 12px;
}
.section-eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.02rem;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--maroon-dark);
  color: #f4dee7;
  font-size: 0.86rem;
  padding: 8px 0;
}
.top-bar a { color: #f4dee7; transition: var(--transition); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left span { margin-right: 26px; }
.top-bar-left i, .top-bar-right i { margin-right: 6px; color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-divider { width: 1px; height: 14px; background: rgba(244, 222, 231, 0.3); }

/* ============ HEADER ============ */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 18px rgba(43, 22, 32, 0.07);
  z-index: 1030;
}
.navbar { padding: 1px 0; }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--maroon-dark);
}
.navbar-brand em { color: var(--green); font-style: normal; }
.nav-link {
  font-weight: 500;
  color: var(--ink) !important;
  position: relative;
  margin: 0 6px;
  padding: 8px 4px !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link:focus::after { transform: scaleX(1); }
.nav-link:hover { color: var(--maroon) !important; }

.btn-book {
  background: var(--maroon);
  color: #fff !important;
  border-radius: 40px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  border: 2px solid var(--maroon);
}
.btn-book:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(9, 146, 2, 0.28);
}

/* ============ HERO ============ */
.hero-section { position: relative; background: var(--maroon-dark); }
.carousel-item img { /*height: 92vh; min-height: 520px;*/ object-fit: cover; }
.carousel-caption {
  text-align: left;
  left: 0; right: 0;
  bottom: 0; top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 720px;
}
.hero-eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
  animation: fadeUp 0.8s ease both;
}
.carousel-caption h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
  animation: fadeUp 0.9s ease 0.1s both;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.hero-text {
  color: #f4e9ee;
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.2s both;
}
.btn-hero {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 46px;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
  transition: var(--transition);
  animation: fadeUp 1.1s ease 0.3s both;
  box-shadow: 0 10px 26px rgba(9, 146, 2, 0.35);
}
.btn-hero:hover { background: #fff; color: var(--green); transform: translateY(-3px); }

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

.hero-section .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%; background: #fff; opacity: 0.5;
}
.hero-section .carousel-indicators .active { opacity: 1; background: var(--gold); }
.hero-section .carousel-control-prev, .hero-section .carousel-control-next { width: 6%; }
.hero-section .carousel-control-prev-icon, .hero-section .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 22px;
  background-size: 45%;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 60px;
  fill: #ffffff;
  z-index: 2;
}

@media (max-width: 767px) {
  /*.carousel-item img { height: 78vh; min-height: 460px; }*/
  .carousel-caption { padding: 0 6%; }
  .hero-section .carousel-control-prev, .hero-section .carousel-control-next { display: none; }
}

/* ============ ABOUT ============ */
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -12px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(9, 146, 2, 0.35);
  text-align: center;
  line-height: 1.2;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.about-badge-txt { font-size: 0.78rem; font-weight: 500; }

.about-lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 8px; }
.about-points { margin-top: 6px; }
.about-point {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
  color: var(--ink);
}
.about-point i { color: var(--green); font-size: 1.1rem; }

.btn-primary-brand {
  background: var(--maroon);
  color: #fff;
  padding: 13px 30px;
  border-radius: 46px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition);
}
.btn-primary-brand:hover { background: var(--green); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(9,146,2,0.3); }

/* ============ SERVICES ============ */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(138, 38, 76, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(138, 38, 76, 0.18);
  border-color: transparent;
}
.service-img { overflow: hidden; }
.service-img img { width: 100%; height: 220px; 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.22rem; margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.95rem; flex-grow: 1; }
.btn-call {
  margin-top: 16px;
  align-self: flex-start;
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
  padding: 9px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-call:hover { background: var(--maroon); color: #fff; }

.service-card-cta {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  align-items: center;
  justify-content: center;
}
.service-cta-inner { padding: 40px 30px; text-align: center; }
.service-cta-inner i { font-size: 2.4rem; color: var(--gold); margin-bottom: 14px; }
.service-cta-inner h3 { color: #fff; }
.service-cta-inner p { color: #f4dee7; font-size: 0.95rem; }
.btn-light-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 9px 24px;
  border-radius: 40px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: var(--transition);
}
.btn-light-outline:hover { background: #fff; color: var(--maroon); }

/* ============ HOME SERVICE BAND ============ */
.home-service-section { padding: 40px 0; }
.home-service-card {
  background: linear-gradient(120deg, var(--green-dark), var(--green) 60%, var(--maroon));
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(9, 146, 2, 0.25);
  position: relative;
  overflow: hidden;
}
.home-service-card::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px; right: -80px;
}
.home-service-icon { font-size: 2.6rem; color: #fff; }
.home-service-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffe8b0;
  margin-bottom: 6px;
}
.home-service-card h2 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.home-service-card p { color: #f4f7ec; }
.btn-home-service {
  background: #fff;
  color: var(--maroon);
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-home-service:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

@media (max-width: 767px) {
  .home-service-card { padding: 30px 24px; text-align: center; }
  .home-service-card .col-3 { margin-bottom: 6px; }
}

/* ============ WHY CHOOSE US ============ */
.why-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  box-shadow: 0 18px 36px rgba(9,146,2,0.14);
}
.why-icon {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--green));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-icon i { color: #fff; font-size: 1.7rem; }
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.08); }
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============ COUNTER ============ */
.counter-section {
  background: linear-gradient(120deg, var(--maroon-dark), var(--maroon));
  padding: 70px 0;
}
.counter-item { color: #fff; }
.counter-item i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; display: block; }
.counter-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; }
.counter-plus { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold); }
.counter-item p { margin-top: 4px; color: #f4dee7; font-weight: 500; letter-spacing: 0.5px; }

/* ============ HOW IT WORKS ============ */
.how-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}
.how-step:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(138,38,76,0.14); }
.how-step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream-dark);
  -webkit-text-stroke: 1.5px var(--maroon);
  color: transparent;
  margin-bottom: 10px;
}
.how-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.how-step p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ============ GALLERY ============ */
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  aspect-ratio: 1/1;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '\f52a';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(138, 38, 76, 0.0);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; background: rgba(138, 38, 76, 0.55); }
.gallery-item:hover img { transform: scale(1.12); }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 700px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
}
.quote-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 10px; }
.testimonial-card p { font-size: 1.08rem; color: var(--ink); font-style: italic; margin-bottom: 22px; }
.testimonial-user { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-user img { width: 56px; height: 56px; border-radius: 50%; border: 3px solid #fff; box-shadow: var(--shadow-card); }
.testimonial-user h4 { font-size: 1rem; margin: 0; }
.testimonial-user span { font-size: 0.84rem; color: var(--muted); }
.testimonial-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px;
}
.testimonial-controls .carousel-control-prev,
.testimonial-controls .carousel-control-next {
  position: static;
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  transition: var(--transition);
}
.testimonial-controls .carousel-control-prev:hover,
.testimonial-controls .carousel-control-next:hover { background: var(--maroon); border-color: var(--maroon); }
.testimonial-controls .carousel-control-prev:hover i,
.testimonial-controls .carousel-control-next:hover i { color: #fff; }
.testimonial-controls i { color: var(--maroon); }
.testimonial-dots { position: static; margin: 0; }
.testimonial-dots [data-bs-target] {
  width: 9px; height: 9px; border-radius: 50%; background: var(--cream-dark); opacity: 1;
}
.testimonial-dots .active { background: var(--green); }

/* ============ FAQ ============ */
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.accordion-button {
  font-weight: 600;
  color: var(--maroon-dark);
  background: #fff;
  font-family: var(--font-body);
  padding: 20px 24px;
}
.accordion-button:not(.collapsed) {
  background: var(--maroon);
  color: #fff;
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.accordion-body { color: var(--muted); padding: 20px 24px 26px; }

/* ============ CONTACT ============ */
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px;
  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(--maroon);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-info-item p { margin: 0; color: var(--muted); }
.contact-info-item a { color: var(--muted); }
.contact-info-item a:hover { color: var(--green); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 10px; box-shadow: var(--shadow-card); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-dark);
}
.contact-form .form-label { font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.contact-form .form-control, .contact-form .form-select {
  border-radius: 10px;
  border: 1px solid #e3d4da;
  padding: 11px 14px;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(9, 146, 2, 0.15);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--maroon-dark);
  color: #e9d3dc;
  padding: 70px 0 24px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand em { color: var(--gold); font-style: normal; }
.site-footer p { color: #d9b7c4; font-size: 0.92rem; }
.site-footer h5 { color: #fff; font-family: var(--font-body); font-weight: 600; margin-bottom: 18px; font-size: 1rem;font-size: 1rem;
    background-color: goldenrod;
    border-top-right-radius: 10px;
    padding: 4px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; font-size: 0.92rem; color: #d9b7c4;border-bottom: 1px dashed; padding-bottom:6px;}
.footer-links a { color: #d9b7c4; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links i { color: var(--gold); margin-right: 6px; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(233, 211, 220, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--green); border-color: var(--green); transform: translateY(-3px); }
.site-footer hr { border-color: rgba(233, 211, 220, 0.15); margin: 40px 0 20px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 0.86rem; }
.footer-bottom p { margin: 0; color: #c69cab; }

/* ============ FLOATING ICONS ============ */
.floating-icon {
  position: fixed;
  bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  z-index: 1040;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.floating-whatsapp { left: 22px; background: #25D366; animation: pulseGreen 2.4s infinite; }
.floating-call { right: 22px; background: var(--maroon); animation: pulseMaroon 2.4s infinite; }
.floating-icon:hover { transform: scale(1.1); color: #fff; }

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes pulseMaroon {
  0% { box-shadow: 0 0 0 0 rgba(138, 38, 76, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(138, 38, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(138, 38, 76, 0); }
}
.cu-lg-wdth{
	width:250px;
}
  .area-card {
    background-color: #fdf3e7;
    border: 1px solid #f5e2c8;
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
  }
  .area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .area-icon {
    width: 55px;
    height: 55px;
    background-color: #f28a95;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
  }
  .area-icon i {
    color: #fff;
    font-size: 22px;
  }
  .area-name {
    color: #1f2b3e;
    font-weight: 600;
    margin: 0;
  }
 #enu-st {
	  background: var(--maroon);
    color: #fff;
    padding: 13px 30px;
    border-radius: 46px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: var(--transition);
	Display:block;
	width:100%;
  }
@media (max-width: 575px) {
  .floating-icon { width: 50px; height: 50px; font-size: 1.3rem; bottom: 16px; }
  .floating-whatsapp { left: 14px; }
  .floating-call { right: 14px; }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(9,146,2,0.35);
  z-index: 1039;
  transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--maroon); transform: translateY(-4px); }

/* ============ SCROLL REVEAL ============ */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }

/* ============ UTIL ============ */
@media (min-width: 768px) {
  .w-md-auto { width: auto !important; }
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
	.cu-lg-wdth {
    width: 200px;
}
}
