:root {
  /* ---- Color tokens ---- */
  --sm-ink: #781A4E;
  /* primary background, near-black wine */
  --sm-ink-soft: #781A4E;
  /* secondary panel background */
  --sm-charcoal:#781A4E;
  /* card background */
  --sm-crimson: #C81E4D;
  /* primary accent — passion / CTA */
  --sm-crimson-dim: #8C1638;
  /* pressed / border state */
  --sm-gold: #CBA135;
  /* metallic trim — exclusivity */
  --sm-gold-soft: #E4C878;
  /* gold highlight */
  --sm-rose-mist: #F3D9DE;
  /* soft glow text on dark */
  --sm-cream: #FBF3EC;
  /* light alt-section background */
  --sm-cream-line: #E9DCCF;
  /* hairline on light sections */
  --sm-text-dark: #2A1A1E;
  /* body text on cream */
  --sm-text-muted: rgba(243, 217, 222);

  /* ---- Layout ---- */
  --sm-radius: 18px;
  --sm-nav-h: 84px;
  --sm-max: 1220px;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sm-nav-h);
}

body {

  font-size: 16.5px;
  padding-top: 68px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  font-family: 'Times New Roman', Times, serif;
}

/* Fine film-grain layer — adds a tactile, premium-print surface without any imagery */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

::selection {
  background: var(--sm-crimson);
  color: #fff;
}

a {
  color: var(--sm-gold-soft);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--sm-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
.sm-display {
    font-weight: 600;

}

h2 {
  font-size: 2.5rem;
}

p {
  font-size: 1.3rem !important;
}

ul{
  font-size: 1.2rem;
}

.sm-eyebrow {
  font-family: var(--sm-mono);
  font-size: 15.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sm-gold-soft);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}

.sm-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sm-gold));
  display: inline-block;
}

.sm-eyebrow::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sm-gold);
  display: inline-block;
}

/* =========================== NAVBAR =========================== */
.premium-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--sm-nav-h);
  background: #781A4E;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(203, 161, 53, .22);
  z-index: 1030;
  transition: background .3s ease, box-shadow .3s ease;
}

.premium-navbar.sm-scrolled {
  background: #781A4E;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.premium-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

  font-size: 19px;
  background: linear-gradient(145deg, var(--sm-gold-soft), var(--sm-gold)) !important;
  color: var(--sm-ink) !important;
  box-shadow: 0 0 0 3px rgba(203, 161, 53, .18);
}

.brand-text {

  font-size: 21px;
  color: #fff;
  letter-spacing: .01em;
}

.navcenter .nav-link {

  font-size: 1.2rem;
  letter-spacing: .11rem;
  text-transform: capitalize;
  color: white !important;
  padding: .6rem 1rem !important;
  position: relative;
  transition: color .2s ease;
}

.navcenter .nav-link:hover,
.navcenter .nav-link.active {
  color: #fff !important;
}

.navcenter .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .15rem;
  height: 2px;
  background: var(--sm-crimson);
}

.premium-navbar .btn-warning {
  
  border: 1px solid var(--sm-crimson) !important;
  color: #120101 !important;
  font-family: var(--sm-mono);
  font-size: 1.2rem;
  letter-spacing: .12em;
  text-transform: capitalize;
  box-shadow: 0 8px 22px rgba(200, 30, 77, .35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.premium-navbar .btn-warning:hover {
 
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(200, 30, 77, .5);
}

.navbar-toggler {
  color: #fff;
  font-size: 20px;
}

.navbar-toggler i {
  color: var(--sm-gold-soft);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(20, 10, 13, .98);
    margin-top: 1rem;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(203, 161, 53, .2);
  }

  .navcenter .nav-link.active::after {
    display: none;
  }
}


/* Pause ticker on hover */
.sm-ticker:hover .sm-ticker-track{
    animation-play-state: paused;
}
/* =========================== HERO =========================== */
.sm-hero {
  position: relative;
 padding: 78px 0;
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 82% 18%, rgba(200, 30, 77, .22), transparent 60%),
    radial-gradient(45% 50% at 8% 85%, rgba(203, 161, 53, .14), transparent 65%),
    var(--sm-ink);
}

.sm-hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px 420px at var(--sm-x, 80%) var(--sm-y, 20%), rgba(200, 30, 77, .18), transparent 65%);
  transition: background-position .1s linear;
  z-index: 0;
}

.sm-hero .container {
  position: relative;
  z-index: 1;
}

.sm-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  
}

.sm-hero h1 em {
  font-style: italic;
  color: var(--sm-crimson);
  background: linear-gradient(180deg, var(--sm-crimson), var(--sm-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sm-hero-lead {
  color: white;

}

.sm-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.sm-btn-primary {
  position: relative;
  overflow: hidden;

  font-family: var(--sm-mono);
  font-size: 20px;

  text-transform: capitalize;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--sm-crimson);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 12px 28px rgba(200, 30, 77, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}

.sm-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}

.sm-btn-primary:hover::after {
  left: 130%;
}

.sm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 30, 77, .48);

}

.sm-btn-ghost {
  background: transparent;
  color: var(--sm-rose-mist) !important;
  font-family: var(--sm-mono);
  font-size:20px;
    text-transform: capitalize;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 217, 222, .35);
  transition: border-color .18s ease, background .18s ease;
}

.sm-btn-ghost:hover {
  border-color: var(--sm-gold);
  background: rgba(203, 161, 53, .08);
}



.sm-hero-stats .num {
  font-family: var(--sm-display);
  font-size: 1.9rem;
  color: #fff;
  display: block;
}

.sm-hero-stats .lbl {
  font-family: var(--sm-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color:white;
}

/* ---- Hero image collage (signature visual, min. 2 photos) ---- */
.sm-hero-collage {
  position: relative;
  width: 100%;

  margin: 0 auto;
  padding: 18px 34px 46px 0;
}

.sm-hero-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(203, 161, 53, .35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}

.sm-hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sm-hero-frame-main {
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 1;
}

.sm-hero-frame-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(20, 10, 13, .5));
}

.sm-hero-frame-accent {
  position: absolute;
  right: -6px;
  bottom: 6px;
  width: 46%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  border: 3px solid var(--sm-ink);
  outline: 1px solid rgba(203, 161, 53, .5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

.sm-hero-glass {
  position: absolute;
  background: rgba(20, 10, 13, .68);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(203, 161, 53, .4);
  border-radius: 12px;
  color: #fff;
  font-family: var(--sm-mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  z-index: 3;
}

.sm-hero-glass-top {
  top: 0;
  left: -10px;
  padding: .6rem .95rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--sm-gold-soft);
}

.sm-hero-glass-top i {
  color: #7BE0A0;
}

.sm-hero-glass-bottom {
  left: -18px;
  bottom: 30px;
  padding: .75rem .95rem;
  display: flex;
  align-items: center;
  gap: .7rem;

}

.sm-hero-glass-bottom strong {
  color: var(--sm-gold-soft);
  font-family: var(--sm-display);
  font-size: 15px;
}

.sm-hero-glass-avatars {
  display: flex;
}

.sm-hero-glass-avatars span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sm-crimson), var(--sm-gold));
  border: 2px solid var(--sm-ink);
  margin-left: -8px;
}

.sm-hero-glass-avatars span:first-child {
  margin-left: 0;
}

.sm-orbit-chip {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sm-charcoal);
  border: 2px solid var(--sm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sm-gold-soft);
  font-family: var(--sm-mono);
  font-size: 11px;
  animation: sm-float 6s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
  z-index: 3;
}

.sm-orbit-chip.c1 {
  top: 6%;
  right: -4%;
  animation-delay: 0s;
}

.sm-orbit-chip.c3 {
  bottom: 2%;
  left: -2%;
  animation-delay: 2.4s;
}

@keyframes sm-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991.98px) {
  .sm-hero-collage {
    padding: 18px 24px 40px 0;
  }
}

/* ---- Ticker strip ---- */
.sm-ticker {
  background: var(--sm-ink-soft);
  border-top: 1px solid rgba(203, 161, 53, .18);
  border-bottom: 1px solid rgba(203, 161, 53, .18);
  overflow: hidden;
  padding: .9rem 0;
}

.sm-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: sm-ticker-scroll 32s linear infinite;
  font-family: var(--sm-mono);
  font-size: 16px;
  text-transform: uppercase;
  color: white;
}

.sm-ticker-track span {
  padding: 0 1.1rem;
}

.sm-ticker-track span:nth-child(2n) {
  color: var(--sm-gold-soft);
}



@keyframes sm-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sm-ticker-track {
    animation: none;
  }
}

/* =========================== VELVET ROPE DIVIDER (signature) === */
.sm-rope {
  position: relative;
  height: 46px;
  background:
    radial-gradient(circle at 24px 0, transparent 13px, var(--sm-ink-soft) 14px),
    var(--sm-ink);
  background-size: 48px 100%;
  background-repeat: repeat-x;
}

.sm-rope::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sm-gold) 0 20px, transparent 20px 48px);
  opacity: .55;
}

.sm-rope.sm-rope-light {
  background:
    radial-gradient(circle at 24px 0, transparent 13px, var(--sm-cream) 14px),
    var(--sm-ink-soft);
}

/* =========================== GENERIC SECTION =========================== */
.sm-section {
  padding: 60px 0;
  position: relative;
  background-color: #781A4E;
}

.sm-section-cream {
  background: var(--sm-cream);
  color: var(--sm-text-dark);
}

.sm-section-cream h2 {
  color: var(--sm-text-dark);
}

.sm-section-cream .sm-eyebrow {
  color: var(--sm-crimson-dim);
}

.sm-section-cream .sm-eyebrow::before {
  background: var(--sm-crimson-dim);
}

.sm-section-cream p {
  color: rgba(42, 26, 30, .78);
}



/* =========================== ABOUT =========================== */
.sm-about-figure {
  position: relative;
  border-radius: var(--sm-radius);
  overflow: hidden;
  border: 1px solid var(--sm-cream-line);
  box-shadow: 0 30px 60px rgba(42, 26, 30, .14);
}

.sm-about-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.sm-about-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(20, 10, 13, .85);
  color: #fff;
  padding: .75rem 1.1rem;
  border-radius: 12px;
  font-family: var(--sm-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  border: 1px solid rgba(203, 161, 53, .4);
}

.sm-about-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.sm-about-list li {
  display: flex;
  gap: .9rem;
  padding: .9rem 0;
  border-top: 1px solid var(--sm-cream-line);
}

.sm-about-list li:first-child {
  border-top: none;
}

.sm-about-list i {
  color: var(--sm-crimson);
  margin-top: .2rem;
}

.sm-about-list strong {
  display: block;
  color: var(--sm-text-dark);
  font-family: var(--sm-body);
}

/* =========================== FEATURES =========================== */
.sm-feature-card {
  position: relative;
  background: var(--sm-charcoal);
  border: 1px solid rgba(203, 161, 53, .16);
  border-radius: var(--sm-radius);
  padding: 2rem 1.8rem;
  height: 100%;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sm-feature-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--sm-gold), transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
  transform: rotate(45deg);
}

.sm-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 161, 53, .5);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .35);
}

.sm-feature-card:hover::before {
  opacity: .16;
}

.sm-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(200, 30, 77, .25), rgba(203, 161, 53, .18));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sm-gold-soft);
  font-size: 20px;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(203, 161, 53, .3);
}

.sm-feature-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .6rem;
}

.sm-feature-card p {
  color: var(--sm-text-muted);
  font-size: .96rem;
  margin: 0;
}



/* =========================== MEMBERS =========================== */
.sm-member-card {
  background: var(--sm-charcoal);
  border-radius: var(--sm-radius);
  overflow: hidden;
  border: 1px solid rgba(203, 161, 53, .16);
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}

.sm-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .4);
}

.sm-member-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.sm-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sm-member-online {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: rgba(20, 10, 13, .75);
  color: #7BE0A0;
  font-family: var(--sm-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  padding: .35rem .7rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .4rem;
  text-transform: uppercase;
}

.sm-member-online::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7BE0A0;
}

.sm-member-body {
  padding: 1.2rem 1.3rem 1.5rem;
}

.sm-member-body strong {
  font-size: 1.05rem;
  margin: 0 0 .2rem;
  color: white;
}

.sm-member-meta {
 
  font-size: 11.5px;
  color: var(--sm-gold-soft);
  letter-spacing: .05em;
}

.sm-member-body p {
  color: var(--sm-text-muted);
  font-size: .9rem;
  margin: .7rem 0 0;
}

/* =========================== STORIES =========================== */
.sm-story-card {
  background: var(--sm-ink-soft);
  border: 1px solid rgba(203, 161, 53, .18);
  border-radius: var(--sm-radius);
  padding: 2.1rem;
  height: 100%;
  position: relative;
}

.sm-story-quote {
  font-size: 1.25rem;
  color: #fff;
}

.sm-story-foot {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.6rem;
}

.sm-story-avatar {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--sm-gold);
}

.sm-story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sm-story-name {
  font-family: var(--sm-mono);
  font-size: 18px;
  color: var(--sm-gold-soft);
  text-transform: capitalize;
}

.sm-story-loc {
  font-size: 16px;
  color: var(--sm-text-muted);
}

.sm-story-stars {
  color: yellow;
  font-size: 13px;
  margin-bottom: .8rem;
}

/* =========================== FAQ =========================== */
.sm-faq-item {
  background: #fff;
  border: 1px solid var(--sm-cream-line);
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(42, 26, 30, .06);
}

.sm-faq-btn {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--sm-text-dark);
  background: #fff;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.sm-faq-btn:not(.collapsed) {
  color: var(--sm-crimson-dim);
  background: #fff;
}

/* Plus Icon */
.sm-faq-btn::after {
  background-image: none !important;
  content: "+";
  font-size: 24px;
  font-weight: 700;
  color: var(--sm-crimson);
  line-height: 1;
  transform: none !important;
}

/* Minus Icon */
.sm-faq-btn:not(.collapsed)::after {
  content: "+";
  rotate: 45deg;
  /* Unicode minus sign */
}

.sm-faq-item .accordion-body {
  color: rgba(42, 26, 30, .78);
  font-size: 1.2rem;
  padding: 0 1.5rem 1.4rem;
  border-top: 1px solid var(--sm-cream-line);
  padding-top: 1rem;
}


/* =========================== FINAL CTA =========================== */
.sm-cta {
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(200, 30, 77, .28), transparent 60%),
    var(--sm-ink);
  text-align: center;
  padding: 80px 0 80px;
}

.sm-cta h2 {
  max-width: 720px;
  margin: .8rem auto 1.4rem;
}

.sm-cta p {
  color: var(--sm-text-muted);
  margin: 0 auto 2.2rem;
}



/* =========================== FOOTER (structure preserved) =========================== */
.footer.pre {
  background: #781A4E;
  border-top: 1px solid rgba(203, 161, 53, .2);
}

.footer.pre a {
  color: white;
  text-decoration: none;
  transition: color .2s ease;
}

.footer.pre p {
  color: white;
  text-decoration: none;
  transition: color .2s ease;
}

.footer.pre a:hover {
  color: gold;
}

.footer.pre .badge {
  font-family: var(--sm-mono);
  font-weight: 500;

}

.footer.pre .badge.bg-danger {
  background: var(--sm-crimson) !important;
}

.footer.pre .badge.bg-secondary {
  background: #3A2429 !important;
}

.footer.pre .btn-danger {
  background: var(--sm-crimson) !important;
  border-color: var(--sm-crimson) !important;
}

.footer.pre .btn-danger:hover {
  background: #E23566 !important;
}

.footer.pre hr {
  opacity: .15;
}

.footer.pre .pth p {
  color: var(--sm-text-muted) !important;
  font-size: 13px;
}

/* =========================== BACK TO TOP =========================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sm-crimson);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(200, 30, 77, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 1040;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #E23566;
}

/* =========================== RESPONSIVE =========================== */
@media (max-width: 991.98px) {
  .sm-section {
    padding: 56px 0;
  }

  .sm-hero {
    padding-top: 68px;

  }

  .sm-hero-ctas {
    justify-content: center;
  }

  .sm-hero-stats {
    text-align: center;
  }

  .sm-orbit {
    margin-top: 3rem;
  }

  h2 {
    font-size: 1.7rem !important;
  }

  .btn222{
    width: 100%;
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {}


/*==============================
 Gallery
==============================*/



.sm-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  background: #000;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
  transition: .4s;
  
}

.g-wide {
  grid-column: span 1;
}


.sm-gallery-item img {
  width: 100%;
   object-fit: cover;
  transition: transform .8s ease;
}

/* Overlay */

.sm-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .88) 0%,
      rgba(0, 0, 0, .35) 45%,
      transparent 100%);
  opacity: 0;
  transition: .45s;
}

/* Content */

.sm-gallery-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 25px;
  z-index: 5;
  color: #fff;
  transform: translateY(40px);
  opacity: 0;
  transition: .45s;
}

.sm-gallery-category {
  display: inline-block;
  background: #ff2d55;
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sm-gallery-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sm-gallery-content p {
  font-size: 15px;

  color: #f1f1f1;
  margin: 0;
}

/* Hover */

.sm-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .22);
}

.sm-gallery-item:hover img {
  transform: scale(1.05);
}

.sm-gallery-item:hover::after {
  opacity: 1;
}

.sm-gallery-item:hover .sm-gallery-content {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media(max-width:992px) {

  .sm-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-wide {
    grid-column: span 1;
  }

  .g-tall {
    grid-row: span 1;
    height: 340px;
  }

}

@media(max-width:576px) {

  .sm-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sm-gallery-item,
  .g-wide,
  .g-tall {
    height: 300px;
  }

  .sm-gallery-content {
    opacity: 1;
    transform: none;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .sm-gallery-item::after {
    opacity: 1;
  }

  .sm-gallery-content h3 {
    display: none;
    margin-bottom: 0px !important;
  }

  .sm-gallery-content p {
    display: none;
  }

  .sm-hero-glass{
    display: none !important;
  }

}