﻿:root {
  /* "Night & Gold" Palette */
  --e-global-color-primary: #bb8e4a;
  /* Muted Gold */
  --e-global-color-secondary: #1F2429;
  /* Deep Charcoal */
  --e-global-color-text: #E5E7EB;
  /* Off-White */
  --e-global-color-accent: #c4995a;
  /* Linked to Primary */
  --e-global-color-lighter: #9CA3AF;
  /* Cool Grey */
  --e-global-color-dark: #181B1F;
  /* Dark Matter (BG) */
  --e-global-color-highlight: #E56D6D;
  --e-global-color-border: #323842;
  /* Subtle Edge */

  /* Theme mappings */
  --bg: var(--e-global-color-dark);
  --ink: var(--e-global-color-text);
  --muted: var(--e-global-color-lighter);
  --accent: var(--e-global-color-primary);
  --accent-dark: var(--e-global-color-secondary);
  --line: var(--e-global-color-border);
  --card: #22262B;
  --highlight: var(--e-global-color-highlight);
  --lighter: var(--e-global-color-lighter);
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

.topbar {
  background: var(--accent-dark);
}

.main-nav {
  background: rgba(30, 30, 30, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.main-nav.scrolled {
  box-shadow: none;
}

.navbar-brand {
  letter-spacing: 1px;
  max-width: 80%;
}

.btn-brand {
  background: var(--accent);
  color: #1f1f1f;
  border: none;
  border: none;
}

.btn-brand:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.hero-section {
  padding: 90px 0 70px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.section {
  padding: 80px 0;
}

.image-placeholder {
  min-height: 260px;
  background: linear-gradient(135deg, #1f2429, #252a30);
  border: 1px dashed var(--line);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lighter);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card {
  background: var(--card);
  border-radius: 0;
  padding: 26px;
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: none;
}

.service-card a {
  color: var(--accent);
  font-weight: 600;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(218, 161, 76, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 14px;
}

.step-card {
  background: var(--card);
  border-radius: 0;
  padding: 22px;
  border: 1px solid var(--line);
  height: 100%;
}

.step-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.testimonial-card {
  background: var(--card);
  border-radius: 0;
  padding: 26px;
  border: 1px solid var(--line);
  height: 100%;
}

.stats-section {
  background: linear-gradient(to top, #181B1F, #111316);
  border-top: 1px solid var(--line);
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.blog-card {
  background: var(--card);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
}

.cta-section {
  background: linear-gradient(120deg, #30373e, #202020);
}

.footer {
  background: #111316;
  color: #e8e8e8;
  padding: 60px 0 30px;
}

.footer a {
  color: #e8e8e8;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.9rem;
  text-align: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Bootstrap Overrides for Dark Theme */
.text-muted {
  color: var(--lighter) !important;
}

.bg-light {
  background-color: var(--e-global-color-secondary) !important;
}

.bg-dark {
  background-color: var(--e-global-color-dark) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--e-global-color-text);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-light .navbar-brand {
  color: var(--e-global-color-primary);
}

.btn-outline-dark {
  color: var(--e-global-color-text);
  border-color: var(--e-global-color-text);
}

.btn-outline-dark:hover {
  background-color: var(--e-global-color-text);
  color: var(--e-global-color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
}

/* Force Square & Flat Design */
.btn,
.card,
.dropdown-menu,
.form-control {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Button Overrides */
.btn-brand,
.btn-primary {
  color: #ffffff !important;
}

.btn-outline-dark {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-outline-dark:hover {
  background-color: #ffffff !important;
  color: var(--e-global-color-dark) !important;
}

/* Navigation Hover Animation */
.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Increased Header Height */
.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.topbar {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 0.9rem;
}

/* Logo Placeholder Style */


/* Hero Slider & Cinematic Effects */
.hero-section {
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.carousel-item {
  height: 85vh;
  min-height: 600px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease-out;
}

/* Pan & Zoom Animation */
.carousel-item.active .hero-bg {
  animation: panZoom 20s linear infinite alternate;
}

@keyframes panZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(20px, -10px);
  }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(24, 27, 31, 0.4), rgba(24, 27, 31, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Staggered Text Animations */
.hero-content>* {
  opacity: 0;
  transform: translateY(30px);
  /* Default state: hidden and pushed down */
}

.carousel-item.active .hero-content>* {
  animation: fadeInUp 0.8s ease-out forwards;
}

.carousel-item.active .hero-content>*:nth-child(1) {
  animation-delay: 0.3s;
  /* Eyebrow */
}

.carousel-item.active .hero-content>*:nth-child(2) {
  animation-delay: 0.5s;
  /* Title */
}

.carousel-item.active .hero-content>*:nth-child(3) {
  animation-delay: 0.7s;
  /* Description */
}

.carousel-item.active .hero-content>*:nth-child(4) {
  animation-delay: 0.9s;
  /* Buttons */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Service Cards */
.service-card-img {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  /* border-radius: 0 is global */
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(24, 27, 31, 1) 0%, rgba(24, 27, 31, 0.1) 60%, rgba(24, 27, 31, 0) 100%);
  transition: opacity 0.3s ease;
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.6s ease;
}

/* Hover Effects */
.service-card-img:hover .service-bg {
  transform: scale(1.1);
  /* Zoom effect */
}

.service-card-img:hover .service-content {
  transform: translateY(-10px);
  /* Slight lift */
}

/* Experience Badge Animation */
.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background-color: var(--e-global-color-dark);
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 0 10px rgba(187, 142, 74, 0.2);
  /* Gold glow ring */
  animation: floatBadge 6s ease-in-out infinite;
}

.experience-badge .years {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 5px;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustment for small screens */
/* Methodology / Steps Section - Dark Theme Adaptation */
.step-card-modern {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
}

.step-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
  background: linear-gradient(145deg, #2a2e35, #22262B);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.4s ease;
  font-size: 1.75rem;
  border: 1px solid transparent;
}

.step-card-modern:hover .step-icon {
  background-color: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(187, 142, 74, 0.25);
  border-color: var(--accent);
}

.step-connector {
  border-top: 2px dashed #4b5563 !important;
  opacity: 0.6 !important;
}

.step-number {
  color: var(--accent);
  margin-right: 8px;
  font-weight: 800;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
}

/* Typography override for dark cards in this section */
.step-card-modern h5 {
  color: #fff;
}

.step-card-modern p {
  color: var(--lighter);
}

/* Promo Section - Full Background & Floating Video */
.promo-bg-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 12s ease;
  transform: scale(1);
  will-change: transform;
}

#promo:hover .promo-bg-full {
  transform: scale(1.1);
}

.promo-overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.7) 50%, rgba(20, 20, 20, 0.4) 100%);
  z-index: 1;
}

/* Floating Video Card */
.video-floating-card {
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: all 0.5s ease-out;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
}

.video-floating-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-overlay-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.video-floating-card:hover .video-overlay-glass {
  background: rgba(0, 0, 0, 0.1);
}

.bg-brand {
  background-color: var(--accent);
  color: #fff;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



.play-button {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  z-index: 10;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
  color: #fff;
}

/* Pulsating Waves */
.play-button .waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  animation: pulse-wave 2s infinite;
}

.play-button:hover .waves {
  background: rgba(187, 142, 74, 0.5);
}

@keyframes pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.video-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Video Modal Custom Animations */
#videoModal .modal-dialog {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

#videoModal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

#videoModal .modal-content {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background-color: transparent;
}

#videoModal .modal-backdrop.show {
  opacity: 0.85;
  backdrop-filter: blur(8px);
}

.btn-close-white {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.feature-brand {
  transition: all 0.3s ease;
  cursor: default;
}

.feature-brand img {
  filter: grayscale(100%);
  transition: all 0.3s ease;
  max-width: 140px;
}

.feature-brand:hover img {
  filter: grayscale(0%);
  opacity: 1 !important;
  transform: scale(1.05);
}

/* Contact Section */
.bg-surface {
  background-color: var(--card);
}

.bg-image-contact {
  filter: grayscale(100%);
  mix-blend-mode: overlay;
}

.hover-lift {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  border-color: var(--accent) !important;
}



.contact-form-card {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1050;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #fff;
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Project Carousel Section */
.project-slide {
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}

.carousel-item.active .project-bg {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(17, 19, 22, 0.95), transparent);
  z-index: 1;
}

.bg-glass-dark {
  background: rgba(17, 19, 22, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.border-gold {
  border-color: var(--accent) !important;
}

/* Custom Carousel Controls */
.carousel-controls-custom .btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 19, 22, 0.8);
  color: #fff;
  transition: all 0.3s ease;
}

.carousel-controls-custom .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Slide Entry Animation for Info */
.project-info {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.carousel-item.active .project-info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Testimonials Section */
.testimonial-card-modern {
  background: var(--card);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card-modern:hover,
.testimonial-card-modern.active-card {
  background: linear-gradient(145deg, #2a2e35, #22262B);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent);
}

.font-serif {
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.avatar-placeholder {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #2a2e35, #111);
}

.text-warning {
  color: var(--accent) !important;
}

/* --- MEDIA QUERIES --- */

/* Large Tablets and Desktops */
@media (max-width: 1200px) {
  .display-3 {
    font-size: 3.5rem;
  }
}

/* Tablets (landscape and portrait) */
@media (max-width: 991.98px) {
  .section {
    padding: 60px 0;
  }

  .display-3 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .hero-content {
    max-width: 100% !important;
    padding: 0 20px;
  }

  .hero-content .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem !important;
  }

  .experience-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 0 5px rgba(187, 142, 74, 0.2);
  }

  .experience-badge .years {
    font-size: 2rem;
  }

  .experience-badge .text {
    font-size: 0.65rem;
  }

  .video-floating-card {
    transform: none !important;
    margin-top: 40px;
    height: 350px;
  }

  .video-floating-card:hover {
    transform: none !important;
  }

  .service-card-img {
    height: 50vh;
    min-height: 350px;
  }

  #promo {
    min-height: auto !important;
  }

  .navbar-collapse {
    background: var(--e-global-color-dark);
    margin-top: 15px;
    padding: 20px;
    border: 1px solid var(--line);
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 767.98px) {
  .topbar {
    padding: 8px 0;
  }

  .topbar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar .d-flex.align-items-center.gap-3 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px !important;
  }

  .topbar .btn-brand {
    width: 100%;
    margin-top: 5px;
  }

  .display-3 {
    font-size: 2.2rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .hero-section,
  .carousel-item {
    height: 70vh;
    min-height: 450px;
  }

  .hero-content .d-flex {
    flex-direction: column;
    gap: 15px !important;
  }

  .hero-content .btn {
    width: 100%;
  }

  .service-card-img {
    height: 40vh;
    min-height: 280px;
  }

  .project-slide {
    height: 60vh;
    min-height: 450px;
  }

  .project-info {
    padding: 1.25rem !important;
    margin-bottom: 3rem !important;
    max-width: 92% !important;
    left: 4% !important;
  }

  .stat-card {
    padding: 1.5rem !important;
  }

  .stat-card h3 {
    font-size: 1.8rem;
  }

  .contact-form-card {
    padding: 2rem 1.25rem !important;
  }

  .footer {
    text-align: center;
    padding: 40px 0 20px;
  }

  .footer .col-md-4 {
    margin-bottom: 40px;
  }

  .footer .mt-4 {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer .btn {
    width: 200px;
  }

  /* About section adjustment */
  #apropos .col-lg-6:first-child {
    text-align: center;
    margin-bottom: 50px;
  }

  .experience-badge {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%) !important;
  }
}

/* Small Phones */
@media (max-width: 575.98px) {
  .display-3 {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-section,
  .carousel-item {
    height: 60vh;
    min-height: 400px;
  }

  .service-card-img {
    height: 40vh;
    min-height: 280px;
  }

  /* Experience badge adjustment for very small screens */
  .experience-badge {
    bottom: -15px;
    right: 15px;
    width: 90px;
    height: 90px;
  }

  .experience-badge .years {
    font-size: 1.8rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    left: 1rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  .display-3 {
    font-size: 1.75rem;
  }

  .topbar span {
    font-size: 0.8rem;
  }
}