/* ============================================================
   Unity First Insurance — Shared Stylesheet
   Colors: Navy #1E2D6E | Gold #D4920A | White #FFFFFF
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1E2D6E;
  --navy-dark: #151f4e;
  --gold:   #D4920A;
  --gold-light: #f0a812;
  --white:  #FFFFFF;
  --gray-light: #F5F7FA;
  --gray:   #E2E6ED;
  --text:   #333333;
  --text-light: #666666;
  --font:   'Segoe UI', Arial, sans-serif;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Container -------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility ---------------------------------------------- */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold  { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--white); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* --- Top Bar ---------------------------------------------- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--gold); }

/* --- Header / Nav ----------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-wrap img { height: 54px; width: auto; }
.logo-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-text span { display: block; }

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  background: var(--navy);
  color: var(--white);
}

/* --- Nav Dropdown ----------------------------------------- */
.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: 4px; }
.nav-drop > a::after { content: '▾'; font-size: 10px; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  z-index: 200;
  padding: 6px 0;
  border-top: 3px solid var(--gold);
}
.nav-drop-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--navy);
  border-radius: 0;
  background: none;
}
.nav-drop-menu a:hover { background: var(--gray-light); color: var(--gold); }
.nav-drop:hover .nav-drop-menu { display: block; }
/* Mobile: show inline when nav is open */
@media (max-width: 720px) {
  .nav-drop-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    padding: 0;
    margin: 0 0 4px 12px;
    display: block;
  }
  .nav-drop-menu a { padding: 8px 14px; font-size: 12px; }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 8px 18px;
  font-size: 13px;
  line-height: 1.4;
  align-self: center;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.phone-link svg { flex-shrink: 0; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

/* --- Page Hero -------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3d8f 60%, #1a2560 100%);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  position: relative;
}
.page-hero .breadcrumb {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.75;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--gold); }

/* --- Section Base ----------------------------------------- */
section { padding: 72px 0; }
section.bg-light { background: var(--gray-light); }
section.bg-navy  { background: var(--navy); color: var(--white); }

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 40px;
}
.section-divider {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 32px;
}

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px 24px; }

/* 4-col icon cards */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.quick-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 36px 28px 28px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30,45,110,0.13);
  border-top-color: var(--gold);
}
.quick-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(212,146,10,0.10) 0%, rgba(30,45,110,0.06) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212,146,10,0.18);
}
.quick-card .icon svg { width: 32px; height: 32px; }
.quick-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.quick-card p  { font-size: 14px; color: var(--text-light); margin-bottom: 22px; line-height: 1.65; flex: 1; }

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 30px 26px 26px;
  border-top: 4px solid var(--gold);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(30,45,110,0.13); }
.service-card .svc-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(30,45,110,0.07) 0%, rgba(212,146,10,0.06) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.service-card .svc-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.service-card p  { font-size: 14px; color: var(--text-light); line-height: 1.65; flex: 1; }
.service-card .svc-link { margin-top: 16px; display: inline-block; font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.3px; }
.service-card .svc-link:hover { color: var(--navy); }

/* --- CTA Banner ------------------------------------------- */
/* --- How It Works ----------------------------------------- */
.hiw-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.hiw-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-row-2 {
  justify-content: center;
}
.hiw-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  max-width: 260px;
  text-align: left;
}
.hiw-pill {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.hiw-text h3 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.hiw-text p  { color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.6; margin: 0; }
.hiw-arrow {
  color: var(--gold);
  font-size: 22px;
  opacity: 0.55;
  flex-shrink: 0;
  padding: 4px 10px 0;
}
.hiw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.hiw-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,146,10,0.15);
  border: 1px solid rgba(212,146,10,0.35);
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: 0.3px;
}
@media (max-width: 720px) {
  .hiw-row { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 16px; }
  .hiw-arrow { display: none; }
  .hiw-item { max-width: 100%; }
}

/* --- Stat Row --------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy);
  color: var(--white);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- About Section ---------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: clamp(22px, 2.5vw, 32px); color: var(--navy); margin-bottom: 8px; }
.about-content p  { color: var(--text-light); margin-bottom: 16px; }

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-light);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 14px 20px;
  margin-top: 20px;
}
.award-badge svg { width: 32px; height: 32px; fill: var(--gold); flex-shrink: 0; }
.award-badge p { font-size: 14px; font-weight: 600; color: var(--navy); margin: 0; }

/* --- Testimonials ----------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
}
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testimonial blockquote { font-size: 15px; color: var(--text-light); font-style: italic; margin-bottom: 16px; }
.testimonial cite { font-size: 14px; font-weight: 700; color: var(--navy); font-style: normal; }

/* --- Quote Form ------------------------------------------- */
.quote-section { background: var(--gray-light); }
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote-tabs {
  display: flex;
  background: var(--navy);
}
.quote-tab {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.quote-tab.active, .quote-tab:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.quote-panel { display: none; padding: 36px 40px; }
.quote-panel.active { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  font-family: var(--font);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 8px; }

/* --- Contact section -------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 28px; color: var(--navy); margin-bottom: 16px; }
.contact-info p  { color: var(--text-light); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(212,146,10,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .ci-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-detail h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-detail p  { font-size: 15px; color: var(--text-light); margin: 0; }

/* --- Footer ----------------------------------------------- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.80);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p   { font-size: 14px; line-height: 1.7; opacity: 0.80; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a  { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.social-icons svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.65;
}

/* --- Hero Slider ------------------------------------------ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,22,55,0.85) 0%, rgba(12,22,55,0.55) 55%, rgba(12,22,55,0.15) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 48px;
}
.slide-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}
.slide-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.slide-title {
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 680px;
}
.slide-gold { color: var(--gold); }
.slide-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-arrow:hover { background: rgba(212,146,10,0.75); border-color: var(--gold); }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }

.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.slide-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 5px;
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 960px) {
  .quick-links     { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-row        { grid-template-columns: repeat(2, 1fr); }
  .stat-item       { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .about-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav { display: none; flex-direction: column; width: 100%; }
  nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hamburger { display: flex; }
  .quick-links { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-panel { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .header-cta .btn { display: none; }
  .hero-slider { height: 420px; }
  .slide-overlay { padding: 28px 24px; }
  .slide-arrow { display: none; }
  .slide-btns { flex-direction: column; align-items: center; }
  .slide-sub { font-size: 15px; }
}
