/* ══════════════════════════════════════════
   NET NEXORA — SINGLE PAGE STYLESHEET
══════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  background-color: #0d0d0d;
  overflow-x: hidden;
}

/* ══════════════════════════════
   LOADER
══════════════════════════════ */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s ease;
}

.loader-ring {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 1.8s linear infinite;
}

.track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 5;
}

.spin-arc {
  fill: none;
  stroke: #00909E;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 276;
  stroke-dashoffset: 200;
}

.loader-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.92); opacity: 0.75; }
}

/* ══════════════════════════════
   FLYING LOGO
══════════════════════════════ */
.flying-logo {
  position: fixed;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  object-fit: contain;
  border-radius: 50%;
}

/* ══════════════════════════════
   FIXED NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 22px 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1c1c1c;
  border-radius: 999px;
  padding: 6px 30px 6px 14px;
  width: 100%;
  max-width: 980px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 280px;
  text-decoration: none;
}

.logo-img {
  width: 52px;
  height: 52px;
  margin-left: 15px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.logo-net { color: #00909E; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #888888;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.nav-icon i {
  font-size: 22px;
  display: block;
  line-height: 1;
}

.nav-icon::after {
  content: attr(title);
  position: absolute;
  top: 50%;
  margin-top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  color: #00909E;
  opacity: 0;
  line-height: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.nav-icon:hover { color: #00909E; }
.nav-icon:hover::after { opacity: 1; }
.nav-icon.active { color: #00909E; }
.nav-icon.active::after { opacity: 1; }

/* ══════════════════════════════
   SECTION 1 — HOME
══════════════════════════════ */
.section-home {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1;
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85);
}

.hero-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 0 70px;
  max-width: 800px;
  margin-top: 104px;
}

.hero-left h1 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.hero-brand { color: #00909E; }

.hero-desc {
  font-size: 18px;
  color: #aaaaaa;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.5px;
  /* font-family: 'Courier New', monospace; */
  text-align: justify;
}

.btn-more {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 48px;
  border-radius: 10px;
  transition: background 0.25s, transform 0.2s, color 0.25s;
}

.btn-more:hover {
  background: #00909E;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ══════════════════════════════
   SECTION 2 — ABOUT
══════════════════════════════ */
.section-about {
  background-color: #0d0d0d;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 104px 60px 60px;
  gap: 40px;
}

.about-text {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text h1 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: justify;
}

.about-text h1 .highlight { color: #00909E; }

.about-mid {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.3px;
  text-align: justify;
}

.about-small {
  font-size: 18px;
  font-weight: 600;
  color: #888888;
  line-height: 1.8;
  letter-spacing: 0.8px;
  /* font-family: 'Courier New', monospace; */
  text-align: justify;
}

.slider-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 580px;
}

.slider-viewport {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0%);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.dot.active {
  background: #00909E;
  transform: scale(1.2);
}

/* ══════════════════════════════
   SECTION 3 — SERVICES
══════════════════════════════ */
.section-services {
  background-color: #0d0d0d;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 104px 60px 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 25px;
  width: 100%;
  height: calc(100vh - 164px);
}

.card-networking { grid-column: 1 / 5; grid-row: 1; }
.card-cctv       { grid-column: 5 / 11; grid-row: 1; }
.card-biometric  { grid-column: 1 / 7; grid-row: 2; }
.card-intercom   { grid-column: 7 / 11; grid-row: 2; }

.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.card:hover .card-img { transform: scale(1.04); }

.teal-strip {
  position: absolute;
  background: #00909E;
  color: #fff;
  font-weight: 700;
  z-index: 2;
  line-height: 1.4;
  text-align: center;
}

.teal-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 18px;
  padding: 13px 20px;
}

.teal-left {
  top: 0;
  left: 0;
  width: 28%;
  height: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(10,20,20,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.card:hover .glass-overlay { opacity: 1; }

.glass-overlay-cctv,
.glass-overlay-bio { flex-direction: row; }

.glass-overlay-cctv .teal-left,
.glass-overlay-bio .teal-left {
  position: relative;
  flex-shrink: 0;
  height: 100%;
}

.glass-overlay .teal-bottom {
  position: relative;
  flex-shrink: 0;
}

.glass-details {
  flex: 1;
  padding: 14px 18px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.glass-details h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}

.glass-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.glass-details ul {
  list-style: disc;
  padding-left: 18px;
}

.glass-details ul li {
  font-size: 16px;
  color: #eeeeee;
  line-height: 1.85;
}

.footer-note {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.6;
  margin-top: 2px;
}

/* ══════════════════════════════
   SECTION 4 — WHY CHOOSE
══════════════════════════════ */
.section-whychoose {
  background-color: #0d0d0d;
  padding: 104px 60px 60px;
}

.why-header {
  text-align: center;
  margin-bottom: 28px;
}

.why-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.why-header h1 span { color: #00909E; }

.why-header p {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  grid-auto-rows: 300px;
  gap: 50px;
  justify-content: center;
}

.why-card {
  position: relative;
  width: 400px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
}

.why-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.why-card:hover .why-card-img { opacity: 0.3; }

.why-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.why-card:hover .why-card-overlay { opacity: 1; }

.why-card-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.why-card-overlay p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════
   SECTION 5 — CONTACT
══════════════════════════════ */
.section-contact {
  position: relative;
  height: 100vh;
  background-color: #0d0d0d;
  display: flex;
  flex-direction: column;
}

.contact-video-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-left {
  position: relative;
  z-index: 10;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px 70px 60px;
}

.contact-left h1 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 18px;
  color: #888888;
  letter-spacing: 0.6px;
  font-weight: 600;
  /* font-family: 'Courier New', monospace; */
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 24px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 520px;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-card span {
  /* font-family: 'Courier New', monospace; */
  font-size: 18px;
  font-weight: 100;
  color: #1a1a1a;
  letter-spacing: 1.5px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 48px; height: 48px; }
.contact-icon-dark { background: #1a1a1a; }
.contact-icon-dark svg { width: 26px; height: 26px; }

/* PNG icon size for contact cards */
.contact-icon-png {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 520px;
  padding: 0 4px;
}

.contact-email span {
  font-family: monospace;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 3px;
}

/* ── CONTACT MOBILE VIDEO — hidden on desktop ── */
.contact-video-mobile {
  display: none;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background-color: #111111;
  border-top: 1px solid rgba(0, 144, 158, 0.2);
  padding: 48px 60px 36px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer-brand-text {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
}

.footer-net { color: #00909E; }

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(0, 144, 158, 0.35);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-link:hover { color: #00909E; }

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 600;
  color: #555555;
  letter-spacing: 0.3px;
}

.footer-tagline {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #3a3a3a;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── MOBILE HEADER HIDE/SHOW ── */
  .nav-inner.nav-hidden {
    display: none;
  }

  /* ── MOBILE TOP LOGO BAR ── */
  .navbar {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
  }

  .nav-inner {
    border-radius: 0px;
    padding: 12px 24px;
    max-width: 100%;
    background-color: #1c1c1c;
    justify-content: center;
  }

  .logo {
    display: flex;
    gap: 5px;
    justify-content: center;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 18px;
  }

  /* ── MOBILE BOTTOM NAV ── */
  .nav-links {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    background-color: #1c1c1c;
    border-radius: 0px;
    padding: 10px 8px 16px;
    z-index: 1000;
  }

  /* ── MOBILE NAV ICON: icon only by default ── */
  .nav-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: auto;
    height: auto;
    min-width: 52px;
    padding: 6px 8px 5px;
    border-radius: 12px;
    color: #555555;
    transition: color 0.25s ease;
  }

  .nav-icon i {
    font-size: 20px;
    display: block;
    line-height: 1;
  }

  /* Hide label on all icons by default on mobile */
  .nav-icon::after {
    content: attr(title);
    position: static;
    transform: none;
    margin-top: 0;
    top: auto;
    left: auto;
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    color: #00909E;
    opacity: 0;
    display: none;
    text-align: center;
    pointer-events: none;
  }

  /* Active state — teal icon + label below */
  .nav-icon.active {
    color: #00909E;
  }

  .nav-icon.active::after {
    display: block;
    opacity: 1;
  }

  /* No hover effects on mobile */
  .nav-icon:hover {
    color: #555555;
  }

  /* ── SECTION 1: HOME ── */
  .section-home {
    height: 100svh;
    min-height: 480px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 0 28px;
    margin-top: 0;
    align-items: center;
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-desc {
    font-size: 18px;
    text-align: justify;
    line-height: 1.8;
  }

  .btn-more {
    padding: 12px 40px;
    font-size: 15px;
  }

  /* ── SECTION 2: ABOUT ── */
  .section-about {
    min-height: auto;
    padding-bottom: 0;
  }

  .about-section {
    flex-direction: column;
    padding: 70px 24px 30px;
    gap: 20px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h1 {
    font-size: 20px;
  }

  .about-mid {
    font-size: 19px;
  }

  .about-small {
    font-size: 16px;
  }

  .slider-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .slider-viewport {
    height: 260px;
  }

  /* ── SECTION 3: SERVICES ── */
  .section-services {
    height: auto;
    padding: 40px 16px 40px;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .card-networking, .card-cctv,
  .card-biometric, .card-intercom {
    grid-column: unset;
    grid-row: unset;
    height: 200px;
    width: 100%;
  }

  .card .glass-overlay {
    opacity: 1;
    background: rgba(10, 20, 20, 0.75);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .glass-details h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .glass-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
  }

  .glass-details ul {
    list-style: disc;
    padding-left: 18px;
  }

  .glass-details ul li {
    font-size: 14px;
    color: #eeeeee;
    line-height: 1.5;
  }

  .footer-note {
    display: none;
  }

  /* ── SECTION 4: WHY CHOOSE — 1 column on mobile ── */
  .section-whychoose {
    padding: 40px 16px 40px;
  }

  .why-header h1 {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .why-card {
    width: 100% !important;
  }

  .why-card-img {
    opacity: 0.5 !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .why-card-overlay {
    opacity: 1 !important;
    position: relative;
    background: transparent;
    padding: 24px 20px;
    gap: 10px;
    justify-content: center;
    align-items: center;
    min-height: 200px;
  }

  .why-card-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  }

  .why-card-overlay p {
    display: block !important;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
  }

  /* ── SECTION 5: CONTACT ── */
  .section-contact {
    display: block;
    height: auto;
    min-height: auto;
  }

  .contact-video-panel {
    display: none;
  }

  .contact-left {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 24px 80px;
    height: auto;
  }

  .contact-left h1 {
    font-size: 28px;
    text-align: center;
  }

  .contact-sub {
    font-size: 18px;
    text-align: center;
  }

  .contact-video-mobile {
    display: block;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0 24px;
  }

  .contact-video-mob {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact-card {
    max-width: 100%;
    padding: 14px 18px;
  }

  .contact-card span {
    font-size: 16px;
    font-weight: 700;
  }

  .contact-email span {
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* ── FOOTER ── */
  .site-footer {
    padding: 30px 24px 80px; /* 80px bottom to clear the fixed bottom nav bar */
  }

  .footer-links {
    gap: 20px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-brand-text {
    font-size: 18px;
  }

  .footer-logo {
    width: 36px;
    height: 36px;
  }

  .footer-copy{
    font-size: 16px;
    color: rgb(187, 186, 186);
  }

  .footer-tagline{
    font-size: 12px;
    color: rgb(187, 186, 186);
  }


}