﻿:root {
  --primary: #8403fe;
  --secondary: #4c019a;
  --dark: #180032;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8f5ff;
  --text: #23173c;
  --text-soft: #625a75;
  --border: rgba(76, 1, 154, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(132, 3, 254, 0.08), transparent 22%),
    linear-gradient(180deg, #fdfcff 0%, #f7f3ff 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(132, 3, 252, 0.2);
  transition: 0.3s ease;
}

.nav-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}

.nav a:hover {
  color: #d6b8ff;
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

main {
  padding-top: 80px;
}

.reveal-section {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(132, 3, 254, 0.1);
  color: #7b2ef0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 18px 0 14px;
  letter-spacing: -0.03em;
  color: #17072f;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.85;
}

.section-heading.align-left p {
  margin-left: 0;
}

.connect-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 8% 84px;
  overflow: hidden;
  color: #ffffff;
}

.connect-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.connect-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 7, 30, 0.52) 0%, rgba(16, 7, 30, 0.68) 55%, rgba(16, 7, 30, 0.86) 100%);
  z-index: 1;
}

.connect-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.connect-hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin: 20px auto 18px;
  max-width: 9ch;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  text-transform: uppercase;
}

.connect-hero-inner p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(76, 1, 154, 0.22);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-highlights div {
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.hero-highlights strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-highlights span {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.connect-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.connect-scroll span {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  margin-top: 8px;
  animation: connectBounce 1.5s infinite;
}

@keyframes connectBounce {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0.45; }
  100% { transform: translateY(0); opacity: 1; }
}

.connect-intro,
.connect-options,
.connect-split,
.connect-form-section {
  padding: 88px 8%;
}

.connect-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pillar {
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(24, 0, 58, 0.06);
}

.pillar i {
  font-size: 22px;
  color: #7b2ef0;
  margin-bottom: 14px;
}

.pillar h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #190932;
}

.pillar p {
  color: var(--text-soft);
  line-height: 1.75;
}

.connect-options {
  background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(247,242,255,0.9) 100%);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.option-card {
  padding: 0 0 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 18px 36px rgba(24, 0, 58, 0.08);
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(24, 0, 58, 0.12);
}

.option-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.option-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.option-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(24, 0, 58, 0.14);
}

.option-label h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: #190932;
}

.option-label span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a34ea;
  font-weight: 700;
}

.option-card p {
  padding: 24px 22px 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.option-link {
  display: inline-block;
  margin: 18px 22px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f24e5;
  border-bottom: 2px solid rgba(111, 36, 229, 0.22);
  padding-bottom: 4px;
}

.visit-layout,
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.visit-map-wrap {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
}

.visit-map-accent {
  position: absolute;
  inset: 24px auto -24px -24px;
  width: 72%;
  border-radius: 28px;
  background: linear-gradient(180deg, #f5d266 0%, #c98a14 100%);
  z-index: 1;
}

.visit-map-frame {
  width: 100%;
  min-height: 460px;
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(24, 0, 58, 0.16);
}

.visit-copy h2,
.form-copy h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  margin: 18px 0 14px;
  letter-spacing: -0.03em;
  color: #15072d;
}

.visit-copy p,
.form-copy p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.85;
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.visit-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(24, 0, 58, 0.06);
}

.visit-card.highlight {
  background: linear-gradient(180deg, #1a1230 0%, #2b1d4d 100%);
}

.visit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7b2ef0;
  margin-bottom: 12px;
}

.visit-card.highlight h3 {
  color: #f1d37a;
}

.visit-card p {
  color: #4f4764;
  font-size: 15px;
  line-height: 1.75;
}

.visit-card.highlight p {
  color: rgba(255,255,255,0.84);
}

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.connect-form-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(24, 0, 58, 0.1);
}

.connect-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.connect-form-card label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connect-form-card label span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #44305f;
}

.connect-form-card input,
.connect-form-card select,
.connect-form-card textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(76, 1, 154, 0.12);
  background: #fcfbff;
  font: inherit;
  color: #24163f;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.connect-form-card input:focus,
.connect-form-card select:focus,
.connect-form-card textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(132, 3, 254, 0.1);
}

.full-width {
  margin-top: 18px;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.connect-submit {
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(84, 6, 200, 0.2);
  transition: 0.3s ease;
}

.connect-submit:hover {
  transform: translateY(-2px);
}

.form-status {
  min-height: 22px;
  font-size: 14px;
  color: #6a22db;
}

.church-footer {
  --text-primary: #ffffff;
  --text-secondary: #cbb6ff;
  --accent-color: #a855f7;
  --accent-glow: rgba(168,85,247,0.4);
  --border-color: rgba(255,255,255,0.1);
  --transition-speed: 0.3s;

  width: 100%;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(-45deg, #8403fe, #4c019a, #180032, #4c019a);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: var(--text-primary);
  padding: 80px 5% 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.church-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-bottom: 25px;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-info {
  list-style: none;
  margin-bottom: 30px;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-info li i {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: var(--accent-color);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  color: #180032;
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-4px);
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-col:hover h3::after {
  width: 100%;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.worship-box {
  grid-column: 2 / 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -50px;
}

.worship-box h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.worship-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.worship-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.worship-item i {
  font-size: 20px;
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 8px;
  color: #ffd54a;
}

.worship-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.visit-btn {
  display: inline-block;
  background: #ffd54a;
  color: #180032;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.visit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.sermon-float{
  position:fixed;
  bottom:25px;
  right:25px;
  display:flex;
  align-items:center;
  gap:12px;
  background: var(--primary);
  color:white;
  padding:14px 18px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 25px rgba(0,0,0,0.25);
  z-index:9999;
  animation:shakeBtn 5s infinite;
  transition:0.3s;
}

.sermon-icon{
  width:40px;
  height:40px;
  background:white;
  color:black;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:bold;
}

.sermon-text{
  font-size:14px;
}

.sermon-float:hover{
  transform:scale(1.05);
  background: var(--secondary);
}

@keyframes shakeBtn{
  0% { transform:translateX(0); }
  2% { transform:translateX(-3px); }
  4% { transform:translateX(3px); }
  6% { transform:translateX(-3px); }
  8% { transform:translateX(3px); }
  10% { transform:translateX(0); }
  100% { transform:translateX(0); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 1024px) {
  .visit-layout,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .connect-pillars,
  .options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .worship-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 80px;
    right: -100%;
    background: rgba(24, 0, 58, 0.95);
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 40px 0;
    transition: 0.4s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .connect-intro,
  .connect-options,
  .connect-split,
  .connect-form-section {
    padding: 72px 5%;
  }

  .connect-hero {
    min-height: auto;
    padding: 118px 5% 86px;
  }

  .connect-hero-inner h1,
  .section-heading h2,
  .visit-copy h2,
  .form-copy h2 {
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .connect-hero-inner p {
    font-size: 16px;
  }

  .hero-highlights div {
    min-width: 100%;
  }

  .connect-pillars,
  .options-grid,
  .connect-form-grid,
  .visit-cards {
    grid-template-columns: 1fr;
  }

  .option-image img {
    height: 220px;
  }

  .visit-map-wrap {
    min-height: auto;
  }

  .visit-map-accent {
    inset: 18px auto -18px -12px;
    width: 78%;
    border-radius: 22px;
  }

  .visit-map-frame {
    min-height: 320px;
  }

  .connect-form-card {
    padding: 22px 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .worship-grid {
    flex-direction: column;
    gap: 30px;
  }

  .logo-name {
    font-size: 14px;
  }

  .sermon-text{
    display:none;
  }

  .sermon-float{
    padding:14px;
  }
}

/* ==============================
WATCH BUTTON BRAND STYLE
============================== */
.sermon-float{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.2) !important;
  border-radius:999px !important;
  padding:10px 16px 10px 12px !important;
  box-shadow:0 14px 28px rgba(76,1,154,0.35) !important;
  text-decoration:none;
}

.sermon-icon{
  width:34px !important;
  height:24px !important;
  border-radius:8px !important;
  background:#ffffff !important;
  color:transparent !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:0 !important;
  position:relative;
}

.sermon-icon::before{
  content:"";
  display:block;
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:10px solid #8403fc;
  margin-left:2px;
}

.sermon-text{
  color:#ffffff !important;
  font-weight:700;
  letter-spacing:0.01em;
}

.sermon-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(76,1,154,0.42) !important;
}

a.hero-btn-secondary[href*="watch.html"],
a.btn-secondary[href*="watch.html"]{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.25) !important;
  box-shadow:0 10px 24px rgba(76,1,154,0.3) !important;
}

a.hero-btn-secondary[href*="watch.html"]::before,
a.btn-secondary[href*="watch.html"]::before{
  content:"▶";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:14px;
  border-radius:4px;
  background:#ffffff;
  color:#8403fc;
  font-size:9px;
  line-height:1;
  font-weight:800;
}

