/* ==========================================================================
   ON DOT SERVICE — shared stylesheet
   Brand colours derived from ondot_logo.jpeg: violet #5a1fa1, lavender
   #c7b4de / #b099cf, deep violet #2a0b52. Stack: Bootstrap 5.3 + custom.
   ========================================================================== */

:root {
  /* brand (from logo) */
  --brand: #5a1fa1;
  --brand-600: #4b1689;
  --brand-700: #3d1172;
  --brand-800: #320b5e;
  --brand-ink: #2a0b52;
  --brand-50: #f8f5fc;
  --brand-100: #f0e9f9;
  --brand-200: #e3d6f3;
  --brand-300: #cdb7e6;
  --brand-400: #b099cf;

  /* neutrals */
  --body: #55506a;
  --muted: #6f6a85;
  --heading: #24133f;
  --white: #ffffff;
  --light: #fbfafd;
  --border: #e9e2f3;
  --border-strong: #d9cdea;

  /* semantic */
  --success: #1e7b4c;
  --warning: #9a6a00;
  --danger: #b3373a;

  /* shape / type */
  --radius: 1rem;
  --radius-sm: .65rem;
  --shadow-sm: 0 2px 10px rgba(42, 11, 82, .06);
  --shadow: 0 12px 34px -14px rgba(42, 11, 82, .22);
  --shadow-lg: 0 24px 60px -22px rgba(42, 11, 82, .3);
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 800;
  letter-spacing: -.01em;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-600); }

.text-brand { color: var(--brand) !important; }
.text-ink { color: var(--brand-ink) !important; }
.text-heading { color: var(--heading) !important; }
.bg-brand { background-color: var(--brand) !important; }
.bg-brand-50 { background-color: var(--brand-50) !important; }
.bg-brand-100 { background-color: var(--brand-100) !important; }
.bg-ink { background-color: var(--brand-ink) !important; }

.fw-semi { font-weight: 600; }

/* eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-100);
}
.eyebrow.on-light::before { box-shadow: 0 0 0 4px rgba(255,255,255,.18); }

.section { padding: 5.2rem 0; }
.section-sm { padding: 3.4rem 0; }

/* dotted texture — the brand "DOT" */
.dot-pattern {
  background-image: radial-gradient(rgba(90,31,161,.13) 1.2px, transparent 1.4px);
  background-size: 22px 22px;
}
.dot-pattern-light {
  background-image: radial-gradient(rgba(255,255,255,.22) 1.2px, transparent 1.4px);
  background-size: 22px 22px;
}

/* ---------- topbar ---------- */
.topbar {
  background: var(--brand-ink);
  color: #e8defa;
  font-size: .84rem;
}
.topbar a { color: #ffffff; font-weight: 700; }
.topbar a:hover { color: var(--brand-300); }
.topbar .bi { color: #cfb7f0; margin-right: .3rem; }

/* ---------- navbar ---------- */
.navbar-ondot {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding-top: .7rem;
  padding-bottom: .7rem;
  transition: box-shadow .25s ease, padding .25s ease;
}
.navbar-ondot.scrolled { box-shadow: var(--shadow-sm); padding-top: .5rem; padding-bottom: .5rem; }
.navbar-ondot .navbar-brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo {
  width: 46px; height: 46px; object-fit: contain;
  border-radius: .8rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-name {
  line-height: 1.05; color: var(--heading);
  font-weight: 800; font-size: 1.12rem; letter-spacing: .01em;
}
.brand-name .dot { color: var(--brand); }
.brand-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}
.navbar-ondot .nav-link {
  color: var(--heading);
  font-weight: 600;
  font-size: .95rem;
  padding: .55rem .8rem !important;
  position: relative;
}
.navbar-ondot .nav-link:hover,
.navbar-ondot .nav-link.active { color: var(--brand); }
.navbar-ondot .nav-link::after {
  content: "";
  position: absolute; left: .8rem; right: .8rem; bottom: .18rem;
  height: 2px; border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.navbar-ondot .nav-link:hover::after,
.navbar-ondot .nav-link.active::after { transform: scaleX(1); }
.navbar-ondot .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: .8rem;
  box-shadow: var(--shadow);
  padding: .5rem;
}
.navbar-ondot .dropdown-item {
  font-weight: 600; color: var(--heading);
  border-radius: .55rem;
  padding: .5rem .8rem;
  display: flex; align-items: center; gap: .55rem;
}
.navbar-ondot .dropdown-item i { color: var(--brand); font-size: .9rem; width: 1.05rem; text-align: center; }
.navbar-ondot .dropdown-item:hover { background: var(--brand-100); color: var(--brand-700); }
.navbar-ondot .dropdown-toggle::after { margin-left: .35rem; vertical-align: 2px; }

/* buttons */
.btn { border-radius: .7rem; font-weight: 700; padding: .68rem 1.35rem; }
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(90, 31, 161, .55);
}
.btn-brand:active { transform: translateY(0); }
.btn-outline-brand {
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--brand); border-color: #fff; }
.btn-ink { background: var(--brand-ink); color: #fff; border: 1px solid var(--brand-ink); }
.btn-ink:hover { background: var(--brand-800); color: #fff; }
.btn-call {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; color: var(--brand-ink);
  border: 1px solid var(--border-strong);
}
.btn-call:hover { background: var(--brand-100); color: var(--brand-700); border-color: var(--brand-300); }
.btn-lg { padding: .85rem 1.7rem; font-size: 1.02rem; }
.btn .bi { line-height: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 92% -10%, var(--brand-200) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(900px 420px at -10% 110%, var(--brand-100) 0%, rgba(255,255,255,0) 55%),
    var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero .display-tag {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--heading);
}
.hero .display-tag .hl { color: var(--brand); }
.hero-sub {
  font-size: 1.12rem;
  color: var(--body);
  max-width: 34rem;
}
.chip-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border-strong);
  color: var(--brand-700); font-size: .84rem; font-weight: 700;
  padding: .35rem .85rem; border-radius: 2rem;
}
.chip i { color: var(--brand); font-size: .95rem; }
.chip.on-dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #fff; }
.chip.on-dark i { color: var(--brand-300); }

/* poster composition (marketing posters from img/) */
.poster {
  border-radius: 1.15rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster.tall { aspect-ratio: 9 / 13.4; }
.poster-float { transition: transform .3s ease; }
.poster-float:hover { transform: translateY(-6px) rotate(0deg) !important; }
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: .8rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  animation: bob 5s ease-in-out infinite;
}
.float-badge .badge-ic {
  width: 42px; height: 42px; border-radius: .8rem;
  background: var(--brand-100); color: var(--brand);
  display: grid; place-items: center; font-size: 1.25rem;
  flex: 0 0 auto;
}
.float-badge small { display: block; font-weight: 800; color: var(--heading); line-height: 1.2; }
.float-badge span { font-size: .72rem; color: var(--muted); font-weight: 600; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- generic cards ---------- */
.card-plain {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:auto;
}
.card-plain:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brand-300); }
.card-body-pad { padding: 1.6rem 1.5rem; }
.icon-tile {
  width: 54px; height: 54px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 1rem;
  background: var(--brand-100);
  color: var(--brand);
  font-size: 1.5rem;
}
.icon-tile.sm { width: 44px; height: 44px; font-size: 1.2rem; border-radius: .85rem; }
.icon-tile.lg { width: 66px; height: 66px; font-size: 1.9rem; border-radius: 1.1rem; }
.icon-tile.on-dark { background: rgba(255,255,255,.12); color: #fff; }

.link-arrow { font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.link-arrow .bi { transition: transform .2s ease; }
.link-arrow:hover .bi { transform: translateX(4px); }

/* service card used on home / hub */
.service-card .icon-tile { margin-bottom: 1rem; }
.service-card h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.service-card p { font-size: .9rem; margin-bottom: .6rem; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 .9rem; }
.service-card ul li {
  font-size: .83rem; color: var(--muted);
  display: flex; gap: .5rem; align-items: baseline;
  padding: .16rem 0;
}
.service-card ul li::before {
  content: "\F287"; /* bi-circle-fill */
  font-family: "bootstrap-icons";
  font-size: .34rem; color: var(--brand);
  transform: translateY(-2px);
}

/* numbered step */
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; flex-shrink:0;
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--brand-100);
}

/* feature / why card */
.feature-card { display: flex; gap: 1.1rem; }

/* listing tile (small services list on service pages) */
.list-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  display: flex; gap: .75rem; align-items: flex-start;
  height: 100%;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.list-tile:hover { border-color: var(--brand-300); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.list-tile i { color: var(--brand); font-size: 1.1rem; line-height: 1.5; }
.list-tile .lt-t { font-weight: 700; color: var(--heading); font-size: .95rem; line-height: 1.35; }
.list-tile .lt-d { font-size: .84rem; color: var(--muted); margin-top: .15rem; }
.list-tile.tick i { color: var(--success); }

/* notice / callout */
.callout {
  border: 1px solid var(--border-strong);
  background: var(--brand-50);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}
.callout .callout-ic {
  width: 42px; height: 42px; border-radius: .8rem; flex: 0 0 auto;
  background: #fff; color: var(--brand);
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.callout h4 { font-size: 1rem; margin-bottom: .35rem; }
.callout p, .callout li { font-size: .9rem; margin-bottom: .25rem; }
.callout.warn { background: #fffaf0; border-color: #f0e0b8; }
.callout.warn .callout-ic { color: var(--warning); }
.callout.danger { background: #fff5f4; border-color: #f0c9c7; }
.callout.danger .callout-ic { color: var(--danger); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--brand-ink) 0%, var(--brand-700) 55%, var(--brand) 100%);
  color: #efe6fc;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band .lead2 { color: #d9c8f2; }

/* stats */
.stat-num { font-size: 2.1rem; font-weight: 800; color: var(--brand); line-height: 1.1; }
.stat-lbl { font-size: .86rem; font-weight: 600; color: var(--muted); }
.stat-card { border-left: 3px solid var(--brand); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(760px 320px at 100% 0%, var(--brand-200) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(600px 300px at 0% 100%, var(--brand-100) 0%, rgba(255,255,255,0) 55%),
    var(--white);
  border-bottom: 1px solid var(--border);
  padding: 3.6rem 0 3.2rem;
}
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
.page-hero .crumb { font-size: .82rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.page-hero .crumb a { color: var(--brand); }
.crumb-sep { margin: 0 .5rem; color: var(--brand-300); }

/* ---------- forms ---------- */
.form-control, .form-select {
  border-radius: .7rem;
  border: 1.5px solid var(--border-strong);
  padding: .72rem 1rem;
  font-size: .95rem;
  color: var(--heading);
  background-color: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .22rem rgba(90, 31, 161, .12);
}
.form-label { font-weight: 700; font-size: .86rem; color: var(--heading); margin-bottom: .35rem; }
.form-text { font-size: .8rem; }
.was-validated .form-control:invalid, .was-validated .form-select:invalid {
  border-color: var(--danger);
  background-image: none;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  padding: 2rem;
}
.input-group-text {
  background: var(--brand-100);
  border: 1.5px solid var(--border-strong);
  color: var(--brand);
  border-radius: .7rem 0 0 .7rem;
  border-right: 0;
}
.input-group .form-control { border-left: 0; }
.input-group .form-control:focus { border-left: 0; }

/* ---------- accordion (faq) ---------- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: .85rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700; color: var(--heading);
  padding: 1.1rem 1.3rem;
  background: #fff;
  font-size: .98rem;
}
.accordion-button:not(.collapsed) {
  background: var(--brand-50);
  color: var(--brand-700);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(90,31,161,.1); }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a1fa1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { color: var(--body); font-size: .95rem; padding: .4rem 1.3rem 1.2rem; }

/* ---------- footer ---------- */
.footer {
  background: #3e1b6a; /* a lighter shade of the brand-ink footer */
  color: #d5c8ea;
  font-size: .9rem;
}
.footer h6 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer a { color: #cdbfe6; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .5rem; }
.footer ul li a { display: inline-flex; align-items: center; gap: .45rem; }
.footer ul li a i { font-size: .7rem; color: var(--brand-300); }
.footer .foot-brand p { font-size: .88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: #a898c6;
}

/* breadcrumb hero helpers for image pages */
.poster-side { position: relative; }
.poster-side .poster { width: 100%; }
.poster-stack { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }

/* back to top */
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 1050;
  width: 46px; height: 46px; border-radius: .9rem;
  border: 0; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 1.15rem;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-600); color: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- info rows (contact / careers side panels) ---------- */
.info-card { overflow: hidden; }
.info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.3rem 1.5rem;
  transition: background-color .2s ease;
}
.info-row + .info-row { border-top: 1px solid var(--border); }
.info-row:hover { background: var(--brand-50); }
.info-row .icon-tile.sm { margin-top: .1rem; }
.info-row h3 { margin-bottom: .3rem; }
.info-row p { margin-bottom: 0; }
.contact-ph {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 800; color: var(--brand); font-size: 1.05rem;
  line-height: 1.6;
}
.contact-ph:hover { color: var(--brand-600); }
.sub-label {
  font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-700);
  display: flex; align-items: center; gap: .5rem;
}
.sub-label::after {
  content: ""; flex: 1; height: 1px;
  background: var(--border-strong);
}

/* ---------- form card header ---------- */
.form-card-head {
  display: flex; align-items: center; gap: .95rem;
  padding-bottom: 1.15rem; margin-bottom: 1.4rem;
  border-bottom: 1px dashed var(--border-strong);
}
.form-card-head h3 { font-size: 1.05rem; margin: 0 0 .1rem; }
.form-card-head p { font-size: .84rem; color: var(--muted); margin: 0; }

/* ---------- city cards ---------- */
.city-card { overflow: hidden; height: 100%; }
.city-card .city-sketch { margin: 0; position: relative; }
.city-card .city-sketch img { width: 100%; height: auto; display: block; }
.city-card .city-sketch::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 34%;
  background: linear-gradient(180deg, rgba(250,247,253,0) 0%, rgba(250,247,253,.85) 100%);
  pointer-events: none;
}
.city-state {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brand-100); color: var(--brand-700);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 2rem;
}
.city-landmark {
  display: flex; align-items: center; gap: .55rem;
  font-size: .86rem; font-weight: 700; color: var(--heading);
}
.city-landmark i { color: var(--brand); font-size: .9rem; }

/* ---------- app download modal ---------- */
.app-modal .modal-content {
  border: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.app-modal-head {
  position: relative;
  padding: 2.3rem 1.6rem 1.9rem;
  text-align: center;
  color: #efe6fc;
  background:
    radial-gradient(rgba(255,255,255,.14) 1.2px, transparent 1.4px) 0 0 / 22px 22px,
    linear-gradient(135deg, var(--brand-ink) 0%, var(--brand-700) 60%, var(--brand) 100%);
}
.app-modal-head .btn-close {
  position: absolute; right: 1rem; top: 1rem;
  filter: invert(1) brightness(2);
  opacity: .85;
}
.app-modal-head .btn-close:hover { opacity: 1; }
.app-modal-ic {
  width: 66px; height: 66px; margin: 0 auto 1rem;
  display: grid; place-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; font-size: 1.8rem;
  border-radius: 1.2rem;
}
.app-modal-head h3 { color: #fff; font-size: 1.45rem; margin-bottom: .3rem; }
.app-modal-head p { color: #dccdf2; font-size: .9rem; margin-bottom: 0; }
.app-modal-body { padding: 1.7rem 1.7rem 1.6rem; text-align: center; }
.app-modal-body p { font-size: .94rem; }
.app-modal .modal-dialog { max-width: 420px; }

/* Google Play badge */
.play-badge {
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 8px 20px -8px rgba(22, 26, 46, .5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.play-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(22, 26, 46, .55); }
.play-badge svg { display: block; }

/* responsive tweaks */
@media (max-width: 991.98px) {
  .section { padding: 3.6rem 0; }
  .navbar-ondot .nav-link::after { display: none; }
  .navbar-ondot .nav-link { padding: .5rem 0 !important; }
}
@media (max-width: 575.98px) {
  .contact-form-card { padding: 1.4rem; }
  /* g-5 gutters (half = 24px) overflow the 12px container padding on phones,
     causing a ~12px horizontal scroll on every page — tighten on small screens */
  .g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}
